mirror of
https://github.com/postgres/postgres.git
synced 2025-11-19 13:42:17 +03:00
Revert CREATE INDEX ... INCLUDING ...
It's not ready yet, revert two commits690c543550- unstable test output386e3d7609- patch itself
This commit is contained in:
@@ -2419,7 +2419,6 @@ _outIndexStmt(StringInfo str, const IndexStmt *node)
|
||||
WRITE_STRING_FIELD(accessMethod);
|
||||
WRITE_STRING_FIELD(tableSpace);
|
||||
WRITE_NODE_FIELD(indexParams);
|
||||
WRITE_NODE_FIELD(indexIncludingParams);
|
||||
WRITE_NODE_FIELD(options);
|
||||
WRITE_NODE_FIELD(whereClause);
|
||||
WRITE_NODE_FIELD(excludeOpNames);
|
||||
@@ -3156,7 +3155,6 @@ _outConstraint(StringInfo str, const Constraint *node)
|
||||
case CONSTR_PRIMARY:
|
||||
appendStringInfoString(str, "PRIMARY_KEY");
|
||||
WRITE_NODE_FIELD(keys);
|
||||
WRITE_NODE_FIELD(including);
|
||||
WRITE_NODE_FIELD(options);
|
||||
WRITE_STRING_FIELD(indexname);
|
||||
WRITE_STRING_FIELD(indexspace);
|
||||
@@ -3166,7 +3164,6 @@ _outConstraint(StringInfo str, const Constraint *node)
|
||||
case CONSTR_UNIQUE:
|
||||
appendStringInfoString(str, "UNIQUE");
|
||||
WRITE_NODE_FIELD(keys);
|
||||
WRITE_NODE_FIELD(including);
|
||||
WRITE_NODE_FIELD(options);
|
||||
WRITE_STRING_FIELD(indexname);
|
||||
WRITE_STRING_FIELD(indexspace);
|
||||
|
||||
Reference in New Issue
Block a user