We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
select distinct queries aren't being interpreted correctly. For example:
select distinct
embeddings.search("select distinct id, text from txtai where similar('test')")
doesn't return the distinct id/text rows. There is most likely an issue with the query preprocessor and the distinct keyword.
distinct
In the meantime, the following workaround can be used:
embeddings.search("select distinct(id || text), id, text from txtai where similar('test')")
The text was updated successfully, but these errors were encountered:
1f99694
davidmezzetti
No branches or pull requests
select distinct
queries aren't being interpreted correctly. For example:doesn't return the distinct id/text rows. There is most likely an issue with the query preprocessor and the
distinct
keyword.In the meantime, the following workaround can be used:
The text was updated successfully, but these errors were encountered: