Commit f2c7ce64 authored by Peter Eisentraut's avatar Peter Eisentraut

Trim some extra whitespace in parser file

parent 91d1f2d3
...@@ -2425,7 +2425,7 @@ alter_table_cmd: ...@@ -2425,7 +2425,7 @@ alter_table_cmd:
n->missing_ok = false; n->missing_ok = false;
$$ = (Node *)n; $$ = (Node *)n;
} }
/* ALTER TABLE <name> SET WITHOUT OIDS, for backward compat */ /* ALTER TABLE <name> SET WITHOUT OIDS, for backward compat */
| SET WITHOUT OIDS | SET WITHOUT OIDS
{ {
AlterTableCmd *n = makeNode(AlterTableCmd); AlterTableCmd *n = makeNode(AlterTableCmd);
...@@ -2448,14 +2448,14 @@ alter_table_cmd: ...@@ -2448,14 +2448,14 @@ alter_table_cmd:
n->name = NULL; n->name = NULL;
$$ = (Node *)n; $$ = (Node *)n;
} }
/* ALTER TABLE <name> SET LOGGED */ /* ALTER TABLE <name> SET LOGGED */
| SET LOGGED | SET LOGGED
{ {
AlterTableCmd *n = makeNode(AlterTableCmd); AlterTableCmd *n = makeNode(AlterTableCmd);
n->subtype = AT_SetLogged; n->subtype = AT_SetLogged;
$$ = (Node *)n; $$ = (Node *)n;
} }
/* ALTER TABLE <name> SET UNLOGGED */ /* ALTER TABLE <name> SET UNLOGGED */
| SET UNLOGGED | SET UNLOGGED
{ {
AlterTableCmd *n = makeNode(AlterTableCmd); AlterTableCmd *n = makeNode(AlterTableCmd);
...@@ -2619,7 +2619,7 @@ alter_table_cmd: ...@@ -2619,7 +2619,7 @@ alter_table_cmd:
n->def = (Node *)$2; n->def = (Node *)$2;
$$ = (Node *)n; $$ = (Node *)n;
} }
/* ALTER TABLE <name> REPLICA IDENTITY */ /* ALTER TABLE <name> REPLICA IDENTITY */
| REPLICA IDENTITY_P replica_identity | REPLICA IDENTITY_P replica_identity
{ {
AlterTableCmd *n = makeNode(AlterTableCmd); AlterTableCmd *n = makeNode(AlterTableCmd);
...@@ -3837,7 +3837,7 @@ ConstraintElem: ...@@ -3837,7 +3837,7 @@ ConstraintElem:
$$ = (Node *)n; $$ = (Node *)n;
} }
| EXCLUDE access_method_clause '(' ExclusionConstraintList ')' | EXCLUDE access_method_clause '(' ExclusionConstraintList ')'
opt_c_include opt_definition OptConsTableSpace OptWhereClause opt_c_include opt_definition OptConsTableSpace OptWhereClause
ConstraintAttributeSpec ConstraintAttributeSpec
{ {
Constraint *n = makeNode(Constraint); Constraint *n = makeNode(Constraint);
...@@ -5310,8 +5310,8 @@ CreateTrigStmt: ...@@ -5310,8 +5310,8 @@ CreateTrigStmt:
n->columns = (List *) lsecond($6); n->columns = (List *) lsecond($6);
n->whenClause = $11; n->whenClause = $11;
n->transitionRels = $9; n->transitionRels = $9;
n->deferrable = false; n->deferrable = false;
n->initdeferred = false; n->initdeferred = false;
n->constrrel = NULL; n->constrrel = NULL;
$$ = (Node *)n; $$ = (Node *)n;
} }
......
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