You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Spring Data JDBC (Spring Boot 3.3.0), when using JdbcAggregateOperations.findAll API with a Query object, the columns parameter of the query is not respected. When I specify some columns in the query, the returned object should have only theses properties populated. The logged query shows that Spring Data JDBC is using all columns in the select part.
With Spring Data JDBC (Spring Boot 3.3.0), when using
JdbcAggregateOperations.findAll
API with aQuery
object, thecolumns
parameter of the query is not respected. When I specify some columns in the query, the returned object should have only theses properties populated. The logged query shows that Spring Data JDBC is using all columns in the select part.I have made a reproduction repo: https://github.com/Jul13nT/spring-data-jdbc-query-columns
You can run the
CustomerRepositoryTest
to see the problem.This works fine with Spring Data R2DBC with
R2dbcEntityTemplate.select
.The text was updated successfully, but these errors were encountered: