aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorDaniel Gustafsson <dgustafsson@postgresql.org>2023-03-24 09:03:31 +0100
committerDaniel Gustafsson <dgustafsson@postgresql.org>2023-03-24 09:03:31 +0100
commita04761ac77354930aebe7613b40bbdd749af5002 (patch)
treebb675645a54ca7481952f8acb3d46a59d8e7e218 /src/backend
parenta9bc04b21182cb6030e248a4055dc793e901ef6d (diff)
downloadpostgresql-a04761ac77354930aebe7613b40bbdd749af5002.tar.gz
postgresql-a04761ac77354930aebe7613b40bbdd749af5002.zip
Fix typo in header comment
Commit 4c04be9b0 accidentally left off the _id portion of the function name in the header comment. Author: Junwang Zhao <zhjwpku@gmail.com> Discussion: https://postgr.es/m/CAEG8a3LP+ytnAXSzR=yiEaQrde+iCybMHsuPn9n=UN3puV_1tw@mail.gmail.com
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/utils/adt/xid8funcs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/adt/xid8funcs.c b/src/backend/utils/adt/xid8funcs.c
index e616303a292..5d79f838a3e 100644
--- a/src/backend/utils/adt/xid8funcs.c
+++ b/src/backend/utils/adt/xid8funcs.c
@@ -10,9 +10,9 @@
* via functions such as SubTransGetTopmostTransaction().
*
* These functions are used to support the txid_XXX functions and the newer
- * pg_current_xact, pg_current_snapshot and related fmgr functions, since the
- * only difference between them is whether they expose xid8 or int8 values to
- * users. The txid_XXX variants should eventually be dropped.
+ * pg_current_xact_id, pg_current_snapshot and related fmgr functions, since
+ * the only difference between them is whether they expose xid8 or int8 values
+ * to users. The txid_XXX variants should eventually be dropped.
*
*
* Copyright (c) 2003-2023, PostgreSQL Global Development Group