10000
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 63e1484 commit 5d84a2eCopy full SHA for 5d84a2e
r2dbc-mysql/src/main/java/JasyncClientConnection.kt
@@ -104,7 +104,7 @@ class JasyncClientConnection(
104
Mono.defer { (jasyncConnection as MySQLConnection).sendQueryAfterCurrent(query).toMono().then() }
105
106
override fun setTransactionIsolationLevel(isolationLevel: IsolationLevel): Publisher<Void> {
107
- return executeVoidAfterCurrent("SET TRANSACTION ISOLATION LEVEL ${isolationLevel.asSql()}")
+ return executeVoidAfterCurrent("SET SESSION TRANSACTION ISOLATION LEVEL ${isolationLevel.asSql()}")
108
.doOnSuccess { this.isolationLevel = isolationLevel }
109
}
110
0 commit comments