diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2014-11-20 20:20:54 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2014-11-20 20:20:54 -0500 |
commit | adbfab119b308a7e0e6b1305de9be222cfd5c85b (patch) | |
tree | ed4697f645d855d8d7c7ffef73eecd3d8ba05133 /src/include/executor/nodeTidscan.h | |
parent | a34fa8ee7cc757671632dc4dcae4f21e8f2e2357 (diff) |
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.
Diffstat (limited to 'src/include/executor/nodeTidscan.h')
-rw-r--r-- | src/include/executor/nodeTidscan.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/executor/nodeTidscan.h b/src/include/executor/nodeTidscan.h index 813aab5d9fe..d8679a00f5f 100644 --- a/src/include/executor/nodeTidscan.h +++ b/src/include/executor/nodeTidscan.h @@ -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 */ |