From c67f78d6aa3e07bb97ff4b0c249b7c7345237c22 Mon Sep 17 00:00:00 2001 From: Wenchen Fan Date: Thu, 14 May 2026 05:32:13 +0000 Subject: [PATCH] [SPARK-56395][SQL][FOLLOWUP] Fix missing comma in MimaExcludes on branch-4.2 The branch-4.2 cherry-pick of SPARK-56395 added a new entry to v42excludes without adding a trailing comma to the preceding DataStreamReader.name entry, which breaks SBT project loading on branch-4.2: [error] /.../project/MimaExcludes.scala:62:19: ')' expected but '.' found. [error] ProblemFilters.exclude[ReversedMissingMethodProblem]("...nearestByJoin") This change is branch-4.2 only; master is unaffected because the nearestByJoin entry has not been merged there yet. --- project/MimaExcludes.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala index ec9146459d8d4..6bdd04517f06f 100644 --- a/project/MimaExcludes.scala +++ b/project/MimaExcludes.scala @@ -57,7 +57,7 @@ object MimaExcludes { // [SPARK-56330][CORE] Add TaskInterruptListener to TaskContext for interrupt notifications ProblemFilters.exclude[ReversedMissingMethodProblem]("org.apache.spark.TaskContext.addTaskInterruptListener"), // [SPARK-56700][SS] Make DataStreamReader.name public - ProblemFilters.exclude[ReversedMissingMethodProblem]("org.apache.spark.sql.streaming.DataStreamReader.name") + ProblemFilters.exclude[ReversedMissingMethodProblem]("org.apache.spark.sql.streaming.DataStreamReader.name"), // [SPARK-56395][SQL] Add NEAREST BY top-K ranking join ProblemFilters.exclude[ReversedMissingMethodProblem]("org.apache.spark.sql.Dataset.nearestByJoin") )