提交 513b5621 authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Add @reconnect support to TestScript

上级 ca891f02
...@@ -13,6 +13,7 @@ import java.io.LineNumberReader; ...@@ -13,6 +13,7 @@ import java.io.LineNumberReader;
import java.io.PrintStream; import java.io.PrintStream;
import java.lang.reflect.Field; import java.lang.reflect.Field;
import java.lang.reflect.Modifier; import java.lang.reflect.Modifier;
import java.nio.charset.StandardCharsets;
import java.sql.Connection; import java.sql.Connection;
import java.sql.PreparedStatement; import java.sql.PreparedStatement;
import java.sql.ResultSet; import java.sql.ResultSet;
...@@ -268,7 +269,7 @@ public class TestScript extends TestDb { ...@@ -268,7 +269,7 @@ public class TestScript extends TestDb {
throw new IOException("could not find " + inFile); throw new IOException("could not find " + inFile);
} }
fileName = inFile; fileName = inFile;
in = new LineNumberReader(new InputStreamReader(is, "Cp1252")); in = new LineNumberReader(new InputStreamReader(is, StandardCharsets.UTF_8));
StringBuilder buff = new StringBuilder(); StringBuilder buff = new StringBuilder();
while (true) { while (true) {
String sql = readLine(); String sql = readLine();
...@@ -285,6 +286,12 @@ public class TestScript extends TestDb { ...@@ -285,6 +286,12 @@ public class TestScript extends TestDb {
sql = buff.toString(); sql = buff.toString();
buff.setLength(0); buff.setLength(0);
process(sql, allowReconnect); process(sql, allowReconnect);
} else if (sql.equals("@reconnect")) {
if (buff.length() > 0) {
addWriteResultError("<command>", sql);
} else {
reconnect(conn.getAutoCommit());
}
} else { } else {
write(sql); write(sql);
buff.append(sql); buff.append(sql);
...@@ -314,10 +321,7 @@ public class TestScript extends TestDb { ...@@ -314,10 +321,7 @@ public class TestScript extends TestDb {
boolean autocommit = conn.getAutoCommit(); boolean autocommit = conn.getAutoCommit();
if (autocommit && random.nextInt(10) < 1) { if (autocommit && random.nextInt(10) < 1) {
// reconnect 10% of the time // reconnect 10% of the time
conn.close(); reconnect(autocommit);
conn = getConnection("script");
conn.setAutoCommit(autocommit);
stat = conn.createStatement();
} }
} }
} }
...@@ -351,6 +355,13 @@ public class TestScript extends TestDb { ...@@ -351,6 +355,13 @@ public class TestScript extends TestDb {
write(""); write("");
} }
private void reconnect(boolean autocommit) throws SQLException {
conn.close();
conn = getConnection("script");
conn.setAutoCommit(autocommit);
stat = conn.createStatement();
}
private static void setParameter(PreparedStatement prep, int i, String param) private static void setParameter(PreparedStatement prep, int i, String param)
throws SQLException { throws SQLException {
if (param.equalsIgnoreCase("null")) { if (param.equalsIgnoreCase("null")) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论