Hello!
I’m new to dremio and can’t figure out how to work with json correctly.
For example - I have data in S3 (parquet) in dremio they are displayed as text.
Accordingly, I need to reformat to json(struct) - but how to do it correctly?
For example, if I do something like this, it takes a long time (I have about 3 million lines).(And it’s not always fulfilled to the end)
SELECT a, b, c, d convert_from(nested_0.“e”, ‘JSON’) AS “e_json”
FROM (
select * from my_table
) nested_0
Is there any better way to do it?