Skip to content

Commit c8ce619

Browse files
committed
---
yaml --- r: 6877 b: refs/heads/tswast-patch-1 c: 36d9dc3 h: refs/heads/master i: 6875: e4a6de2
1 parent 472ffee commit c8ce619

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: 931b4d35405300b9893683ecd5f7a6fc91774003
60+
refs/heads/tswast-patch-1: 36d9dc353bf0a75385f8cb24a6fcb6b3ce390a26
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/gcloud-java-bigquery/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public class GcloudBigQueryExample {
269269
.build();
270270
// Request query to be executed and wait for results
271271
QueryResponse queryResponse = bigquery.query(queryRequest);
272-
while (!queryResponse.jobComplete()) {
272+
while (!queryResponse.jobCompleted()) {
273273
Thread.sleep(1000L);
274274
queryResponse = bigquery.getQueryResults(queryResponse.jobId());
275275
}

branches/tswast-patch-1/gcloud-java-bigquery/src/test/java/com/google/gcloud/bigquery/ViewDefinitionTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ public void testBuilder() {
6262
@Test
6363
public void testToAndFromPb() {
6464
assertTrue(BaseTableDefinition.fromPb(VIEW_DEFINITION.toPb()) instanceof ViewDefinition);
65-
compareViewDefinition(VIEW_DEFINITION, BaseTableDefinition.<ViewDefinition>fromPb(VIEW_DEFINITION.toPb()));
65+
compareViewDefinition(VIEW_DEFINITION,
66+
BaseTableDefinition.<ViewDefinition>fromPb(VIEW_DEFINITION.toPb()));
6667
}
6768

6869
private void compareViewDefinition(ViewDefinition expected, ViewDefinition value) {

0 commit comments

Comments
 (0)