Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1b68a88

Browse files
committed
Add missing semicolon. Recent versions of bison seem to choke on this,
per buildfarm report from platypus, even though older versions let it pass.
1 parent da27c0a commit 1b68a88

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/interfaces/ecpg/preproc/preproc.y

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.311 2005/10/04 13:28:21 meskes Exp $ */
1+
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.312 2005/11/27 01:22:23 tgl Exp $ */
22

33
/* Copyright comment */
44
%{
@@ -3036,6 +3036,7 @@ DeleteStmt: DELETE_P FROM relation_expr using_clause where_clause
30363036

30373037
using_clause: USING from_list { cat2_str(make_str("using"), $2); }
30383038
| /* EMPTY */ { $$ = EMPTY; }
3039+
;
30393040

30403041
LockStmt: LOCK_P opt_table qualified_name_list opt_lock opt_nowait
30413042
{ $$ = cat_str(5, make_str("lock"), $2, $3, $4, $5); }

0 commit comments

Comments
 (0)