ygerzhedovich commented on a change in pull request #509:
URL: https://github.com/apache/ignite-3/pull/509#discussion_r769554048
##########
File path:
modules/table/src/main/java/org/apache/ignite/internal/table/KeyValueViewImpl.java
##########
@@ -133,7 +136,9 @@ public void putAll(@NotNull Map<K, V> pairs) {
@Override
public @NotNull
CompletableFuture<Void> putAllAsync(@NotNull Map<K, V> pairs) {
- throw new UnsupportedOperationException("Not implemented yet.");
+ Collection<BinaryRow> rows = marshal(Objects.requireNonNull(pairs));
+
+ return tbl.upsertAll(rows, tx);
Review comment:
yep!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]