~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/null_key.test

  • Committer: Jay Pipes
  • Date: 2008-12-21 17:02:01 UTC
  • mto: This revision was merged to the branch mainline in revision 729.
  • Revision ID: jpipes@serialcoder-20081221170201-0zmxmym433g97ylh
Ignore rows in EXPLAIN output for InnoDB - they are inaccurate

Show diffs side-by-side

added added

removed removed

Lines of Context:
234
234
 
235
235
SELECT COUNT(*) FROM t3;
236
236
 
 
237
# Ignore the 9th column (rows in EXPLAIN output - inaccurate in InnoDB)
 
238
--regex_replace 9 X
237
239
EXPLAIN SELECT SQL_CALC_FOUND_ROWS * FROM t1 LEFT JOIN t2 ON t1.a=t2.a
238
240
                                             LEFT JOIN t3 ON t2.b=t3.b;
239
241
FLUSH STATUS ;