~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/suite/jp/t/jp_create_db_utf8.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--disable_warnings
 
2
drop database if exists `ニホンゴ`;
 
3
drop database if exists `日本語`;
 
4
drop database if exists `龔龖龗`;
 
5
--enable_warnings
 
6
 
 
7
#
 
8
# Test Creating databases using Japanese charact for DB name in utf8 encoding
 
9
#
 
10
 
 
11
SET NAMES utf8;
 
12
SET character_set_database = utf8;
 
13
 
 
14
CREATE DATABASE `ニホンゴ`;
 
15
CREATE DATABASE `日本語`;
 
16
CREATE DATABASE `龔龖龗`;
 
17
 
 
18
SHOW DATABASES;
 
19
 
 
20
USE `ニホンゴ`;
 
21
USE `日本語`;
 
22
USE `龔龖龗`;
 
23
 
 
24
DROP DATABASE `ニホンゴ`;
 
25
DROP DATABASE `日本語`;
 
26
DROP DATABASE `龔龖龗`;