~skinny.moey/drizzle/branch-rev

« back to all changes in this revision

Viewing changes to mysql-test/r/ctype_ascii.result

  • 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
set names ascii;
 
2
select 'e'='`';
 
3
'e'='`'
 
4
0
 
5
select 'y'='~';
 
6
'y'='~'
 
7
0
 
8
create table t1 (a char(1) character set ascii);
 
9
insert into t1 (a) values (' '), ('a'), ('b'), ('c'), ('d'), ('e'), ('f'), ('g'), ('h'), ('i'), ('j'), ('k'), ('l'), ('m'), ('n'), ('o'), ('p'), ('q'), ('r'), ('s'), ('t'), ('u'), ('v'), ('w'), ('x'), ('y'), ('z'), ('A'), ('B'), ('C'), ('D'), ('E'), ('F'), ('G'), ('H'), ('I'), ('J'), ('K'), ('L'), ('M'), ('N'), ('O'), ('P'), ('Q'), ('R'), ('S'), ('T'), ('U'), ('V'), ('W'), ('X'), ('Y'), ('Z'), ('!'), ('@'), ('#'), ('$'), ('%'), ('^'), ('&'), ('*'), ('('), (')'), ('_'), ('+'), ('`'), ('~'), ('1'), ('2'), ('3'), ('4'), ('5'), ('6'), ('7'), ('8'), ('9'), ('0'), ('['), (']'), ('\\'), ('|'), ('}'), ('{'), ('"'), (':'), (''''), (';'), ('/'), ('.'), (','), ('?'), ('>'), ('<'), ('\n'), ('\t'), ('\a'), ('\f'), ('\v');
 
10
select t1a.a, t1b.a from t1 as t1a, t1 as t1b where t1a.a=t1b.a order by binary t1a.a, binary t1b.a;
 
11
a       a
 
12
        
 
13
                        
 
14
 
 
15
        
 
16
 
 
17
!       !
 
18
"       "
 
19
#       #
 
20
$       $
 
21
%       %
 
22
&       &
 
23
'       '
 
24
(       (
 
25
)       )
 
26
*       *
 
27
+       +
 
28
,       ,
 
29
.       .
 
30
/       /
 
31
0       0
 
32
1       1
 
33
2       2
 
34
3       3
 
35
4       4
 
36
5       5
 
37
6       6
 
38
7       7
 
39
8       8
 
40
9       9
 
41
:       :
 
42
;       ;
 
43
<       <
 
44
>       >
 
45
?       ?
 
46
@       @
 
47
A       A
 
48
A       a
 
49
A       a
 
50
B       B
 
51
B       b
 
52
C       C
 
53
C       c
 
54
D       D
 
55
D       d
 
56
E       E
 
57
E       e
 
58
F       F
 
59
F       f
 
60
F       f
 
61
G       G
 
62
G       g
 
63
H       H
 
64
H       h
 
65
I       I
 
66
I       i
 
67
J       J
 
68
J       j
 
69
K       K
 
70
K       k
 
71
L       L
 
72
L       l
 
73
M       M
 
74
M       m
 
75
N       N
 
76
N       n
 
77
O       O
 
78
O       o
 
79
P       P
 
80
P       p
 
81
Q       Q
 
82
Q       q
 
83
R       R
 
84
R       r
 
85
S       S
 
86
S       s
 
87
T       T
 
88
T       t
 
89
U       U
 
90
U       u
 
91
V       V
 
92
V       v
 
93
V       v
 
94
W       W
 
95
W       w
 
96
X       X
 
97
X       x
 
98
Y       Y
 
99
Y       y
 
100
Z       Z
 
101
Z       z
 
102
[       [
 
103
\       \
 
104
]       ]
 
105
^       ^
 
106
_       _
 
107
`       `
 
108
a       A
 
109
a       A
 
110
a       a
 
111
a       a
 
112
a       a
 
113
a       a
 
114
b       B
 
115
b       b
 
116
c       C
 
117
c       c
 
118
d       D
 
119
d       d
 
120
e       E
 
121
e       e
 
122
f       F
 
123
f       F
 
124
f       f
 
125
f       f
 
126
f       f
 
127
f       f
 
128
g       G
 
129
g       g
 
130
h       H
 
131
h       h
 
132
i       I
 
133
i       i
 
134
j       J
 
135
j       j
 
136
k       K
 
137
k       k
 
138
l       L
 
139
l       l
 
140
m       M
 
141
m       m
 
142
n       N
 
143
n       n
 
144
o       O
 
145
o       o
 
146
p       P
 
147
p       p
 
148
q       Q
 
149
q       q
 
150
r       R
 
151
r       r
 
152
s       S
 
153
s       s
 
154
t       T
 
155
t       t
 
156
u       U
 
157
u       u
 
158
v       V
 
159
v       V
 
160
v       v
 
161
v       v
 
162
v       v
 
163
v       v
 
164
w       W
 
165
w       w
 
166
x       X
 
167
x       x
 
168
y       Y
 
169
y       y
 
170
z       Z
 
171
z       z
 
172
{       {
 
173
|       |
 
174
}       }
 
175
~       ~
 
176
drop table t1;
 
177
End of 5.0 tests.