1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/srvswdev11/test110/bug3838.sql
2016-01-06 14:08:59 -06:00

12 lines
321 B
SQL

drop table if exists tbug3838;
create table tbug3838(c1 int) engine=infinidb;
insert into tbug3838 values(1),(2),(3),(4);
select * from tbug3838;
select calshowpartitions('tbug3838', 'c1') into @x;
select @x;
select substr(@x, 80, 5) into @y;
select @y;
select caldroppartitions('tbug3838', @y);
select * from tbug3838;