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

Commit 21e0321

Browse files
author
Michael Meskes
committed
*** empty log message ***
1 parent 20f0cfc commit 21e0321

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/interfaces/ecpg/ChangeLog

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -570,14 +570,17 @@ Sat Apr 24 12:39:07 CEST 1999
570570
- Allow more than one blank between EXEC and SQL.
571571
- Allow statements to be prepared from a character string, too.
572572

573-
Fri Mai 7 07:11:38 CEST 1999
573+
Fri May 7 07:11:38 CEST 1999
574574

575575
- Synced preproc.y with gram.y.
576576
- Fixed small bug in parser.
577577

578-
Thu Mai 13 13:51:26 CEST 1999
578+
Thu May 13 13:51:26 CEST 1999
579+
580+
- Synced preproc.y with gram.y.
581+
582+
Mon May 17 18:13:30 CEST 1999
579583

580584
- Synced preproc.y with gram.y.
581585
- Set library version to 3.0.0
582586
- Set ecpg version to 2.6.0
583-

src/interfaces/ecpg/preproc/preproc.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2687,7 +2687,7 @@ LockStmt: LOCK_P opt_table relation_name opt_lock
26872687
}
26882688
;
26892689

2690-
opt_lock: lock_type MODE { $$ = cat2_str($1, make1_str("mode")); }
2690+
opt_lock: IN lock_type MODE { $$ = cat3_str(make1_str("in"), $2, make1_str("mode")); }
26912691
| /*EMPTY*/ { $$ = make1_str("");}
26922692
;
26932693

0 commit comments

Comments
 (0)