~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/global_status.test

  • Committer: patrick crews
  • Date: 2010-09-29 15:15:19 UTC
  • mfrom: (1099.4.188 drizzle)
  • Revision ID: gleebix@gmail.com-20100929151519-6mrmzd1ciw2p9nws
Tags: 2010.09.1802
Update translations

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
 
flush global status;
25
 
 
26
 
# should show reset counters;
27
 
show global status like 'Handler%';