mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
Add a test for #25611
This commit is contained in:
parent
3b5468d4a4
commit
ccd2f915af
@ -0,0 +1,2 @@
|
||||
1 2
|
||||
3 4
|
8
tests/queries/0_stateless/01926_union_all_schmak.sql
Normal file
8
tests/queries/0_stateless/01926_union_all_schmak.sql
Normal file
@ -0,0 +1,8 @@
|
||||
SELECT * FROM (
|
||||
SELECT 1 AS a, 2 AS b FROM system.one
|
||||
JOIN system.one USING dummy
|
||||
UNION ALL
|
||||
SELECT 3 AS a, 4 AS b FROM system.one
|
||||
)
|
||||
WHERE a != 10
|
||||
ORDER BY a, b;
|
Loading…
Reference in New Issue
Block a user