AMashenkov commented on a change in pull request #452:
URL: https://github.com/apache/ignite-3/pull/452#discussion_r754093956



##########
File path: 
modules/schema/src/main/java/org/apache/ignite/internal/schema/Column.java
##########
@@ -30,6 +30,9 @@
  * user-defined order ({@link #columnOrder}).
  */
 public class Column implements Serializable {
+    /** Default "default value supplier". */
+    private static final Supplier<Object> NULL_SUPPLIER = () -> null;

Review comment:
       NULL_SUPPLIER is not serializable now.
   Seems, we can remove Serializable interface from this class,  
SchemaDescriptor, and others as IGNITE-14679 already merged.




-- 
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]


Reply via email to