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
We recently tried to upgrade one of our projects from springboot 2.6.3 to 2.6.4 (upgrading spring-data-r2dbc:1.4.1 to spring-data-r2dbc:1.4.2), which introduced an interesting error that we believe stems from this project 🤔
We have an interface:
interfaceXYZRepository : CoroutineCrudRepository<XYZ, UUID> {
suspendfuncountByAvailabilityTrue(): Int
}
We turned on logging using the r2dbc logging application properties to see what query was being generated:
We recently tried to upgrade one of our projects from springboot 2.6.3 to 2.6.4 (upgrading spring-data-r2dbc:1.4.1 to spring-data-r2dbc:1.4.2), which introduced an interesting error that we believe stems from this project 🤔
We have an interface:
We turned on logging using the r2dbc logging application properties to see what query was being generated:
Before upgrading to springboot 2.6.3 (spring-data-r2dbc:1.4.1):
After upgrading to springboot 2.6.4 (spring-data-r2dbc:1.4.2):
Notice after the upgrade, the boolean parameter is being forcibly set to
null
.We understand from the documentation here and here that our usage should be valid.
Apologies in advance if this is not the correct project to raise this issue in. Thanks!
The text was updated successfully, but these errors were encountered: