Jimexist commented on pull request #622:
URL: https://github.com/apache/arrow-datafusion/pull/622#issuecomment-868956556
Postgres is totally okay with dup names in the projection phase:
```
[postgres] # select max(c1) over (), max(c1) over (), max(c1) over
(partition by c1) from test limit 3;
max | max | max
-----+-----+-----
e | e | a
e | e | a
e | e | a
(3 rows)
```
--
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]