Skip to content

Commit ab336b7

Browse files
committed
Fix 03413_experimental_settings_cannot_be_enabled_by_default
1 parent 8c3853f commit ab336b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/queries/0_stateless/03413_experimental_settings_cannot_be_enabled_by_default.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
SELECT name, value FROM system.settings WHERE tier = 'Experimental' AND type = 'Bool' AND value != '0' AND name NOT IN (
88
'throw_on_unsupported_query_inside_transaction',
99
-- turned ON for Altinity Antalya builds specifically
10-
'allow_experimental_iceberg_read_optimization'
10+
'allow_experimental_iceberg_read_optimization',
11+
'allow_experimental_export_merge_tree_part',
1112
);
1213
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)