diff options
Diffstat (limited to 'src/backend/bootstrap/bootparse.y')
-rw-r--r-- | src/backend/bootstrap/bootparse.y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index e5cf1b3d439..7d7655d2956 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -287,9 +287,9 @@ Boot_DeclareIndexStmt: stmt->excludeOpNames = NIL; stmt->idxcomment = NULL; stmt->indexOid = InvalidOid; - stmt->oldNode = InvalidOid; + stmt->oldNumber = InvalidRelFileNumber; stmt->oldCreateSubid = InvalidSubTransactionId; - stmt->oldFirstRelfilenodeSubid = InvalidSubTransactionId; + stmt->oldFirstRelfilelocatorSubid = InvalidSubTransactionId; stmt->unique = false; stmt->primary = false; stmt->isconstraint = false; @@ -339,9 +339,9 @@ Boot_DeclareUniqueIndexStmt: stmt->excludeOpNames = NIL; stmt->idxcomment = NULL; stmt->indexOid = InvalidOid; - stmt->oldNode = InvalidOid; + stmt->oldNumber = InvalidRelFileNumber; stmt->oldCreateSubid = InvalidSubTransactionId; - stmt->oldFirstRelfilenodeSubid = InvalidSubTransactionId; + stmt->oldFirstRelfilelocatorSubid = InvalidSubTransactionId; stmt->unique = true; stmt->primary = false; stmt->isconstraint = false; |