mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
[t:3486], add some comments to test
git-svn-id: file:///svn/mysql/tests/mysql-test@30545 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
dad9cf616a
commit
c96e822c99
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
# 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;
|
||||
|
|
Loading…
Reference in a new issue