add test for #3495 (already fixed)

This commit is contained in:
chertus 2019-07-04 16:21:56 +03:00
parent 88f817a08b
commit 4d6757a7dc
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,6 @@
1 1.1 1.1
1 1.2 1.1
2 2.1 2.1
1 1.1 1.1
1 1.2 1.1
2 2.1 2.1

View File

@ -0,0 +1,21 @@
drop table if exists t;
create table t (a Int8, val Float32) engine = Memory();
insert into t values (1,1.1), (1,1.2), (2,2.1);
SET enable_optimize_predicate_expression = 0;
SELECT * FROM (
SELECT a, t1.val as val1, t2.val as val2
FROM t t1
ANY LEFT JOIN t t2 USING a
) ORDER BY val1;
SET enable_optimize_predicate_expression = 1;
SELECT * FROM (
SELECT a, t1.val as val1, t2.val as val2
FROM t t1
ANY LEFT JOIN t t2 USING a
) ORDER BY val1;
drop table t;