~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/analyze.test

  • Committer: Brian Aker
  • Date: 2010-02-23 22:10:47 UTC
  • mto: (1273.13.97 build)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gaz-20100223221047-uehdt5fcwx1z3c9p
Enabled more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
create temporary table t1(a int, index(a));
56
56
insert into t1 values('1'),('2'),('3'),('4'),('5');
57
57
analyze table t1;
58
 
#show index from t1;
 
58
show index from t1;
59
59
drop table t1;
60
60
 
61
61
--echo End of 4.1 tests