mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
76f0b94bb0
sql/sql_insert.cc: CREATE ... IF NOT EXISTS may do nothing, but it is still not a failure. don't forget to my_ok it. ****** CREATE ... IF NOT EXISTS may do nothing, but it is still not a failure. don't forget to my_ok it. sql/sql_table.cc: small cleanup ****** small cleanup
21 lines
981 B
Text
21 lines
981 B
Text
SET @def_var= @@session.transaction_prealloc_size;
|
|
SET SESSION transaction_prealloc_size=1024*1024*1024*1;
|
|
SHOW PROCESSLIST;
|
|
Id User Host db Command Time State Info Progress
|
|
<Id> root <Host> test Query <Time> NULL SHOW PROCESSLIST 0.000
|
|
SET SESSION transaction_prealloc_size=1024*1024*1024*2;
|
|
SHOW PROCESSLIST;
|
|
Id User Host db Command Time State Info Progress
|
|
<Id> root <Host> test Query <Time> NULL SHOW PROCESSLIST 0.000
|
|
SET SESSION transaction_prealloc_size=1024*1024*1024*3;
|
|
SHOW PROCESSLIST;
|
|
Id User Host db Command Time State Info Progress
|
|
<Id> root <Host> test Query <Time> NULL SHOW PROCESSLIST 0.000
|
|
SET SESSION transaction_prealloc_size=1024*1024*1024*4;
|
|
SHOW PROCESSLIST;
|
|
Id User Host db Command Time State Info Progress
|
|
<Id> root <Host> test Query <Time> NULL SHOW PROCESSLIST 0.000
|
|
SET SESSION transaction_prealloc_size=1024*1024*1024*5;
|
|
SHOW PROCESSLIST;
|
|
Id User Host db Command Time State Info Progress
|
|
<Id> root <Host> test Query <Time> NULL SHOW PROCESSLIST 0.000
|