~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/null_key.result

  • 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:
374
374
EXPLAIN SELECT SQL_CALC_FOUND_ROWS * FROM t1 LEFT JOIN t2 ON t1.a=t2.a
375
375
LEFT JOIN t3 ON t2.b=t3.b;
376
376
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
377
 
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    4       
378
 
1       SIMPLE  t2      ref     idx     idx     5       test.t1.a       1       
379
 
1       SIMPLE  t3      ref     idx     idx     5       test.t2.b       2089    Using index
 
377
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    X       
 
378
1       SIMPLE  t2      ref     idx     idx     5       test.t1.a       X       
 
379
1       SIMPLE  t3      ref     idx     idx     5       test.t2.b       X       Using index
380
380
FLUSH STATUS ;
381
381
SELECT SQL_CALC_FOUND_ROWS * FROM t1 LEFT JOIN t2 ON t1.a=t2.a
382
382
LEFT JOIN t3 ON t2.b=t3.b;