~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_sjis.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
--character_set sjis
 
2
SET NAMES sjis;
 
3
SET character_set_database = sjis;
 
4
--disable_warnings
 
5
drop database if exists `��ݺ�`;
 
6
drop database if exists `���{��`;
 
7
drop database if exists `�\�\�\`;
 
8
--enable_warnings
 
9
 
 
10
#
 
11
# Test Creating databases using Japanese charact for DB name in ujis encoding
 
12
#
 
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 `�\�\�\`;