mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added a test #2208
This commit is contained in:
parent
bf5763e525
commit
bc47a49d58
@ -0,0 +1,4 @@
|
||||
1
|
||||
2
|
||||
1
|
||||
2
|
14
dbms/tests/queries/0_stateless/00619_union_highlite.sql
Normal file
14
dbms/tests/queries/0_stateless/00619_union_highlite.sql
Normal file
@ -0,0 +1,14 @@
|
||||
USE test;
|
||||
|
||||
DROP TABLE IF EXISTS union;
|
||||
|
||||
create view union as select 1 as test union all select 2;
|
||||
|
||||
SELECT * FROM union ORDER BY test;
|
||||
|
||||
DETACH TABLE union;
|
||||
ATTACH TABLE union;
|
||||
|
||||
SELECT * FROM union ORDER BY test;
|
||||
|
||||
DROP TABLE union;
|
Loading…
Reference in New Issue
Block a user