Skip to content

Commit

Permalink
deps: update dependency com.google.cloud:google-cloud-bigquery to v2.…
Browse files Browse the repository at this point in the history
…45.0 (#2812)

* deps: update dependency com.google.cloud:google-cloud-bigquery to v2.45.0

* Update validation to include useInt64Timestamps

* Update validation to include useInt64Timestamps

* Update validation to include useInt64Timestamps

* Update validation to include useInt64Timestamps

---------

Co-authored-by: Mend Renovate <bot@renovateapp.com>
  • Loading branch information
PhongChuong and renovate-bot authored Dec 20, 2024
1 parent 056887e commit 5c8ebc0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1756,12 +1756,14 @@ public void testComplicateSchemaWithPendingStream()
Iterator<FieldValueList> queryIter = queryResult.getValues().iterator();
assertTrue(queryIter.hasNext());
assertEquals(
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=aaa},"
+ " FieldValue{attribute=PRIMITIVE, value=aaa}]}]",
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=aaa,"
+ " useInt64Timestamps=false}, FieldValue{attribute=PRIMITIVE, value=aaa,"
+ " useInt64Timestamps=false}], useInt64Timestamps=false}]",
queryIter.next().get(1).getRepeatedValue().toString());
assertEquals(
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=bbb},"
+ " FieldValue{attribute=PRIMITIVE, value=bbb}]}]",
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=bbb,"
+ " useInt64Timestamps=false}, FieldValue{attribute=PRIMITIVE, value=bbb,"
+ " useInt64Timestamps=false}], useInt64Timestamps=false}]",
queryIter.next().get(1).getRepeatedValue().toString());
assertFalse(queryIter.hasNext());
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-bigquery</artifactId>
<version>2.44.0</version>
<version>2.45.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down
2 changes: 1 addition & 1 deletion samples/install-without-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-bigquery</artifactId>
<version>2.44.0</version>
<version>2.45.0</version>
</dependency>
<dependency>
<groupId>org.apache.avro</groupId>
Expand Down
2 changes: 1 addition & 1 deletion samples/snapshot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-bigquery</artifactId>
<version>2.44.0</version>
<version>2.45.0</version>
</dependency>
<dependency>
<groupId>org.apache.avro</groupId>
Expand Down
2 changes: 1 addition & 1 deletion samples/snippets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-bigquery</artifactId>
<version>2.44.0</version>
<version>2.45.0</version>
</dependency>
<dependency>
<groupId>org.apache.avro</groupId>
Expand Down

0 comments on commit 5c8ebc0

Please sign in to comment.