mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
add test for issue-3290
This commit is contained in:
parent
bbfd6c502c
commit
a493f9ee7d
@ -5,3 +5,4 @@
|
||||
12 11
|
||||
0
|
||||
1
|
||||
123 456
|
||||
|
@ -6,3 +6,10 @@ select s.a + 2 as b, s.a + 1 as a from (select 10 as a) s;
|
||||
|
||||
SELECT 0 as t FROM (SELECT 1 as t) as inn WHERE inn.t = 1;
|
||||
SELECT sum(value) as value FROM (SELECT 1 as value) as data WHERE data.value > 0;
|
||||
|
||||
USE test;
|
||||
DROP TABLE IF EXISTS test;
|
||||
CREATE TABLE test (field String, not_field String) ENGINE = Memory;
|
||||
INSERT INTO test (field, not_field) VALUES ('123', '456')
|
||||
SELECT test.field AS other_field, test.not_field AS field FROM test;
|
||||
DROP TABLE test;
|
||||
|
Loading…
Reference in New Issue
Block a user