diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-08-22 14:12:45 +0200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2023-08-24 22:25:49 +1200 |
commit | 4f3514f201cf007a3e0c0abbf21b70a711269ab0 (patch) | |
tree | 3f4898b7926389aaef2cdbdc9e28a2905d58b64b /src/backend/utils/misc/guc_tables.c | |
parent | b575a26c66e438225f1c0f95ed8c5efc793d3a14 (diff) | |
download | postgresql-4f3514f201cf007a3e0c0abbf21b70a711269ab0.tar.gz postgresql-4f3514f201cf007a3e0c0abbf21b70a711269ab0.zip |
Rename hook functions for debug_io_direct to match variable name.
Commit 319bae9a renamed the GUC. Rename the check and assign functions
to match, and alphabetize.
Back-patch to 16.
Author: Peter Eisentraut <peter@eisentraut.org>
Discussion: https://postgr.es/m/2769341e-fa28-c2ee-3e4b-53fdcaaf2271%40eisentraut.org
Diffstat (limited to 'src/backend/utils/misc/guc_tables.c')
-rw-r--r-- | src/backend/utils/misc/guc_tables.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c index f9dba43b8c0..7e00dccb210 100644 --- a/src/backend/utils/misc/guc_tables.c +++ b/src/backend/utils/misc/guc_tables.c @@ -571,7 +571,7 @@ static char *datestyle_string; static char *server_encoding_string; static char *server_version_string; static int server_version_num; -static char *io_direct_string; +static char *debug_io_direct_string; #ifdef HAVE_SYSLOG #define DEFAULT_SYSLOG_FACILITY LOG_LOCAL0 @@ -4546,9 +4546,9 @@ struct config_string ConfigureNamesString[] = NULL, GUC_LIST_INPUT | GUC_NOT_IN_SAMPLE }, - &io_direct_string, + &debug_io_direct_string, "", - check_io_direct, assign_io_direct, NULL + check_debug_io_direct, assign_debug_io_direct, NULL }, /* End-of-list marker */ |