From: Tomas Vondra Date: Sun, 22 Jan 2017 19:11:37 +0000 (+0100) Subject: add space at the end of log_line_prefix in pg_regress X-Git-Tag: XL_10_R1BETA1~408 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=04e55244a0a50953c20adac585feda66bb39dfc6;p=postgres-xl.git add space at the end of log_line_prefix in pg_regress The GUC was missing a space at the end, so the log lines looke like ...,global_session=coord1_8874STATEMENT: ... which is not particularly readable. With the fix it's ...,global_session=coord1_8874 STATEMENT: ... --- diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index 9cea3fc401..ee8bdd5382 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -846,7 +846,7 @@ set_node_config_file(PGXCNodeTypeNum node) * Set sequence_range to 1 for deterministic results */ fputs("sequence_range = 1\n", pg_conf); - fputs("log_line_prefix = \'\%t [\%p]:xid[\%x-\%v] remote=\%R,coord=\%C,global_session=\%S\'\n", pg_conf); + fputs("log_line_prefix = \'\%t [\%p]:xid[\%x-\%v] remote=\%R,coord=\%C,global_session=\%S \'\n", pg_conf); /* Set GTM connection information */ fputs("gtm_host = 'localhost'\n", pg_conf);