fix in ExposedOneToManyKeyValueRepo

This commit is contained in:
InsanusMokrassar 2022-02-07 20:43:43 +06:00
parent 506e937a68
commit 87a3f61ca6
2 changed files with 5 additions and 1 deletions

View File

@ -2,6 +2,10 @@
## 0.9.6
* `Repos`:
* `Exposed`:
* Fix in `ExposedOneToManyKeyValueRepo` - now it will not use `deleteIgnoreWhere`
## 0.9.5
* `Versions`:

View File

@ -48,7 +48,7 @@ open class ExposedOneToManyKeyValueRepo<Key, Value>(
transaction(database) {
toRemove.keys.flatMap { k ->
toRemove[k] ?.mapNotNull { v ->
if (deleteIgnoreWhere { keyColumn.eq(k).and(valueColumn.eq(v)) } > 0 ) {
if (deleteWhere { keyColumn.eq(k).and(valueColumn.eq(v)) } > 0 ) {
k to v
} else {
null