Commit b4e334b6 authored by Michael Meskes's avatar Michael Meskes

Synced parser with backend

parent c4439536
...@@ -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.
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.202 2002/11/15 15:47:44 meskes Exp $ */ /* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.203 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"); }
...@@ -2307,9 +2309,9 @@ CreateConversionStmt: ...@@ -2307,9 +2309,9 @@ 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"); }
; ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment