I have a table similar to the html table from the dowalk_beta script. Here's the definition of the metamorph index:
create metamorph inverted index xhtmlbod on html(Title\Description\Keywords\Body)
I want to perform a keyword search that only search the keyword field of a record along with a full text search that searches only the Title and Body fields. When I try the following query,
<sql "select 'http://'+Url Url, Title, $$rank Rank from html where Title\Body\Metadata likep $defaultquery and Keywords like $keywordquery"></sql>
I get the following error:
<!-- 115 /vortex/search:725: Query would require linear search -->
How would I propery construct the query to do what I need?
create metamorph inverted index xhtmlbod on html(Title\Description\Keywords\Body)
I want to perform a keyword search that only search the keyword field of a record along with a full text search that searches only the Title and Body fields. When I try the following query,
<sql "select 'http://'+Url Url, Title, $$rank Rank from html where Title\Body\Metadata likep $defaultquery and Keywords like $keywordquery"></sql>
I get the following error:
<!-- 115 /vortex/search:725: Query would require linear search -->
How would I propery construct the query to do what I need?