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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
d7f96c50
Commit
d7f96c50
authored
Sep 19, 2005
by
bar@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ctype_utf8.result, ctype_utf8.test:
Bug#10504: additional test
parent
6424e9cc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
mysql-test/r/ctype_utf8.result
mysql-test/r/ctype_utf8.result
+6
-0
mysql-test/t/ctype_utf8.test
mysql-test/t/ctype_utf8.test
+2
-0
No files found.
mysql-test/r/ctype_utf8.result
View file @
d7f96c50
...
...
@@ -1034,6 +1034,12 @@ hex(char(1))
select char(0xd1,0x8f);
char(0xd1,0x8f)
я
select char(0xd18f);
char(0xd18f)
я
select char(53647);
char(53647)
я
select char(0xff,0x8f);
char(0xff,0x8f)
...
...
mysql-test/t/ctype_utf8.test
View file @
d7f96c50
...
...
@@ -871,6 +871,8 @@ set names utf8;
# correct value
select
hex
(
char
(
1
));
select
char
(
0xd1
,
0x8f
);
select
char
(
0xd18f
);
select
char
(
53647
);
# incorrect value: return with warning
select
char
(
0xff
,
0x8f
);
# incorrect value in strict mode: return NULL with "Error" level warning
...
...
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