zoudan commented on code in PR #204:
URL: https://github.com/apache/calcite-avatica/pull/204#discussion_r1064519603
##########
core/src/main/java/org/apache/calcite/avatica/UnregisteredDriver.java:
##########
@@ -127,6 +127,9 @@ private static RuntimeException handle(String msg,
Throwable e) {
}
public Connection connect(String url, Properties info) throws SQLException {
+ if (url == null) {
+ throw new SQLException("url can not be null!");
+ }
Review Comment:
Thx for reviewing, updated
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]