File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -570,14 +570,17 @@ Sat Apr 24 12:39:07 CEST 1999
570
570
- Allow more than one blank between EXEC and SQL.
571
571
- Allow statements to be prepared from a character string, too.
572
572
573
- Fri Mai 7 07:11:38 CEST 1999
573
+ Fri May 7 07:11:38 CEST 1999
574
574
575
575
- Synced preproc.y with gram.y.
576
576
- Fixed small bug in parser.
577
577
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
579
583
580
584
- Synced preproc.y with gram.y.
581
585
- Set library version to 3.0.0
582
586
- Set ecpg version to 2.6.0
583
-
Original file line number Diff line number Diff line change @@ -2687,7 +2687,7 @@ LockStmt: LOCK_P opt_table relation_name opt_lock
2687
2687
}
2688
2688
;
2689
2689
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" )); }
2691
2691
| /* EMPTY*/ { $$ = make1_str(" " );}
2692
2692
;
2693
2693
You can’t perform that action at this time.
0 commit comments