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

     1  -- @suite
     2  -- @setup
     3  drop table if exists table01;
     4  create table table01(a int);
     5  
     6  -- @case
     7  -- @desc:test for drop table
     8  -- @label:bvt
     9  drop table table01;
    10  show tables;
    11  -- @bvt:issue#5790
    12  drop table if exists t1;
    13  create table t1(a int, b int, unique key(a));
    14  drop table if exists t1;
    15  create table t1(a int, b int, unique key(a));
    16  drop table if exists t1;
    17  create table t1(a int, b int, unique key(a, b));
    18  drop table if exists t1;
    19  create table t1(a int, b int, unique key(a, b));
    20  -- @bvt:issue