tstoreReceiver.h 857 B

12345678910111213141516171819202122232425262728293031
  1. /*-------------------------------------------------------------------------
  2. *
  3. * tstoreReceiver.h
  4. * prototypes for tstoreReceiver.c
  5. *
  6. *
  7. * Portions Copyright (c) 1996-2022, 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. TupleDesc target_tupdesc,
  24. const char *map_failure_msg);
  25. #endif /* TSTORE_RECEIVER_H */