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/22 06:25:14 UTC

[incubator-iotdb] branch cluster updated (2bae2cc -> e99f328)

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

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


    from 2bae2cc  update deploy program
     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 7975a95  merge master
     new e99f328  merge master

The 1759 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 ++---
 .../integration/IoTDBMetadataFetchRemoteIT.java    |  80 +++++----
 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    |  37 ++++-
 .../iotdb/cli/client/StartClientScriptIT.java      |  51 +-----
 .../org/apache/iotdb/cli/tool/ExportCsvTestIT.java |  75 +++++++++
 .../org/apache/iotdb/cli/tool/ImportCsvTestIT.java |  77 +++++++++
 .../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, 379 insertions(+), 319 deletions(-)
 copy cluster/src/test/java/org/apache/iotdb/cluster/utils/Utils.java => iotdb-cli/src/test/java/org/apache/iotdb/cli/client/AbstractScript.java (53%)
 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