Commit 44bb19b7 authored by Rich Prohaska's avatar Rich Prohaska

DB-788 fix optimize by index name test result

parent c87f8151
......@@ -4,16 +4,13 @@ create table t (a int, b int, c int, primary key(a), key(b), key(c));
set tokudb_optimize_index_name='primary';
optimize table t;
Table Op Msg_type Msg_text
test.t optimize note Table does not support optimize, doing recreate + analyze instead
test.t optimize status OK
set tokudb_optimize_index_name='b';
optimize table t;
Table Op Msg_type Msg_text
test.t optimize note Table does not support optimize, doing recreate + analyze instead
test.t optimize status OK
set tokudb_optimize_index_name='c';
optimize table t;
Table Op Msg_type Msg_text
test.t optimize note Table does not support optimize, doing recreate + analyze instead
test.t optimize status OK
drop table t;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment