提交 67ebd733 authored 作者: Thomas Mueller's avatar Thomas Mueller

Formatting.

上级 7fd3b410
......@@ -306,12 +306,14 @@ public class TestLob extends TestBase {
}
rs.close();
} catch (SQLException ex) {
// ignore "LOB gone away", this can happen in the presence of concurrent updates
// ignore "LOB gone away", this can happen
// in the presence of concurrent updates
if (ex.getErrorCode() != ErrorCode.IO_EXCEPTION_2) {
throw ex;
}
} catch (IOException ex) {
// ignore "LOB gone away", this can happen in the presence of concurrent updates
// ignore "LOB gone away", this can happen
// in the presence of concurrent updates
Exception e = ex;
if (e.getCause() instanceof DbException) {
e = (Exception) e.getCause();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论