Skip to content

Commit 37a7889

Browse files
committed
remove old test
1 parent 2bf402b commit 37a7889

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

sql/core/src/test/scala/org/apache/spark/sql/GroupedDatasetSuite.scala

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,4 @@ class GroupedDatasetSuite extends QueryTest with SharedSQLContext {
9393
}
9494
datasetWithUDF.unpersist(true)
9595
}
96-
97-
test("SPARK-24208: analysis fails on self-join with FlatMapGroupsInPandas") {
98-
val df = datasetWithUDF.groupBy("s").flatMapGroupsInPandas(PythonUDF(
99-
"pyUDF",
100-
null,
101-
StructType(Seq(StructField("s", LongType))),
102-
Seq.empty,
103-
PythonEvalType.SQL_GROUPED_MAP_PANDAS_UDF,
104-
true))
105-
val df1 = df.alias("temp0").join(df.alias("temp1"), $"temp0.s" === $"temp1.s")
106-
df1.queryExecution.assertAnalyzed()
107-
}
10896
}

0 commit comments

Comments
 (0)