diff options
| author | Tom Lane | 2022-07-09 17:35:37 +0000 |
|---|---|---|
| committer | Tom Lane | 2022-07-09 17:35:37 +0000 |
| commit | b4f79d278f2a78a65ff020b4e8cfa46a2587091d (patch) | |
| tree | e5e595faf17415bccd2778333cf6e56f6eac3581 /src/test | |
| parent | 2be87f092a2ac786264b2020797aafa837de5a8e (diff) | |
Mark PlanState as an abstract node type.
In the same vein as commit 251154beb, make it clear that we never
instantiate PlanState.
Also mark MemoryContextData as abstract. This has no effect right now,
since memnodes.h isn't one of the files fed to gen_node_support.pl.
But it seems like good documentation and future-proofing.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/modules/test_oat_hooks/test_oat_hooks.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/test/modules/test_oat_hooks/test_oat_hooks.c b/src/test/modules/test_oat_hooks/test_oat_hooks.c index b648ee67ff4..c9869b21fde 100644 --- a/src/test/modules/test_oat_hooks/test_oat_hooks.c +++ b/src/test/modules/test_oat_hooks/test_oat_hooks.c @@ -618,9 +618,6 @@ nodetag_to_string(NodeTag tag) case T_PlanInvalItem: return "PlanInvalItem"; break; - case T_PlanState: - return "PlanState"; - break; case T_ResultState: return "ResultState"; break; |
