github.com/matrixorigin/matrixone@v1.2.0/test/distributed/cases/tenant/tenant.test (about) 1 set global enable_privilege_cache = off; 2 drop account if exists tenant_test; 3 create account tenant_test admin_name = 'root' identified by '111' open comment 'tenant_test'; 4 create account tenant_test admin_name = 'root' identified by '111' open comment 'tenant_test'; 5 create account if not exists tenant_test admin_name = 'root' identified by '111' open comment 'tenant_test'; 6 create account tenant_test admin_name = 'root' open comment 'tenant_test'; 7 -- @ignore:2,6,7 8 show accounts; 9 drop account if exists tenant_test; 10 select account_id,relname,relkind from mo_catalog.mo_tables where reldatabase = 'mo_catalog' and relname not like '__mo_index_unique__%' order by relname; 11 set global enable_privilege_cache = on;