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
Hi, recently i found, what i believe to be a bug. While using ReactiveCassandraRepository i found that while using a composite key, the method deleteAllById deleted only the first element from provided Iterable. The setup looked like this:
When providing List<CenterKey> to the dleteAllById, i found that only first element was deleted.
I belive this issue is in SimpleReactiveCassandraRepository, where, if using composite key, we provide Flux publisher to the method, deleteById, but this method later does Mono.from(publisher).
The text was updated successfully, but these errors were encountered:
We now correctly delete all elements when using composite keys (MapId, Primary Key classes). Previously, we did not support that case or removed only the first element.
Closes#1298
Hi, recently i found, what i believe to be a bug. While using
ReactiveCassandraRepository
i found that while using a composite key, the methoddeleteAllById
deleted only the first element from providedIterable
. The setup looked like this:When providing
List<CenterKey>
to thedleteAllById
, i found that only first element was deleted.I belive this issue is in SimpleReactiveCassandraRepository, where, if using composite key, we provide Flux publisher to the method, deleteById, but this method later does
Mono.from(publisher)
.The text was updated successfully, but these errors were encountered: