aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/column_group/hint_anon.sql
blob: b1d85f2d157351d286d69f7e9a9f1fdf939c9187 (plain) (blame)
1
2
3
4
5
6
7
8
9
USE plato;

$i = select * from Input where a > "a";

select a,b,c,d from $i;
select c,d,e,f from $i;

-- Forces single group for $i
insert into @tmp select * from $i;