Skip to content
New issue

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

"possibly not a distinct set" error when wrapping fts::search in a for expression and converting to a free object #6530

Open
scotttrinh opened this issue Nov 29, 2023 · 0 comments

Comments

@scotttrinh
Copy link
Contributor

  • EdgeDB Version: 5.0-dev.8054+e540dec
edgedb> with result := (
.......   (for search in fts::search(default::Post, "search") union (
.......     select {
.......       object := search.object,
.......       score := search.score
.......     }
.......   ))
....... )
....... select result { text := .object.text, score := .score };

Results in the following error:

edgedb error: QueryError: possibly not a distinct set returned by an expression for a computed link 'object'
Hint: You can use assert_distinct() around the expression to turn this into a runtime assertion, or the DISTINCT operator to silently discard duplicate elements.

Adding distinct to the search.object expression does indeed work:

edgedb> with result := (
.......   (for search in fts::search(default::Post, "search") union (
.......     select {
.......       object := distinct search.object,
.......       score := search.score
.......     }
.......   ))
....... )
....... select result { text := .object.text, score := .score };
{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant