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
8ba28aa3
Commit
8ba28aa3
authored
Oct 21, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ctype_utf8.result:
After merge fix. mysql-test/r/ctype_utf8.result: After merge fix.
parent
eddba2ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
mysql-test/r/ctype_utf8.result
mysql-test/r/ctype_utf8.result
+9
-9
No files found.
mysql-test/r/ctype_utf8.result
View file @
8ba28aa3
...
@@ -1049,6 +1049,15 @@ create table t1 (a varchar(255)) default charset=utf8;
...
@@ -1049,6 +1049,15 @@ create table t1 (a varchar(255)) default charset=utf8;
select * from t1 where find_in_set('-1', a);
select * from t1 where find_in_set('-1', a);
a
a
drop table t1;
drop table t1;
create table t1 (a int);
insert into t1 values (48),(49),(50);
set names utf8;
select distinct char(a) from t1;
char(a)
0
1
2
drop table t1;
CREATE TABLE t1(id varchar(20) NOT NULL) DEFAULT CHARSET=utf8;
CREATE TABLE t1(id varchar(20) NOT NULL) DEFAULT CHARSET=utf8;
INSERT INTO t1 VALUES ('xxx'), ('aa'), ('yyy'), ('aa');
INSERT INTO t1 VALUES ('xxx'), ('aa'), ('yyy'), ('aa');
SELECT id FROM t1;
SELECT id FROM t1;
...
@@ -1148,12 +1157,3 @@ set @a:=null;
...
@@ -1148,12 +1157,3 @@ set @a:=null;
execute my_stmt using @a;
execute my_stmt using @a;
a b
a b
drop table if exists t1;
drop table if exists t1;
create table t1 (a int);
insert into t1 values (48),(49),(50);
set names utf8;
select distinct char(a) from t1;
char(a)
0
1
2
drop 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