You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2020/11/21 03:53:48 UTC

[shardingsphere] branch master updated: #8241 Update the sub class ShardingCTLSetBackendHandler of TextProtocolBackendHandler (#8257)

This is an automated email from the ASF dual-hosted git repository.

zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new 0af539e  #8241 Update the sub class ShardingCTLSetBackendHandler of TextProtocolBackendHandler (#8257)
0af539e is described below

commit 0af539efe5424b4cb0c442d4fe7b5467ebf41dfb
Author: 蒋琛 <Jl...@users.noreply.github.com>
AuthorDate: Sat Nov 21 11:53:35 2020 +0800

    #8241 Update the sub class ShardingCTLSetBackendHandler of TextProtocolBackendHandler (#8257)
    
    Co-authored-by: jlif <ji...@qq.com>
---
 .../proxy/backend/text/sctl/set/ShardingCTLSetBackendHandler.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/sctl/set/ShardingCTLSetBackendHandler.java b/shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/sctl/set/ShardingCTLSetBackendHandler.java
index bfc25a7..bf9daab 100644
--- a/shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/sctl/set/ShardingCTLSetBackendHandler.java
+++ b/shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/sctl/set/ShardingCTLSetBackendHandler.java
@@ -26,7 +26,7 @@ import org.apache.shardingsphere.proxy.backend.text.sctl.exception.InvalidShardi
 import org.apache.shardingsphere.proxy.backend.text.sctl.exception.UnsupportedShardingCTLTypeException;
 import org.apache.shardingsphere.transaction.core.TransactionType;
 
-import java.util.List;
+import java.util.Collection;
 import java.util.Optional;
 
 /**
@@ -70,7 +70,7 @@ public final class ShardingCTLSetBackendHandler implements TextProtocolBackendHa
     }
     
     @Override
-    public List<Object> getRowData() {
+    public Collection<Object> getRowData() {
         return null;
     }
 }