You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by lt...@apache.org on 2019/04/20 05:26:30 UTC

[incubator-iotdb] branch cluster_read updated (3106615 -> 308421e)

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

lta pushed a change to branch cluster_read
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


    from 3106615  merge cluster
     new 1391f8b  update
     new bfc27eb  fix log level and stack print in test (#156)
     new 013c30c  [IOTDB-80] Support custom export file name (#159)
     new ff3aaa9  update travis for supporinting JDK on Win
     new 4c8db59  Merge pull request #160 from xiaoyekanren/travis_jdk11_win
     new fa385af  fix iotdb-82, close TsFileInput before remove the tsfile
     new 440c50f  Merge pull request #161 from apache/fix_file_close_in_pageHeaderTest
     new 66695b1  make TsFileWriter as AutoClosable; make TsFileReadWriteTest more concise (#133)
     new 9d97aa7  Merge branch 'master' into cluster
     new 308421e  Merge branch 'cluster' into cluster_read

The 1793 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.


Summary of changes:
 .travis.yml                                        |  39 ++---
 iotdb-cli/cli/bin/export-csv.bat                   |   5 +-
 iotdb-cli/cli/bin/export-csv.sh                    |   5 +-
 iotdb-cli/cli/bin/import-csv.bat                   |   5 +-
 iotdb-cli/cli/bin/import-csv.sh                    |   5 +-
 .../java/org/apache/iotdb/cli/tool/ExportCsv.java  |  59 +++----
 .../java/org/apache/iotdb/cli/tool/ImportCsv.java  |  59 ++++---
 .../apache/iotdb/cli/client/AbstractScript.java    |  54 +++---
 .../iotdb/cli/client/StartClientScriptIT.java      |  51 +-----
 .../org/apache/iotdb/cli/tool/ExportCsvTestIT.java |  75 +++++++++
 .../org/apache/iotdb/cli/tool/ImportCsvTestIT.java |  77 +++++++++
 iotdb/iotdb/conf/logback.xml                       |   2 -
 .../qp/strategy/optimizer/ConcatPathOptimizer.java |   2 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |   2 +-
 .../org/apache/iotdb/db/sql/parse/ParseDriver.java |   2 +-
 .../apache/iotdb/db/qp/plan/PhysicalPlanTest.java  |   2 +-
 .../apache/iotdb/tsfile/write/TsFileWriter.java    |   2 +-
 .../iotdb/tsfile/file/header/PageHeaderTest.java   |   8 +-
 .../iotdb/tsfile/write/TsFileReadWriteTest.java    | 183 ++++++---------------
 19 files changed, 331 insertions(+), 306 deletions(-)
 copy cluster/src/test/java/org/apache/iotdb/cluster/integration/IoTDBMetadataFetchRemoteIT.java => iotdb-cli/src/test/java/org/apache/iotdb/cli/client/AbstractScript.java (54%)
 create mode 100644 iotdb-cli/src/test/java/org/apache/iotdb/cli/tool/ExportCsvTestIT.java
 create mode 100644 iotdb-cli/src/test/java/org/apache/iotdb/cli/tool/ImportCsvTestIT.java