diff options
author | Tomas Vondra | 2017-01-22 19:11:37 +0000 |
---|---|---|
committer | Tomas Vondra | 2017-01-22 19:11:37 +0000 |
commit | 04e55244a0a50953c20adac585feda66bb39dfc6 (patch) | |
tree | 070511f032dfaf67a8a65560a7f698a53d9a2f6a | |
parent | c6f1dc34e84341b7b5ddaa082f162755edec727c (diff) |
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: ...
-rw-r--r-- | src/test/regress/pg_regress.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |