xiangfu0 opened a new issue #7345:
URL: https://github.com/apache/pinot/issues/7345
Tried
`bin/quick-start-complex-type-handling-offline.sh`
```
select id, "payload.commits.distinct" from githubEvents limit 10
```
works
but not
```
select id, payload.commits.distinct from githubEvents limit 10
```
Also checked that both
```select id, payload.commits.author.name, payload.commits.author.email from
githubEvents limit 10```
and
```select id, "payload.commits.author.name", "payload.commits.author.email"
from githubEvents limit 10```
work.

is this specific to boolean type or because of that `distinct` is a keyword?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]