~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/suite/jp/r/jp_create_db_utf8.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
Import upstream version 2010.03.1347

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop database if exists `ニホンゴ`;
 
2
drop database if exists `日本語`;
 
3
drop database if exists `龔龖龗`;
 
4
CREATE DATABASE `ニホンゴ`;
 
5
CREATE DATABASE `日本語`;
 
6
CREATE DATABASE `龔龖龗`;
 
7
SHOW DATABASES;
 
8
Database
 
9
data_dictionary
 
10
information_schema
 
11
mysql
 
12
test
 
13
日本語
 
14
龔龖龗
 
15
ニホンゴ
 
16
USE `ニホンゴ`;
 
17
USE `日本語`;
 
18
USE `龔龖龗`;
 
19
DROP DATABASE `ニホンゴ`;
 
20
DROP DATABASE `日本語`;
 
21
DROP DATABASE `龔龖龗`;