postgresql/src/include/executor/tstoreReceiver.h

30 lines
836 B
C
Raw Normal View History

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"
#include "utils/tuplestore.h"
2003-03-27 11:55:11 -05:00
extern DestReceiver *CreateTuplestoreDestReceiver(void);
extern void SetTuplestoreDestReceiverParams(DestReceiver *self,
Tuplestorestate *tStore,
MemoryContext tContext,
bool detoast);
2003-03-27 11:55:11 -05:00
2003-08-03 20:43:34 -04:00
#endif /* TSTORE_RECEIVER_H */