Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
c70db132
Commit
c70db132
authored
Jun 16, 1999
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
6f4bd30c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+4
-0
src/interfaces/ecpg/TODO
src/interfaces/ecpg/TODO
+4
-0
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+1
-1
No files found.
src/interfaces/ecpg/ChangeLog
View file @
c70db132
...
...
@@ -595,5 +595,9 @@ Thu Jun 10 21:09:12 CEST 1999
- Fixed typo in preproc.y.
- Synced pgc.l with scan.l.
Wed Jun 16 20:21:42 CEST 1999
- Fixed another typo in preproc.y.
- Set library version to 3.0.0
- Set ecpg version to 2.6.0
src/interfaces/ecpg/TODO
View file @
c70db132
...
...
@@ -11,6 +11,10 @@ it would be nice to be able to use :var[:index] as cvariable
support for dynamic SQL with unknown number of variables with DESCRIPTORS
Allow INTO clause in cursor definition instead of FETCH clause. (Informix
does this, Oracle not. But does it work with standard syntax? Or is it even
standard?)
The line numbering is not exact.
Missing statements:
...
...
src/interfaces/ecpg/preproc/preproc.y
View file @
c70db132
...
...
@@ -2814,7 +2814,7 @@ select_clause: '(' select_clause ')'
}
| select_clause UNION opt_union select_clause
{
$$ = cat
3_str($1, make1_str("union"), $3
);
$$ = cat
4_str($1, make1_str("union"), $3, $4
);
ForUpdateNotAllowed = 1;
}
| select_clause INTERSECT opt_union select_clause
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment