mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
add test for #3495 (already fixed)
This commit is contained in:
parent
88f817a08b
commit
4d6757a7dc
@ -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
|
21
dbms/tests/queries/0_stateless/00874_issue_3495.sql
Normal file
21
dbms/tests/queries/0_stateless/00874_issue_3495.sql
Normal 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;
|
Loading…
Reference in New Issue
Block a user