~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/null_key.test

  • Committer: jay
  • Date: 2008-12-23 00:18:10 UTC
  • Revision ID: jay@piggy.tangent.org-20081223001810-026ibij22q2842k1
Had a --regex-replace by accident. Should have been --replace_column call.  Only showed up in make test, not running single test, because InnoDB key numbers were different with multiple test running.

Show diffs side-by-side

added added

removed removed

Lines of Context:
276
276
SELECT COUNT(*) FROM t3;
277
277
 
278
278
# Ignore the 9th column (rows in EXPLAIN output - inaccurate in InnoDB)
279
 
--regex_replace 9 X
 
279
--replace_column 9 X
280
280
EXPLAIN SELECT SQL_CALC_FOUND_ROWS * FROM t1 LEFT JOIN t2 ON t1.a=t2.a
281
281
                                             LEFT JOIN t3 ON t2.b=t3.b;
282
282
FLUSH STATUS ;