You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As follow-up to #780, continue Supporting the PPL Json grammar with adding the next functions:
json_set(object, [(path key, value) list])
Inserts or updates one or more keys and their corresponding values from the specified JSON object:
objects: the Json object is the field being evaluated
[path key, value]: the list of key-value pairs to add/update in the document
json_extend(object, [(path key, value) list])
Appends values to a JSON array element with provided values and returns the updated JSON object.
objects: the Json object is the field being evaluated
[path key, value]: the list of key-value pairs to extend arrays with values in the document.
Is your feature request related to a problem?
As follow-up to #780, continue Supporting the PPL Json grammar with adding the next functions:
json_set(object, [(path key, value) list])
What solution would you like?
Support the following
json_set
Support the following
json_extend
Note that
json_extend
is identical tojson_append
function except that it flattens the arrays before appending them to the json value at path.What alternatives have you considered?
N/A
Do you have any additional context?
json_delete
,json_append
functions #970JSON
extended functions support #667The text was updated successfully, but these errors were encountered: