mariadb/mysql-test/suite/tokudb.bugs/t/1648.test

19 lines
376 B
Text
Raw Normal View History

--source include/have_tokudb.inc
#
# Record inconsistency.
#
#
SET 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;