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

19 lines
384 B
Plaintext

--source include/have_tokudb.inc
#
# Record inconsistency.
#
#
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
--disable_warnings
DROP TABLE IF EXISTS foo;
--enable_warnings
create table foo (a blob, key (a(3)))engine=tokudb;
insert into foo value ("asfdasdfasdfasdf");
explain select * from foo where a like 'asf%';
select * from foo where a like 'asf%';
# Final cleanup.
DROP TABLE foo;