Hi,
So the question is, does JDBC connector also have this capability? if not, what's required to enable it. At the end of the day, I would like to see something like this:
create table aTable(field1 type, jsonField1 ROW<field2 type, jsonField2 ROW<field3 type> >)
with
(
'connector' = 'jdbc',
'url' = '...',
'table-name' = 'my-table-with-json-column',
...
)
tEnv.executeSql("select jsonField1.jsonField2.field3 from aTable")
Thanks,
Fanbin