blob: 25c2e59d97df5e8778e6b7cdb6ae1fe738ab7455 [file] [log] [blame]
explain plan for select * from (
-- simple predicate on a groupping column
select x, y, z from ( select a1, b1, avg(a1) from t1_v t1 group by a1, b1 ) as sq(x, y, z) where x = 10) t limit 0;