summaryrefslogtreecommitdiff
path: root/mysql-test/t/myisam.test
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-01-21 23:29:17 +0100
committerunknown <serg@serg.mylan>2004-01-21 23:29:17 +0100
commit0ef9acc9a9932ea63ff41d4528231632f3a3d31d (patch)
tree129bb0d5f173f2b8cd7a76e4027d1dc587457261 /mysql-test/t/myisam.test
parent2c3fdcf749b57d4b168710606c84f42943a4ad24 (diff)
downloadmariadb-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.test3
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;