sashapolo commented on code in PR #1076:
URL: https://github.com/apache/ignite-3/pull/1076#discussion_r974282657
##########
modules/client/src/main/java/org/apache/ignite/internal/client/table/ClientKeyValueView.java:
##########
@@ -458,7 +458,7 @@ private void writeKeyValue(ClientSchema s,
PayloadOutputChannel w, @Nullable Tra
}
private void writeKeyValueRaw(ClientSchema s, PayloadOutputChannel w,
@NotNull K key, V val) {
- var builder = BinaryTupleBuilder.create(s.columns().length, true);
+ var builder = new BinaryTupleBuilder(s.columns().length, true);
Review Comment:
Because I needed to inherit from the Builder. I could have made the
constructor `protected`, but I really don't see any reason in having a factory
method that simply delegates to a constructor
--
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]