提交 910bb20c 编写于 作者: V VadimPE

CLICKHOUSE-1660 add test

上级 db8e63ff
SET send_logs_level = 'none';
DROP TABLE IF EXISTS test.using1;
DROP TABLE IF EXISTS test.using2;
CREATE TABLE test.using1(a UInt8, b UInt8) ENGINE=Memory;
CREATE TABLE test.using2(a UInt8, b UInt8) ENGINE=Memory;
INSERT INTO test.using1 VALUES (1, 1) (2, 2) (3, 3);
INSERT INTO test.using2 VALUES (4, 4) (2, 2) (3, 3);
SELECT * FROM test.using1 ALL LEFT JOIN (SELECT * FROM test.using2) USING (a, a, a, b, b, b, a, a) ORDER BY a;
DROP TABLE test.using1;
DROP TABLE test.using2;
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册