~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/r/innodb_mysql.result

  • Committer: Monty Taylor
  • Date: 2010-11-26 22:50:54 UTC
  • mfrom: (1953.1.6 build)
  • Revision ID: mordred@inaugust.com-20101126225054-sg90svw8579t5p3i
Stewart - InnoDB 1.1.1
Monty - Fixed some autoconf tests which were returning false positives.

Show diffs side-by-side

added added

removed removed

Lines of Context:
348
348
DELETE FROM t1;
349
349
EXPLAIN SELECT DISTINCT t1.name, t1.dept FROM t1 WHERE t1.name='rs5';
350
350
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
351
 
1       SIMPLE  t1      range   name    name    164     NULL    2       Using where; Using index for group-by
 
351
1       SIMPLE  t1      range   name    name    164     NULL    #       Using where; Using index for group-by
352
352
SELECT DISTINCT t1.name, t1.dept FROM t1 WHERE t1.name='rs5';
353
353
name    dept
354
354
DROP TABLE t1;