rohityadav1993 commented on code in PR #13031: URL: https://github.com/apache/pinot/pull/13031#discussion_r1585445055
########## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/PartialUpsertHandler.java: ########## @@ -84,7 +84,12 @@ private void setMergedValue(GenericRow row, String column, @Nullable Object merg row.putValue(column, mergedValue); } else { // if column exists but mapped to a null value then merger result was a null value - row.putDefaultNullValue(column, _fieldSpecMap.get(column).getDefaultNullValue()); + // check if column is a multivalued column + if (_fieldSpecMap.get(column).isSingleValueField()) { + row.putDefaultNullValue(column, _fieldSpecMap.get(column).getDefaultNullValue()); Review Comment: Thanks @Jackie-Jiang for pointing this. I was concerned about creating new Object[] every time, this approach is cleaner. Will update the PR accordingly. -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org