~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/global_status.test

  • Committer: patrick crews
  • Date: 2010-11-09 22:42:49 UTC
  • mfrom: (1919.1.3 trunk)
  • Revision ID: gleebix@gmail.com-20101109224249-668v10rbz17tqwnw
Rollup merge of Andrew's patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# test that flush global status; clears global status;
 
2
flush global status;
 
3
 
 
4
use test;
 
5
--disable_warnings
 
6
drop table if exists t1;
 
7
--enable_warnings
 
8
create table t1 (a int);
 
9
insert into t1 values (1),(2),(3);
 
10
select * from t1;
 
11
select * from t1;
 
12
select * from t1;
 
13
 
 
14
show global status like 'Handler%';
 
15
connect (con1,localhost,root,,);
 
16
connection con1;
 
17
use test;
 
18
select * from t1;
 
19
select * from t1;
 
20
select * from t1;
 
21
 
 
22
show global status like 'Handler%';
 
23
 
 
24
connection default;
 
25
flush global status;
 
26
 
 
27
# should show reset counters;
 
28
show global status like 'Handler%';