[ 
https://issues.apache.org/jira/browse/ARROW-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andy Grove closed ARROW-4589.
-----------------------------
    Resolution: Fixed

Merged. The merge script failed with:
{code:java}
Pull request #3664 merged!
Merge hash: 3606aa21

Would you like to update the associated JIRA? (y/n): y
Enter comma-separated fix version(s) [0.13.0]: y
Traceback (most recent call last):
  File "./dev/merge_arrow_pr.py", line 455, in <module>
    cli()
  File "./dev/merge_arrow_pr.py", line 449, in cli
    fix_versions_json = [get_version_json(v) for v in issue_fix_versions]
  File "./dev/merge_arrow_pr.py", line 447, in get_version_json
    return [x for x in versions if x.name == version_str][0].raw
IndexError: list index out of range
{code}

> [Rust] [DataFusion] Implement projection push down query optimizer rule
> -----------------------------------------------------------------------
>
>                 Key: ARROW-4589
>                 URL: https://issues.apache.org/jira/browse/ARROW-4589
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: Rust - DataFusion
>    Affects Versions: 0.12.0
>            Reporter: Andy Grove
>            Assignee: Andy Grove
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 0.13.0
>
>          Time Spent: 2h 20m
>  Remaining Estimate: 0h
>
> If I run a query like the following:
> {code:java}
> SELECT MIN(fare_amount), MAX(fare_amount) FROM tripdata{code}
> I see this logical plan:
> {code:java}
> Logical plan: Aggregate: groupBy=[[]], aggr=[[MIN(#10), MAX(#10)]]
>   TableScan: tripdata projection=None{code}
>  
> This means that every column is being loaded into arrays rather than just the 
> two columns that I care about, resulting in terrible performance.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to