diff options
author | unknown <svoj@mysql.com/april.(none)> | 2007-07-13 03:29:25 +0500 |
---|---|---|
committer | unknown <svoj@mysql.com/april.(none)> | 2007-07-13 03:29:25 +0500 |
commit | bae6562762e8a35793faf5c2708b1401f81f81fe (patch) | |
tree | 176db9f50a7769b4e326467c9f102cb5fdcd493d /mysql-test/t/fulltext.test | |
parent | 62738bf97e7a653030361f0dcedf0f4a5c97388d (diff) | |
download | mariadb-git-bae6562762e8a35793faf5c2708b1401f81f81fe.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.
mysql-test/r/fulltext.result:
Moved a test case for BUG#29464 into fulltext3.test, since it requires big5
character set.
mysql-test/r/fulltext3.result:
Moved a test case for BUG#29464 into fulltext3.test, since it requires big5
character set.
mysql-test/t/fulltext.test:
Moved a test case for BUG#29464 into fulltext3.test, since it requires big5
character set.
mysql-test/t/fulltext3.test:
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)); |