Added test.

This commit is contained in:
Nikolai Kochetov 2020-03-23 15:48:10 +03:00
parent d0067afa1f
commit 0b9c53ac7d
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
select * from system.one t1
join system.one t2
on t1.dummy = t2.dummy
limit 0
FORMAT TabSeparated;
select * from system.one t1
join system.one t2
on t1.dummy = t2.dummy
where t2.dummy > 0
FORMAT TabSeparated;