We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f5a0e6 commit 010bbd2Copy full SHA for 010bbd2
flight/flight-sql-jdbc-core/src/main/java/org/apache/arrow/driver/jdbc/ArrowFlightJdbcDriver.java
@@ -75,7 +75,9 @@ public Logger getParentLogger() {
75
public ArrowFlightConnection connect(final String url, final Properties info)
76
throws SQLException {
77
final Properties properties = new Properties(info);
78
- properties.putAll(info);
+ if (info != null) {
79
+ properties.putAll(info);
80
+ }
81
82
if (url != null) {
83
final Optional<Map<Object, Object>> maybeProperties = getUrlsArgs(url);
0 commit comments