提交 9fb8b74e authored 作者: Noel Grandin's avatar Noel Grandin

fix exceptions found by TestCrashAPI

上级 c32a58ef
......@@ -1799,7 +1799,6 @@ public class JdbcConnection extends TraceObject implements Connection,
p.setProperty(PREFIX_SERVER + String.valueOf(i), serverList.get(i));
}
return p;
} catch (Exception e) {
throw logAndConvert(e);
......@@ -1820,6 +1819,9 @@ public class JdbcConnection extends TraceObject implements Connection,
debugCodeCall("getClientInfo", name);
}
checkClosed();
if (name == null) {
throw DbException.getInvalidValueException("name", null);
}
return getClientInfo().getProperty(name);
} catch (Exception e) {
throw logAndConvert(e);
......@@ -1835,10 +1837,14 @@ public class JdbcConnection extends TraceObject implements Connection,
@Override
@SuppressWarnings("unchecked")
public <T> T unwrap(Class<T> iface) throws SQLException {
if (isWrapperFor(iface)) {
return (T) this;
try {
if (isWrapperFor(iface)) {
return (T) this;
}
throw DbException.getInvalidValueException("iface", iface);
} catch (Exception e) {
throw logAndConvert(e);
}
throw DbException.getInvalidValueException("iface", iface);
}
/**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论