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
a1b33667
Commit
a1b33667
authored
Jul 25, 2007
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Synced parser
parent
906b2e1b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+4
-0
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+5
-1
No files found.
src/interfaces/ecpg/ChangeLog
View file @
a1b33667
...
@@ -2211,5 +2211,9 @@ Mon, 11 Jun 2007 13:59:57 +0200
...
@@ -2211,5 +2211,9 @@ Mon, 11 Jun 2007 13:59:57 +0200
Tue, 12 Jun 2007 09:46:03 +0200
Tue, 12 Jun 2007 09:46:03 +0200
- Synced parser and keyword list.
- Synced parser and keyword list.
Wed, 25 Jul 2007 15:34:54 +0200
- Synced parser.
- Set ecpg library version to 5.3.
- Set ecpg library version to 5.3.
- Set ecpg version to 4.3.1.
- Set ecpg version to 4.3.1.
src/interfaces/ecpg/preproc/preproc.y
View file @
a1b33667
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.34
7 2007/06/12 11:32:30
meskes Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.34
8 2007/07/25 16:10:41
meskes Exp $ */
/* Copyright comment */
/* Copyright comment */
%{
%{
...
@@ -2735,6 +2735,10 @@ RenameStmt: ALTER AGGREGATE func_name aggr_args RENAME TO name
...
@@ -2735,6 +2735,10 @@ RenameStmt: ALTER AGGREGATE func_name aggr_args RENAME TO name
{ $$ = cat_str(4, make_str("alter schema"), $3, make_str("rename to"), $6); }
{ $$ = cat_str(4, make_str("alter schema"), $3, make_str("rename to"), $6); }
| ALTER TABLE relation_expr RENAME TO name
| ALTER TABLE relation_expr RENAME TO name
{ $$ = cat_str(4, make_str("alter table"), $3, make_str("rename to"), $6); }
{ $$ = cat_str(4, make_str("alter table"), $3, make_str("rename to"), $6); }
| ALTER SEQUENCE relation_expr RENAME TO name
{ $$ = cat_str(4, make_str("alter sequence"), $3, make_str("rename to"), $6); }
| ALTER VIEW relation_expr RENAME TO name
{ $$ = cat_str(4, make_str("alter view"), $3, make_str("rename to"), $6); }
| ALTER INDEX relation_expr RENAME TO name
| ALTER INDEX relation_expr RENAME TO name
{ $$ = cat_str(4, make_str("alter index"), $3, make_str("rename to"), $6); }
{ $$ = cat_str(4, make_str("alter index"), $3, make_str("rename to"), $6); }
| ALTER TABLE relation_expr RENAME opt_column name TO name
| ALTER TABLE relation_expr RENAME opt_column name TO name
...
...
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