aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/order_by/singular.sql
blob: 8c22ab69f6a25bd963e366faf97bb1ac34a5afd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* postgres can not */
/* syntax version 1 */
/* hybridfile can not YQL-17743 */
use plato;

insert into @foo
select void() as x,null as y,[] as z,{} as w
order by x,y,z,w;

commit;

select * from @foo;