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.
1 parent 4792aa6 commit 6a0b9c4Copy full SHA for 6a0b9c4
core/src/main/java/com/scalar/db/transaction/consensuscommit/MutationsGrouper.java
@@ -52,7 +52,7 @@ public List<List<Mutation>> groupMutations(Collection<Mutation> mutations)
52
}
53
54
public boolean canBeGroupedTogether(Collection<Mutation> mutations) throws ExecutionException {
55
- if (mutations.isEmpty()) {
+ if (mutations.size() <= 1) {
56
return true;
57
58
0 commit comments