postgresql/src/include/executor/tstoreReceiver.h

30 lines
767 B
C
Raw Normal View History

2003-03-27 11:55:11 -05:00
/*-------------------------------------------------------------------------
*
* tstoreReceiver.h
* prototypes for tstoreReceiver.c
*
*
2017-01-03 13:48:53 -05:00
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
2003-03-27 11:55:11 -05:00
* Portions Copyright (c) 1994, Regents of the University of California
*
2010-09-20 16:08:53 -04:00
* src/include/executor/tstoreReceiver.h
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 */