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

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


The following commit(s) were added to refs/heads/fixFetchDeviceNotInCache by 
this push:
     new 6b9f72a23d7 remove main
6b9f72a23d7 is described below

commit 6b9f72a23d7d37a83ccc688cbdfb6b1322d1754c
Author: shuwenwei <s13979062...@gmail.com>
AuthorDate: Mon Jul 14 17:18:33 2025 +0800

    remove main
---
 .../recent/IoTDBTableViewQueryWithCachedDeviceIT.java   | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git 
a/integration-test/src/test/java/org/apache/iotdb/relational/it/query/view/recent/IoTDBTableViewQueryWithCachedDeviceIT.java
 
b/integration-test/src/test/java/org/apache/iotdb/relational/it/query/view/recent/IoTDBTableViewQueryWithCachedDeviceIT.java
index 32835598cd2..74e009afb17 100644
--- 
a/integration-test/src/test/java/org/apache/iotdb/relational/it/query/view/recent/IoTDBTableViewQueryWithCachedDeviceIT.java
+++ 
b/integration-test/src/test/java/org/apache/iotdb/relational/it/query/view/recent/IoTDBTableViewQueryWithCachedDeviceIT.java
@@ -27,8 +27,6 @@ import org.apache.iotdb.it.env.EnvFactory;
 import org.apache.iotdb.it.env.cluster.node.DataNodeWrapper;
 import org.apache.iotdb.rpc.IoTDBConnectionException;
 import org.apache.iotdb.rpc.StatementExecutionException;
-import org.apache.iotdb.session.Session;
-import org.apache.iotdb.session.TableSessionBuilder;
 
 import org.junit.After;
 import org.junit.Assert;
@@ -66,21 +64,6 @@ public class IoTDBTableViewQueryWithCachedDeviceIT {
     "CREATE VIEW view1 (battery TAG, voltage INT32 FIELD, current FLOAT FIELD) 
as root.db.battery.**",
   };
 
-  public static void main(String[] args)
-      throws IoTDBConnectionException, StatementExecutionException {
-    try (ISession session = new Session.Builder().build()) {
-      session.open();
-      for (String sql : createTreeNonAlignedDataSqls) {
-        session.executeNonQueryStatement(sql);
-      }
-    }
-    try (ITableSession session = new TableSessionBuilder().build()) {
-      for (String createTableSql : createTableSqls) {
-        session.executeNonQueryStatement(createTableSql);
-      }
-    }
-  }
-
   @Before
   public void setUp() throws Exception {
     EnvFactory.getEnv().getConfig().getCommonConfig().setSortBufferSize(128 * 
1024);

Reply via email to