~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/suite/jp/t/jp_create_db_utf8.test

  • 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
--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
CREATE DATABASE `ニホンゴ`;
 
12
CREATE DATABASE `日本語`;
 
13
CREATE DATABASE `龔龖龗`;
 
14
 
 
15
SHOW DATABASES;
 
16
 
 
17
USE `ニホンゴ`;
 
18
USE `日本語`;
 
19
USE `龔龖龗`;
 
20
 
 
21
DROP DATABASE `ニホンゴ`;
 
22
DROP DATABASE `日本語`;
 
23
DROP DATABASE `龔龖龗`;