add test for issue-3290

This commit is contained in:
chertus 2019-02-11 22:39:11 +03:00
parent bbfd6c502c
commit a493f9ee7d
2 changed files with 8 additions and 0 deletions

View File

@ -5,3 +5,4 @@
12 11
0
1
123 456

View File

@ -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;