You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do. ApproxMedian is not fully implemented and calls unimplemented!() at runtime, so we can't call it from Python. It works in DataFusion because the SQL query planner translates the approx_median call to approx_percentile. It seems it is not possible to call approx_median from the DataFrame API currently.
Describe the solution you'd like
Have ApproxMedian delegate to ApproxPercentile instead of translating during planning.
Describe alternatives you've considered
None
Additional context
None
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
ApproxMedian
is not fully implemented and callsunimplemented!()
at runtime, so we can't call it from Python. It works in DataFusion because the SQL query planner translates theapprox_median
call toapprox_percentile
. It seems it is not possible to callapprox_median
from the DataFrame API currently.Describe the solution you'd like
Have
ApproxMedian
delegate toApproxPercentile
instead of translating during planning.Describe alternatives you've considered
None
Additional context
None
The text was updated successfully, but these errors were encountered: