提交 b3392273 authored 作者: Noel Grandin's avatar Noel Grandin

fix testDatabaseUsingInMemoryFileSystem

can throw OUT_OF_MEMORY error
上级 0b16695a
...@@ -95,7 +95,9 @@ public class TestOutOfMemory extends TestBase { ...@@ -95,7 +95,9 @@ public class TestOutOfMemory extends TestBase {
"select x, space(10000000) from system_range(1, 1000)"); "select x, space(10000000) from system_range(1, 1000)");
fail(); fail();
} catch (SQLException e) { } catch (SQLException e) {
assertEquals(ErrorCode.GENERAL_ERROR_1, e.getErrorCode()); int err = e.getErrorCode();
assertTrue(e.getMessage(), err == ErrorCode.GENERAL_ERROR_1
|| err == ErrorCode.OUT_OF_MEMORY);
} }
try { try {
conn.close(); conn.close();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论