Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / executor / tstoreReceiver.h
blob1c496f414ff142c1605bb290a2857c2aafa92772
1 /*-------------------------------------------------------------------------
3 * tstoreReceiver.h
4 * prototypes for tstoreReceiver.c
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
15 #ifndef TSTORE_RECEIVER_H
16 #define TSTORE_RECEIVER_H
18 #include "tcop/dest.h"
19 #include "utils/tuplestore.h"
22 extern DestReceiver *CreateTuplestoreDestReceiver(void);
24 extern void SetTuplestoreDestReceiverParams(DestReceiver *self,
25 Tuplestorestate *tStore,
26 MemoryContext tContext,
27 bool detoast);
29 #endif /* TSTORE_RECEIVER_H */