From: Bruce Momjian Date: Mon, 1 Apr 2002 14:22:41 +0000 (+0000) Subject: Attached is a patch which adds 2 missing semi-colons to X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=da4145103bb2fe210b67bf473c6059a1c85d8078;p=users%2Fbernd%2Fpostgres.git 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 --- diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index b324ab4f0b..298ae6ac7e 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -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; }