projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d867776
)
Add missing semicolon. Recent versions of bison seem to choke on this,
author
Tom Lane
<tgl@sss.pgh.pa.us>
Sun, 27 Nov 2005 01:22:36 +0000
(
01:22
+0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Sun, 27 Nov 2005 01:22:36 +0000
(
01:22
+0000)
per buildfarm report from platypus, even though older versions let it pass.
src/interfaces/ecpg/preproc/preproc.y
patch
|
blob
|
blame
|
history
diff --git
a/src/interfaces/ecpg/preproc/preproc.y
b/src/interfaces/ecpg/preproc/preproc.y
index c344b67b7834e03d50f42f10565a2aad80e589f7..c10af6739b04a403007b5f2c3789ab15d85bf7d7 100644
(file)
--- a/
src/interfaces/ecpg/preproc/preproc.y
+++ b/
src/interfaces/ecpg/preproc/preproc.y
@@
-3036,6
+3036,7
@@
DeleteStmt: DELETE_P FROM relation_expr using_clause where_clause
using_clause: USING from_list { cat2_str(make_str("using"), $2); }
| /* EMPTY */ { $$ = EMPTY; }
+ ;
LockStmt: LOCK_P opt_table qualified_name_list opt_lock opt_nowait
{ $$ = cat_str(5, make_str("lock"), $2, $3, $4, $5); }