Files
tidb/tests/integrationtest/t/executor/split_table.test

10 lines
389 B
Plaintext

# TestSplitRegionEdgeCase
drop table if exists t;
create table t(a bigint(20) auto_increment primary key);
split table t between (-9223372036854775808) and (9223372036854775807) regions 16;
drop table if exists t;
create table t(a int(20) auto_increment primary key);
-- error 1690
split table t between (-9223372036854775808) and (9223372036854775807) regions 16;
drop table if exists t;