Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 78aa616

Browse files
committed
1 parent 55392bc commit 78aa616

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/backend/parser/gram.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2284,7 +2284,7 @@ alter_table_cmd:
22842284
n->def = (Node *) $5;
22852285
$$ = (Node *)n;
22862286
}
2287-
/* ALTER TABLE <name> ALTER [COLUMN] <colname> RESET ( column_parameter = value [, ... ] ) */
2287+
/* ALTER TABLE <name> ALTER [COLUMN] <colname> RESET ( column_parameter [, ... ] ) */
22882288
| ALTER opt_column ColId RESET reloptions
22892289
{
22902290
AlterTableCmd *n = makeNode(AlterTableCmd);

src/backend/utils/adt/xid8funcs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ pg_current_xact_id(PG_FUNCTION_ARGS)
369369
}
370370

371371
/*
372-
* Same as pg_current_xact_if_assigned() but doesn't assign a new xid if there
372+
* Same as pg_current_xact_id() but doesn't assign a new xid if there
373373
* isn't one yet.
374374
*/
375375
Datum

0 commit comments

Comments
 (0)