1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

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.
This commit is contained in:
Noah Misch
2019-06-09 14:00:36 -07:00
parent cf4263cc6c
commit 44982e7d09
4 changed files with 1 additions and 6 deletions

View File

@@ -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

View File

@@ -410,8 +410,6 @@ typedef struct SubscriptingRef
List *reflowerindexpr; /* expressions that evaluate to lower
* container indexes, or NIL for single
* container element */
List *refindexprslice; /* whether or not related indexpr from
* reflowerindexpr is a slice */
Expr *refexpr; /* the expression that evaluates to a
* container value */