1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Use GUC lexer for recovery.conf parsing.

This eliminates some crufty, special-purpose code and, as a non-trivial
side benefit, allows recovery.conf parameters to be unquoted.

Dimitri Fontaine, with review and cleanup by Alvaro Herrera, Itagaki
Takahiro, and me.
This commit is contained in:
Robert Haas
2010-12-03 08:44:15 -05:00
parent 9cea52a5a3
commit 970a18687f
4 changed files with 135 additions and 209 deletions

View File

@ -389,6 +389,7 @@ int trace_recovery_messages = LOG;
int num_temp_buffers = 1000;
char *data_directory;
char *ConfigFileName;
char *HbaFileName;
char *IdentFileName;
@ -426,7 +427,6 @@ static char *timezone_string;
static char *log_timezone_string;
static char *timezone_abbreviations_string;
static char *XactIsoLevel_string;
static char *data_directory;
static char *custom_variable_classes;
static int max_function_args;
static int max_index_keys;