~vadim-tk/percona-server/percona-galera-5.1.57

« back to all changes in this revision

Viewing changes to mysql-test/suite/binlog/r/binlog_mix_innodb_stat.result

  • Committer: root
  • Date: 2011-07-10 16:09:24 UTC
  • Revision ID: root@r815.office.percona.com-20110710160924-fyffqsbaclgu6vui
Initial port

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
flush status;
 
2
show status like "binlog_cache_use";
 
3
Variable_name   Value
 
4
Binlog_cache_use        0
 
5
show status like "binlog_cache_disk_use";
 
6
Variable_name   Value
 
7
Binlog_cache_disk_use   0
 
8
drop table if exists t1;
 
9
create table t1 (a int) engine=innodb;
 
10
show status like "binlog_cache_use";
 
11
Variable_name   Value
 
12
Binlog_cache_use        1
 
13
show status like "binlog_cache_disk_use";
 
14
Variable_name   Value
 
15
Binlog_cache_disk_use   1
 
16
begin;
 
17
delete from t1;
 
18
commit;
 
19
show status like "binlog_cache_use";
 
20
Variable_name   Value
 
21
Binlog_cache_use        2
 
22
show status like "binlog_cache_disk_use";
 
23
Variable_name   Value
 
24
Binlog_cache_disk_use   1
 
25
drop table t1;