tstoreReceiver.h 767 B

1234567891011121314151617181920212223242526272829
  1. /*-------------------------------------------------------------------------
  2. *
  3. * tstoreReceiver.h
  4. * prototypes for tstoreReceiver.c
  5. *
  6. *
  7. * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
  8. * Portions Copyright (c) 1994, Regents of the University of California
  9. *
  10. * src/include/executor/tstoreReceiver.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef TSTORE_RECEIVER_H
  15. #define TSTORE_RECEIVER_H
  16. #include "tcop/dest.h"
  17. #include "utils/tuplestore.h"
  18. extern DestReceiver *CreateTuplestoreDestReceiver(void);
  19. extern void SetTuplestoreDestReceiverParams(DestReceiver *self,
  20. Tuplestorestate *tStore,
  21. MemoryContext tContext,
  22. bool detoast);
  23. #endif /* TSTORE_RECEIVER_H */