~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mix2_myisam.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:
167
167
1       1005    101
168
168
optimize table t1;
169
169
Table   Op      Msg_type        Msg_text
170
 
test.t1 optimize        status  OK
 
170
test.t1 optimize        note    The storage engine for the table doesn't support optimize
171
171
show keys from t1;
172
172
Table   Non_unique      Key_name        Seq_in_index    Column_name     Collation       Cardinality     Sub_part        Packed  Null    Index_type      Comment Index_Comment
173
173
t1      0       PRIMARY 1       id      A       #       NULL    NULL            BTREE           
191
191
insert into t1 values (1), (2);
192
192
optimize table t1;
193
193
Table   Op      Msg_type        Msg_text
194
 
test.t1 optimize        status  OK
 
194
test.t1 optimize        note    The storage engine for the table doesn't support optimize
195
195
delete from t1 where a = 1;
196
196
select * from t1;
197
197
a
210
210
insert into t1 values (3,""), (4,"testing");
211
211
analyze table t1;
212
212
Table   Op      Msg_type        Msg_text
213
 
test.t1 analyze status  OK
 
213
test.t1 analyze note    The storage engine for the table doesn't support analyze
214
214
show keys from t1;
215
215
Table   Non_unique      Key_name        Seq_in_index    Column_name     Collation       Cardinality     Sub_part        Packed  Null    Index_type      Comment Index_Comment
216
216
t1      1       skr     1       a       A       #       NULL    NULL    YES     BTREE           
613
613
hello   1
614
614
optimize table t1;
615
615
Table   Op      Msg_type        Msg_text
616
 
test.t1 optimize        status  OK
 
616
test.t1 optimize        note    The storage engine for the table doesn't support optimize
617
617
show keys from t1;
618
618
Table   Non_unique      Key_name        Seq_in_index    Column_name     Collation       Cardinality     Sub_part        Packed  Null    Index_type      Comment Index_Comment
619
619
t1      0       PRIMARY 1       a       A       #       NULL    NULL            BTREE           
1718
1718
INSERT INTO t1 VALUES (1);
1719
1719
OPTIMIZE TABLE t1;
1720
1720
Table   Op      Msg_type        Msg_text
1721
 
test.t1 optimize        status  OK
 
1721
test.t1 optimize        note    The storage engine for the table doesn't support optimize
1722
1722
DROP TABLE t1;