~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

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;