Skip to content

Commit ef45341

Browse files
committed
chore(spanner): fallback for TransactionRunner
1 parent 0e2cd4a commit ef45341

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

google-cloud-spanner/src/main/java/com/google/cloud/spanner/MultiplexedSessionDatabaseClient.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,17 +89,17 @@ public <T> T run(TransactionCallable<T> callable) {
8989

9090
@Override
9191
public Timestamp getCommitTimestamp() {
92-
return null;
92+
return this.transactionRunner.getCommitTimestamp();
9393
}
9494

9595
@Override
9696
public CommitResponse getCommitResponse() {
97-
return null;
97+
return this.transactionRunner.getCommitResponse();
9898
}
9999

100100
@Override
101101
public TransactionRunner allowNestedTransaction() {
102-
return null;
102+
return this.transactionRunner.allowNestedTransaction();
103103
}
104104
}
105105

0 commit comments

Comments
 (0)