mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
A few suppression follow-ups
This commit is contained in:
@ -2,6 +2,8 @@
|
||||
# Bug #46080: group_concat(... order by) crashes server when
|
||||
# sort_buffer_size cannot allocate
|
||||
#
|
||||
call mtr.add_suppression("Out of memory at line .*, 'my_alloc.c'");
|
||||
call mtr.add_suppression("needed .* byte .*k., memory in use: .* bytes .*k");
|
||||
CREATE TABLE t1(a CHAR(255));
|
||||
INSERT INTO t1 VALUES ('a');
|
||||
SET @@SESSION.sort_buffer_size=5*16*1000000;
|
||||
|
@ -1,3 +1,4 @@
|
||||
call mtr.add_suppression("Failed to write to mysql.general_log");
|
||||
drop table if exists t1;
|
||||
create table t1 (a int)
|
||||
engine = csv
|
||||
|
@ -3,6 +3,9 @@
|
||||
--echo # sort_buffer_size cannot allocate
|
||||
--echo #
|
||||
|
||||
call mtr.add_suppression("Out of memory at line .*, 'my_alloc.c'");
|
||||
call mtr.add_suppression("needed .* byte .*k., memory in use: .* bytes .*k");
|
||||
|
||||
CREATE TABLE t1(a CHAR(255));
|
||||
INSERT INTO t1 VALUES ('a');
|
||||
|
||||
|
@ -10,6 +10,8 @@
|
||||
--source include/have_partition.inc
|
||||
--source include/have_csv.inc
|
||||
|
||||
call mtr.add_suppression("Failed to write to mysql.general_log");
|
||||
|
||||
#
|
||||
# Bug#19307: Partitions: csv delete failure
|
||||
# = CSV engine crashes
|
||||
|
Reference in New Issue
Block a user