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
This commit is contained in:
Bruce Momjian 2002-04-01 14:22:41 +00:00
parent 64839d9425
commit 6a25cd6b26
1 changed files with 3 additions and 1 deletions

View File

@ -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; }