Commit 423817f7 authored by Zardosht Kasheff's avatar Zardosht Kasheff

[t:3486], add some comments to test

git-svn-id: file:///svn/mysql/tests/mysql-test@30545 c7de825b-a66e-492c-adef-691d508d4ae1
parent bf4f63c7
# ticket 895 is a query optimization problem with the primary key
# ticket 3486 is a bug where we crash on an update because the buffer we allocate
# is not resized
--source include/have_tokudb.inc
SET STORAGE_ENGINE = 'tokudb';
......@@ -11,6 +12,7 @@ set session tokudb_disable_slow_alter=ON;
create table foo (a blob, clustering key (a(3)))engine=TokuDB;
insert into foo values("");
# not really necessary to alter table, we could have just udpated a
alter table foo add column b blob;
update foo set b="bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb";
select * from foo;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment