github.com/matrixorigin/matrixone@v0.7.0/test/distributed/cases/tenant/clustertable4.sql (about) 1 use mo_catalog; 2 create cluster table t1(a int); 3 drop table if exists t1; 4 use information_schema; 5 create cluster table t1(a int); 6 use system; 7 create cluster table t1(a int); 8 use system_metrics; 9 create cluster table t1(a int); 10 use mysql; 11 create cluster table t1(a int); 12 use mo_task; 13 create cluster table t1(a int); 14 15 drop database if exists db1; 16 create database db1; 17 use db1; 18 create cluster table t1(a int); 19 drop database if exists db1;