mirror of
https://github.com/postgres/postgres.git
synced 2025-04-29 13:56:47 +03:00
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:
parent
64839d9425
commit
6a25cd6b26
@ -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:
|
|||||||
|
|
||||||
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:
|
|||||||
n->class = LexIDStr($2);
|
n->class = LexIDStr($2);
|
||||||
$$ = n;
|
$$ = n;
|
||||||
}
|
}
|
||||||
|
;
|
||||||
|
|
||||||
optbootstrap:
|
optbootstrap:
|
||||||
XBOOTSTRAP { $$ = 1; }
|
XBOOTSTRAP { $$ = 1; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user