Skip to content
Closed
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
[SPARK-26751][ThriftServer] Fix memory leak when statement run in bac…
…kground and throw exception which is not HiveSQLException
  • Loading branch information
caneGuy committed Jan 28, 2019
commit 7addd01e82f9585c80b1734ae265323d891ce320
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private[hive] class SparkExecuteStatementOperation(
case NonFatal(e) =>
logError(s"Error executing query in background", e)
setState(OperationState.ERROR)
throw e
throw new HiveSQLException(e)
}
}
}
Expand Down