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 0e2cd4a commit ef45341Copy full SHA for ef45341
google-cloud-spanner/src/main/java/com/google/cloud/spanner/MultiplexedSessionDatabaseClient.java
@@ -89,17 +89,17 @@ public <T> T run(TransactionCallable<T> callable) {
89
90
@Override
91
public Timestamp getCommitTimestamp() {
92
- return null;
+ return this.transactionRunner.getCommitTimestamp();
93
}
94
95
96
public CommitResponse getCommitResponse() {
97
+ return this.transactionRunner.getCommitResponse();
98
99
100
101
public TransactionRunner allowNestedTransaction() {
102
+ return this.transactionRunner.allowNestedTransaction();
103
104
105
0 commit comments