You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryConnection.java
+7-27Lines changed: 7 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -359,10 +359,7 @@ public Statement createStatement(int resultSetType, int resultSetConcurrency)
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryJsonResultSet.java
+4-10Lines changed: 4 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -163,10 +163,7 @@ public boolean next() throws SQLException {
163
163
// Advance the cursor,Potentially blocking operation
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryStatement.java
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/PooledConnectionDataSource.java
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -39,11 +39,8 @@ public PooledConnection getPooledConnection() throws SQLException {
39
39
bqConnection = super.getConnection();
40
40
}
41
41
if (bqConnection == null) {
42
-
BigQueryJdbcRuntimeExceptionex =
43
-
newBigQueryJdbcRuntimeException(
44
-
"Cannot get pooled connection: unable to get underlying physical connection");
45
-
LOG.severe(ex, ex.getMessage());
46
-
throwex;
42
+
thrownewBigQueryJdbcRuntimeException(
43
+
"Cannot get pooled connection: unable to get underlying physical connection");
0 commit comments