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
Special case mappings with an entity expression and a limit of 1 to also use the equals predicate instead of the IN predicate. Follow up of #1810
@Mapping(value = "PageRevision[page.id = VIEW(page.id)]", fetch = FetchStrategy.JOIN) @Limit(limit = "1", order = "id DESC") PageRevisionGraphQlView getLastRevision();
This still produces an error on MySQL/MariaDB because the correlated subquery uses a limit which is not supported.
The text was updated successfully, but these errors were encountered:
[Blazebit#1831] Special case mappings with limit of 1 to use = instea…
21fa432
…d of IN predicate
b9372e3
[#1831] Special case mappings with limit of 1 to use = instead of IN …
c6f8e2f
…predicate
9f9c16a
beikov
Successfully merging a pull request may close this issue.
Special case mappings with an entity expression and a limit of 1 to also use the equals predicate instead of the IN predicate. Follow up of #1810
This still produces an error on MySQL/MariaDB because the correlated subquery uses a limit which is not supported.
The text was updated successfully, but these errors were encountered: