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
json_unquote only accepts string/json data type. When json type parameter is met, it will be cast as string before being fed into json_unquote like this:
json_unquote(cast(json as string))
TiFlash has already support basic functionality of json_unquote and cast_json_as_string in #6377
cast_json_as_string: already support cast json as unrestricted string. However, the output string data type can be restricted, like char(20). tidb implementation
The text was updated successfully, but these errors were encountered:
Enhancement
json_unquote only accepts string/json data type. When json type parameter is met, it will be cast as string before being fed into json_unquote like this:
json_unquote(cast(json as string))
TiFlash has already support basic functionality of json_unquote and cast_json_as_string in #6377
Two main work remain todo:
tidb implementation
tidb implementation
The text was updated successfully, but these errors were encountered: