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
5c6eb522
Commit
5c6eb522
authored
Feb 04, 2015
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test failure.
parent
8cc97511
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
mysql-test/suite/innodb/r/innodb-mdev-7055.result
mysql-test/suite/innodb/r/innodb-mdev-7055.result
+0
-0
mysql-test/suite/innodb/t/innodb-mdev-7055.test
mysql-test/suite/innodb/t/innodb-mdev-7055.test
+8
-3
No files found.
mysql-test/suite/innodb/r/innodb-mdev-7055.result
View file @
5c6eb522
No preview for this file type
mysql-test/suite/innodb/t/innodb-mdev-7055.test
View file @
5c6eb522
--
source
include
/
have_innodb
.
inc
# MDEV-7055: MySQL#74664 - InnoDB: Failing assertion: len <= col->len || col->mtype == 5 || (col->len == 0 && col->mtype == 1) in file rem0rec.cc line 845
DROP
DATABASE
test
;
CREATE
DATABASE
test
;
USE
test
;
# MDEV-7055: MySQL#74664 - InnoDB: Failing assertion: len <= col->len
# || col->mtype == 5 || (col->len == 0 && col->mtype == 1) in
# file rem0rec.cc line 845
set
@
old_character_set
=@@
character_set_connection
;
set
character_set_connection
=
ucs2
;
create
TABLE
t1
engine
=
innodb
select
if
(
0
=
0
,
'Y'
,
'N'
);
insert
INTO
t1
values
(
date_format
(
'2001-01-01'
,
'%W'
));
select
*
from
t1
;
drop
table
t1
;
\ No newline at end of file
drop
table
t1
;
--
disable_query_log
set
@@
character_set_connection
=@
old_character_set
;
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