mariadb/storage/tokudb/mysql-test/tokudb_bugs/t/1648.test
2013-09-09 13:59:38 +02:00

18 lines
384 B
Text

--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;