Skip to content

Commit 5c8ebc0

Browse files
deps: update dependency com.google.cloud:google-cloud-bigquery to v2.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>
1 parent 056887e commit 5c8ebc0

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

google-cloud-bigquerystorage/src/test/java/com/google/cloud/bigquery/storage/v1/it/ITBigQueryWriteManualClientTest.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1756,12 +1756,14 @@ public void testComplicateSchemaWithPendingStream()
17561756
Iterator<FieldValueList> queryIter = queryResult.getValues().iterator();
17571757
assertTrue(queryIter.hasNext());
17581758
assertEquals(
1759-
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=aaa},"
1760-
+ " FieldValue{attribute=PRIMITIVE, value=aaa}]}]",
1759+
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=aaa,"
1760+
+ " useInt64Timestamps=false}, FieldValue{attribute=PRIMITIVE, value=aaa,"
1761+
+ " useInt64Timestamps=false}], useInt64Timestamps=false}]",
17611762
queryIter.next().get(1).getRepeatedValue().toString());
17621763
assertEquals(
1763-
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=bbb},"
1764-
+ " FieldValue{attribute=PRIMITIVE, value=bbb}]}]",
1764+
"[FieldValue{attribute=REPEATED, value=[FieldValue{attribute=PRIMITIVE, value=bbb,"
1765+
+ " useInt64Timestamps=false}, FieldValue{attribute=PRIMITIVE, value=bbb,"
1766+
+ " useInt64Timestamps=false}], useInt64Timestamps=false}]",
17651767
queryIter.next().get(1).getRepeatedValue().toString());
17661768
assertFalse(queryIter.hasNext());
17671769
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
<dependency>
149149
<groupId>com.google.cloud</groupId>
150150
<artifactId>google-cloud-bigquery</artifactId>
151-
<version>2.44.0</version>
151+
<version>2.45.0</version>
152152
<scope>test</scope>
153153
<exclusions>
154154
<exclusion>

samples/install-without-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud</groupId>
3939
<artifactId>google-cloud-bigquery</artifactId>
40-
<version>2.44.0</version>
40+
<version>2.45.0</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>org.apache.avro</groupId>

samples/snapshot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>com.google.cloud</groupId>
3838
<artifactId>google-cloud-bigquery</artifactId>
39-
<version>2.44.0</version>
39+
<version>2.45.0</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.apache.avro</groupId>

samples/snippets/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<dependency>
5656
<groupId>com.google.cloud</groupId>
5757
<artifactId>google-cloud-bigquery</artifactId>
58-
<version>2.44.0</version>
58+
<version>2.45.0</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.apache.avro</groupId>

0 commit comments

Comments
 (0)