Skip to content

Commit 6fcb5fe

Browse files
committed
fix formatting
1 parent 1fafe27 commit 6fcb5fe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

samples/snippets/src/main/java/com/example/spanner/LastStatementSample.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ static void insertAndUpdateUsingLastStatement(DatabaseClient client) {
5757
// Pass in the `lastStatement` option to the last DML statement of the transaction.
5858
transaction.executeUpdate(
5959
Statement.of(
60-
"UPDATE Singers SET Singers.LastName = 'Doe' WHERE SingerId = 54213\n"), Options.lastStatement());
60+
"UPDATE Singers SET Singers.LastName = 'Doe' WHERE SingerId = 54213\n"),
61+
Options.lastStatement());
6162
System.out.println("Singer last name updated.");
6263

6364
return null;

0 commit comments

Comments
 (0)