diff options
author | unknown <serg@serg.mylan> | 2004-01-21 23:29:17 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-01-21 23:29:17 +0100 |
commit | 0ef9acc9a9932ea63ff41d4528231632f3a3d31d (patch) | |
tree | 129bb0d5f173f2b8cd7a76e4027d1dc587457261 /mysql-test/t/myisam.test | |
parent | 2c3fdcf749b57d4b168710606c84f42943a4ad24 (diff) | |
download | mariadb-git-0ef9acc9a9932ea63ff41d4528231632f3a3d31d.tar.gz |
two more bugfixes for "space stripping in MyISAM indexes"
Diffstat (limited to 'mysql-test/t/myisam.test')
-rw-r--r-- | mysql-test/t/myisam.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test index 7ad038bcad0..25bb76ceaba 100644 --- a/mysql-test/t/myisam.test +++ b/mysql-test/t/myisam.test @@ -387,10 +387,11 @@ check table t1; drop table t1; # -# sort-repair bug +# two bugs in myisam-space-stripping feature # create table t1 ( a text not null, key a (a(20))); insert into t1 values ('aaa '),('aaa'); repair table t1; +select concat(a,'.') from t1 where a='aaa'; drop table t1; |