Fix typo in comments.
authorFujii Masao
Mon, 6 Sep 2021 08:03:40 +0000 (17:03 +0900)
committerFujii Masao
Mon, 6 Sep 2021 08:03:40 +0000 (17:03 +0900)
Author: Hou Zhijie
Discussion: https://postgr.es/m/OS0PR01MB5716E6A6535FDFDC5A1B004194CE9@OS0PR01MB5716.jpnprd01.prod.outlook.com

src/backend/parser/gram.y
src/backend/utils/adt/xid8funcs.c

index 39a2849eba3a87403a7f755a750b1103b1d60b66..ee52036a21e0a8725c8f3af61b9545f642203fa1 100644 (file)
@@ -2284,7 +2284,7 @@ alter_table_cmd:
                    n->def = (Node *) $5;
                    $$ = (Node *)n;
                }
-           /* ALTER TABLE  ALTER [COLUMN]  RESET ( column_parameter = value [, ... ] ) */
+           /* ALTER TABLE  ALTER [COLUMN]  RESET ( column_parameter [, ... ] ) */
            | ALTER opt_column ColId RESET reloptions
                {
                    AlterTableCmd *n = makeNode(AlterTableCmd);
index cc2b4ac7979a82efa4574d38dc39446054f47c76..f1870a73668c1d0d7d32c0c17ce2a2c2756e6928 100644 (file)
@@ -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.
  */
 Datum