~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/join_outer_innodb.result

  • Committer: Monty Taylor
  • Date: 2008-10-10 23:04:21 UTC
  • mto: (509.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 511.
  • Revision ID: monty@inaugust.com-20081010230421-zohe1eppxievpw8d
RemovedĀ O_NOFOLLOW

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
WHERE t1.name LIKE 'A%';
10
10
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
11
11
1       SIMPLE  t1      index   PRIMARY,name    PRIMARY 4       NULL    3       Using where
12
 
1       SIMPLE  t2      ref     fkey    fkey    5       test.t1.id      1       Using where; Using index
 
12
1       SIMPLE  t2      ref     fkey    fkey    5       test.t1.id      1       Using index
13
13
EXPLAIN
14
14
SELECT COUNT(*) FROM t2 LEFT JOIN t1 ON t2.fkey = t1.id 
15
15
WHERE t1.name LIKE 'A%' OR FALSE;