From 0b085bfa0f54cce91f571f3ff40529481d9f74fd Mon Sep 17 00:00:00 2001 From: Jin Seop Kim Date: Wed, 15 Apr 2026 13:50:29 -0400 Subject: [PATCH 1/2] test(bigquery): improve assertion in testLocationFastSQLQueryWithJobId --- .../test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/java-bigquery/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java b/java-bigquery/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java index 70569ea15902..e8189d8829de 100644 --- a/java-bigquery/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java +++ b/java-bigquery/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java @@ -4732,7 +4732,10 @@ void testLocationFastSQLQueryWithJobId() throws InterruptedException { // Use `getNumDmlAffectedRows()` for DML operations Job queryJob = bigquery.getJob(result.getJobId()); queryJob = queryJob.waitFor(); + assertNull(queryJob.getStatus().getError(), "Job failed with error: " + queryJob.getStatus().getError()); + JobStatistics.QueryStatistics statistics = queryJob.getStatistics(); + assertNotNull(statistics.getNumDmlAffectedRows(), "DML affected rows statistics should not be null"); assertEquals(1L, statistics.getNumDmlAffectedRows().longValue()); // Verify correctness of table content From 6e254408a725ba304f5a3b5cda2749fe2c1446b7 Mon Sep 17 00:00:00 2001 From: cloud-java-bot Date: Wed, 15 Apr 2026 17:56:49 +0000 Subject: [PATCH 2/2] chore: generate libraries at Wed Apr 15 17:55:11 UTC 2026 --- gapic-libraries-bom/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gapic-libraries-bom/pom.xml b/gapic-libraries-bom/pom.xml index 9f1174f95b72..9cbef9e2cdee 100644 --- a/gapic-libraries-bom/pom.xml +++ b/gapic-libraries-bom/pom.xml @@ -4,7 +4,7 @@ com.google.cloud gapic-libraries-bom pom - 1.85.1 + 1.85.0 Google Cloud Java BOM BOM for the libraries in google-cloud-java repository. Users should not