I'm trying to access fields of a SUPER column which have camel case fields, so something like:
{"FirstName": "Mario", "LastName": "Maria"}
So let's say I store this field in Redshift as column my_json, then I'd query it with
SELECT my_json.FirstName
FROM my_table
Then I'd get only null result instead of the real value.
How to handle this use case?