File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -595,5 +595,9 @@ Thu Jun 10 21:09:12 CEST 1999
595
595
596
596
- Fixed typo in preproc.y.
597
597
- Synced pgc.l with scan.l.
598
+
599
+ Wed Jun 16 20:21:42 CEST 1999
600
+
601
+ - Fixed another typo in preproc.y.
598
602
- Set library version to 3.0.0
599
603
- Set ecpg version to 2.6.0
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ it would be nice to be able to use :var[:index] as cvariable
11
11
12
12
support for dynamic SQL with unknown number of variables with DESCRIPTORS
13
13
14
+ Allow INTO clause in cursor definition instead of FETCH clause. (Informix
15
+ does this, Oracle not. But does it work with standard syntax? Or is it even
16
+ standard?)
17
+
14
18
The line numbering is not exact.
15
19
16
20
Missing statements:
Original file line number Diff line number Diff line change @@ -2814,7 +2814,7 @@ select_clause: '(' select_clause ')'
2814
2814
}
2815
2815
| select_clause UNION opt_union select_clause
2816
2816
{
2817
- $$ = cat3_str ($1 , make1_str(" union" ), $3 );
2817
+ $$ = cat4_str ($1 , make1_str(" union" ), $3 , $4 );
2818
2818
ForUpdateNotAllowed = 1 ;
2819
2819
}
2820
2820
| select_clause INTERSECT opt_union select_clause
You can’t perform that action at this time.
0 commit comments