v.20.1New Feature
Added JSONExtractArrayRaw Function for Unparsed JSON Elements
Added functionJSONExtractArrayRawwhich returns an array on unparsed json array elements fromJSONstring. #8081 (Oleg Matrokhin)
Why it matters
This feature enables users to efficiently extract raw JSON elements from JSON arrays without parsing each element individually. It provides a way to retrieve the array elements as raw JSON, which can be useful for further processing or when full parsing is unnecessary.How to use it
Use the functionJSONExtractArrayRaw by passing a JSON string as the argument. The function will return an array containing unparsed JSON elements extracted from the input JSON array, allowing you to manipulate or analyze the raw JSON elements directly.