Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gapic-libraries-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.google.cloud</groupId>
<artifactId>gapic-libraries-bom</artifactId>
<packaging>pom</packaging>
<version>1.85.1</version><!-- {x-version-update:google-cloud-java:current} -->
<version>1.85.0</version><!-- {x-version-update:google-cloud-java:current} -->
<name>Google Cloud Java BOM</name>
<description>
BOM for the libraries in google-cloud-java repository. Users should not
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading