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
57093db2
Commit
57093db2
authored
Sep 09, 2004
by
bar@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #5430 ctype_tis620 test failure
parent
501954dd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
mysql-test/r/ctype_tis620.result
mysql-test/r/ctype_tis620.result
+2
-2
mysql-test/t/ctype_tis620-master.opt
mysql-test/t/ctype_tis620-master.opt
+0
-1
mysql-test/t/ctype_tis620.test
mysql-test/t/ctype_tis620.test
+2
-2
No files found.
mysql-test/r/ctype_tis620.result
View file @
57093db2
...
...
@@ -116,7 +116,7 @@ CREATE TABLE t1 (
recid int(11) NOT NULL auto_increment,
dyninfo text,
PRIMARY KEY (recid)
) ENGINE=MyISAM;
) ENGINE=MyISAM
CHARACTER SET tis620
;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
...
...
@@ -2890,7 +2890,7 @@ SELECT 'a\t' < 'a';
SELECT 'a\t' < 'a ';
'a\t' < 'a '
1
CREATE TABLE t1 (a char(10) not null);
CREATE TABLE t1 (a char(10) not null)
CHARACTER SET tis620
;
INSERT INTO t1 VALUES ('a'),('a\0'),('a\t'),('a ');
SELECT hex(a),STRCMP(a,'a'), STRCMP(a,'a ') FROM t1;
hex(a) STRCMP(a,'a') STRCMP(a,'a ')
...
...
mysql-test/t/ctype_tis620-master.opt
deleted
100644 → 0
View file @
501954dd
--default-character-set=tis620
mysql-test/t/ctype_tis620.test
View file @
57093db2
...
...
@@ -69,7 +69,7 @@ CREATE TABLE t1 (
recid
int
(
11
)
NOT
NULL
auto_increment
,
dyninfo
text
,
PRIMARY
KEY
(
recid
)
)
ENGINE
=
MyISAM
;
)
ENGINE
=
MyISAM
CHARACTER
SET
tis620
;
show
create
table
t1
;
...
...
@@ -112,7 +112,7 @@ SELECT 'a\0' < 'a ';
SELECT
'a\t'
<
'a'
;
SELECT
'a\t'
<
'a '
;
CREATE
TABLE
t1
(
a
char
(
10
)
not
null
);
CREATE
TABLE
t1
(
a
char
(
10
)
not
null
)
CHARACTER
SET
tis620
;
INSERT
INTO
t1
VALUES
(
'a'
),(
'a\0'
),(
'a\t'
),(
'a '
);
SELECT
hex
(
a
),
STRCMP
(
a
,
'a'
),
STRCMP
(
a
,
'a '
)
FROM
t1
;
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