seddonm1 opened a new issue #809:
URL: https://github.com/apache/arrow-datafusion/issues/809
**Describe the bug**
Due to the way the field qualification works a query this does not work as
technically the field is qualified but the matching only works on complete
matches between the field qualifier `person` and the schema qualifier
`public.person`.
```sql
SELECT person.first_name FROM public.person
```
This can be worked around by providing a simple alias like below but this
differs from Postgres behavior.
```sql
SELECT p.first_name FROM public.person p
```
**Additional context**
I have a PR inbound.
--
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]