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
This is a follow up to #28059.
Since R2DBC 1.0 has been released, we should upgrade and ensure compatibility with 1.0 for Spring Framework 6.0.
For example, io.r2dbc.spi.Result.getRowsUpdated() returned Publisher<Integer> in 0.9 and apparently returns Publisher<Long> in 1.0.
io.r2dbc.spi.Result.getRowsUpdated()
Publisher<Integer>
Publisher<Long>
The text was updated successfully, but these errors were encountered:
7055ddb
Upgrade to R2DBC H2 1.0.0
9d1dfc7
See gh-28787
jhoeller
No branches or pull requests
This is a follow up to #28059.
Since R2DBC 1.0 has been released, we should upgrade and ensure compatibility with 1.0 for Spring Framework 6.0.
For example,
io.r2dbc.spi.Result.getRowsUpdated()
returnedPublisher<Integer>
in 0.9 and apparently returnsPublisher<Long>
in 1.0.The text was updated successfully, but these errors were encountered: