Commit 6a25cd6b authored by Bruce Momjian's avatar Bruce Momjian

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
parent 64839d94
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * 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: ...@@ -259,6 +259,7 @@ Boot_DeclareUniqueIndexStmt:
Boot_BuildIndsStmt: Boot_BuildIndsStmt:
XBUILD INDICES { build_indices(); } XBUILD INDICES { build_indices(); }
;
boot_index_params: boot_index_params:
...@@ -274,6 +275,7 @@ boot_index_param: ...@@ -274,6 +275,7 @@ boot_index_param:
n->class = LexIDStr($2); n->class = LexIDStr($2);
$$ = n; $$ = n;
} }
;
optbootstrap: optbootstrap:
XBOOTSTRAP { $$ = 1; } XBOOTSTRAP { $$ = 1; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment