File tree 2 files changed +2
-2
lines changed
main/java/com/google/cloud/spanner/jdbc
test/java/com/google/cloud/spanner/jdbc
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -479,7 +479,7 @@ public boolean supportsPositionedUpdate() {
479
479
480
480
@ Override
481
481
public boolean supportsSelectForUpdate () {
482
- return false ;
482
+ return true ;
483
483
}
484
484
485
485
@ Override
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ public void testTrivialMethods() throws SQLException {
250
250
assertTrue (meta .supportsSchemasInPrivilegeDefinitions ());
251
251
assertTrue (meta .supportsSchemasInProcedureCalls ());
252
252
assertTrue (meta .supportsSchemasInTableDefinitions ());
253
- assertFalse (meta .supportsSelectForUpdate ());
253
+ assertTrue (meta .supportsSelectForUpdate ());
254
254
assertFalse (meta .supportsStatementPooling ());
255
255
assertFalse (meta .supportsStoredFunctionsUsingCallSyntax ());
256
256
assertFalse (meta .supportsStoredProcedures ());
You can’t perform that action at this time.
0 commit comments