]> granicus.if.org Git - postgresql/commitdiff
Attached is a patch which adds 2 missing semi-colons to
authorBruce Momjian <bruce@momjian.us>
Mon, 1 Apr 2002 14:22:41 +0000 (14:22 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 1 Apr 2002 14:22:41 +0000 (14:22 +0000)
bootstrap/bootparse.y, so that recent versions of bison don't emit a
warning.

Neil Conway

src/backend/bootstrap/bootparse.y

index 33c18f3b2d2513ce9286b9201dd485bc59f89090..7afd6659e1af28620ea691a6f78a5d000b237f22 100644 (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; }