Skip to content

Commit

Permalink
Fix test failure on innodb-mdev-7055.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Lindström committed Feb 10, 2015
1 parent 44a9e3f commit ada0743
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file modified mysql-test/suite/innodb/r/innodb-mdev-7055.result
Binary file not shown.
3 changes: 2 additions & 1 deletion mysql-test/suite/innodb/t/innodb-mdev-7055.test
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
# 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
--disable_query_log
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;
--disable_query_log
set @@character_set_connection=@old_character_set;
--enable_query_log

0 comments on commit ada0743

Please sign in to comment.