mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
testcase for a bug not yet fixed. Once fixed, the test should fail
in EXPLAIN's output. mysql-test/t/maria.test: adding a test for "incorrect key file" error in UPDATE with row_format=dynamic (does not happen with row_format=page)
This commit is contained in:
parent
562923e85f
commit
8dcd83d0da
1 changed files with 11 additions and 0 deletions
|
@ -431,6 +431,17 @@ update t1 set a='bbb' where a='aaa';
|
|||
select concat(a,'.') from t1;
|
||||
drop table t1;
|
||||
|
||||
# test again but with dynamic format
|
||||
create table t1 ( a text not null, key a (a(20))) row_format=dynamic;
|
||||
insert into t1 values ('aaa '),('aaa'),('aa');
|
||||
check table t1;
|
||||
repair table t1;
|
||||
select concat(a,'.') from t1 where a='aaa';
|
||||
select concat(a,'.') from t1 where binary a='aaa';
|
||||
update t1 set a='bbb' where a='aaa';
|
||||
select concat(a,'.') from t1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# More space testing
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue