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

Add support for subqueries in filters (fix #602) #714

Merged
merged 3 commits into from
Jun 6, 2023

Conversation

arteymix
Copy link
Member

@arteymix arteymix commented Jun 5, 2023

No description provided.

@@ -194,7 +203,8 @@ public enum Operator {
greaterThan( ">", true, null ),
lessOrEq( "<=", true, null ),
greaterOrEq( ">=", true, null ),
in( "in", true, Collection.class );
in( "in", true, Collection.class ),
inSubquery( "in", true, Subquery.class );
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Subqueries are not limited to in clauses, but that's all we need to support for now.

@arteymix arteymix added this to the 1.30.0 milestone Jun 5, 2023
@arteymix arteymix merged commit c3004ba into development Jun 6, 2023
@arteymix arteymix deleted the feature-filters-with-subqueries branch June 6, 2023 17:23
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

Successfully merging this pull request may close these issues.

Clauses involving one-to-many relations in a filter require separate jointures or a subqueries
1 participant