提交 ccded726 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 ddb087af
......@@ -3301,6 +3301,9 @@ Oliver Computing LLC, USA
@history_1034_li
Harpal Grover Consulting Inc., USA
@history_1035_li
Elisabetta Berlini, Italy
@installation_1000_h1
Installation
......
......@@ -3303,6 +3303,9 @@ Javaは将来への証明でもあります: 多くの会社がJavaをサポー
@history_1034_li
#Harpal Grover Consulting Inc., USA
@history_1035_li
#Elisabetta Berlini, Italy
@installation_1000_h1
インストール
......
......@@ -1099,6 +1099,7 @@ history_1031_li=Antonio Casqueiro, Portugal
history_1032_li=lumber-mill.co.jp, Japan
history_1033_li=Oliver Computing LLC, USA
history_1034_li=Harpal Grover Consulting Inc., USA
history_1035_li=Elisabetta Berlini, Italy
installation_1000_h1=Installation
installation_1001_a=Requirements
installation_1002_a=Supported Platforms
......
......@@ -83,21 +83,21 @@ public class TestKillRestartMulti extends TestBase {
try {
Backup.execute(backup, baseDir, "killRestartMulti", true);
Connection conn = null;
for (int j = 0;; j++) {
try {
conn = openConnection();
break;
} catch (SQLException e2) {
if (e2.getErrorCode() == ErrorCode.DATABASE_ALREADY_OPEN_1
&& j < 3) {
Thread.sleep(100);
} else {
throw e2;
}
}
}
testConsistent(conn);
Statement stat = conn.createStatement();
for (int j = 0;; j++) {
try {
conn = openConnection();
break;
} catch (SQLException e2) {
if (e2.getErrorCode() == ErrorCode.DATABASE_ALREADY_OPEN_1
&& j < 3) {
Thread.sleep(100);
} else {
throw e2;
}
}
}
testConsistent(conn);
Statement stat = conn.createStatement();
stat.execute("DROP ALL OBJECTS");
conn.close();
conn = openConnection();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论