lookupjoin_inner_empty_subq.sql 218 B

123456789
  1. PRAGMA DisableSimpleColumns;
  2. use plato;
  3. pragma yt.LookupJoinLimit="64k";
  4. pragma yt.LookupJoinMaxRows="100";
  5. select * from Input1 as a
  6. inner join (select * from Input2 where k2 = "not_existent") as b on a.k1 = b.k2;