diff --git a/src/test/regress/pg_regress_multi.pl b/src/test/regress/pg_regress_multi.pl index e7065bd29..1ffbb47d0 100755 --- a/src/test/regress/pg_regress_multi.pl +++ b/src/test/regress/pg_regress_multi.pl @@ -418,6 +418,15 @@ push(@pgOptions, "max_parallel_workers_per_gather=0"); # Allow CREATE SUBSCRIPTION to work push(@pgOptions, "wal_level='logical'"); +# Faster logical replication status update so tests with logical replication +# run faster +push(@pgOptions, "wal_receiver_status_interval=1"); + +# Faster logical replication apply worker launch so tests with logical +# replication run faster. This is used in ApplyLauncherMain in +# src/backend/replication/logical/launcher.c. +push(@pgOptions, "wal_retrieve_retry_interval=1000"); + # Citus options set for the tests push(@pgOptions, "citus.shard_count=4"); push(@pgOptions, "citus.shard_max_size=1500kB");