mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
include/my_sys.h: Move generic file parsing functions out to shared code, as they are used in several places. mysys/mf_iocache2.c: Move generic file parsing functions out to shared code, as they are used in several places. sql/log_event.cc: Fix XtraDB build with embedded server. XtraDB needs access to replication stuff, which is missing in embedded server. Solved by defining wrapper function for this which is compiled differently for normal and embedded case. sql/log_event.h: Fix XtraDB build with embedded server. XtraDB needs access to replication stuff, which is missing in embedded server. Solved by defining wrapper function for this which is compiled differently for normal and embedded case. sql/slave.cc: Move generic file parsing functions out to shared code, as they are used in several places.
28 lines
997 B
Plaintext
28 lines
997 B
Plaintext
#
|
|
# test variables big
|
|
#
|
|
|
|
--source include/big_test.inc
|
|
|
|
#
|
|
# Bug #27322 failure to allocate transaction_prealloc_size causes crash
|
|
#
|
|
|
|
set @pid_temp = (select ID from information_schema.processlist);
|
|
set session transaction_prealloc_size=1024*1024*1024*1;
|
|
--replace_column 1 #
|
|
select @pid_temp = (select ID from information_schema.processlist) as 'TRUE';
|
|
set session transaction_prealloc_size=1024*1024*1024*2;
|
|
--replace_column 1 #
|
|
select @pid_temp = (select ID from information_schema.processlist) as 'TRUE';
|
|
--replace_column 1 #
|
|
set session transaction_prealloc_size=1024*1024*1024*3;
|
|
--replace_column 1 #
|
|
select @pid_temp = (select ID from information_schema.processlist) as 'TRUE';
|
|
set session transaction_prealloc_size=1024*1024*1024*4;
|
|
--replace_column 1 #
|
|
select @pid_temp = (select ID from information_schema.processlist) as 'TRUE';
|
|
set session transaction_prealloc_size=1024*1024*1024*5;
|
|
--replace_column 1 #
|
|
select @pid_temp = (select ID from information_schema.processlist) as 'TRUE';
|