aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/EquiJoin/Bug2566.sql
blob: b12f694803627519be7ed4f6b073b01dad22e09d (plain) (blame)
1
2
3
4
5
use plato;
pragma yt.MapJoinLimit="1m";
$a = (select cast(key as Uint64) as key,subkey from Input1);
$b = (select cast(key as Uint32) as key,subkey from Input1);
select * from $a as a join $b as b on a.key = b.key;