Jackie-Jiang commented on a change in pull request #4399: Moving handling of
NULL values from RecordReaders to NullValueTransfo…
URL: https://github.com/apache/incubator-pinot/pull/4399#discussion_r305455763
##########
File path:
pinot-common/src/main/java/org/apache/pinot/common/utils/JsonUtils.java
##########
@@ -124,7 +124,8 @@ public static Object extractValue(@Nullable JsonNode
jsonValue, FieldSpec fieldS
if (jsonValue != null && !jsonValue.isNull()) {
return extractSingleValue(jsonValue, fieldSpec.getDataType());
} else {
- return fieldSpec.getDefaultNullValue();
+// return fieldSpec.getDefaultNullValue();
Review comment:
Remove this line
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]