~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/derived.test

  • Committer: Monty Taylor
  • Date: 2008-12-24 19:15:51 UTC
  • mto: This revision was merged to the branch mainline in revision 751.
  • Revision ID: mordred@inaugust.com-20081224191551-21dhl54xpx5uuf3e
Fixed non-deterministic innodb explain output.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 }
53
53
enable_query_log;
54
54
SELECT * FROM (SELECT * FROM t1) as b ORDER BY a  ASC LIMIT 0,20;
 
55
--replace_column 9 X
55
56
explain select count(*) from t1 as tt1, (select * from t1) as tt2;
56
57
drop table t1;
57
58
SELECT * FROM (SELECT (SELECT * FROM (SELECT 1 as a) as a )) as b;