diff options
author | svoj@mysql.com/april.(none) <> | 2007-07-13 03:29:25 +0500 |
---|---|---|
committer | svoj@mysql.com/april.(none) <> | 2007-07-13 03:29:25 +0500 |
commit | c16c5db7a8dad6c51365e3abe87978bd8f55efc0 (patch) | |
tree | 176db9f50a7769b4e326467c9f102cb5fdcd493d /mysql-test/t/fulltext.test | |
parent | e11d75e45b8b3ea60c140d025811a6ba575c1fe1 (diff) | |
download | mariadb-git-c16c5db7a8dad6c51365e3abe87978bd8f55efc0.tar.gz |
BUG#29464 - load data infile into table with big5 chinese fulltext index
hangs 100% cpu
Moved a test case for BUG#29464 into fulltext3.test, since it requires big5
character set.
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r-- | mysql-test/t/fulltext.test | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index ecb4a0e5691..1f8a3b82cfd 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -400,15 +400,6 @@ SELECT * FROM t1 WHERE MATCH(a) AGAINST('test'); DROP TABLE t1; # -# BUG#29464 - load data infile into table with big5 chinese fulltext index -# hangs 100% cpu -# -CREATE TABLE t1(a VARCHAR(2) CHARACTER SET big5 COLLATE big5_chinese_ci, -FULLTEXT(a)); -INSERT INTO t1 VALUES(0xA3C2); -DROP TABLE t1; - -# # BUG#29445 - match ... against () never returns # CREATE TABLE t1(a VARCHAR(20), FULLTEXT(a)); |