iamhucong commented on code in PR #25330:
URL: https://github.com/apache/shardingsphere/pull/25330#discussion_r1178585065
##########
proxy/backend/core/src/main/java/org/apache/shardingsphere/proxy/backend/handler/admin/executor/DefaultSessionVariableHandler.java:
##########
@@ -37,13 +37,18 @@ public abstract class DefaultSessionVariableHandler
implements SessionVariableHa
@Override
public final void handle(final ConnectionSession connectionSession, final
String variableName, final String assignValue) {
if (TypedSPILoader.findService(ReplayedSessionVariablesProvider.class,
databaseType).map(ReplayedSessionVariablesProvider::getVariables).orElseGet(Collections::emptySet)
- .contains(variableName)) {
+ .contains(variableName)
+ || isNeedHandel(variableName)) {
Review Comment:
Ok.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]