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
b4e334b6
Commit
b4e334b6
authored
Nov 27, 2002
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Synced parser with backend
parent
c4439536
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
6 deletions
+13
-6
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+5
-0
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+8
-6
No files found.
src/interfaces/ecpg/ChangeLog
View file @
b4e334b6
...
@@ -1314,3 +1314,8 @@ Thu Nov 7 10:34:07 CET 2002
...
@@ -1314,3 +1314,8 @@ Thu Nov 7 10:34:07 CET 2002
Fri Nov 15 16:46:08 CET 2002
Fri Nov 15 16:46:08 CET 2002
- Synced preproc.y with gram.y.
- Synced preproc.y with gram.y.
Wed Nov 27 09:28:54 CET 2002
- Synced preproc.y with gram.y.
src/interfaces/ecpg/preproc/preproc.y
View file @
b4e334b6
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.20
2 2002/11/15 15:47:44
meskes Exp $ */
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.20
3 2002/11/27 08:30:27
meskes Exp $ */
/* Copyright comment */
/* Copyright comment */
%{
%{
...
@@ -1089,7 +1089,7 @@ opt_using: USING { $$ = make_str("using"); }
...
@@ -1089,7 +1089,7 @@ opt_using: USING { $$ = make_str("using"); }
/*****************************************************************************
/*****************************************************************************
*
*
* QUERY :
* QUERY :
* CREATE relname
* CREATE
TABLE
relname
*
*
*****************************************************************************/
*****************************************************************************/
...
@@ -1444,6 +1444,8 @@ TriggerOneEvent: INSERT { $$ = make_str("insert"); }
...
@@ -1444,6 +1444,8 @@ TriggerOneEvent: INSERT { $$ = make_str("insert"); }
TriggerForSpec: FOR TriggerForOpt TriggerForType
TriggerForSpec: FOR TriggerForOpt TriggerForType
{ $$ = cat_str(3, make_str("for"), $2, $3); }
{ $$ = cat_str(3, make_str("for"), $2, $3); }
| /* EMPTY */
{ $$ = EMPTY; }
;
;
TriggerForOpt: EACH { $$ = make_str("each"); }
TriggerForOpt: EACH { $$ = make_str("each"); }
...
@@ -2309,7 +2311,7 @@ CreateConversionStmt:
...
@@ -2309,7 +2311,7 @@ CreateConversionStmt:
* QUERY:
* QUERY:
* cluster <index_name> on <qualified_name>
* cluster <index_name> on <qualified_name>
* cluster <qualified_name>
* cluster <qualified_name>
* cluster
ALL
* cluster
*
*
*****************************************************************************/
*****************************************************************************/
...
@@ -2317,8 +2319,8 @@ ClusterStmt: CLUSTER index_name ON qualified_name
...
@@ -2317,8 +2319,8 @@ ClusterStmt: CLUSTER index_name ON qualified_name
{ $$ = cat_str(4, make_str("cluster"), $2, make_str("on"), $4); }
{ $$ = cat_str(4, make_str("cluster"), $2, make_str("on"), $4); }
| CLUSTER qualified_name
| CLUSTER qualified_name
{ $$ = cat2_str(make_str("cluster"), $2); }
{ $$ = cat2_str(make_str("cluster"), $2); }
| CLUSTER
ALL
| CLUSTER
{ $$ = make_str("cluster
all
"); }
{ $$ = make_str("cluster"); }
;
;
...
...
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