2003-03-27 11:55:11 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* tstoreReceiver.h
|
|
|
|
|
* prototypes for tstoreReceiver.c
|
|
|
|
|
*
|
|
|
|
|
*
|
2009-01-01 12:24:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
2003-03-27 11:55:11 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2009-01-01 12:24:05 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/executor/tstoreReceiver.h,v 1.13 2009/01/01 17:23:59 momjian Exp $
|
2003-03-27 11:55:11 -05:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef TSTORE_RECEIVER_H
|
|
|
|
|
#define TSTORE_RECEIVER_H
|
|
|
|
|
|
|
|
|
|
#include "tcop/dest.h"
|
2003-05-06 16:26:28 -04:00
|
|
|
#include "utils/tuplestore.h"
|
2003-03-27 11:55:11 -05:00
|
|
|
|
2003-05-06 16:26:28 -04:00
|
|
|
|
2008-11-30 15:51:25 -05:00
|
|
|
extern DestReceiver *CreateTuplestoreDestReceiver(void);
|
|
|
|
|
|
|
|
|
|
extern void SetTuplestoreDestReceiverParams(DestReceiver *self,
|
|
|
|
|
Tuplestorestate *tStore,
|
2008-12-01 12:06:21 -05:00
|
|
|
MemoryContext tContext,
|
|
|
|
|
bool detoast);
|
2003-03-27 11:55:11 -05:00
|
|
|
|
2003-08-03 20:43:34 -04:00
|
|
|
#endif /* TSTORE_RECEIVER_H */
|