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:27:53 +1200 |
commit | 155c81463c26d908a1579b6d90e7b39b6f61df8b (patch) | |
tree | 79bd8f7350f89d63904a4e071fe15d8fdd1a24f1 /src/include/utils/guc_hooks.h | |
parent | 13e2665df3d01de5b0e039eb41b5e358e2b29ae5 (diff) |
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/include/utils/guc_hooks.h')
-rw-r--r-- | src/include/utils/guc_hooks.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/guc_hooks.h b/src/include/utils/guc_hooks.h index 2ecb9fc0866..952293a1c30 100644 --- a/src/include/utils/guc_hooks.h +++ b/src/include/utils/guc_hooks.h @@ -49,6 +49,8 @@ extern bool check_cluster_name(char **newval, void **extra, GucSource source); extern const char *show_data_directory_mode(void); extern bool check_datestyle(char **newval, void **extra, GucSource source); extern void assign_datestyle(const char *newval, void *extra); +extern bool check_debug_io_direct(char **newval, void **extra, GucSource source); +extern void assign_debug_io_direct(const char *newval, void *extra); extern bool check_default_table_access_method(char **newval, void **extra, GucSource source); extern bool check_default_tablespace(char **newval, void **extra, @@ -157,7 +159,5 @@ extern bool check_wal_consistency_checking(char **newval, void **extra, GucSource source); extern void assign_wal_consistency_checking(const char *newval, void *extra); extern void assign_xlog_sync_method(int new_sync_method, void *extra); -extern bool check_io_direct(char **newval, void **extra, GucSource source); -extern void assign_io_direct(const char *newval, void *extra); #endif /* GUC_HOOKS_H */ |