diff options
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
| -rw-r--r-- | src/backend/nodes/outfuncs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index ebf3ce37aaa..e2f177515da 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -319,7 +319,7 @@ _outPlannedStmt(StringInfo str, const PlannedStmt *node) WRITE_NODE_FIELD(paramExecTypes); WRITE_NODE_FIELD(utilityStmt); WRITE_LOCATION_FIELD(stmt_location); - WRITE_LOCATION_FIELD(stmt_len); + WRITE_INT_FIELD(stmt_len); } /* @@ -2135,6 +2135,7 @@ _outLimitPath(StringInfo str, const LimitPath *node) WRITE_NODE_FIELD(subpath); WRITE_NODE_FIELD(limitOffset); WRITE_NODE_FIELD(limitCount); + WRITE_ENUM_FIELD(limitOption, LimitOption); } static void @@ -2966,7 +2967,7 @@ _outQuery(StringInfo str, const Query *node) WRITE_NODE_FIELD(constraintDeps); WRITE_NODE_FIELD(withCheckOptions); WRITE_LOCATION_FIELD(stmt_location); - WRITE_LOCATION_FIELD(stmt_len); + WRITE_INT_FIELD(stmt_len); } static void |
