File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 2
2
# Bug #46080: group_concat(... order by) crashes server when
3
3
# sort_buffer_size cannot allocate
4
4
#
5
- call mtr.add_suppression("Out of memory at line .*, 'my_alloc.c'");
6
- call mtr.add_suppression("needed .* byte .*k., memory in use: .* bytes .*k");
5
+ call mtr.add_suppression("Out of memory at line .*, '.* my_alloc.c'");
6
+ call mtr.add_suppression("needed .* byte ( .*k) ., memory in use: .* bytes ( .*k) ");
7
7
CREATE TABLE t1(a CHAR(255));
8
8
INSERT INTO t1 VALUES ('a');
9
9
SET @@SESSION.sort_buffer_size=5*16*1000000;
Original file line number Diff line number Diff line change 3
3
--echo # sort_buffer_size cannot allocate
4
4
--echo #
5
5
6
- call mtr.add_suppression("Out of memory at line .*, 'my_alloc.c'");
7
- call mtr.add_suppression("needed .* byte .*k., memory in use: .* bytes .*k");
6
+ call mtr.add_suppression("Out of memory at line .*, '.* my_alloc.c'");
7
+ call mtr.add_suppression("needed .* byte ( .*k) ., memory in use: .* bytes ( .*k) ");
8
8
9
9
CREATE TABLE t1(a CHAR(255));
10
10
INSERT INTO t1 VALUES ('a');
Original file line number Diff line number Diff line change @@ -235,8 +235,9 @@ event_scheduler_thread(void *arg)
235
235
if (!res)
236
236
scheduler->run (thd);
237
237
238
+ DBUG_LEAVE; // Against gcc warnings
238
239
my_thread_end ();
239
- DBUG_RETURN ( 0 ); // Against gcc warnings
240
+ return 0 ;
240
241
}
241
242
242
243
You can’t perform that action at this time.
0 commit comments