blob: 6d0a3ea5050064f1d189f57f9226bca955168256 (
plain)
1
2
3
4
5
6
7
8
9
|
#
# MDEV-22339 - Assertion `str_length < len' failed in
# Binary_string::realloc_raw
#
CREATE TABLE t1(a INT) ENGINE=MyISAM;
connect con1, localhost, root;
disconnect con1;
connection default;
DROP TABLE t1;
|