mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
18609a1e99
I have put the tests into a separate "suite", the first one actually. Currently this can only be run by the Perl version of mysql-test-run that is not quite finished. It should, or at least will, be able to be run with the line ./mysql-test-run.pl --suite=jp
22 lines
470 B
Text
Executable file
22 lines
470 B
Text
Executable file
drop database if exists `ニホンゴ`;
|
|
drop database if exists `日本語`;
|
|
drop database if exists `龔龖龗`;
|
|
SET NAMES ujis;
|
|
SET character_set_database = ucs2;
|
|
SET character_set_server = ucs2;
|
|
CREATE DATABASE `ニホンゴ`;
|
|
CREATE DATABASE `日本語`;
|
|
CREATE DATABASE `龔龖龗`;
|
|
SHOW DATABASES;
|
|
Database
|
|
mysql
|
|
test
|
|
日本語
|
|
龔龖龗
|
|
ニホンゴ
|
|
USE `ニホンゴ`;
|
|
USE `日本語`;
|
|
USE `龔龖龗`;
|
|
DROP DATABASE `ニホンゴ`;
|
|
DROP DATABASE `日本語`;
|
|
DROP DATABASE `龔龖龗`;
|