Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -654,10 +654,9 @@ public void testQuery() throws InterruptedException {
rowCount++;
}
assertEquals(2, rowCount);
// todo(mziccard) uncomment as soon as #624 is closed
// Job queryJob = bigquery.getJob(response.jobId());
// JobStatistics.QueryStatistics statistics = queryJob.statistics();
// assertNotNull(statistics.queryPlan());
Job queryJob = bigquery.getJob(response.jobId());
JobStatistics.QueryStatistics statistics = queryJob.statistics();
assertNotNull(statistics.queryPlan());
}

@Test
Expand DownExpand Up@@ -822,10 +821,9 @@ public void testQueryJob() throws InterruptedException {
}
assertEquals(2, rowCount);
assertTrue(bigquery.delete(DATASET, tableName));
// todo(mziccard) uncomment as soon as #624 is closed
// Job queryJob = bigquery.getJob(remoteJob.jobId());
// JobStatistics.QueryStatistics statistics = queryJob.statistics();
// assertNotNull(statistics.queryPlan());
Job queryJob = bigquery.getJob(remoteJob.jobId());
JobStatistics.QueryStatistics statistics = queryJob.statistics();
assertNotNull(statistics.queryPlan());
}

@Test
Expand Down