use of com.alibaba.druid.pool.vendor.MySqlExceptionSorter in project druid by alibaba.
the class MySqlExceptionSorterTest_oceanbase method test_true.
public void test_true() throws Exception {
MySqlExceptionSorter sorter = new MySqlExceptionSorter();
SQLException exception = new SQLException("", "", -9000);
Assert.assertTrue(sorter.isExceptionFatal(exception));
}
Aggregations