~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/global_status.test

  • Committer: lbieber
  • Date: 2010-09-11 16:33:45 UTC
  • mfrom: (1757.1.2 build)
  • Revision ID: lbieber@orisndriz03-20100911163345-na1t8m18at9thsjl
Merge Vijay - added utf 8 tamil test case suite and test case for creating a database in tamil
Merge Brian - Small set of refactoring (includes one case of memset on a table object).

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