Skip to content

Commit

Permalink
Fix integ test
Browse files Browse the repository at this point in the history
Signed-off-by: Chase Engelbrecht <[email protected]>
  • Loading branch information
engechas committed Nov 26, 2024
1 parent b9e5b94 commit edb9533
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ class FlintSparkIcebergMaterializedViewITSuite
| FROM $testTable
|""".stripMargin

override def beforeEach(): Unit = {
override def beforeAll(): Unit = {
super.beforeAll()
createIcebergTimeSeriesTable(testTable)
}

override def afterEach(): Unit = {
override def afterAll(): Unit = {
super.afterAll()
deleteTestIndex(testFlintIndex)
sql(s"DROP TABLE $testTable")
conf.unsetConf(FlintSparkConf.CUSTOM_FLINT_SCHEDULER_CLASS.key)
Expand Down

0 comments on commit edb9533

Please sign in to comment.