westonpace commented on PR #14143:
URL: https://github.com/apache/arrow/pull/14143#issuecomment-1249660937

   Also, given the input query was:
   
   ```
   SELECT add(PS_PARTKEY, PS_SUPPKEY) AS ADD_KEY
   FROM 'partsupp';
   ```
   
   I think there is a further DuckDb problem.  DuckDb is not adding any `emit` 
to the projection.  So this is more accurately modeling the query:
   
   ```
   SELECT PS_PARTKEY, PS_SUPPKEY, add(PS_PARTKEY, PS_SUPPKEY) AS ADD_KEY
   FROM 'partsupp';
   ```


-- 
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]

Reply via email to