summaryrefslogtreecommitdiff
path: root/src/backend/nodes/outfuncs.c
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2019-06-09 14:00:36 -0700
committerNoah Misch <noah@leadboat.com>2019-06-09 14:00:36 -0700
commit44982e7d09cf9b1a08fded7fb0ca9a60dae869a5 (patch)
tree207aaf0c0099bf39345e2c7a681901f37efc7d01 /src/backend/nodes/outfuncs.c
parentcf4263cc6c3a2310de4f1540745990e62fa2312c (diff)
Reconcile nodes/*funcs.c with PostgreSQL 12 work.
One would have needed out-of-tree code to observe the defects. Remove unreferenced fields instead of completing their support functions. Since in-tree code can't reach _readIntoClause(), no catversion bump.
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
-rw-r--r--src/backend/nodes/outfuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c
index 237598e1109..8400dd319e2 100644
--- a/src/backend/nodes/outfuncs.c
+++ b/src/backend/nodes/outfuncs.c
@@ -1048,7 +1048,7 @@ _outIntoClause(StringInfo str, const IntoClause *node)
WRITE_NODE_FIELD(rel);
WRITE_NODE_FIELD(colNames);
- WRITE_NODE_FIELD(accessMethod);
+ WRITE_STRING_FIELD(accessMethod);
WRITE_NODE_FIELD(options);
WRITE_ENUM_FIELD(onCommit, OnCommitAction);
WRITE_STRING_FIELD(tableSpaceName);