~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-01-29 23:22:38 UTC
  • mfrom: (1271.4.1 drizzle)
  • Revision ID: brian@gaz-20100129232238-gb6hplbbbdgf9xaz
Merged Lee, enabled jp tests by default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
drop table if exists `�s�P`;
2
 
drop table if exists `�s�Q`;
3
 
drop table if exists `�s�R`;
4
 
drop table if exists `�s�S`;
5
 
drop table if exists `�s�T`;
6
 
drop table if exists `�s�U`;
7
 
drop table if exists `�s�V`;
8
 
drop table if exists `�s�W`;
9
 
drop table if exists `�s�X`;
10
 
drop table if exists `�s�P�O`;
11
 
drop table if exists `�s�P�P`;
12
 
drop table if exists `�s�P�Q`;
13
 
SET NAMES sjis;
14
 
SET character_set_database = sjis;
15
 
CREATE TABLE `�s�P` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = innodb;
16
 
CREATE TABLE `�s�Q` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = innodb;
17
 
CREATE TABLE `�s�R` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = innodb;
18
 
CREATE TABLE `�s�S` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = myisam;
19
 
CREATE TABLE `�s�T` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = myisam;
20
 
CREATE TABLE `�s�U` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = myisam;
21
 
CREATE TABLE `�s�V` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = MEMORY;
22
 
CREATE TABLE `�s�W` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = MEMORY;
23
 
CREATE TABLE `�s�X` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = MEMORY;
24
 
CREATE TABLE `�s�P�O` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = bdb;
25
 
CREATE TABLE `�s�P�P` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = bdb;
26
 
CREATE TABLE `�s�P�Q` (`�b�P` char(5), INDEX(`�b�P`)) DEFAULT CHARSET = sjis engine = bdb;
27
 
INSERT INTO `�s�P` VALUES ('�����');
28
 
INSERT INTO `�s�Q` VALUES ('����������');
29
 
INSERT INTO `�s�R` VALUES ('�\�\�\�\�\');
30
 
INSERT INTO `�s�S` VALUES ('�����');
31
 
INSERT INTO `�s�T` VALUES ('����������');
32
 
INSERT INTO `�s�U` VALUES ('�\�\�\�\�\');
33
 
INSERT INTO `�s�V` VALUES ('�����');
34
 
INSERT INTO `�s�W` VALUES ('����������');
35
 
INSERT INTO `�s�X` VALUES ('�\�\�\�\�\');
36
 
INSERT INTO `�s�P�O` VALUES ('�����');
37
 
INSERT INTO `�s�P�P` VALUES ('����������');
38
 
INSERT INTO `�s�P�Q` VALUES ('�\�\�\�\�\');
39
 
SELECT REVERSE(`�b�P`) FROM `�s�P`;
40
 
REVERSE(`�b�P`)
41
 
�����
42
 
SELECT REVERSE(`�b�P`) FROM `�s�Q`;
43
 
REVERSE(`�b�P`)
44
 
����������
45
 
SELECT REVERSE(`�b�P`) FROM `�s�R`;
46
 
REVERSE(`�b�P`)
47
 
�\�\�\�\�\
48
 
SELECT REVERSE(`�b�P`) FROM `�s�S`;
49
 
REVERSE(`�b�P`)
50
 
�����
51
 
SELECT REVERSE(`�b�P`) FROM `�s�T`;
52
 
REVERSE(`�b�P`)
53
 
����������
54
 
SELECT REVERSE(`�b�P`) FROM `�s�U`;
55
 
REVERSE(`�b�P`)
56
 
�\�\�\�\�\
57
 
SELECT REVERSE(`�b�P`) FROM `�s�V`;
58
 
REVERSE(`�b�P`)
59
 
�����
60
 
SELECT REVERSE(`�b�P`) FROM `�s�W`;
61
 
REVERSE(`�b�P`)
62
 
����������
63
 
SELECT REVERSE(`�b�P`) FROM `�s�X`;
64
 
REVERSE(`�b�P`)
65
 
�\�\�\�\�\
66
 
SELECT REVERSE(`�b�P`) FROM `�s�P�O`;
67
 
REVERSE(`�b�P`)
68
 
�����
69
 
SELECT REVERSE(`�b�P`) FROM `�s�P�P`;
70
 
REVERSE(`�b�P`)
71
 
����������
72
 
SELECT REVERSE(`�b�P`) FROM `�s�P�Q`;
73
 
REVERSE(`�b�P`)
74
 
�\�\�\�\�\
75
 
DROP TABLE `�s�P`;
76
 
DROP TABLE `�s�Q`;
77
 
DROP TABLE `�s�R`;
78
 
DROP TABLE `�s�S`;
79
 
DROP TABLE `�s�T`;
80
 
DROP TABLE `�s�U`;
81
 
DROP TABLE `�s�V`;
82
 
DROP TABLE `�s�W`;
83
 
DROP TABLE `�s�X`;
84
 
DROP TABLE `�s�P�O`;
85
 
DROP TABLE `�s�P�P`;
86
 
DROP TABLE `�s�P�Q`;