aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/join/premap_common_inner.sql
blob: eab52d0662aaa5c7f1f1654ae6a15d0d4cc7115b (plain) (blame)
1
2
3
4
5
6
7
8
PRAGMA DisableSimpleColumns;
PRAGMA DisablePullUpFlatMapOverJoin;
use plato;

from (select key, subkey, 1 as value from Input1) as a
join Input2 as b using(key)
select a.key, a.subkey, a.value, b.value
order by a.key;