Jackie-Jiang commented on code in PR #15158:
URL: https://github.com/apache/pinot/pull/15158#discussion_r1978492421
##########
pinot-core/src/main/java/org/apache/pinot/core/common/datablock/DataBlockBuilder.java:
##########
@@ -84,15 +95,36 @@ public static RowDataBlock buildFromRows(List<Object[]>
rows, DataSchema dataSch
Object[] row = rows.get(rowId);
for (int colId = 0; colId < numColumns; colId++) {
Object value = row[colId];
+ ColumnDataType storedType = storedTypes[colId];
+
+ if (storedType == ColumnDataType.OBJECT) {
Review Comment:
This is intentional because we want to skip the step of setting `nullBitmaps`
--
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]