blob: bf28d294321ef68a15f29da31c4c71d2ac0a3a14 [file] [log] [blame]
--! qt:dataset:src
create table if not exists test_boolean(dummy tinyint);
insert overwrite table test_boolean select 1 from src tablesample (1 rows);
SELECT 1
FROM (
SELECT TRUE AS flag
FROM test_boolean
) a
WHERE flag;