ClickHouse/tests/queries/0_stateless/01881_union_header_mismatch_bug.sql
Nikolai Kochetov 6a726ca8ed Update test.
2021-05-25 10:19:10 +03:00

31 lines
582 B
SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

select * from ( select 'table' as table, toInt64(10) as rows, toInt64(101) as elements union all select 'another table' as table, toInt64(0) as rows, toInt64(0) as elements ) where rows - elements <> 0;
SELECT
label,
number
FROM
(
SELECT
'a' AS label,
number
FROM
(
SELECT number
FROM numbers(10)
)
UNION ALL
SELECT
'b' AS label,
number
FROM
(
SELECT number
FROM numbers(10)
)
)
WHERE number IN
(
SELECT number
FROM numbers(5)
) order by label, number;