nodeSeqscan.h 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. /*-------------------------------------------------------------------------
  2. *
  3. * nodeSeqscan.h
  4. *
  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/nodeSeqscan.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef NODESEQSCAN_H
  15. #define NODESEQSCAN_H
  16. #include "access/parallel.h"
  17. #include "nodes/execnodes.h"
  18. extern SeqScanState *ExecInitSeqScan(SeqScan *node, EState *estate, int eflags);
  19. extern void ExecEndSeqScan(SeqScanState *node);
  20. extern void ExecReScanSeqScan(SeqScanState *node);
  21. /* parallel scan support */
  22. extern void ExecSeqScanEstimate(SeqScanState *node, ParallelContext *pcxt);
  23. extern void ExecSeqScanInitializeDSM(SeqScanState *node, ParallelContext *pcxt);
  24. extern void ExecSeqScanReInitializeDSM(SeqScanState *node, ParallelContext *pcxt);
  25. extern void ExecSeqScanInitializeWorker(SeqScanState *node,
  26. ParallelWorkerContext *pwcxt);
  27. #endif /* NODESEQSCAN_H */