blob: afbfb0757bcf64ccc0b86c3f416b248cd38a681b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
PRAGMA DisableSimpleColumns;
use plato;
pragma yt.LookupJoinLimit="64k";
pragma yt.LookupJoinMaxRows="100";
select * from Input1 as a
inner join (select * from Input2 where k2 = "not_existent") as b on a.k1 = b.k2;
|