gortiz opened a new pull request, #11673:
URL: https://github.com/apache/pinot/pull/11673
This PR changes json_extract in order to return the Java value null when the
input is the Java value null.
The following table shows the difference between the old and new semantic:
| Input (JsonNode) | Old Output (String value) | New output (String value)|
|---|---|---|
| A map whose key "a" values 1 | "{\\\"a\\\": 1}" | "{\\\"a\\\": 1}" |
| The json null literal | "null" | "null" |
| The java null value | "null" | null |
This is a bugfix, but can also be considered as a backward incompatible
change.
--
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]