You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should enforce the usage of an identifier for fields used in the RERANK command.
The following command:
FROM movies METADATA _score
| WHERE QSTR("star wars")
| RERANK "star wars" ON title, SUBSTRING(overview, 0, 100), actors WITH rerankerInferenceId
should fail because no name has been provided for the SUBSTRING expression.
The correct way to write it is:
FROM movies METADATA _score
| WHERE QSTR("star wars")
| RERANK "star wars" ON title, short_overview=SUBSTRING(overview, 0, 100), actors WITH rerankerInferenceId
The text was updated successfully, but these errors were encountered:
Acceptance criteria:
The following command:
should fail because no name has been provided for the
SUBSTRING
expression.The correct way to write it is:
The text was updated successfully, but these errors were encountered: