github.com/matrixorigin/matrixone@v0.7.0/test/distributed/cases/tenant/clustertable.result (about) 1 drop account if exists tenant_test; 2 create account tenant_test admin_name = 'root' identified by '111' open comment 'tenant_test'; 3 use mo_catalog; 4 drop table if exists a; 5 create cluster table a(a int); 6 insert into a accounts(sys,tenant_test) values(0),(1),(2),(3); 7 select a from a; 8 a 9 0 10 1 11 2 12 3 13 0 14 1 15 2 16 3 17 use mo_catalog; 18 select a from a; 19 a 20 0 21 1 22 2 23 3 24 drop account if exists tenant_test; 25 select a from a; 26 a 27 0 28 1 29 2 30 3 31 drop table if exists a; 32 drop account if exists tenant_test;