github.com/matrixorigin/matrixone@v1.2.0/test/distributed/cases/database/new_database.test (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 #create database test03 default character set utf8 collate utf8_general_ci encryption 'Y'; 10 #create database test04 character set=utf8 collate=utf8_general_ci encryption='N'; 11 show databases; 12 drop database if exists test01; 13 drop database if exists test03; 14 drop database if exists test04; 15 drop database if exists test05; 16 drop database if exists `测试数据库`; 17 drop database if exists `ABCDE`; 18 drop database if exists `abcde`; 19 drop database if exists db_with_no_tables_and_an_unrelated_file_in_data_directory; 20 create database `ABCDE`; 21 create database `abcde`; 22 create database db_with_no_tables_and_an_unrelated_file_in_data_directory; 23 show databases; 24 drop database `ABCDE`; 25 drop database `abcde`; 26 drop database db_with_no_tables_and_an_unrelated_file_in_data_directory;