mariadb/mysql-test/suite/tokudb.bugs/r/fileops-3.result
Zardosht Kasheff 1bff277114 [t:4472], fix fileops-3
git-svn-id: file:///svn/mysql/tests/mysql-test@39783 c7de825b-a66e-492c-adef-691d508d4ae1
2012-02-09 16:37:01 +00:00

17 lines
351 B
Text
Executable file

# Establish connection conn1 (user = root)
SET STORAGE_ENGINE = 'tokudb';
DROP TABLE IF EXISTS foo;
create table foo ( a int, b int, c int, key (a), key (b));
begin;
select * from foo;
a b c
select sum(a) from foo;
sum(a)
NULL
alter table foo drop index a;
select * from foo;
a b c
truncate table foo;
rename table foo to bar;
drop table bar;
commit;