Skip to content

Commit 3fdd6a2

Browse files
authored
Added Antalya exceptions
1 parent 279de60 commit 3fdd6a2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/queries/0_stateless/03413_experimental_settings_cannot_be_enabled_by_default.sql

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,11 @@
44

55
-- However, some settings in the experimental tier are meant to control another experimental feature, and then they can be enabled as long as the feature itself is disabled.
66
-- These are in the exceptions list inside NOT IN.
7-
SELECT name, value FROM system.settings WHERE tier = 'Experimental' AND type = 'Bool' AND value != '0' AND name NOT IN ('throw_on_unsupported_query_inside_transaction');
7+
SELECT name, value FROM system.settings WHERE tier = 'Experimental' AND type = 'Bool' AND value != '0' AND name NOT IN (
8+
'throw_on_unsupported_query_inside_transaction',
9+
-- turned ON for Altinity Antalya builds specifically
10+
'allow_experimental_database_iceberg',
11+
'allow_experimental_database_unity_catalog',
12+
'allow_experimental_database_glue_catalog'
13+
);
814
SELECT name, value FROM system.merge_tree_settings WHERE tier = 'Experimental' AND type = 'Bool' AND value != '0' AND name NOT IN ('remove_rolled_back_parts_immediately');

0 commit comments

Comments
 (0)