Skip to content
Merged
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 @@ -16,7 +16,6 @@ muzzle {
group = "org.apache.spark"
module = "spark-sql_$scalaVersion"
versions = "[4.0.0,)"
skipVersions += "4.1.0" // FIXME: Temporary skip `4.1.0` as we need more time to support it.
javaVersion = 17
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
import org.apache.spark.sql.execution.SQLExecution;
import org.apache.spark.sql.execution.SparkPlanInfo;
import org.apache.spark.sql.execution.metric.SQLMetricInfo;
import org.apache.spark.sql.execution.streaming.StreamExecution;
import org.apache.spark.sql.execution.ui.SparkListenerSQLExecutionEnd;
import org.apache.spark.sql.execution.ui.SparkListenerSQLExecutionStart;
import org.apache.spark.sql.streaming.SourceProgress;
Expand Down Expand Up @@ -1264,7 +1263,7 @@ private static String getStreamingBatchKey(Properties properties) {
return null;
}

Object queryId = properties.get(StreamExecution.QUERY_ID_KEY());
Object queryId = properties.get("sql.streaming.queryId");
Object batchId = properties.get("streaming.sql.batchId");

if (queryId == null || batchId == null) {
Expand Down