diff options
author | unknown <svoj@june.mysql.com> | 2007-04-18 13:27:04 +0500 |
---|---|---|
committer | unknown <svoj@june.mysql.com> | 2007-04-18 13:27:04 +0500 |
commit | 1ff64d6e1111247536ecc004505ca376df8a58b6 (patch) | |
tree | 527db588a8816c21afde99deb6a4959fae6e0b1a /mysql-test/r/fulltext.result | |
parent | 1a90e29f1bfeaaad78e8f29f144d1300c3ae4e5b (diff) | |
parent | b8250c712653e50acde5485b096429d55290f1ff (diff) | |
download | mariadb-git-1ff64d6e1111247536ecc004505ca376df8a58b6.tar.gz |
Merge mysql.com:/home/svoj/devel/mysql/BUG25951/mysql-5.0-engines
into mysql.com:/home/svoj/devel/mysql/BUG25951/mysql-5.1-engines
mysql-test/r/fulltext.result:
Auto merged
mysql-test/t/fulltext.test:
Auto merged
sql/item_func.cc:
Auto merged
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index 829cf25a896..d8e3d53f7b1 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -469,3 +469,10 @@ a FORMAT(MATCH(a) AGAINST('test1 test'),6) test1 0.685267 DEALLOCATE PREPARE stmt; DROP TABLE t1; +CREATE TABLE t1 (a VARCHAR(255), FULLTEXT(a)); +SELECT * FROM t1 IGNORE INDEX(a) WHERE MATCH(a) AGAINST('test'); +a +ALTER TABLE t1 DISABLE KEYS; +SELECT * FROM t1 WHERE MATCH(a) AGAINST('test'); +ERROR HY000: Can't find FULLTEXT index matching the column list +DROP TABLE t1; |