Skip to content

Commit 0c7e9d0

Browse files
committed
Update to ignore some new analysis exceptions.
1 parent ca8168a commit 0c7e9d0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sql/core/src/test/scala/org/apache/spark/sql/fuzzing/DataFrameFuzzingSuite.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ class DataFrameFuzzingSuite extends SparkFunSuite with SharedSparkContext {
150150
.filterNot(_.name.toString == "drop") // since this can lead to a DataFrame with no columns
151151
.filterNot(_.name.toString == "describe") // since we cannot run all queries on describe output
152152
.filterNot(_.name.toString == "dropDuplicates")
153-
.filter(_.name.toString == "join")
154153
.toSeq
155154
}
156155

@@ -262,7 +261,11 @@ class DataFrameFuzzingSuite extends SparkFunSuite with SharedSparkContext {
262261
}
263262
}
264263

264+
// TODO: make these regexes.
265265
val ignoredAnalysisExceptionMessages = Seq(
266+
// TODO: filter only for binary type:
267+
"cannot be used in grouping expression",
268+
"cannot be used in join condition",
266269
"can only be performed on tables with the same number of columns",
267270
"number of columns doesn't match",
268271
"unsupported join type",

0 commit comments

Comments
 (0)