mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
Revert CREATE INDEX ... INCLUDING ...
It's not ready yet, revert two commits690c543550- unstable test output386e3d7609- patch itself
This commit is contained in:
@@ -1835,8 +1835,7 @@ typedef struct Constraint
|
||||
char *cooked_expr; /* expr, as nodeToString representation */
|
||||
|
||||
/* Fields used for unique constraints (UNIQUE and PRIMARY KEY): */
|
||||
List *keys; /* String nodes naming referenced key column(s) */
|
||||
List *including; /* String nodes naming referenced nonkey column(s) */
|
||||
List *keys; /* String nodes naming referenced column(s) */
|
||||
|
||||
/* Fields used for EXCLUSION constraints: */
|
||||
List *exclusions; /* list of (IndexElem, operator name) pairs */
|
||||
@@ -2440,8 +2439,6 @@ typedef struct IndexStmt
|
||||
char *accessMethod; /* name of access method (eg. btree) */
|
||||
char *tableSpace; /* tablespace, or NULL for default */
|
||||
List *indexParams; /* columns to index: a list of IndexElem */
|
||||
List *indexIncludingParams; /* additional columns to index:
|
||||
* a list of IndexElem */
|
||||
List *options; /* WITH clause options: a list of DefElem */
|
||||
Node *whereClause; /* qualification (partial-index predicate) */
|
||||
List *excludeOpNames; /* exclusion operator names, or NIL if none */
|
||||
|
||||
Reference in New Issue
Block a user