Skip to content

Commit 5ec9dd8

Browse files
authored
Fixed 03413_experimental_settings_cannot_be_enabled_by_default.sql
Antalya-specific exception: allow_experimental_iceberg_read_optimization
1 parent c26c66f commit 5ec9dd8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/queries/0_stateless/03413_experimental_settings_cannot_be_enabled_by_default.sql

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
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_iceberg_read_optimization'
11+
);
812
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)