Skip to content

Commit

Permalink
Clean out Hive warehouse directory in reset()
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Owen committed Sep 25, 2017
1 parent 365a29b commit 01f9f2b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
package org.apache.spark.sql.hive.test

import java.io.File
import java.net.URI
import java.util.{Set => JavaSet}

import scala.collection.JavaConverters._
Expand Down Expand Up @@ -498,6 +499,11 @@ private[hive] class TestHiveSparkSession(
}
}

// Clean out the Hive warehouse between each suite
val warehouseDir = new File(new URI(sparkContext.conf.get("spark.sql.warehouse.dir")).getPath)
Utils.deleteRecursively(warehouseDir)
warehouseDir.mkdir()

sharedState.cacheManager.clearCache()
loadedTables.clear()
sessionState.catalog.reset()
Expand Down

0 comments on commit 01f9f2b

Please sign in to comment.