I want to query Cassandra table using calcite. I am able to query other tables but I want to query table:
cyclist_teams1(id uuid PRIMARY KEY, firstname text, lastname text, teams map<text, frozen<set<text>>>)
When I query:
select * from "cyclist_teams1"
It is showing correct output for columns id, firstname, lastname but giving null value for teams column.
Can anyone help me in querying this table using calcite? Is there anything which needs to be done and I have missed?
Thanks in advance!