~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/status.test

  • Committer: Brian Aker
  • Date: 2010-02-15 18:29:31 UTC
  • mto: (1273.13.68 build)
  • mto: This revision was merged to the branch mainline in revision 1303.
  • Revision ID: brian@gaz-20100215182931-ooy48h72plspoehy
More removal of show code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
 
17
17
select 1;
 
18
--replace_column 2 #
18
19
show status like 'last_query_cost';
19
20
create temporary table t1 (a int) engine=myisam;
20
21
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
23
24
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
24
25
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
25
26
select * from t1 where a=6;
 
27
--replace_column 2 #
26
28
show status like 'last_query_cost';
27
29
# Ensure value dosn't change by second status call
 
30
--replace_column 2 #
28
31
show status like 'last_query_cost';
29
32
select 1;
 
33
--replace_column 2 #
30
34
show status like 'last_query_cost';
31
35
drop table t1;
32
36