61yao commented on code in PR #10376:
URL: https://github.com/apache/pinot/pull/10376#discussion_r1129932129
##########
pinot-core/src/main/java/org/apache/pinot/core/common/datablock/DataBlockBuilder.java:
##########
@@ -154,6 +154,9 @@ public static RowDataBlock buildFromRows(List<Object[]>
rows, DataSchema dataSch
case OBJECT:
setColumn(rowBuilder, byteBuffer, value);
break;
+ case UNKNOWN:
+ setColumn(rowBuilder, byteBuffer, (Object) value);
Review Comment:
The value should already be null here. but yeah, it is more clear we pas in
a null. updated the code.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]