blob: 3b9f7443f74cd0b6f577f056e51bd254f2a2a908 [file] [log] [blame]
explain plan for select * from (
-- full outer join
select x, y, z from ( select t1.a1, t1.b1, avg(t1.a1) from t1_v t1 right outer join t3_v t3 on t1.c1 = t3.c3 group by t1.a1, t1.b1 ) as sq(x, y, z) where x=0) t limit 0;