mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge pull request #25831 from ClickHouse/add-test-25611
Add a test for #25611
This commit is contained in:
commit
3ebe43583f
@ -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