We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bc73a1 commit c962cd2Copy full SHA for c962cd2
samples/snippets/src/main/java/com/example/spanner/SpannerSample.java
@@ -681,7 +681,7 @@ static void readOnlyTransaction(DatabaseClient dbClient) {
681
try (ReadOnlyTransaction transaction = dbClient.readOnlyTransaction()) {
682
try (ResultSet queryResultSet =
683
transaction.executeQuery(
684
- Statement.of("SELECT SingerId, AlbumId, AlbumTitle FROM Albums")) {
+ Statement.of("SELECT SingerId, AlbumId, AlbumTitle FROM Albums"))) {
685
while (queryResultSet.next()) {
686
System.out.printf(
687
"%d %d %s\n",
0 commit comments