Skip to content

Commit

Permalink
fixup! [AMORO-3066] Optimizing the efficiency for optimizing-processe…
Browse files Browse the repository at this point in the history
…s rest api
  • Loading branch information
klion26 committed Oct 17, 2024
1 parent de3eb4a commit 0dbcc3a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
Expand Down Expand Up @@ -88,10 +89,11 @@ protected void tableOperationsAddColumns() {
}

@After
public void after() {
public void after() throws IOException {
if (persistency != null) {
persistency.truncateAllTables();
}
super.after();
}

@Test
Expand Down

0 comments on commit 0dbcc3a

Please sign in to comment.