From: Date: April 12 2007 11:31pm Subject: bk commit into 4.1 tree (svoj:1.2630) BUG#25951 List-Archive: http://lists.mysql.com/commits/24400 X-Bug: 25951 Message-Id: <20070412213137.771FC58C@april.pils.ru> Below is the list of changes that have just been committed into a local 4.1 repository of svoj. When svoj does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-04-13 02:31:34+05:00, svoj@stripped +3 -0 BUG#25951 - ignore/use index does not work with fulltext IGNORE/USE/FORCE INDEX hints were honored when choosing FULLTEXT index. With this fix these hints are ignored. For regular indexes we may perform table scan instead of index lookup when IGNORE INDEX was specified. We cannot do this for FULLTEXT in NLQ mode. mysql-test/r/fulltext.result@stripped, 2007-04-13 02:31:32+05:00, svoj@stripped +7 -0 A test case for bug#25951. mysql-test/t/fulltext.test@stripped, 2007-04-13 02:31:32+05:00, svoj@stripped +10 -0 A test case for bug#25951. sql/item_func.cc@stripped, 2007-04-13 02:31:32+05:00, svoj@stripped +1 -1 IGNOR/USE/FORCE INDEX hints should not be honored when choosing FULLTEXT index. Use proper bitmap, that is not modified by IGNORE/USE/FORCE INDEX hints. # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: svoj # Host: april.(none) # Root: /home/svoj/devel/mysql/BUG25951/mysql-4.1-engines --- 1.274/sql/item_func.cc 2007-04-13 02:31:37 +05:00 +++ 1.275/sql/item_func.cc 2007-04-13 02:31:37 +05:00 @@ -3158,7 +3158,7 @@ bool Item_func_match::fix_index() for (keynr=0 ; keynr < table->keys ; keynr++) { if ((table->key_info[keynr].flags & HA_FULLTEXT) && - (table->keys_in_use_for_query.is_set(keynr))) + (table->keys_in_use.is_set(keynr))) { ft_to_key[fts]=keynr; ft_cnt[fts]=0; --- 1.78/mysql-test/r/fulltext.result 2007-04-13 02:31:37 +05:00 +++ 1.79/mysql-test/r/fulltext.result 2007-04-13 02:31:37 +05:00 @@ -447,3 +447,10 @@ a MATCH(a) AGAINST('test1 test') test1 0.68526661396027 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; --- 1.77/mysql-test/t/fulltext.test 2007-04-13 02:31:37 +05:00 +++ 1.78/mysql-test/t/fulltext.test 2007-04-13 02:31:37 +05:00 @@ -369,4 +369,14 @@ EXECUTE stmt; DEALLOCATE PREPARE stmt; DROP TABLE t1; +# +# BUG#25951 - ignore/use index does not work with fulltext +# +CREATE TABLE t1 (a VARCHAR(255), FULLTEXT(a)); +SELECT * FROM t1 IGNORE INDEX(a) WHERE MATCH(a) AGAINST('test'); +ALTER TABLE t1 DISABLE KEYS; +--error 1191 +SELECT * FROM t1 WHERE MATCH(a) AGAINST('test'); +DROP TABLE t1; + # End of 4.1 tests