1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00
Files
mariadb/storage/tokudb/mysql-test/tokudb_bugs/r/fileops-3.result
Sergei Golubchik 9a3b9a5416 tokudb test suites
2013-09-09 13:59:38 +02:00

18 lines
359 B
Plaintext

# Establish connection conn1 (user = root)
SET DEFAULT_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;