public void tearDown() {
super.tearDown();
MSSQLTestUtils utils = new MSSQLTestUtils();
try {
utils.dropTableIfExists("TPCH1M_LINEITEM");
} catch (SQLException e) {
LOG.error("TearDown fail with SQLException: " + StringUtils.stringifyException(e));
fail("TearDown fail with SQLException: " + e.toString());
}
}