Files
tidb/tests/integrationtest/t/show.test

9 lines
346 B
Plaintext

set tidb_cost_model_version=1;
# test show output field name
show tables like '%xx';
show databases like '%xx';
# test show TTL and Partition table
drop table if exists t;
create table t (id int, created_time datetime) TTL=created_time + interval 1 hour partition by range columns(id) (partition p1 values less than (100));
show create table t;