diff options
| author | John Naylor | 2022-08-16 03:42:19 +0000 |
|---|---|---|
| committer | John Naylor | 2022-09-04 03:12:56 +0000 |
| commit | 1b188ea7921a7d4f6cc569541e32c980d2221f9d (patch) | |
| tree | b800750eb63e7898052eb88a3fec03d2dc707586 /src/include | |
| parent | 73b9d051c6076cf1cf1b90af505c8b379147c8b1 (diff) | |
Preparatory refactoring for compiling guc-file.c standalone
Mostly this involves moving ProcessConfigFileInternal() to guc.c
and fixing the shared API to match.
Reviewed by Andres Freund
Discussion: https://www.postgresql.org/message-id/20220810171935.7k5zgnjwqzalzmtm%40awork3.anarazel.de
Discussion: https://www.postgresql.org/message-id/CAFBsxsF8Gc2StS3haXofshHCzqNMRXiSxvQEYGwnFsTmsdwNeg@mail.gmail.com
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/utils/guc.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index e734493a484..aae071cd825 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -442,6 +442,15 @@ extern void GUC_check_errcode(int sqlerrcode); pre_format_elog_string(errno, TEXTDOMAIN), \ GUC_check_errhint_string = format_elog_string +/* functions shared between guc.c and guc-file.l */ +extern int guc_name_compare(const char *namea, const char *nameb); +extern ConfigVariable *ProcessConfigFileInternal(GucContext context, + bool applySettings, int elevel); +extern void record_config_file_error(const char *errmsg, + const char *config_file, + int lineno, + ConfigVariable **head_p, + ConfigVariable **tail_p); /* * The following functions are not in guc.c, but are declared here to avoid |
