diff options
author | Robert Haas | 2011-07-18 15:02:48 +0000 |
---|---|---|
committer | Robert Haas | 2011-07-18 15:04:43 +0000 |
commit | 367bc426a1c22b9f6badb06cd41fc438fd034639 (patch) | |
tree | eb518f0e9399e0857f0e5f79c10750e1bfdaf909 /src/backend/bootstrap | |
parent | 8f8a273c4d2433de57f6f0356f44ab47b7387641 (diff) |
Avoid index rebuild for no-rewrite ALTER TABLE .. ALTER TYPE.
Noah Misch. Review and minor cosmetic changes by me.
Diffstat (limited to 'src/backend/bootstrap')
-rw-r--r-- | src/backend/bootstrap/bootparse.y | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index f3e85aa31bb..d0a0e9276e8 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -217,6 +217,7 @@ Boot_CreateStmt: PG_CATALOG_NAMESPACE, shared_relation ? GLOBALTABLESPACE_OID : 0, $3, + InvalidOid, tupdesc, RELKIND_RELATION, RELPERSISTENCE_PERMANENT, @@ -284,6 +285,7 @@ Boot_DeclareIndexStmt: DefineIndex(makeRangeVar(NULL, $6, -1), $3, $4, + InvalidOid, $8, NULL, $10, @@ -302,6 +304,7 @@ Boot_DeclareUniqueIndexStmt: DefineIndex(makeRangeVar(NULL, $7, -1), $4, $5, + InvalidOid, $9, NULL, $11, |