mirror of
https://github.com/postgres/postgres.git
synced 2025-09-03 15:22:11 +03:00
Add support for include_dir in config file.
This allows easily splitting configuration into many files, deployed in a directory. Magnus Hagander, Greg Smith, Selena Deckelmann, reviewed by Noah Misch.
This commit is contained in:
@@ -116,6 +116,11 @@ extern bool ParseConfigFile(const char *config_file, const char *calling_file,
|
||||
extern bool ParseConfigFp(FILE *fp, const char *config_file,
|
||||
int depth, int elevel,
|
||||
ConfigVariable **head_p, ConfigVariable **tail_p);
|
||||
extern bool ParseConfigDirectory(const char *includedir,
|
||||
const char *calling_file,
|
||||
int depth, int elevel,
|
||||
ConfigVariable **head_p,
|
||||
ConfigVariable **tail_p);
|
||||
extern void FreeConfigVariables(ConfigVariable *list);
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user