Commit 21e03211 authored by Michael Meskes's avatar Michael Meskes

*** empty log message ***

parent 20f0cfc3
...@@ -570,14 +570,17 @@ Sat Apr 24 12:39:07 CEST 1999 ...@@ -570,14 +570,17 @@ Sat Apr 24 12:39:07 CEST 1999
- Allow more than one blank between EXEC and SQL. - Allow more than one blank between EXEC and SQL.
- Allow statements to be prepared from a character string, too. - Allow statements to be prepared from a character string, too.
Fri Mai 7 07:11:38 CEST 1999 Fri May 7 07:11:38 CEST 1999
- Synced preproc.y with gram.y. - Synced preproc.y with gram.y.
- Fixed small bug in parser. - Fixed small bug in parser.
Thu Mai 13 13:51:26 CEST 1999 Thu May 13 13:51:26 CEST 1999
- Synced preproc.y with gram.y.
Mon May 17 18:13:30 CEST 1999
- Synced preproc.y with gram.y. - Synced preproc.y with gram.y.
- Set library version to 3.0.0 - Set library version to 3.0.0
- Set ecpg version to 2.6.0 - Set ecpg version to 2.6.0
...@@ -2687,7 +2687,7 @@ LockStmt: LOCK_P opt_table relation_name opt_lock ...@@ -2687,7 +2687,7 @@ LockStmt: LOCK_P opt_table relation_name opt_lock
} }
; ;
opt_lock: lock_type MODE { $$ = cat2_str($1, make1_str("mode")); } opt_lock: IN lock_type MODE { $$ = cat3_str(make1_str("in"), $2, make1_str("mode")); }
| /*EMPTY*/ { $$ = make1_str("");} | /*EMPTY*/ { $$ = make1_str("");}
; ;
......
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