You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by li...@apache.org on 2021/05/13 05:51:04 UTC

[iotdb] branch jdbc_maxrows updated: impl getMoreResults to return false

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

liudw pushed a commit to branch jdbc_maxrows
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/jdbc_maxrows by this push:
     new e152949  impl getMoreResults to return false
e152949 is described below

commit e1529490c7934bf20f3c9822418122aca3ff1e15
Author: liudw <li...@apache.org>
AuthorDate: Thu May 13 13:49:48 2021 +0800

    impl getMoreResults to return false
---
 jdbc/src/main/java/org/apache/iotdb/jdbc/IoTDBStatement.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jdbc/src/main/java/org/apache/iotdb/jdbc/IoTDBStatement.java b/jdbc/src/main/java/org/apache/iotdb/jdbc/IoTDBStatement.java
index 6eacc87..e796fa6 100644
--- a/jdbc/src/main/java/org/apache/iotdb/jdbc/IoTDBStatement.java
+++ b/jdbc/src/main/java/org/apache/iotdb/jdbc/IoTDBStatement.java
@@ -610,7 +610,7 @@ public class IoTDBStatement implements Statement {
 
   @Override
   public boolean getMoreResults() throws SQLException {
-    throw new SQLException("Not support getMoreResults");
+    return false;
   }
 
   @Override