v9-0003-Add-quotes-for-GUCs-real.patch
application/octet-stream
Filename: v9-0003-Add-quotes-for-GUCs-real.patch
Type: application/octet-stream
Part: 2
Message:
Re: GUC names in messages
Patch
Format: format-patch
Series: patch v9-0003
Subject: Add quotes for GUCs - real
| File | + | − |
|---|---|---|
| src/backend/utils/misc/guc_tables.c | 1 | 1 |
From 0991eb9ac8f1c95ea7ea322081171471f9f6b4cc Mon Sep 17 00:00:00 2001
From: Peter Smith <peter.b.smith@fujitsu.com>
Date: Tue, 20 Aug 2024 15:36:35 +1000
Subject: [PATCH v9] Add quotes for GUCs - real
---
src/backend/utils/misc/guc_tables.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c
index 039696e..6c39fc2 100644
--- a/src/backend/utils/misc/guc_tables.c
+++ b/src/backend/utils/misc/guc_tables.c
@@ -3068,7 +3068,7 @@ struct config_int ConfigureNamesInt[] =
{"log_min_duration_sample", PGC_SUSET, LOGGING_WHEN,
gettext_noop("Sets the minimum execution time above which "
"a sample of statements will be logged."
- " Sampling is determined by log_statement_sample_rate."),
+ " Sampling is determined by \"log_statement_sample_rate\"."),
gettext_noop("Zero logs a sample of all queries. -1 turns this feature off."),
GUC_UNIT_MS
},
--
1.8.3.1