# LogicTest: multiregion-15node-5region-3azs

statement ok
CREATE DATABASE db PRIMARY REGION "ca-central-1" REGIONS "ap-southeast-2", "us-east-1"

statement error pq: super regions are only supported experimentally\n.*HINT: You can enable super regions by running `SET enable_super_regions = 'on'`.
ALTER DATABASE db ADD SUPER REGION "test" VALUES "ca-central-1"

statement ok
SET enable_super_regions = 'on'

statement ok
ALTER DATABASE db ADD SUPER REGION "test" VALUES "ca-central-1"

statement ok
SET enable_super_regions = 'off'

statement error pq: super regions are only supported experimentally\n.*HINT: You can enable super regions by running `SET enable_super_regions = 'on'`.
ALTER DATABASE db ADD SUPER REGION "test" VALUES "ca-central-1"
