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

pragma CostBasedOptimizer="PG";

select i1.value, i2.value
from Input1 as i1
right join Input2 as i2 on i1.key=i2.key
order by i1.value, i2.value;