~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/global_status.test

  • Committer: tdavies
  • Date: 2010-10-13 01:29:12 UTC
  • mto: (1842.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1843.
  • Revision ID: tdavies@molly-20101013012912-vl72hg1y99qgqz5m
File: /drizzled/xid.h. Changed struct name of 'st_drizzle_xid' to 'drizzle_xid', changed it to a C++ class and added constructor initialization list 

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%';