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
d32b3aec
Commit
d32b3aec
authored
Feb 09, 2005
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug in parsing of CREATE AS statement.
parent
38efdc8b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+4
-0
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+2
-2
No files found.
src/interfaces/ecpg/ChangeLog
View file @
d32b3aec
...
...
@@ -1902,5 +1902,9 @@ Tue Jan 25 13:47:45 CET 2005
Wed Feb 2 16:35:27 CET 2005
- Fixed bug in parsing of #line statement in declare section.
Wed Feb 9 12:24:03 CET 2005
- Fixed bug in parsing of CREATE AS statement.
- Set ecpg version to 3.2.1.
src/interfaces/ecpg/preproc/preproc.y
View file @
d32b3aec
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.30
5 2005/02/02 15:37:43
meskes Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.30
6 2005/02/09 11:26:44
meskes Exp $ */
/* Copyright comment */
%{
...
...
@@ -1580,7 +1580,7 @@ CreateAsStmt: CREATE OptTemp TABLE qualified_name OptCreateAs WithOidsAs
if (FoundInto == 1)
mmerror(PARSE_ERROR, ET_ERROR, "CREATE TABLE / AS SELECT may not specify INTO");
$$ = cat_str(
8
, make_str("create"), $2, make_str("table"), $4, $5, $6, $8);
$$ = cat_str(
7
, make_str("create"), $2, make_str("table"), $4, $5, $6, $8);
}
;
...
...
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