Fix Pg10+ function names

This commit is contained in:
Ian Barwick
2019-02-05 13:37:35 +09:00
parent 701944c194
commit f62b3b2868

View File

@@ -5018,7 +5018,7 @@ is_wal_replay_paused(PGconn *conn, bool check_pending_wal)
if (check_pending_wal == true)
{
appendPQExpBufferStr(&query,
" AND pg_catalog.pg_last_wal_replay_location() < pg_catalog.pg_last_wal_receive_location()");
" AND pg_catalog.pg_last_wal_replay_lsn() < pg_catalog.pg_last_wal_receive_lsn()");
}
}
else