From: Noah Misch Date: Tue, 14 Apr 2020 04:10:06 +0000 (-0700) Subject: Repair last commit's new wait_for_catchup() call. X-Git-Tag: REL_10_13~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aca51181baf9ec3ddcac6707bf6a6a5014f7543b;p=thirdparty%2Fpostgresql.git Repair last commit's new wait_for_catchup() call. The function had a different API in v10. Per buildfarm. --- diff --git a/src/test/recovery/t/010_logical_decoding_timelines.pl b/src/test/recovery/t/010_logical_decoding_timelines.pl index 7114aa7d967..bc9c0620d60 100644 --- a/src/test/recovery/t/010_logical_decoding_timelines.pl +++ b/src/test/recovery/t/010_logical_decoding_timelines.pl @@ -130,7 +130,8 @@ cmp_ok( 'xmin on physical slot must not be lower than catalog_xmin'); $node_master->safe_psql('postgres', 'CHECKPOINT'); -$node_master->wait_for_catchup($node_replica, 'write'); +$node_master->wait_for_catchup($node_replica, 'write', + $node_master->lsn('insert')); # Boom, crash $node_master->stop('immediate');