mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +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.
21 lines
705 B
Plaintext
21 lines
705 B
Plaintext
set session transaction_prealloc_size=1024*1024*1024*1;
|
|
select @pid_temp = (select ID from information_schema.processlist) as 'TRUE';
|
|
TRUE
|
|
1
|
|
set session transaction_prealloc_size=1024*1024*1024*2;
|
|
select @pid_temp = (select ID from information_schema.processlist) as 'TRUE';
|
|
TRUE
|
|
1
|
|
set session transaction_prealloc_size=1024*1024*1024*3;
|
|
select @pid_temp = (select ID from information_schema.processlist) as 'TRUE';
|
|
TRUE
|
|
1
|
|
set session transaction_prealloc_size=1024*1024*1024*4;
|
|
select @pid_temp = (select ID from information_schema.processlist) as 'TRUE';
|
|
TRUE
|
|
1
|
|
set session transaction_prealloc_size=1024*1024*1024*5;
|
|
select @pid_temp = (select ID from information_schema.processlist) as 'TRUE';
|
|
TRUE
|
|
1
|