~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/suite/jp/t/jp_create_db_ucs2.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
--source include/have_ucs2.inc
 
2
 
 
3
--disable_warnings
 
4
drop database if exists `�ƎΎݎ���`;
 
5
drop database if exists `���ܸ�`;
 
6
drop database if exists `��܏�ݏ��`;
 
7
--enable_warnings
 
8
 
 
9
#
 
10
# Test Creating databases using Japanese charact for DB name in ucs2 encoding
 
11
#
 
12
 
 
13
SET NAMES ujis;
 
14
SET character_set_database = ucs2;
 
15
SET character_set_server = ucs2;
 
16
 
 
17
CREATE DATABASE `�ƎΎݎ���`;
 
18
CREATE DATABASE `���ܸ�`;
 
19
CREATE DATABASE `��܏�ݏ��`;
 
20
 
 
21
SHOW DATABASES;
 
22
 
 
23
USE `�ƎΎݎ���`;
 
24
USE `���ܸ�`;
 
25
USE `��܏�ݏ��`;
 
26
 
 
27
DROP DATABASE `�ƎΎݎ���`;
 
28
DROP DATABASE `���ܸ�`;
 
29
DROP DATABASE `��܏�ݏ��`;