We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fcd5dc commit 4969015Copy full SHA for 4969015
sql/core/src/test/scala/org/apache/spark/sql/DslQuerySuite.scala
@@ -33,6 +33,12 @@ class DslQuerySuite extends QueryTest {
33
testData.collect().toSeq)
34
}
35
36
+ test("repartition") {
37
+ checkAnswer(
38
+ testData.select('key).repartition(10).select('key),
39
+ testData.select('key).collect().toSeq)
40
+ }
41
+
42
test("agg") {
43
checkAnswer(
44
testData2.groupBy('a)('a, Sum('b)),
0 commit comments