Commit f8a15f63 authored by Tom Lane's avatar Tom Lane

Add missing semicolon.

parent 7b85b730
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.409 2003/03/27 16:51:28 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.410 2003/04/01 23:42:55 tgl Exp $
* *
* HISTORY * HISTORY
* AUTHOR DATE MAJOR EVENT * AUTHOR DATE MAJOR EVENT
...@@ -4254,6 +4254,7 @@ cursor_options: /*EMPTY*/ { $$ = 0; } ...@@ -4254,6 +4254,7 @@ cursor_options: /*EMPTY*/ { $$ = 0; }
opt_hold: /* EMPTY */ { $$ = FALSE; } opt_hold: /* EMPTY */ { $$ = FALSE; }
| WITH HOLD { $$ = TRUE; } | WITH HOLD { $$ = TRUE; }
| WITHOUT HOLD { $$ = FALSE; } | WITHOUT HOLD { $$ = FALSE; }
;
/***************************************************************************** /*****************************************************************************
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment