diff options
author | Noah Misch <noah@leadboat.com> | 2019-06-09 14:00:36 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2019-06-09 14:00:36 -0700 |
commit | 44982e7d09cf9b1a08fded7fb0ca9a60dae869a5 (patch) | |
tree | 207aaf0c0099bf39345e2c7a681901f37efc7d01 /src/include/nodes/parsenodes.h | |
parent | cf4263cc6c3a2310de4f1540745990e62fa2312c (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/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 2a8edf934f6..94ded3c135e 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -2139,7 +2139,6 @@ typedef struct Constraint Node *raw_expr; /* expr, as untransformed parse tree */ char *cooked_expr; /* expr, as nodeToString representation */ char generated_when; /* ALWAYS or BY DEFAULT */ - char generated_kind; /* currently always STORED */ /* Fields used for unique constraints (UNIQUE and PRIMARY KEY): */ List *keys; /* String nodes naming referenced key |