mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / jp / t / jp_create_db_utf8.test
blob2df5b9e1f6fa5e7af255409a4c5e1509fa67a8bf
1 --source include/have_utf8.inc
2 --disable_warnings
3 drop database if exists `ニホンゴ`;
4 drop database if exists `日本語`;
5 drop database if exists `龔龖龗`;
6 --enable_warnings
9 # Test Creating databases using Japanese charact for DB name in utf8 encoding
12 SET NAMES utf8;
13 SET character_set_database = utf8;
15 CREATE DATABASE `ニホンゴ`;
16 CREATE DATABASE `日本語`;
17 CREATE DATABASE `龔龖龗`;
19 SELECT schema_name from information_schema.schemata where schema_name <> 'mtr';
21 USE `ニホンゴ`;
22 USE `日本語`;
23 USE `龔龖龗`;
25 DROP DATABASE `ニホンゴ`;
26 DROP DATABASE `日本語`;
27 DROP DATABASE `龔龖龗`;