mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
Fix test failure on innodb-mdev-7055.
This commit is contained in:
parent
44a9e3f7b4
commit
ada07435b4
2 changed files with 2 additions and 1 deletions
Binary file not shown.
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue