summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/insert/append_sorted.yql
blob: cefc49445303ce8bd6dead73f4bc3f401666cd99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* multirun can not */

insert into plato.Output1
select * from plato.Input order by key;

insert into plato.Output2
select * from plato.Input order by key, subkey;

insert into plato.Output3
select * from plato.Input order by key, subkey, value;

insert into plato.Output4
select * from plato.Input;

insert into plato.Output5
select * from plato.Input order by subkey;

insert into plato.Output6
select * from plato.Input order by key desc;

insert into plato.Output7
select * from plato.Input order by key desc, subkey;

insert into plato.Output8
select * from plato.Input order by key || subkey;