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:50:04 UTC

[shardingsphere] branch master updated: Update the sub class TransactionBackendHandler of TextProtocolBackendHandler (#8255)

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 a70b5ff  Update the sub class TransactionBackendHandler of TextProtocolBackendHandler (#8255)
a70b5ff is described below

commit a70b5ff8cc6bf5bbcb29c23d5f3f233ccccff335
Author: cutie <cu...@users.noreply.github.com>
AuthorDate: Sat Nov 21 11:49:41 2020 +0800

    Update the sub class TransactionBackendHandler of TextProtocolBackendHandler (#8255)
    
    Co-authored-by: cutie <cu...@gmail.com>
---
 .../proxy/backend/text/transaction/TransactionBackendHandler.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/transaction/TransactionBackendHandler.java b/shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/transaction/TransactionBackendHandler.java
index c759f9a..6e8370f 100644
--- a/shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/transaction/TransactionBackendHandler.java
+++ b/shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/transaction/TransactionBackendHandler.java
@@ -26,7 +26,7 @@ import org.apache.shardingsphere.transaction.core.TransactionOperationType;
 
 import java.sql.SQLException;
 import java.sql.SQLFeatureNotSupportedException;
-import java.util.List;
+import java.util.Collection;
 
 /**
  * Do transaction operation.
@@ -66,7 +66,7 @@ public final class TransactionBackendHandler implements TextProtocolBackendHandl
     }
     
     @Override
-    public List<Object> getRowData() {
+    public Collection<Object> getRowData() {
         return null;
     }
 }