Commit
3bd6941f accidentally add "#include "pg_config_manual.h", which
should have been "#include parser/pg_config_manual.h". This caused to
include parser/pg_config_manual.h and pg_config_manual.h, which caused
compiler warning:
../src/include/parser/pg_config_manual.h:227:0: warning: "DEFAULT_PGSOCKET_DIR" redefined [enabled by default]
#define DEFAULT_PGSOCKET_DIR "/tmp"
If DEFAULT_PGSOCKET_DIR value was different among these header files.
Reported by: Peng Bo.
#include <signal.h>
#include <stdio.h>
-#include "pg_config_manual.h"
+#include "parser/pg_config_manual.h"
/*
* startup packet definitions (v2) stolen from PostgreSQL
#include "pool.h"
#include "pool_config.h"
-#include "pg_config_manual.h"
+#include "parser/pg_config_manual.h"
#include "rewrite/pool_timestamp.h"
#include "main/pool_internal_comms.h"
#include "protocol/pool_process_query.h"