mirror of
https://github.com/MariaDB/server.git
synced 2025-01-25 00:04:33 +01:00
888b665e6c
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
21 lines
477 B
Text
Executable file
21 lines
477 B
Text
Executable file
drop database if exists `ニホンゴ`;
|
|
drop database if exists `日本語`;
|
|
drop database if exists `龔龖龗`;
|
|
SET NAMES utf8;
|
|
SET character_set_database = utf8;
|
|
CREATE DATABASE `ニホンゴ`;
|
|
CREATE DATABASE `日本語`;
|
|
CREATE DATABASE `龔龖龗`;
|
|
SHOW DATABASES;
|
|
Database
|
|
mysql
|
|
test
|
|
日本語
|
|
龔龖龗
|
|
ニホンゴ
|
|
USE `ニホンゴ`;
|
|
USE `日本語`;
|
|
USE `龔龖龗`;
|
|
DROP DATABASE `ニホンゴ`;
|
|
DROP DATABASE `日本語`;
|
|
DROP DATABASE `龔龖龗`;
|