mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +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
|
# Bug #46080: group_concat(... order by) crashes server when
|
||||||
# sort_buffer_size cannot allocate
|
# 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));
|
CREATE TABLE t1(a CHAR(255));
|
||||||
INSERT INTO t1 VALUES ('a');
|
INSERT INTO t1 VALUES ('a');
|
||||||
SET @@SESSION.sort_buffer_size=5*16*1000000;
|
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;
|
drop table if exists t1;
|
||||||
create table t1 (a int)
|
create table t1 (a int)
|
||||||
engine = csv
|
engine = csv
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
--echo # sort_buffer_size cannot allocate
|
--echo # sort_buffer_size cannot allocate
|
||||||
--echo #
|
--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));
|
CREATE TABLE t1(a CHAR(255));
|
||||||
INSERT INTO t1 VALUES ('a');
|
INSERT INTO t1 VALUES ('a');
|
||||||
|
|
||||||
|
@ -10,6 +10,8 @@
|
|||||||
--source include/have_partition.inc
|
--source include/have_partition.inc
|
||||||
--source include/have_csv.inc
|
--source include/have_csv.inc
|
||||||
|
|
||||||
|
call mtr.add_suppression("Failed to write to mysql.general_log");
|
||||||
|
|
||||||
#
|
#
|
||||||
# Bug#19307: Partitions: csv delete failure
|
# Bug#19307: Partitions: csv delete failure
|
||||||
# = CSV engine crashes
|
# = CSV engine crashes
|
||||||
|
Reference in New Issue
Block a user