summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2021-06-10 21:56:14 -0700
committerNoah Misch <noah@leadboat.com>2021-06-10 21:56:14 -0700
commit13a1ca160dcfc316c9f4005891a312f5a84c5ca2 (patch)
treec5af6a21e60e9f1123cd742f315cec730a4ac0bd /src/include
parentd0e750c0acaf31f60667b1635311bcef5ab38bbe (diff)
Change position of field "transformed" in struct CreateStatsStmt.
Resolve the disagreement with nodes/*funcs.c field order in favor of the latter, which is better-aligned with the IndexStmt field order. This field is new in v14. Discussion: https://postgr.es/m/20210611045546.GA573364@rfd.leadboat.com
Diffstat (limited to 'src/include')
-rw-r--r--src/include/nodes/parsenodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 58328c43774..def9651b341 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -2912,8 +2912,8 @@ typedef struct CreateStatsStmt
List *exprs; /* expressions to build statistics on */
List *relations; /* rels to build stats on (list of RangeVar) */
char *stxcomment; /* comment to apply to stats, or NULL */
- bool if_not_exists; /* do nothing if stats name already exists */
bool transformed; /* true when transformStatsStmt is finished */
+ bool if_not_exists; /* do nothing if stats name already exists */
} CreateStatsStmt;
/*