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
In #8356, support was added so that functionally dependent expressions on unique columns can also be available for output. This was achieved by synthetically adding said expressions as additional grouping expressions in the logical plan builder.
However, in Substrait plans, we use pre-defined, ordinal-based field references. These ordinals are indexes into the combined input + output expressions. By increasing the number of expressions in the input, you can expect that these ordinals will point to new, unexpected expressions -- thus altering the final output.
Given a sample plan without the added grouping:
The sample plan with the added grouping produces something semantically different:
To Reproduce
Create a new test file in datafusion/substrait/tests/testdata/test_plans/multi_layer_aggregation.substrait.json with the following Substrait JSON:
Note: this was generated from a SQL query of the form:
SELECT lower(product), sum(count) as product_count FROM (
SELECT product, count(product) as count
FROM sales
GROUP BY product
)
GROUP BY product;
Add a test in datafusion/substrait/tests/cases/logical_plans.rs:
#[tokio::test]
async fn multi_layer_aggregation() -> Result<()> {
let proto_plan =
read_json("tests/testdata/test_plans/multi_layer_aggregation.substrait.json");
let ctx = add_plan_schemas_to_ctx(SessionContext::new(), &proto_plan)?;
let plan = from_substrait_plan(&ctx.state(), &proto_plan).await?;
assert_eq!(
format!("{}", plan),
"Projection: lower(sales.product) as lower(product), sum(count(sales.product)) as product_count\
\n Aggregate: groupBy=[[sales.product]], aggr=[[sum(count(sales.product))]]\
\n Aggregate: groupBy=[[sales.product]], aggr=[[count(sales.product)]]\
\n TableScan: sales"
);
Ok(())
}
Test should succeed. But instead will fail with:
assertion `left == right` failed
left:
"Projection: sum(count(sales.product)) AS lower(product), lower(sales.product) AS product_count
Aggregate: groupBy=[[sales.product, count(sales.product)]], aggr=[[sum(count(sales.product))]]
Aggregate: groupBy=[[sales.product]], aggr=[[count(sales.product)]]
TableScan: sales"
right:
"Projection: lower(sales.product) as lower(product), sum(count(sales.product)) as product_count
Aggregate: groupBy=[[sales.product]], aggr=[[sum(count(sales.product))]]
Aggregate: groupBy=[[sales.product]], aggr=[[count(sales.product)]]
TableScan: sales"
Expected behavior
The translated LogicalPlan must preserve the semantics of the Substrait plan.
Not trying to prescribe a particular solution here. There may be a few possible approaches:
If we introduce new expression(s), we must produce a new remapping that takes into account the added expression(s).
The Substrait -> LogicalPlan translation layer should never modify the original intent of the plan. In other words, maybe in this particular scenario, the additional grouping should not be introduced by the Substrait consumer. Instead, allow the Substrait producer to be responsible for introducing the extra grouping if the same PK Aggregate feature is desired.
For this particular query structure, another viable fix may be to not add functionally dependent expressions into the grouping set if they are never referenced or projected.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
In #8356, support was added so that functionally dependent expressions on unique columns can also be available for output. This was achieved by synthetically adding said expressions as additional grouping expressions in the logical plan builder.
However, in Substrait plans, we use pre-defined, ordinal-based field references. These ordinals are indexes into the combined input + output expressions. By increasing the number of expressions in the input, you can expect that these ordinals will point to new, unexpected expressions -- thus altering the final output.
Given a sample plan without the added grouping:

The sample plan with the added grouping produces something semantically different:

To Reproduce
Create a new test file in
datafusion/substrait/tests/testdata/test_plans/multi_layer_aggregation.substrait.json
with the following Substrait JSON:Note: this was generated from a SQL query of the form:
Add a test in
datafusion/substrait/tests/cases/logical_plans.rs
:Test should succeed. But instead will fail with:
Expected behavior
The translated LogicalPlan must preserve the semantics of the Substrait plan.
Not trying to prescribe a particular solution here. There may be a few possible approaches:
Additional context
No response
The text was updated successfully, but these errors were encountered: