Fujii Masao 4 years ago
parent 55392bc5b0
commit 78aa616be7
  1. 2
      src/backend/parser/gram.y
  2. 2
      src/backend/utils/adt/xid8funcs.c

@ -2284,7 +2284,7 @@ alter_table_cmd:
n->def = (Node *) $5; n->def = (Node *) $5;
$$ = (Node *)n; $$ = (Node *)n;
} }
/* ALTER TABLE <name> ALTER [COLUMN] <colname> RESET ( column_parameter = value [, ... ] ) */ /* ALTER TABLE <name> ALTER [COLUMN] <colname> RESET ( column_parameter [, ... ] ) */
| ALTER opt_column ColId RESET reloptions | ALTER opt_column ColId RESET reloptions
{ {
AlterTableCmd *n = makeNode(AlterTableCmd); AlterTableCmd *n = makeNode(AlterTableCmd);

@ -369,7 +369,7 @@ pg_current_xact_id(PG_FUNCTION_ARGS)
} }
/* /*
* Same as pg_current_xact_if_assigned() but doesn't assign a new xid if there * Same as pg_current_xact_id() but doesn't assign a new xid if there
* isn't one yet. * isn't one yet.
*/ */
Datum Datum

Loading…
Cancel
Save