aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander Korotkov <akorotkov@postgresql.org>2024-02-25 20:30:17 +0200
committerAlexander Korotkov <akorotkov@postgresql.org>2024-02-25 20:30:17 +0200
commit28e858c0f951a5f86f43ba9b8922c64bba96d2e1 (patch)
tree3aa637cfb0dcab1dae5bdcfea0f48133156241b1 /src
parenta661bf7b0f56dd8bc298309de9937081ef485370 (diff)
downloadpostgresql-28e858c0f951a5f86f43ba9b8922c64bba96d2e1.tar.gz
postgresql-28e858c0f951a5f86f43ba9b8922c64bba96d2e1.zip
Improve documentation and GUC description for transaction_timeout
Reported-by: Alexander Lakhin
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/misc/guc_tables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c
index 37be0669bba..527a2b27340 100644
--- a/src/backend/utils/misc/guc_tables.c
+++ b/src/backend/utils/misc/guc_tables.c
@@ -2589,7 +2589,7 @@ struct config_int ConfigureNamesInt[] =
{
{"transaction_timeout", PGC_USERSET, CLIENT_CONN_STATEMENT,
- gettext_noop("Sets the maximum allowed time in a transaction with a session (not a prepared transaction)."),
+ gettext_noop("Sets the maximum allowed duration of any transaction within a session (not a prepared transaction)."),
gettext_noop("A value of 0 turns off the timeout."),
GUC_UNIT_MS
},