MySQL Forums
Forum List  »  MyISAM

Error in subqueries containing fulltext index
Posted by: mjperezb
Date: February 03, 2005 06:49AM

Hi,

I'm obtaining a 'STORAGE ENGINE ERROR' when I'm trying to run an 'inselect' subquery containing fulltext indexes. TBL_VALUE is a MYISAM table with a fulltext index field named VAL_C.

This is my code:

SELECT ID_ENTIDAD FROM TBL_VALUE
WHERE MATCH (VAL_C) AGAINST ('texto1' in boolean mode) AND ID_ENTIDAD
in (SELECT ID_ENTIDAD FROM TBL_VALUE
WHERE MATCH (VAL_C) AGAINST ('texto2' in boolean mode))


I've noticed that this works when the subquery returns only one record or when it WHERE clause doesn't contain a fulltext condition.

I'm working with release 4.1 and I've read the Manual and I canĀ“t guess what the problem is. I hope someone can help me.

Thanx.

Options: ReplyQuote


Subject
Views
Written By
Posted
Error in subqueries containing fulltext index
4073
February 03, 2005 06:49AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.