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
d90ae72f
Commit
d90ae72f
authored
Mar 08, 2008
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After merge fix
parent
a6e49d2d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
35 additions
and
16 deletions
+35
-16
mysql-test/r/ctype_cp1250_ch.result
mysql-test/r/ctype_cp1250_ch.result
+4
-4
mysql-test/r/ctype_euckr.result
mysql-test/r/ctype_euckr.result
+2
-2
mysql-test/r/ctype_gb2312.result
mysql-test/r/ctype_gb2312.result
+2
-2
mysql-test/r/ctype_gbk.result
mysql-test/r/ctype_gbk.result
+2
-2
mysql-test/r/ctype_uca.result
mysql-test/r/ctype_uca.result
+2
-2
mysql-test/r/ctype_ucs.result
mysql-test/r/ctype_ucs.result
+2
-2
mysql-test/suite/binlog/r/binlog_row_ctype_cp932.result
mysql-test/suite/binlog/r/binlog_row_ctype_cp932.result
+19
-0
mysql-test/suite/binlog/r/binlog_stm_ctype_cp932.result
mysql-test/suite/binlog/r/binlog_stm_ctype_cp932.result
+2
-2
No files found.
mysql-test/r/ctype_cp1250_ch.result
View file @
d90ae72f
...
...
@@ -82,8 +82,8 @@ level smallint unsigned);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`name` varchar(10)
default
NULL,
`level` smallint(5) unsigned
default
NULL
`name` varchar(10)
DEFAULT
NULL,
`level` smallint(5) unsigned
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=cp1250
insert into t1 values ('string',1);
select concat(name,space(level)), concat(name, repeat(' ',level)) from t1;
...
...
@@ -175,8 +175,8 @@ level smallint unsigned);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`name` varchar(10)
collate cp1250_czech_cs default
NULL,
`level` smallint(5) unsigned
default
NULL
`name` varchar(10)
COLLATE cp1250_czech_cs DEFAULT
NULL,
`level` smallint(5) unsigned
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=cp1250 COLLATE=cp1250_czech_cs
insert into t1 values ('string',1);
select concat(name,space(level)), concat(name, repeat(' ',level)) from t1;
...
...
mysql-test/r/ctype_euckr.result
View file @
d90ae72f
...
...
@@ -78,8 +78,8 @@ level smallint unsigned);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`name` varchar(10)
default
NULL,
`level` smallint(5) unsigned
default
NULL
`name` varchar(10)
DEFAULT
NULL,
`level` smallint(5) unsigned
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=euckr
insert into t1 values ('string',1);
select concat(name,space(level)), concat(name, repeat(' ',level)) from t1;
...
...
mysql-test/r/ctype_gb2312.result
View file @
d90ae72f
...
...
@@ -78,8 +78,8 @@ level smallint unsigned);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`name` varchar(10)
default
NULL,
`level` smallint(5) unsigned
default
NULL
`name` varchar(10)
DEFAULT
NULL,
`level` smallint(5) unsigned
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=gb2312
insert into t1 values ('string',1);
select concat(name,space(level)), concat(name, repeat(' ',level)) from t1;
...
...
mysql-test/r/ctype_gbk.result
View file @
d90ae72f
...
...
@@ -78,8 +78,8 @@ level smallint unsigned);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`name` varchar(10)
default
NULL,
`level` smallint(5) unsigned
default
NULL
`name` varchar(10)
DEFAULT
NULL,
`level` smallint(5) unsigned
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=gbk
insert into t1 values ('string',1);
select concat(name,space(level)), concat(name, repeat(' ',level)) from t1;
...
...
mysql-test/r/ctype_uca.result
View file @
d90ae72f
...
...
@@ -2613,8 +2613,8 @@ level smallint unsigned);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`name` varchar(10)
collate utf8_swedish_ci default
NULL,
`level` smallint(5) unsigned
default
NULL
`name` varchar(10)
COLLATE utf8_swedish_ci DEFAULT
NULL,
`level` smallint(5) unsigned
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_swedish_ci
insert into t1 values ('string',1);
select concat(name,space(level)), concat(name, repeat(' ',level)) from t1;
...
...
mysql-test/r/ctype_ucs.result
View file @
d90ae72f
...
...
@@ -78,8 +78,8 @@ level smallint unsigned);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`name` varchar(10)
default
NULL,
`level` smallint(5) unsigned
default
NULL
`name` varchar(10)
DEFAULT
NULL,
`level` smallint(5) unsigned
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=ucs2
insert into t1 values ('string',1);
select concat(name,space(level)), concat(name, repeat(' ',level)) from t1;
...
...
mysql-test/suite/binlog/r/binlog_row_ctype_cp932.result
View file @
d90ae72f
...
...
@@ -6,6 +6,8 @@ SET @test_character_set= 'cp932';
SET @test_collation= 'cp932_japanese_ci';
SET @safe_character_set_server= @@character_set_server;
SET @safe_collation_server= @@collation_server;
SET @safe_character_set_client= @@character_set_client;
SET @safe_character_set_results= @@character_set_results;
SET character_set_server= @test_character_set;
SET collation_server= @test_collation;
CREATE DATABASE d1;
...
...
@@ -72,10 +74,27 @@ select 1 from t1 order by cast(a as char(1));
1
1
drop table t1;
set names utf8;
create table t1 (
name varchar(10),
level smallint unsigned);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`name` varchar(10) DEFAULT NULL,
`level` smallint(5) unsigned DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=cp932
insert into t1 values ('string',1);
select concat(name,space(level)), concat(name, repeat(' ',level)) from t1;
concat(name,space(level)) concat(name, repeat(' ',level))
string string
drop table t1;
DROP DATABASE d1;
USE test;
SET character_set_server= @safe_character_set_server;
SET collation_server= @safe_collation_server;
SET character_set_client= @safe_character_set_client;
SET character_set_results= @safe_character_set_results;
set names cp932;
set character_set_database = cp932;
CREATE TABLE t1(c1 CHAR(1)) DEFAULT CHARACTER SET = cp932;
...
...
mysql-test/suite/binlog/r/binlog_stm_ctype_cp932.result
View file @
d90ae72f
...
...
@@ -81,8 +81,8 @@ level smallint unsigned);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`name` varchar(10)
default
NULL,
`level` smallint(5) unsigned
default
NULL
`name` varchar(10)
DEFAULT
NULL,
`level` smallint(5) unsigned
DEFAULT
NULL
) ENGINE=MyISAM DEFAULT CHARSET=cp932
insert into t1 values ('string',1);
select concat(name,space(level)), concat(name, repeat(' ',level)) from 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