~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/analyze.result

  • Committer: Brian Aker
  • Date: 2009-08-24 19:19:39 UTC
  • mfrom: (1121.1.6 merge)
  • Revision ID: brian@gaz-20090824191939-xcn528r7gwjc48h3
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
insert into t1 values ('hello');
31
31
analyze table t1;
32
32
Table   Op      Msg_type        Msg_text
33
 
test.t1 analyze status  OK
 
33
test.t1 analyze note    The storage engine for the table doesn't support analyze
34
34
analyze table t1;
35
35
Table   Op      Msg_type        Msg_text
36
 
test.t1 analyze status  Table is already up to date
 
36
test.t1 analyze note    The storage engine for the table doesn't support analyze
37
37
drop table t1;
38
38
create temporary table t1(a int, index(a));
39
39
insert into t1 values('1'),('2'),('3'),('4'),('5');