~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/analyze.result

  • Committer: Brian Aker
  • Date: 2009-01-06 23:40:50 UTC
  • mfrom: (642.1.69 drizzle-clean-code)
  • Revision ID: brian@tangent.org-20090106234050-w01lo5f4r3q62nik
Finished merge for Lee

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
Table   Op      Msg_type        Msg_text
31
31
test.t1 check   status  OK
32
32
drop table t1;
33
 
create table t1 (a mediumtext, fulltext key key1(a)) charset utf8 collate utf8_general_ci engine myisam;
 
33
create table t1 (a varchar(10), key key1(a)) collate utf8_general_ci engine myisam;
34
34
insert into t1 values ('hello');
35
35
analyze table t1;
36
36
Table   Op      Msg_type        Msg_text
49
49
t1      1       a       1       a       A       5       NULL    NULL    YES     BTREE           
50
50
drop table t1;
51
51
End of 4.1 tests
52
 
create table t1(a int);
53
 
analyze table t1 extended;
54
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'extended' at line 1
55
 
optimize table t1 extended;
56
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'extended' at line 1
57
 
drop table t1;
58
52
End of 5.0 tests