You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xu...@apache.org on 2021/01/04 09:11:24 UTC

[iotdb] branch xkf_tpc_test updated: add example

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

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


The following commit(s) were added to refs/heads/xkf_tpc_test by this push:
     new 3ca5f3f  add example
3ca5f3f is described below

commit 3ca5f3fc441162f4450f93ccce64a8585a30bb3c
Author: 151250176 <15...@smail.nju.edu.cn>
AuthorDate: Mon Jan 4 17:10:34 2021 +0800

    add example
---
 .../main/java/org/apache/iotdb/SessionExample.java | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/example/session/src/main/java/org/apache/iotdb/SessionExample.java b/example/session/src/main/java/org/apache/iotdb/SessionExample.java
index 1ab093f..71085af 100644
--- a/example/session/src/main/java/org/apache/iotdb/SessionExample.java
+++ b/example/session/src/main/java/org/apache/iotdb/SessionExample.java
@@ -62,18 +62,18 @@ public class SessionExample {
         throw e;
     }
 
-    createTimeseries();
-    createMultiTimeseries();
-    insertRecord();
-    insertTablet();
+//    createTimeseries();
+//    createMultiTimeseries();
+//    insertRecord();
+//    insertTablet();
     insertTablets();
-    insertRecords();
-    nonQuery();
-    query();
-    rawDataQuery();
-    queryByIterator();
-    deleteData();
-    deleteTimeseries();
+//    insertRecords();
+//    nonQuery();
+//    query();
+//    rawDataQuery();
+//    queryByIterator();
+//    deleteData();
+//    deleteTimeseries();
     session.close();
   }