diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-04-01 14:22:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-04-01 14:22:41 +0000 |
commit | 6a25cd6b26cc5012828119f9c01c93b9d4d46ad7 (patch) | |
tree | b6e28226f8ca5abda07eb8ade45c4c2b7bf1bb1b | |
parent | 64839d9425d57698cc0e86b73a702d854b036e8a (diff) | |
download | postgresql-6a25cd6b26cc5012828119f9c01c93b9d4d46ad7.tar.gz postgresql-6a25cd6b26cc5012828119f9c01c93b9d4d46ad7.zip |
Attached is a patch which adds 2 missing semi-colons to
bootstrap/bootparse.y, so that recent versions of bison don't emit a
warning.
Neil Conway
-rw-r--r-- | src/backend/bootstrap/bootparse.y | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index 33c18f3b2d2..7afd6659e1a 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.42 2002/03/31 06:26:29 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.43 2002/04/01 14:22:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -259,6 +259,7 @@ Boot_DeclareUniqueIndexStmt: Boot_BuildIndsStmt: XBUILD INDICES { build_indices(); } + ; boot_index_params: @@ -274,6 +275,7 @@ boot_index_param: n->class = LexIDStr($2); $$ = n; } + ; optbootstrap: XBOOTSTRAP { $$ = 1; } |