From 6a25cd6b26cc5012828119f9c01c93b9d4d46ad7 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 1 Apr 2002 14:22:41 +0000 Subject: [PATCH] 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 --- src/backend/bootstrap/bootparse.y | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index 33c18f3b2d..7afd6659e1 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; }