blob: 190032aa0eae587539820ea30449f15f4487222f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* yt can not */
/* hybridfile can not */
/* dqfile can not */
use plato;
evaluate parallel for $i in [1,2,1,2,1] do begin
insert into Output
select $i as a;
end do;
commit;
insert into Output with truncate
select a from Output order by a;
|