blob: 8502dad71ffea48913a4fcbd89058b99b76eaed1 (
plain) (
blame)
1
2
3
4
5
6
7
|
/* custom error:Insert with different "column_groups" to existing table is not allowed*/
USE plato;
pragma yt.ColumnGroupMode="perusage";
insert into Output with column_groups="{a=#}"
select * from Input where a != "";
|