Skip to content

Commit 29f11a0

Browse files
committed
---
yaml --- r: 3581 b: refs/heads/pubsub-alpha c: f920986 h: refs/heads/master i: 3579: 08b85dd
1 parent 0b9d752 commit 29f11a0

2 files changed

Lines changed: 8 additions & 9 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 36a62ef856d199f8efd09501b5ba65c422c01f23
33
refs/heads/travis: e21ee7b88a5edc3f3d8c71f90c3fc32abf7e8dd6
44
refs/heads/gh-pages: 7406918e071dd2c5677a638ae2a06e7592b6542c
5-
refs/heads/pubsub-alpha: 8fb9e91306d5c215fe3dd56db161771e85fb9534
5+
refs/heads/pubsub-alpha: f9209861f644541c5e8c88a575b37f20da727324
66
refs/heads/update-datastore: 47aae517c2cb33f1dccd909adaced73ec9d0f4df
77
refs/tags/0.0.9: 22f1839238f66c39e67ed4dfdcd273b1ae2e8444
88
refs/tags/v0.0.10: 207ebd2a3472fddee69fe1298eb90429e3306efd

branches/pubsub-alpha/gcloud-java-bigquery/src/test/java/com/google/gcloud/bigquery/it/ITBigQueryTest.java

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
import com.google.gcloud.bigquery.InsertAllResponse;
5151
import com.google.gcloud.bigquery.Job;
5252
import com.google.gcloud.bigquery.JobInfo;
53+
import com.google.gcloud.bigquery.JobStatistics;
5354
import com.google.gcloud.bigquery.LoadJobConfiguration;
5455
import com.google.gcloud.bigquery.QueryJobConfiguration;
5556
import com.google.gcloud.bigquery.QueryRequest;
@@ -683,10 +684,9 @@ public void testQuery() throws InterruptedException {
683684
rowCount++;
684685
}
685686
assertEquals(2, rowCount);
686-
// todo(mziccard) uncomment as soon as #624 is closed
687-
// Job queryJob = bigquery.getJob(response.jobId());
688-
// JobStatistics.QueryStatistics statistics = queryJob.statistics();
689-
// assertNotNull(statistics.queryPlan());
687+
Job queryJob = bigquery.getJob(response.jobId());
688+
JobStatistics.QueryStatistics statistics = queryJob.statistics();
689+
assertNotNull(statistics.queryPlan());
690690
}
691691

692692
@Test
@@ -851,10 +851,9 @@ public void testQueryJob() throws InterruptedException {
851851
}
852852
assertEquals(2, rowCount);
853853
assertTrue(bigquery.delete(DATASET, tableName));
854-
// todo(mziccard) uncomment as soon as #624 is closed
855-
// Job queryJob = bigquery.getJob(remoteJob.jobId());
856-
// JobStatistics.QueryStatistics statistics = queryJob.statistics();
857-
// assertNotNull(statistics.queryPlan());
854+
Job queryJob = bigquery.getJob(remoteJob.jobId());
855+
JobStatistics.QueryStatistics statistics = queryJob.statistics();
856+
assertNotNull(statistics.queryPlan());
858857
}
859858

860859
@Test

0 commit comments

Comments
 (0)