~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/join.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:
576
576
select * from t1, t2, t3 where t3.a=t1.a and t2.a=t1.b;
577
577
explain select * from t1, t2, t3 where t3.a=t1.a and t2.a=t1.b;
578
578
--echo We expect rnd_next=5, and read_key must be 0 because of short-cutting:
 
579
--replace_column 2 #
579
580
show status like 'Handler_read%'; 
580
581
drop table t1, t2, t3;
581
582
 
606
607
insert into t2 select @v:=A.a+10*B.a, @v  from t1 A, t1 B;
607
608
 
608
609
explain select * from t1;
 
610
--replace_column 2 #
609
611
show status like '%cost%';
610
612
select 'The cost of accessing t1 (dont care if it changes' '^';
611
613
 
612
614
select 'vv: Following query must use ALL(t1), eq_ref(A), eq_ref(B): vv' Z;
613
615
 
614
616
explain select * from t1, t2 A, t2 B where A.a = t1.a and B.a=A.b;
 
617
--replace_column 2 #
615
618
show status like '%cost%';
616
619
select '^^: The above should be ~= 20 + cost(select * from t1). Value less than 20 is an error' Z;
617
620