alamb commented on issue #1432:
URL:
https://github.com/apache/arrow-datafusion/issues/1432#issuecomment-991073111
And indeed postgres supports such columns:
```
alamb=# create table foo ("f1.c1" int);
CREATE TABLE
alamb=# insert into foo values (1);
INSERT 0 1
alamb=# select * from foo;
f1.c1
-------
1
(1 row)
alamb=# select "f1.c1" from foo;
f1.c1
-------
1
(1 row)
```
--
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]