mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Trim some extra whitespace in parser file
This commit is contained in:
@@ -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:
|
|||||||
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:
|
|||||||
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:
|
|||||||
$$ = (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:
|
|||||||
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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user