lowka commented on code in PR #3146:
URL: https://github.com/apache/ignite-3/pull/3146#discussion_r1480033035


##########
modules/client/src/main/java/org/apache/ignite/internal/client/table/ClientSchema.java:
##########
@@ -231,4 +260,55 @@ private static BinaryMode mode(ColumnType dataType) {
                 throw new IgniteException(Client.PROTOCOL_ERR, "Unknown client 
data type: " + dataType);
         }
     }
+
+    private MarshallerSchema marshallerSchema() {
+        if (marshallerSchema == null) {
+            marshallerSchema = new ClientSideMarshallerSchema(this);
+        }
+        return marshallerSchema;
+    }
+
+    private static class ClientSideMarshallerSchema implements 
MarshallerSchema {

Review Comment:
   Fixed.



-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to