Skip to content
#

query-engine

Here are 81 public repositories matching this topic...

andygrove
andygrove commented May 16, 2022

Is your feature request related to a problem or challenge? Please describe what you are trying to do.
PR apache/arrow-datafusion#2521 adds OFFSET to the logical plan. We should implement a physical plan for it.

Describe the solution you'd like
Implement OFFSET physical plan.

Describe alternatives you've considered
None

Additional context
None

enhancement good first issue
andygrove
andygrove commented May 10, 2022

Describe the bug
We have a hard-coded distinct = false parameter in ballista/rust/core/src/serde/physical_plan/mod.rs.

Ok(create_aggregate_expr(
    &aggr_function.into(),
    false, // <-- hard-coded "distinct"
    input_phy_expr.as_slice(),
    &physical_schema,
    name.to_string(),
)?)

To Reproduce
Try running a COUNT(DISTINCT expr) in Ballista

**E

bug good first issue

Improve this page

Add a description, image, and links to the query-engine topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the query-engine topic, visit your repo's landing page and select "manage topics."

Learn more