Run tests without new analyzer

This commit is contained in:
Alejandro 2024-08-30 08:59:27 +01:00
parent 36725fb5e1
commit aeaaef4347

View File

@ -1,6 +1,9 @@
set allow_experimental_variant_type=1;
set use_variant_as_common_type=1;
-- This test should be run with allow_experimental_analyzer=0, because it checks the behavior of the old analyzer.
set allow_experimental_analyzer=0;
select toTypeName(res), if(1, [1,2,3], 'str_1') as res;
select toTypeName(res), if(1, [1,2,3], 'str_1'::Nullable(String)) as res;