Skip to content

Commit d0aba84

Browse files
committed
cleanup
1 parent 224a49f commit d0aba84

2 files changed

Lines changed: 0 additions & 16 deletions

File tree

java-bigquery-jdbc/src/test/java/com/google/cloud/bigquery/jdbc/it/ITNightlyBigQueryTest.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1674,12 +1674,4 @@ private String getSessionId() throws InterruptedException {
16741674
Job stubJob = bigQuery.getJob(job.getJobId());
16751675
return stubJob.getStatistics().getSessionInfo().getSessionId();
16761676
}
1677-
1678-
private int resultSetRowCount(ResultSet resultSet) throws SQLException {
1679-
int rowCount = 0;
1680-
while (resultSet.next()) {
1681-
rowCount++;
1682-
}
1683-
return rowCount;
1684-
}
16851677
}

java-bigquery-jdbc/src/test/java/com/google/cloud/bigquery/jdbc/it/ITStatementTest.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -244,14 +244,6 @@ public void testScript() throws SQLException {
244244
connection.close();
245245
}
246246

247-
private int resultSetRowCount(ResultSet resultSet) throws SQLException {
248-
int rowCount = 0;
249-
while (resultSet.next()) {
250-
rowCount++;
251-
}
252-
return rowCount;
253-
}
254-
255247
@Test
256248
public void testStringColumnLength() throws SQLException {
257249
String TABLE_NAME = "StringColumnLengthTable";

0 commit comments

Comments
 (0)