summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-08-04 22:01:39 +0000
committerBruce Momjian <bruce@momjian.us>2001-08-04 22:01:39 +0000
commitd1c9633060fbb6c062e642e1b7e0d08bbd3d31ce (patch)
treeaa99ea3e580272a90172ee54c2834eceec32de39 /src/interfaces/ecpg
parenteb610fb8f1c2efe4f4dd454563598d4841a1b732 (diff)
Back out LOCK A,B,C patch at Tom's suggestion.
Diffstat (limited to 'src/interfaces/ecpg')
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index 09180f85c9c..88330ad3c1d 100644
--- a/src/interfaces/ecpg/preproc/preproc.y
+++ b/src/interfaces/ecpg/preproc/preproc.y
@@ -2421,7 +2421,7 @@ DeleteStmt: DELETE FROM relation_expr where_clause
}
;
-LockStmt: LOCK_P opt_table relation_name_list opt_lock
+LockStmt: LOCK_P opt_table relation_name opt_lock
{
$$ = cat_str(4, make_str("lock"), $2, $3, $4);
}