mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
24 lines
571 B
Text
24 lines
571 B
Text
|
show status like "binlog_cache_use";
|
||
|
Variable_name Value
|
||
|
Binlog_cache_use 0
|
||
|
show status like "binlog_cache_disk_use";
|
||
|
Variable_name Value
|
||
|
Binlog_cache_disk_use 0
|
||
|
create table t1 (a int) engine=innodb;
|
||
|
show status like "binlog_cache_use";
|
||
|
Variable_name Value
|
||
|
Binlog_cache_use 1
|
||
|
show status like "binlog_cache_disk_use";
|
||
|
Variable_name Value
|
||
|
Binlog_cache_disk_use 1
|
||
|
begin;
|
||
|
delete from t1;
|
||
|
commit;
|
||
|
show status like "binlog_cache_use";
|
||
|
Variable_name Value
|
||
|
Binlog_cache_use 2
|
||
|
show status like "binlog_cache_disk_use";
|
||
|
Variable_name Value
|
||
|
Binlog_cache_disk_use 1
|
||
|
drop table t1;
|