TestTransformCorrelatedScalarAggregationToJoin.java
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.facebook.presto.sql.planner.iterative.rule;
import com.facebook.presto.spi.plan.JoinType;
import com.facebook.presto.sql.planner.iterative.rule.test.BaseRuleTest;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import org.testng.annotations.Test;
import static com.facebook.presto.sql.planner.assertions.PlanMatchPattern.aggregation;
import static com.facebook.presto.sql.planner.assertions.PlanMatchPattern.assignUniqueId;
import static com.facebook.presto.sql.planner.assertions.PlanMatchPattern.expression;
import static com.facebook.presto.sql.planner.assertions.PlanMatchPattern.functionCall;
import static com.facebook.presto.sql.planner.assertions.PlanMatchPattern.join;
import static com.facebook.presto.sql.planner.assertions.PlanMatchPattern.project;
import static com.facebook.presto.sql.planner.assertions.PlanMatchPattern.values;
import static com.facebook.presto.sql.planner.iterative.rule.test.PlanBuilder.assignment;
public class TestTransformCorrelatedScalarAggregationToJoin
extends BaseRuleTest
{
@Test
public void doesNotFireOnPlanWithoutApplyNode()
{
tester().assertThat(new TransformCorrelatedScalarAggregationToJoin(tester().getMetadata().getFunctionAndTypeManager()))
.on(p -> p.values(p.variable("a")))
.doesNotFire();
}
@Test
public void doesNotFireOnCorrelatedWithoutAggregation()
{
tester().assertThat(new TransformCorrelatedScalarAggregationToJoin(tester().getMetadata().getFunctionAndTypeManager()))
.on(p -> p.lateral(
ImmutableList.of(p.variable("corr")),
p.values(p.variable("corr")),
p.values(p.variable("a"))))
.doesNotFire();
}
@Test
public void doesNotFireOnUncorrelated()
{
tester().assertThat(new TransformCorrelatedScalarAggregationToJoin(tester().getMetadata().getFunctionAndTypeManager()))
.on(p -> p.lateral(
ImmutableList.of(),
p.values(p.variable("a")),
p.values(p.variable("b"))))
.doesNotFire();
}
@Test
public void doesNotFireOnCorrelatedWithNonScalarAggregation()
{
tester().assertThat(new TransformCorrelatedScalarAggregationToJoin(tester().getMetadata().getFunctionAndTypeManager()))
.on(p -> p.lateral(
ImmutableList.of(p.variable("corr")),
p.values(p.variable("corr")),
p.aggregation(ab -> ab
.source(p.values(p.variable("a"), p.variable("b")))
.addAggregation(p.variable("sum"), p.rowExpression("sum(a)"))
.singleGroupingSet(p.variable("b")))))
.doesNotFire();
}
@Test
public void rewritesOnSubqueryWithoutProjection()
{
tester().assertThat(new TransformCorrelatedScalarAggregationToJoin(tester().getMetadata().getFunctionAndTypeManager()))
.on(p -> p.lateral(
ImmutableList.of(p.variable("corr")),
p.values(p.variable("corr")),
p.aggregation(ab -> ab
.source(p.values(p.variable("a"), p.variable("b")))
.addAggregation(p.variable("sum"), p.rowExpression("sum(a)"))
.globalGrouping())))
.matches(
project(ImmutableMap.of("sum_1", expression("sum_1"), "corr", expression("corr")),
aggregation(ImmutableMap.of("sum_1", functionCall("sum", ImmutableList.of("a"))),
join(JoinType.LEFT,
ImmutableList.of(),
assignUniqueId("unique",
values(ImmutableMap.of("corr", 0))),
project(ImmutableMap.of("non_null", expression("true")),
values(ImmutableMap.of("a", 0, "b", 1)))))));
}
@Test
public void rewritesOnSubqueryWithProjection()
{
tester().assertThat(new TransformCorrelatedScalarAggregationToJoin(tester().getMetadata().getFunctionAndTypeManager()))
.on(p -> p.lateral(
ImmutableList.of(p.variable("corr")),
p.values(p.variable("corr")),
p.project(
p.aggregation(ab -> ab
.source(p.values(p.variable("a"), p.variable("b")))
.addAggregation(p.variable("sum"), p.rowExpression("sum(a)"))
.globalGrouping()),
assignment(p.variable("expr"), p.rowExpression("sum + 1")))))
.matches(
project(ImmutableMap.of("corr", expression("corr"), "expr", expression("(\"sum_1\" + 1)")),
aggregation(ImmutableMap.of("sum_1", functionCall("sum", ImmutableList.of("a"))),
join(JoinType.LEFT,
ImmutableList.of(),
assignUniqueId("unique",
values(ImmutableMap.of("corr", 0))),
project(ImmutableMap.of("non_null", expression("true")),
values(ImmutableMap.of("a", 0, "b", 1)))))));
}
}