aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_rewind/t/005_same_timeline.pl
blob: 0e334ee191aa24f919d2202b8f06eee0c3724642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use warnings;
use TestLib;
use Test::More tests => 1;

use RewindTest;

# Test that running pg_rewind if the two clusters are on the same
# timeline runs successfully.

RewindTest::setup_cluster();
RewindTest::start_master();
RewindTest::create_standby();
RewindTest::run_pg_rewind('local');
RewindTest::clean_rewind_test();
exit(0);