From 48b7935e2c14ea94d4d82728e4ceb477c7b23fc8 Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Thu, 16 May 2024 10:15:39 +1000 Subject: [PATCH v1] Always use true|false instead of on|off for boolean options. This is for consistency with the CREATE SUBSCRIPTION docs page. --- doc/src/sgml/ref/alter_subscription.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/ref/alter_subscription.sgml b/doc/src/sgml/ref/alter_subscription.sgml index a78c1c3..476f195 100644 --- a/doc/src/sgml/ref/alter_subscription.sgml +++ b/doc/src/sgml/ref/alter_subscription.sgml @@ -69,7 +69,7 @@ ALTER SUBSCRIPTION name RENAME TO < Commands ALTER SUBSCRIPTION ... REFRESH PUBLICATION, ALTER SUBSCRIPTION ... {SET|ADD|DROP} PUBLICATION ... with refresh option as true and - ALTER SUBSCRIPTION ... SET (failover = on|off) + ALTER SUBSCRIPTION ... SET (failover = true|false) cannot be executed inside a transaction block. These commands also cannot be executed when the subscription has -- 1.8.3.1