blob: e962ccf194e84609130830620a1902205c3d9f84 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* custom error:Insert with different "column_groups" to existing table is not allowed*/
USE plato;
pragma yt.ColumnGroupMode="perusage";
$s1 = select * from Input where a != "";
$s2 = select * from Input where a > "a1";
insert into @a
select * from $s1;
commit;
insert into @a with column_groups="{a=#}"
select * from $s2;
|