mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 01:34:17 +01:00
36eba98817
Changing the default server character set from latin1 to utf8mb4.
7 lines
324 B
Text
7 lines
324 B
Text
#
|
|
# MDEV-13748 Assertion `status_var.local_memory_used == 0 || !debug_assert_on_not_freed_memory' failed in virtual THD::~THD after query with INTERSECT
|
|
#
|
|
create table t1 (a blob, b varchar(20000)) engine=aria row_format=dynamic charset=latin1;
|
|
insert t1 (b) values (repeat('a', 20000));
|
|
update t1 set b='b';
|
|
drop table t1;
|