Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
6b90806a
Commit
6b90806a
authored
Aug 19, 2004
by
bar@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ctype_utf8.test, ctype_utf8.result:
Typo fix
parent
b9dbef8e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
mysql-test/r/ctype_utf8.result
mysql-test/r/ctype_utf8.result
+2
-2
mysql-test/t/ctype_utf8.test
mysql-test/t/ctype_utf8.test
+1
-1
No files found.
mysql-test/r/ctype_utf8.result
View file @
6b90806a
...
...
@@ -362,13 +362,13 @@ c_a
б
drop table t1;
create table t1 (
c char(10) character set utf8
collate utf8_bin
,
c char(10) character set utf8,
unique key a using btree (c(1))
) engine=heap;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c` char(10) character set utf8
collate utf8_bin
default NULL,
`c` char(10) character set utf8 default NULL,
UNIQUE KEY `a` TYPE BTREE (`c`(1))
) ENGINE=HEAP DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
...
...
mysql-test/t/ctype_utf8.test
View file @
6b90806a
...
...
@@ -265,7 +265,7 @@ drop table t1;
# Check HEAP+BTREE, case insensitive collation
#
create
table
t1
(
c
char
(
10
)
character
set
utf8
collate
utf8_bin
,
c
char
(
10
)
character
set
utf8
,
unique
key
a
using
btree
(
c
(
1
))
)
engine
=
heap
;
show
create
table
t1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment