v10-0002-Add-quotes-for-GUCs-real.patch
application/octet-stream
Filename: v10-0002-Add-quotes-for-GUCs-real.patch
Type: application/octet-stream
Part: 3
Message:
Re: GUC names in messages
Patch
Format: format-patch
Series: patch v10-0002
Subject: Add quotes for GUCs - real
| File | + | − |
|---|---|---|
| src/backend/utils/misc/guc_tables.c | 1 | 1 |
From 552b34bf62282e9591ec20e987d93b1efb6a6968 Mon Sep 17 00:00:00 2001
From: Peter Smith <peter.b.smith@fujitsu.com>
Date: Tue, 3 Sep 2024 09:26:14 +1000
Subject: [PATCH v10] 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 a414828..686309d 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