Hi, all. Is it possible to change the Key of JSON ...
# getting-started
k
Hi, all. Is it possible to change the Key of JSON Field to lower case? For example,
Copy code
{
  "columnName": "converted_json",
  "transformFunction": "map_keys(raw_json, x -> lower(x))"
}
j
There is no embedded function for this. You may implement and plug-in your own scalar function, or use groovy based function to achieve that
k
Hi, Jackie. I will take a look the guide. Thanks!