mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
Revert CREATE INDEX ... INCLUDING ...
It's not ready yet, revert two commits690c543550
- unstable test output386e3d7609
- patch itself
This commit is contained in:
@ -293,7 +293,6 @@ Boot_DeclareIndexStmt:
|
||||
stmt->accessMethod = $8;
|
||||
stmt->tableSpace = NULL;
|
||||
stmt->indexParams = $10;
|
||||
stmt->indexIncludingParams = NIL;
|
||||
stmt->options = NIL;
|
||||
stmt->whereClause = NULL;
|
||||
stmt->excludeOpNames = NIL;
|
||||
@ -337,7 +336,6 @@ Boot_DeclareUniqueIndexStmt:
|
||||
stmt->accessMethod = $9;
|
||||
stmt->tableSpace = NULL;
|
||||
stmt->indexParams = $11;
|
||||
stmt->indexIncludingParams = NIL;
|
||||
stmt->options = NIL;
|
||||
stmt->whereClause = NULL;
|
||||
stmt->excludeOpNames = NIL;
|
||||
|
@ -593,7 +593,7 @@ boot_openrel(char *relname)
|
||||
relname, (int) ATTRIBUTE_FIXED_PART_SIZE);
|
||||
|
||||
boot_reldesc = heap_openrv(makeRangeVar(NULL, relname, -1), NoLock);
|
||||
numattr = RelationGetNumberOfAttributes(boot_reldesc);
|
||||
numattr = boot_reldesc->rd_rel->relnatts;
|
||||
for (i = 0; i < numattr; i++)
|
||||
{
|
||||
if (attrtypes[i] == NULL)
|
||||
|
Reference in New Issue
Block a user