github.com/matrixorigin/matrixone@v0.7.0/test/distributed/cases/database/new_database.result (about) 1 drop database if exists test01; 2 drop database if exists test03; 3 drop database if exists test04; 4 drop database if exists test05; 5 drop database if exists `测试数据库`; 6 create database test01; 7 create database IF NOT EXISTS test01; 8 create database `测试数据库`; 9 show databases; 10 Database 11 mo_task 12 mo_catalog 13 system 14 system_metrics 15 mysql 16 information_schema 17 new_database 18 test01 19 测试数据库 20 drop database if exists test01; 21 drop database if exists test03; 22 drop database if exists test04; 23 drop database if exists test05; 24 drop database if exists `测试数据库`; 25 drop database if exists `ABCDE`; 26 drop database if exists `abcde`; 27 drop database if exists db_with_no_tables_and_an_unrelated_file_in_data_directory; 28 create database `ABCDE`; 29 create database `abcde`; 30 create database db_with_no_tables_and_an_unrelated_file_in_data_directory; 31 show databases; 32 Database 33 mo_task 34 mo_catalog 35 system 36 system_metrics 37 mysql 38 information_schema 39 new_database 40 ABCDE 41 abcde 42 db_with_no_tables_and_an_unrelated_file_in_data_directory 43 drop database `ABCDE`; 44 drop database `abcde`; 45 drop database db_with_no_tables_and_an_unrelated_file_in_data_directory;