Skip to content

Commit 20c3f50

Browse files
chore: generate libraries at Fri Nov 14 13:30:19 UTC 2025
1 parent db17d8d commit 20c3f50

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>libraries-bom</artifactId>
22-
<version>26.70.0</version>
22+
<version>26.71.0</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>
@@ -41,7 +41,7 @@ If you are using Maven without the BOM, add this to your dependencies:
4141
<dependency>
4242
<groupId>com.google.cloud</groupId>
4343
<artifactId>google-cloud-spanner</artifactId>
44-
<version>6.102.0</version>
44+
<version>6.102.1</version>
4545
</dependency>
4646

4747
```

google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/ReadWriteTransactionTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,7 @@ public void testExecuteQueryWithDmlReturningWithoutRetry() {
293293
when(parsedStatement.getType()).thenReturn(StatementType.UPDATE);
294294
when(parsedStatement.isUpdate()).thenReturn(true);
295295
when(parsedStatement.hasReturningClause()).thenReturn(true);
296-
Statement statement =
297-
Statement.of("INSERT INTO TEST (ID, NAME) VALUES (1, 'x') THEN RETURN *");
296+
Statement statement = Statement.of("INSERT INTO TEST (ID, NAME) VALUES (1, 'x') THEN RETURN *");
298297
when(parsedStatement.getStatement()).thenReturn(statement);
299298

300299
ReadWriteTransaction transaction = createSubject(/* commitBehavior= */ CommitBehavior.SUCCEED);

0 commit comments

Comments
 (0)