You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/05/24 12:58:52 UTC

[iotdb] branch csv_cluster created (now 292dbfe5fb)

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

haonan pushed a change to branch csv_cluster
in repository https://gitbox.apache.org/repos/asf/iotdb.git


      at 292dbfe5fb [IOTDB-3279] Fix import csv tool error message

This branch includes the following new commits:

     new 292dbfe5fb [IOTDB-3279] Fix import csv tool error message

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[iotdb] 01/01: [IOTDB-3279] Fix import csv tool error message

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 292dbfe5fb3332479dac2e52112622adfba81795
Author: HTHou <hh...@outlook.com>
AuthorDate: Tue May 24 20:58:36 2022 +0800

    [IOTDB-3279] Fix import csv tool error message
---
 cli/src/main/java/org/apache/iotdb/tool/ImportCsv.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/cli/src/main/java/org/apache/iotdb/tool/ImportCsv.java b/cli/src/main/java/org/apache/iotdb/tool/ImportCsv.java
index 1437460317..ae0b97f318 100644
--- a/cli/src/main/java/org/apache/iotdb/tool/ImportCsv.java
+++ b/cli/src/main/java/org/apache/iotdb/tool/ImportCsv.java
@@ -714,8 +714,7 @@ public class ImportCsv extends AbstractCsvTool {
     try {
       sessionDataSet = session.executeQueryStatement(sql);
     } catch (StatementExecutionException e) {
-      System.out.println(
-          "Meet error when query the type of timeseries because the IoTDB v0.13 don't support that the path contains any purely digital path.");
+      System.out.println("Meet error when query the type of timeseries because " + e.getMessage());
       return false;
     }
     List<String> columnNames = sessionDataSet.getColumnNames();