diff options
| author | Alvaro Herrera | 2023-02-13 10:52:19 +0000 |
|---|---|---|
| committer | Alvaro Herrera | 2023-02-13 10:52:19 +0000 |
| commit | a1acdacada4aaeb233d819f519d16a9eb85a6eef (patch) | |
| tree | 34d25d2d80d2c33b0adea841ff0c06c655f35d9e /src/test/modules | |
| parent | ec5a010ab25bf40012fde78b34724971e38e08a4 (diff) | |
Add wait_for_replay_catchup wrapper to Cluster.pm
This simplifies a few lines of Perl test code a bit.
Author: Bertrand Drouvot
Discussion: https://postgr.es/m/846724b5-0723-f4c2-8b13-75301ec7509e@gmail.com
Diffstat (limited to 'src/test/modules')
| -rw-r--r-- | src/test/modules/brin/t/02_wal_consistency.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/brin/t/02_wal_consistency.pl b/src/test/modules/brin/t/02_wal_consistency.pl index 5983ef208e6..8b2b244feb9 100644 --- a/src/test/modules/brin/t/02_wal_consistency.pl +++ b/src/test/modules/brin/t/02_wal_consistency.pl @@ -70,6 +70,6 @@ my ($ret, $out, $err) = $whiskey->psql( }); cmp_ok($out, '>=', 1); -$whiskey->wait_for_catchup($charlie, 'replay', $whiskey->lsn('insert')); +$whiskey->wait_for_replay_catchup($charlie); done_testing(); |
