提交 8b13e264 authored 作者: Thomas Mueller's avatar Thomas Mueller

Allow to connect using MVCC=1

上级 69aee033
...@@ -283,7 +283,14 @@ public class ConnectionInfo implements Cloneable { ...@@ -283,7 +283,14 @@ public class ConnectionInfo implements Cloneable {
*/ */
public boolean getProperty(String key, boolean defaultValue) { public boolean getProperty(String key, boolean defaultValue) {
String x = getProperty(key, null); String x = getProperty(key, null);
return x == null ? defaultValue : Boolean.valueOf(x).booleanValue(); if (x == null) {
return defaultValue;
}
// support 0 / 1 (like the parser)
if (x.length() == 1 && Character.isDigit(x.charAt(0))) {
return Integer.parseInt(x) != 0;
}
return Boolean.valueOf(x).booleanValue();
} }
/** /**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论