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
Clean out Hive warehouse directory in reset()
  • Loading branch information
Greg Owen committed Sep 25, 2017
commit 01f9f2b68adaefc066566ce9bd2c997299dd0573
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