Skip to content

Commit

Permalink
move execution listener to util
Browse files Browse the repository at this point in the history
  • Loading branch information
cloud-fan committed Oct 14, 2015
1 parent 135a2ce commit 0103299
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.types._
import org.apache.spark.sql.{execution => sparkexecution}
import org.apache.spark.sql.util.ExecutionListenerManager
import org.apache.spark.util.Utils

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.spark.sql
package org.apache.spark.sql.util

import java.util.concurrent.locks.ReentrantReadWriteLock
import scala.collection.mutable.ListBuffer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
* limitations under the License.
*/

package org.apache.spark.sql
package org.apache.spark.sql.util

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.execution.QueryExecution
import org.apache.spark.sql.test.SharedSQLContext
Expand Down

0 comments on commit 0103299

Please sign in to comment.