You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
7 lines
225 B
SQL
7 lines
225 B
SQL
use calpontsys;
|
|
select calonlinealter(
|
|
'alter table syscolumn add (compressiontype int)') as xxx;
|
|
alter table syscolumn add (compressiontype int);
|
|
update syscolumn set compressiontype=0 where compressiontype is null;
|
|
|