We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Consider this name derived query:
Flux<Film> findByFilmIdInOrderByFilmIdAsc(Flux<Long> filmIds);
When we get to here:
https://github.com/spring-projects/spring-data-relational/blob/main/spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/repository/query/PartTreeR2dbcQuery.java#L72
It calls R2dbcQueryCreator.validate() which eventually gets here and fails:
R2dbcQueryCreator.validate()
https://github.com/spring-projects/spring-data-relational/blob/main/spring-data-relational/src/main/java/org/springframework/data/relational/repository/query/RelationalQueryCreator.java#L130
However, this functionality is actually supported here:
https://github.com/spring-projects/spring-data-relational/blob/main/spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/repository/query/R2dbcParameterAccessor.java#L119
The text was updated successfully, but these errors were encountered:
mp911de
No branches or pull requests
Consider this name derived query:
Flux<Film> findByFilmIdInOrderByFilmIdAsc(Flux<Long> filmIds);
When we get to here:
https://github.com/spring-projects/spring-data-relational/blob/main/spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/repository/query/PartTreeR2dbcQuery.java#L72
It calls
R2dbcQueryCreator.validate()
which eventually gets here and fails:https://github.com/spring-projects/spring-data-relational/blob/main/spring-data-relational/src/main/java/org/springframework/data/relational/repository/query/RelationalQueryCreator.java#L130
However, this functionality is actually supported here:
https://github.com/spring-projects/spring-data-relational/blob/main/spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/repository/query/R2dbcParameterAccessor.java#L119
The text was updated successfully, but these errors were encountered: