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
In our online sqls, have some nested get_json_object function calls, like get_json_object(get_json_object(d, '$.a'), '$.b'), and some of them can be optimized to get_json_object(d, '$.a.b'), which can improve the performance
The text was updated successfully, but these errors were encountered:
Description
In our online sqls, have some nested
get_json_object
function calls, likeget_json_object(get_json_object(d, '$.a'), '$.b')
, and some of them can be optimized toget_json_object(d, '$.a.b')
, which can improve the performanceThe text was updated successfully, but these errors were encountered: