alamb commented on issue #2725:
URL:
https://github.com/apache/arrow-datafusion/issues/2725#issuecomment-1154384486
Hi @Ted-Jiang
If I read your conclusion corrctly, I think you are saying that the filter
added by the filter pushdown rule is remapping the names somehow. Specifically,
you are proposing:
```
Projection: #ssb@[email protected] AS
LO_SHIPMODE, #ssb@[email protected] AS
_KY_COUNT_DISTINCT_LINEORDER_LO_SUPPKEY_
Filter: #LO_SHIPMODE IN ([Utf8("1"), Utf8("2"), Utf8("3"),
Utf8("4"), Utf8("5")]) <-- **** This filter should be
`#ssb@[email protected] IN ....`
TableScan: ssb@test_udaf_cube_update@17179869183
projection=Some([12, 37]), partial_filters=[#LO_SHIPMODE IN ([Utf8("1"),
Utf8("2"), Utf8("3"), Utf8("4"), Utf8("5")])]
```
--
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]