You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-15 22:22:17 +03:00
7 lines
222 B
SQL
7 lines
222 B
SQL
drop table if exists bug5328;
|
|
create table bug5328 (c1 int) engine=infinidb;
|
|
insert into bug5328 values (-1);
|
|
select * from bug5328;
|
|
select caldroppartitionsbyvalue('bug5328','c1','-1','-1');
|
|
drop table if exists bug5328;
|