| Bug #7709 | Boolean fulltext query against unsupported engines does not fail | ||
|---|---|---|---|
| Submitted: | 6 Jan 2005 16:12 | Modified: | 16 May 2005 14:55 |
| Reporter: | Dean Ellis | Email Updates: | |
| Status: | Closed | Impact on me: | |
| Category: | MySQL Server | Severity: | S3 (Non-critical) |
| Version: | 4.0.24 | OS: | |
| Assigned to: | Sergey Vojtovich | CPU Architecture: | Any |
[7 May 2005 10:51]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/internals/24663
[16 May 2005 14:55]
Paul DuBois
Noted in 4.0.25 changelog.

Description: Boolean-mode fulltext searches execute without error against unsupported storage engines. How to repeat: CREATE TABLE t1 ( a char(10) ) ENGINE=InnoDB; SELECT * FROM t1 WHERE MATCH (a) AGAINST ('test' IN BOOLEAN MODE); Suggested fix: Raise an error for unsupported storage engines.