~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Stewart Smith
  • Date: 2010-12-02 02:24:01 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1971.
  • Revision ID: stewart@flamingspork.com-20101202022401-38btm98rq6zd1dw5
fix innodb result file for changed index stats and remove innodb_gis test (not needed on drizzle - no GIS types)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1394
1394
0
1395
1395
explain select count(*) from t1 where x > -16;
1396
1396
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
1397
 
1       SIMPLE  t1      range   PRIMARY PRIMARY 8       NULL    1       Using where; Using index
 
1397
1       SIMPLE  t1      index   PRIMARY PRIMARY 8       NULL    2       Using where; Using index
1398
1398
select count(*) from t1 where x > -16;
1399
1399
count(*)
1400
1400
2