2010-10-28 13:01:37 +00:00
|
|
|
# ticket 895 is a query optimization problem with the primary key
|
|
|
|
|
2010-12-03 17:26:18 +00:00
|
|
|
--source include/have_tokudb.inc
|
|
|
|
--source include/not_5_5.inc
|
2010-10-28 13:01:37 +00:00
|
|
|
--echo # Establish connection conn1 (user = root)
|
|
|
|
connect (conn1,localhost,root,,);
|
|
|
|
SET STORAGE_ENGINE = 'tokudb';
|
|
|
|
|
|
|
|
--disable_warnings
|
|
|
|
DROP TABLE IF EXISTS foo;
|
|
|
|
--enable_warnings
|
|
|
|
|
|
|
|
connection conn1;
|
|
|
|
create table foo ( a int, b int, c int, key (a), key (b));
|
|
|
|
begin;
|
|
|
|
select * from foo;
|
|
|
|
select sum(a) from foo;
|
|
|
|
|
|
|
|
connection default;
|
2012-02-09 16:37:01 +00:00
|
|
|
alter table foo drop index a;
|
2010-10-28 13:01:37 +00:00
|
|
|
select * from foo;
|
|
|
|
truncate table foo;
|
2012-02-09 16:37:01 +00:00
|
|
|
rename table foo to bar;
|
|
|
|
drop table bar;
|
2010-10-28 13:01:37 +00:00
|
|
|
|
|
|
|
connection conn1;
|
|
|
|
commit;
|
|
|
|
|
|
|
|
connection default;
|
|
|
|
disconnect conn1;
|
|
|
|
|
|
|
|
connection default;
|
|
|
|
# Final cleanup.
|