Hi,
I kept getting this error message. Here's the background:
Table: items
id int
Name varchar
Description varchar
Index:
create metamorph inverted index xitems1 on items(Name\Description);
Here's what's in my code:
<SQL "select Name from items where Name\Description likep 'shoes' order by Name">
<SQL>
The sql statement returns the result sorted alphabetically, but it always give me the following error messages:
<!-- 115 /inny/innydl:122: Field Name non-existent -->
<!-- 200 /inny/innydl:122: Can't handle ORDER BY with compound index -->
Did I do anything wrong?
Thanks!
I kept getting this error message. Here's the background:
Table: items
id int
Name varchar
Description varchar
Index:
create metamorph inverted index xitems1 on items(Name\Description);
Here's what's in my code:
<SQL "select Name from items where Name\Description likep 'shoes' order by Name">
<SQL>
The sql statement returns the result sorted alphabetically, but it always give me the following error messages:
<!-- 115 /inny/innydl:122: Field Name non-existent -->
<!-- 200 /inny/innydl:122: Can't handle ORDER BY with compound index -->
Did I do anything wrong?
Thanks!