mirror of
https://github.com/postgres/postgres.git
synced 2025-08-27 07:42:10 +03:00
Remove dead code supporting mark/restore in SeqScan, TidScan, ValuesScan.
There seems no prospect that any of this will ever be useful, and indeed it's questionable whether some of it would work if it ever got called; it's certainly not been exercised in a very long time, if ever. So let's get rid of it, and make the comments about mark/restore in execAmi.c less wishy-washy. The mark/restore support for Result nodes is also currently dead code, but that's due to planner limitations not because it's impossible that it could be useful. So I left it in.
This commit is contained in:
@@ -19,8 +19,6 @@
|
||||
extern TidScanState *ExecInitTidScan(TidScan *node, EState *estate, int eflags);
|
||||
extern TupleTableSlot *ExecTidScan(TidScanState *node);
|
||||
extern void ExecEndTidScan(TidScanState *node);
|
||||
extern void ExecTidMarkPos(TidScanState *node);
|
||||
extern void ExecTidRestrPos(TidScanState *node);
|
||||
extern void ExecReScanTidScan(TidScanState *node);
|
||||
|
||||
#endif /* NODETIDSCAN_H */
|
||||
|
Reference in New Issue
Block a user