Logical Replication extension for PostgreSQL 17, 16, 15, 14, 13, 12, 11, 10, 9.6, 9.5, 9.4 (Postgres), providing much faster replication than Slony, Bucardo or Londiste, as well as cross-version upgrades.
There was an oversight in commit de737f787e7 that enables failover option if the version is 17. An existing code checks if there is a function named pg_create_logical_replication_slotwith an argument "failover". There wasn't such function in Postgres until 17 so it never adds the failover option. Remove this test for Postgres.
There was an oversight in commit de737f787e7 that enables
failover
option if the version is 17. An existing code checks if there is a function namedpg_create_logical_replication_slot
with an argument "failover". There wasn't such function in Postgres until 17 so it never adds thefailover
option. Remove this test for Postgres.