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
+18-3Lines changed: 18 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -58,10 +58,10 @@
58
58
importjava.util.Map;
59
59
importjava.util.Properties;
60
60
importjava.util.Set;
61
+
importjava.util.UUID;
61
62
importjava.util.concurrent.ConcurrentHashMap;
62
63
importjava.util.concurrent.Executor;
63
64
importjava.util.concurrent.TimeUnit;
64
-
importjava.util.concurrent.atomic.AtomicLong;
65
65
66
66
/**
67
67
* An implementation of {@link java.sql.Connection} for establishing a connection with BigQuery and
@@ -74,7 +74,6 @@ public class BigQueryConnection extends BigQueryNoOpsConnection {
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryJdbcMdc.java
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -16,16 +16,15 @@
16
16
17
17
packagecom.google.cloud.bigquery.jdbc;
18
18
19
+
importjava.util.UUID;
19
20
importjava.util.concurrent.ConcurrentHashMap;
20
-
importjava.util.concurrent.atomic.AtomicLong;
21
21
22
22
/**
23
23
* Lightweight MDC implementation for the BigQuery JDBC driver using InheritableThreadLocal.
24
24
* Allocates a dedicated, independent InheritableThreadLocal object per concrete BigQueryConnection
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryJdbcOAuthUtility.java
0 commit comments