-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SNOW-913746 upgrade jdbc 3.14.3 #745
SNOW-913746 upgrade jdbc 3.14.3 #745
Conversation
@@ -299,6 +299,9 @@ protected static Properties generateProxyParametersIfRequired(Map<String, String | |||
proxyProperties.put(SFSessionProperty.PROXY_USER.getPropertyKey(), username); | |||
proxyProperties.put(SFSessionProperty.PROXY_PASSWORD.getPropertyKey(), password); | |||
} | |||
// There is a change in JDBC version 3.13.31 which causes NPE if this is not added. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have a JIRA created for the owner to fix this? We shouldn't have this assumption, this is a behavior change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will create a issue on JDBC.
Since we have a workaround, its okay to add this here but I agree it should be fixed by JDBC.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Opened a PR in JDBC: snowflakedb/snowflake-jdbc#1559
@sfc-gh-jfan snyk is not running can you check please? thanks |
Upgrade JDBC to 3.14.3.
Modify some tests since v3.13.31 is throwing NPE.