We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e5cc4 commit a93c4b7Copy full SHA for a93c4b7
src/main/java/com/databricks/jdbc/common/util/DriverUtil.java
@@ -104,6 +104,11 @@ static void ensureUpdatedDBSQLVersionInUse(IDatabricksConnection connection)
104
return;
105
}
106
String dbsqlVersion = getDBSQLVersionCached(connection);
107
+ if (dbsqlVersion == null || dbsqlVersion == "") {
108
+ // If the DBSQL version is not available, we cannot determine if the driver supports SEA.
109
+ // Proceeding with the connection.
110
+ return;
111
+ }
112
if (!doesDriverSupportSEA(dbsqlVersion)) {
113
String errorMessage =
114
String.format(
0 commit comments