~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/global_status.test

  • Committer: Andrew Hutchings
  • Date: 2010-11-09 18:10:31 UTC
  • mto: (1919.1.3 trunk)
  • mto: This revision was merged to the branch mainline in revision 1920.
  • Revision ID: andrew@linuxjedi.co.uk-20101109181031-89faf02w85j5gaqy
Fix warning in test case

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
flush global status;
3
3
 
4
4
use test;
 
5
--disable_warnings
5
6
drop table if exists t1;
 
7
--enable_warnings
6
8
create table t1 (a int);
7
9
insert into t1 values (1),(2),(3);
8
10
select * from t1;