deemoliu opened a new pull request, #13572:
URL: https://github.com/apache/pinot/pull/13572

   `bugfix``release-notes`
   
   Context:
   
   Customer reached to out to differentiate the multi-value column values: 
"null value" and "empty list".
   Currently both of "null value" and "empty list" are recognized as null and 
populated with the default null value of the empty list. For example, 
   
   ```
   {
               "type": [
                   "null",
                   {
                       "items": "string",
                       "type": "array"
                   }
               ],
               "name": "multiple_ids",
               "default": null,
               "doc": "multi-value testing field"
           }, 
   ```
   the decoder it treats null & empty -> ["null"]
   
   In this PR, we introduced a config called "differentiateNullAndEmptyForMV" 
in `AvroRecordExtractorConfig` to differentiate these two values.
    


-- 
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]

Reply via email to