summaryrefslogtreecommitdiff
path: root/mysql-test/t/fulltext.test
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2002-10-09 18:57:13 +0000
committerunknown <serg@serg.mysql.com>2002-10-09 18:57:13 +0000
commit61c50cf761718fa55092ac4ba1c041e0732db2e5 (patch)
treef591efba5b54649f79593c0ab2fbbd3bd28179b1 /mysql-test/t/fulltext.test
parentefacfcade07a9f75bfa801d109829a52a1666e17 (diff)
downloadmariadb-git-61c50cf761718fa55092ac4ba1c041e0732db2e5.tar.gz
fixed repair_by_sort FULLTEXT bug
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r--mysql-test/t/fulltext.test12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test
index 65d5381d725..6483045f4ed 100644
--- a/mysql-test/t/fulltext.test
+++ b/mysql-test/t/fulltext.test
@@ -160,3 +160,15 @@ INSERT INTO t1 VALUES (1,'my small mouse'),(2,'la-la-la'),(3,'It is so funny'),(
select 8 from t1;
drop table t1;
+#
+# Check bug reported by Julian Ladisch
+# ERROR 1030: Got error 127 from table handler
+#
+
+drop table if exists t1;
+create table t1 (a text, fulltext key (a));
+insert into t1 values ('aaaa');
+repair table t1;
+select * from t1 where match (a) against ('aaaa');
+drop table t1;
+