warriersruthi commented on a change in pull request #2689: URL: https://github.com/apache/hive/pull/2689#discussion_r720270790
########## File path: ql/src/java/org/apache/hadoop/hive/ql/io/arrow/Serializer.java ########## @@ -226,7 +226,7 @@ public ArrowWrapperWritable serializeBatch(VectorizedRowBatch vectorizedRowBatch } private static FieldType toFieldType(TypeInfo typeInfo) { - return new FieldType(true, toArrowType(typeInfo), null); + return new FieldType(false, toArrowType(typeInfo), null); Review comment: In the serializer also, we need to write the fields of the struct and list types as non-nullable. -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org