Skip to content

Commit c70db13

Browse files
author
Michael Meskes
committed
*** empty log message ***
1 parent 6f4bd30 commit c70db13

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

src/interfaces/ecpg/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -595,5 +595,9 @@ Thu Jun 10 21:09:12 CEST 1999
595595

596596
- Fixed typo in preproc.y.
597597
- Synced pgc.l with scan.l.
598+
599+
Wed Jun 16 20:21:42 CEST 1999
600+
601+
- Fixed another typo in preproc.y.
598602
- Set library version to 3.0.0
599603
- Set ecpg version to 2.6.0

src/interfaces/ecpg/TODO

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ it would be nice to be able to use :var[:index] as cvariable
1111

1212
support for dynamic SQL with unknown number of variables with DESCRIPTORS
1313

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+
1418
The line numbering is not exact.
1519

1620
Missing statements:

src/interfaces/ecpg/preproc/preproc.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2814,7 +2814,7 @@ select_clause: '(' select_clause ')'
28142814
}
28152815
| select_clause UNION opt_union select_clause
28162816
{
2817-
$$ = cat3_str($1, make1_str("union"), $3);
2817+
$$ = cat4_str($1, make1_str("union"), $3, $4);
28182818
ForUpdateNotAllowed = 1;
28192819
}
28202820
| select_clause INTERSECT opt_union select_clause

0 commit comments

Comments
 (0)