diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2017-07-12 14:39:44 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2017-07-12 14:39:44 -0400 |
commit | 832d3dce5a3a5ca35f6861cb573bff7a6a8835dc (patch) | |
tree | f23ed58bb52cf12d505db3657c420cfd29414059 /src/test/modules/commit_ts | |
parent | 09c5988981668257705fb7a4f32f252876878f2d (diff) | |
download | postgresql-832d3dce5a3a5ca35f6861cb573bff7a6a8835dc.tar.gz postgresql-832d3dce5a3a5ca35f6861cb573bff7a6a8835dc.zip |
commit_ts test: Set node name in test
Otherwise, the script output has a lot of pointless warnings.
This was forgotten in 9def031bd2821f35b5f506260d922482648a8bb0
Diffstat (limited to 'src/test/modules/commit_ts')
-rw-r--r-- | src/test/modules/commit_ts/t/001_base.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/commit_ts/t/001_base.pl b/src/test/modules/commit_ts/t/001_base.pl index 427092cfc50..9290a85d89e 100644 --- a/src/test/modules/commit_ts/t/001_base.pl +++ b/src/test/modules/commit_ts/t/001_base.pl @@ -7,7 +7,7 @@ use TestLib; use Test::More tests => 2; use PostgresNode; -my $node = get_new_node(); +my $node = get_new_node('foxtrot'); $node->init; $node->append_conf('postgresql.conf', 'track_commit_timestamp = on'); $node->start; |