File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
sql/core/src/test/scala/org/apache/spark/sql/fuzzing Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments