Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
small update
  • Loading branch information
Lingkai Kong committed Aug 15, 2023
commit 6a7cee97fa282e78ff2810c62ad9989e4cc874dd
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ private[execution] class SparkConnectPlanExecution(executeHolder: ExecuteHolder)
resultFunc = () => ())
// Collect errors and propagate them to the main thread.
.andThen {
case Success(_) =>
case Success(_) => // do nothing
case Failure(throwable) =>
signal.synchronized {
error = Some(throwable)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -414,11 +414,11 @@ case class SparkListenerConnectOperationFailed(
* 36 characters UUID assigned by Connect during a request.
* @param eventTime:
* The time in ms when the event was generated.
* @param extraTags:
* Additional metadata during the request.
* @param producedRowCount:
* Number of rows that are returned to the user. None is expected when the operation does not
* return any rows.
* @param extraTags:
* Additional metadata during the request.
*/
case class SparkListenerConnectOperationFinished(
jobTag: String,
Expand Down