|
45 | 45 | import com.google.cloud.bigquery.jdbc.utils.BigQueryJdbcVersionUtility; |
46 | 46 | import com.google.common.collect.ImmutableMap; |
47 | 47 | import java.io.BufferedReader; |
48 | | -import java.io.IOException; |
49 | 48 | import java.io.InputStream; |
50 | 49 | import java.io.InputStreamReader; |
51 | 50 | import java.sql.Connection; |
|
62 | 61 | import java.util.HashSet; |
63 | 62 | import java.util.List; |
64 | 63 | import java.util.Map; |
65 | | - |
66 | 64 | import java.util.Scanner; |
67 | 65 | import java.util.Set; |
68 | 66 | import java.util.concurrent.BlockingQueue; |
|
74 | 72 | import java.util.concurrent.Future; |
75 | 73 | import java.util.concurrent.LinkedBlockingQueue; |
76 | 74 | import java.util.concurrent.TimeUnit; |
77 | | - |
78 | 75 | import java.util.function.Function; |
79 | 76 | import java.util.function.Supplier; |
80 | 77 | import java.util.regex.Pattern; |
@@ -144,6 +141,7 @@ class BigQueryDatabaseMetaData implements DatabaseMetaData { |
144 | 141 | BigQueryConnection connection; |
145 | 142 | private final BigQuery bigquery; |
146 | 143 | private final int metadataFetchThreadCount; |
| 144 | + |
147 | 145 | BigQueryDatabaseMetaData(BigQueryConnection connection) { |
148 | 146 | this.URL = connection.getConnectionUrl(); |
149 | 147 | this.connection = connection; |
@@ -5281,5 +5279,4 @@ static String readSqlFromFile(String filename) { |
5281 | 5279 | String replaceSqlParameters(String sql, String... params) throws SQLException { |
5282 | 5280 | return String.format(sql, (Object[]) params); |
5283 | 5281 | } |
5284 | | - |
5285 | 5282 | } |
0 commit comments