How can I access nested fields e.g. in select statements? For example, this won't work:
val table = tenv
.fromDataStream(stream)
.select($"context.url", $"name")
What is the correct way?
Thanks.
How can I access nested fields e.g. in select statements? For example, this won't work:
val table = tenv
.fromDataStream(stream)
.select($"context.url", $"name")
What is the correct way?
Thanks.