forked from apache/spark
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-17616][SQL] Support a single distinct aggregate combined with …
…a non-partial aggregate ## What changes were proposed in this pull request? We currently cannot execute an aggregate that contains a single distinct aggregate function and an one or more non-partially plannable aggregate functions, for example: ```sql select grp, collect_list(col1), count(distinct col2) from tbl_a group by 1 ``` This is a regression from Spark 1.6. This is caused by the fact that the single distinct aggregation code path assumes that all aggregates can be planned in two phases (is partially aggregatable). This PR works around this issue by triggering the `RewriteDistinctAggregates` in such cases (this is similar to the approach taken in 1.6). ## How was this patch tested? Created `RewriteDistinctAggregatesSuite` which checks if the aggregates with distinct aggregate functions get rewritten into two `Aggregates` and an `Expand`. Added a regression test to `DataFrameAggregateSuite`. Author: Herman van Hovell <[email protected]> Closes apache#15187 from hvanhovell/SPARK-17616.
- Loading branch information
1 parent
3cdae0f
commit 0d63487
Showing
3 changed files
with
111 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94 changes: 94 additions & 0 deletions
94
...c/test/scala/org/apache/spark/sql/catalyst/optimizer/RewriteDistinctAggregatesSuite.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 org.apache.spark.sql.catalyst.optimizer | ||
|
||
import org.apache.spark.sql.catalyst.SimpleCatalystConf | ||
import org.apache.spark.sql.catalyst.analysis.{Analyzer, EmptyFunctionRegistry} | ||
import org.apache.spark.sql.catalyst.catalog.{InMemoryCatalog, SessionCatalog} | ||
import org.apache.spark.sql.catalyst.dsl.expressions._ | ||
import org.apache.spark.sql.catalyst.dsl.plans._ | ||
import org.apache.spark.sql.catalyst.expressions.{If, Literal} | ||
import org.apache.spark.sql.catalyst.expressions.aggregate.{CollectSet, Count} | ||
import org.apache.spark.sql.catalyst.plans.PlanTest | ||
import org.apache.spark.sql.catalyst.plans.logical.{Aggregate, Expand, LocalRelation, LogicalPlan} | ||
import org.apache.spark.sql.types.{IntegerType, StringType} | ||
|
||
class RewriteDistinctAggregatesSuite extends PlanTest { | ||
val conf = SimpleCatalystConf(caseSensitiveAnalysis = false, groupByOrdinal = false) | ||
val catalog = new SessionCatalog(new InMemoryCatalog, EmptyFunctionRegistry, conf) | ||
val analyzer = new Analyzer(catalog, conf) | ||
|
||
val nullInt = Literal(null, IntegerType) | ||
val nullString = Literal(null, StringType) | ||
val testRelation = LocalRelation('a.string, 'b.string, 'c.string, 'd.string, 'e.int) | ||
|
||
private def checkRewrite(rewrite: LogicalPlan): Unit = rewrite match { | ||
case Aggregate(_, _, Aggregate(_, _, _: Expand)) => | ||
case _ => fail(s"Plan is not rewritten:\n$rewrite") | ||
} | ||
|
||
test("single distinct group") { | ||
val input = testRelation | ||
.groupBy('a)(countDistinct('e)) | ||
.analyze | ||
val rewrite = RewriteDistinctAggregates(input) | ||
comparePlans(input, rewrite) | ||
} | ||
|
||
test("single distinct group with partial aggregates") { | ||
val input = testRelation | ||
.groupBy('a, 'd)( | ||
countDistinct('e, 'c).as('agg1), | ||
max('b).as('agg2)) | ||
.analyze | ||
val rewrite = RewriteDistinctAggregates(input) | ||
comparePlans(input, rewrite) | ||
} | ||
|
||
test("single distinct group with non-partial aggregates") { | ||
val input = testRelation | ||
.groupBy('a, 'd)( | ||
countDistinct('e, 'c).as('agg1), | ||
CollectSet('b).toAggregateExpression().as('agg2)) | ||
.analyze | ||
checkRewrite(RewriteDistinctAggregates(input)) | ||
} | ||
|
||
test("multiple distinct groups") { | ||
val input = testRelation | ||
.groupBy('a)(countDistinct('b, 'c), countDistinct('d)) | ||
.analyze | ||
checkRewrite(RewriteDistinctAggregates(input)) | ||
} | ||
|
||
test("multiple distinct groups with partial aggregates") { | ||
val input = testRelation | ||
.groupBy('a)(countDistinct('b, 'c), countDistinct('d), sum('e)) | ||
.analyze | ||
checkRewrite(RewriteDistinctAggregates(input)) | ||
} | ||
|
||
test("multiple distinct groups with non-partial aggregates") { | ||
val input = testRelation | ||
.groupBy('a)( | ||
countDistinct('b, 'c), | ||
countDistinct('d), | ||
CollectSet('b).toAggregateExpression()) | ||
.analyze | ||
checkRewrite(RewriteDistinctAggregates(input)) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters