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
fae180f4
Commit
fae180f4
authored
Oct 31, 2000
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added patch by Christof Petig <christof.petig@wtal.de> that fixes some bugs in preproc.y.
parent
9cbcbf0f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+5
-0
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+3
-3
No files found.
src/interfaces/ecpg/ChangeLog
View file @
fae180f4
...
@@ -999,5 +999,10 @@ Son Oct 29 11:26:06 CET 2000
...
@@ -999,5 +999,10 @@ Son Oct 29 11:26:06 CET 2000
Mon Oct 30 15:27:12 CET 2000
Mon Oct 30 15:27:12 CET 2000
- Synced gram.y and preproc.y.
- Synced gram.y and preproc.y.
Tue Oct 31 16:09:55 CET 2000
- Added patch by Christof Petig <christof.petig@wtal.de> fixing some
parser bugs.
- Set ecpg version to 2.8.0.
- Set ecpg version to 2.8.0.
- Set library version to 3.2.0.
- Set library version to 3.2.0.
src/interfaces/ecpg/preproc/preproc.y
View file @
fae180f4
...
@@ -2758,11 +2758,11 @@ table_ref: relation_expr
...
@@ -2758,11 +2758,11 @@ table_ref: relation_expr
}
}
| relation_expr alias_clause
| relation_expr alias_clause
{
{
cat2_str($1, $2);
$$=
cat2_str($1, $2);
}
}
| '(' select_subclause ')' alias_clause
| '(' select_subclause ')' alias_clause
{
{
cat_str(4, make_str("("), $2, make_str(")"), $4);
$$=
cat_str(4, make_str("("), $2, make_str(")"), $4);
}
}
| joined_table
| joined_table
{
{
...
@@ -2770,7 +2770,7 @@ table_ref: relation_expr
...
@@ -2770,7 +2770,7 @@ table_ref: relation_expr
}
}
| '(' joined_table ')' alias_clause
| '(' joined_table ')' alias_clause
{
{
cat_str(4, make_str("("), $2, make_str(")"), $4);
$$=
cat_str(4, make_str("("), $2, make_str(")"), $4);
}
}
;
;
...
...
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