Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class PythonUDFSuite extends QueryTest with SharedSparkSession {
}

test("SPARK-39962: Global aggregation of Pandas UDF should respect the column order") {
assume(shouldTestPythonUDFs)
assume(shouldTestPandasUDFs)
val df = Seq[(java.lang.Integer, java.lang.Integer)]((1, null)).toDF("a", "b")

val pandasTestUDF = TestGroupedAggPandasUDF(name = "pandas_udf")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ class ContinuousSuite extends ContinuousSuiteBase {
Seq(TestScalaUDF("udf"), TestPythonUDF("udf"), TestScalarPandasUDF("udf")).foreach { udf =>
test(s"continuous mode with various UDFs - ${udf.prettyName}") {
assume(
shouldTestPythonUDFs && udf.isInstanceOf[TestScalarPandasUDF] ||
shouldTestPandasUDFs && udf.isInstanceOf[TestScalarPandasUDF] ||
shouldTestPythonUDFs && udf.isInstanceOf[TestPythonUDF] ||
udf.isInstanceOf[TestScalaUDF])

Expand Down