Skip to content
Snippets Groups Projects
Commit 9a430a02 authored by Wenchen Fan's avatar Wenchen Fan Committed by Reynold Xin
Browse files

[SPARK-11068] [SQL] [FOLLOW-UP] move execution listener to util

Author: Wenchen Fan <wenchen@databricks.com>

Closes #9119 from cloud-fan/callback.
parent cf2e0ae7
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,7 @@ import org.apache.spark.sql.execution.ui.{SQLListener, SQLTab} ...@@ -45,6 +45,7 @@ import org.apache.spark.sql.execution.ui.{SQLListener, SQLTab}
import org.apache.spark.sql.sources.BaseRelation import org.apache.spark.sql.sources.BaseRelation
import org.apache.spark.sql.types._ import org.apache.spark.sql.types._
import org.apache.spark.sql.{execution => sparkexecution} import org.apache.spark.sql.{execution => sparkexecution}
import org.apache.spark.sql.util.ExecutionListenerManager
import org.apache.spark.util.Utils import org.apache.spark.util.Utils
/** /**
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* limitations under the License. * limitations under the License.
*/ */
package org.apache.spark.sql package org.apache.spark.sql.util
import java.util.concurrent.locks.ReentrantReadWriteLock import java.util.concurrent.locks.ReentrantReadWriteLock
import scala.collection.mutable.ListBuffer import scala.collection.mutable.ListBuffer
......
...@@ -15,9 +15,10 @@ ...@@ -15,9 +15,10 @@
* limitations under the License. * limitations under the License.
*/ */
package org.apache.spark.sql package org.apache.spark.sql.util
import org.apache.spark.SparkException import org.apache.spark.SparkException
import org.apache.spark.sql.{functions, QueryTest}
import org.apache.spark.sql.catalyst.plans.logical.{Aggregate, Project} import org.apache.spark.sql.catalyst.plans.logical.{Aggregate, Project}
import org.apache.spark.sql.execution.QueryExecution import org.apache.spark.sql.execution.QueryExecution
import org.apache.spark.sql.test.SharedSQLContext import org.apache.spark.sql.test.SharedSQLContext
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment