github.com/matrixorigin/matrixone@v1.2.0/test/distributed/cases/table/drop_table.result (about)

     1  drop table if exists table01;
     2  create table table01(a int);
     3  drop table table01;
     4  show tables;
     5  tables_in_drop_table
     6  drop table if exists t1;
     7  create table t1(a int, b int, unique key(a));
     8  drop table if exists t1;
     9  create table t1(a int, b int, unique key(a));
    10  drop table if exists t1;
    11  create table t1(a int, b int, unique key(a, b));
    12  drop table if exists t1;
    13  create table t1(a int, b int, unique key(a, b));