We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent39ccbd6 commitdccdc8eCopy full SHA for dccdc8e
t/001_wal.pl
@@ -23,12 +23,12 @@ sub test_index_replay
23
if ($server_version < 100000)
24
{
25
$caughtup_query =
26
-"SELECT pg_current_xlog_location() <=write_location FROM pg_stat_replication WHERE application_name = '$applname';";
+"SELECT pg_current_xlog_location() <=replay_location FROM pg_stat_replication WHERE application_name = '$applname';";
27
}
28
else
29
30
31
-"SELECT pg_current_wal_lsn() <=write_lsn FROM pg_stat_replication WHERE application_name = '$applname';";
+"SELECT pg_current_wal_lsn() <=replay_lsn FROM pg_stat_replication WHERE application_name = '$applname';";
32
33
$node_master->poll_query_until('postgres',$caughtup_query)
34
ordie"Timed out while waiting for standby 1 to catch up";