This is an automated email from the ASF dual-hosted git repository.
geniuspig pushed a change to branch http_v2
in repository https://gitbox.apache.org/repos/asf/iotdb.git.
from 676481b remove isAggreated
add 2bd067b [To rel/0.11] Remove unnecessary dependency of
com.clearspring.analytics:stream and fastutil (#2254) (#2255)
add f2e7413 getObject should not return String for all data types (#2247)
add 9431e53 [IOTDB-1050] Fix Count timeserise column name is wrong (#2238)
add 0288b76 Eliminate boost build logs to avoid exceeding maximum log
length
add bc02a56 disable travis for cpp module
add 3c266e0 enable deploying the website automatically
add a98eca4 fix tools declaration in Jenkinsfile
add 6a5e527 [IOTDB-507] Add zeppelin-interpreter module (#2096)
add 316f30d fix doc error
add c666c3a Merge pull request #2260 from
neuyilan/apache_master_1213_fix_docs
add 6787a2e Avoid overflow by converting to long (#2209)
add c11cd52 Merge branch 'master' into http_v2
No new revisions were added by this update.
Summary of changes:
.travis.yml | 2 +-
Jenkinsfile | 29 +-
LICENSE-binary | 2 -
.../java/org/apache/iotdb/cli/AbstractCli.java | 110 +-----
cli/src/main/java/org/apache/iotdb/cli/Cli.java | 5 +-
cli/src/main/java/org/apache/iotdb/cli/WinCli.java | 5 +-
.../main/java/org/apache/iotdb/tool/ExportCsv.java | 4 +-
.../java/org/apache/iotdb/cli/AbstractCliIT.java | 35 +-
cluster/src/assembly/resources/sbin/add-node.bat | 6 +-
cluster/src/assembly/resources/sbin/add-node.sh | 6 +-
compile-tools/boost/pom.xml | 4 +
docs/UserGuide/Server/Cluster Setup.md | 10 +-
docs/UserGuide/Server/ServerFileList.md | 1 -
docs/zh/UserGuide/Server/Cluster Setup.md | 14 +-
docs/zh/UserGuide/Server/ServerFileList.md | 1 -
pom.xml | 12 +-
server/pom.xml | 5 -
.../apache/iotdb/db/qp/executor/PlanExecutor.java | 2 +-
.../db/query/dataset/ShowTimeseriesDataSet.java | 7 +-
.../iotdb/db/utils/datastructure/TVList.java | 6 +-
.../apache/iotdb/db/integration/IOTDBInsertIT.java | 4 +-
.../iotdb/db/integration/IoTDBResultSetIT.java | 4 +-
.../iotdb/db/query/dataset/ListDataSetTest.java | 126 +++++++
.../iotdb/db/query/dataset/SingleDataSetTest.java | 133 ++++++++
.../java/org/apache/iotdb/rpc/IoTDBRpcDataSet.java | 43 ++-
.../main/java/org/apache/iotdb/rpc/RpcUtils.java | 90 +++++
.../iotdb/session/IoTDBSessionIteratorIT.java | 178 ++++++++--
site/README-zh.md | 2 +-
site/README.md | 2 +-
spark-iotdb-connector/pom.xml | 6 -
zeppelin-interpreter/IoTDB-Zeppelin-Demo.zpln | 377 +++++++++++++++++++++
zeppelin-interpreter/README.md | 186 ++++++++++
zeppelin-interpreter/pom.xml | 126 +++++++
.../apache/zeppelin/iotdb/IoTDBInterpreter.java | 213 ++++++++++++
.../src/main/resources/interpreter-setting.json | 70 ++++
.../zeppelin/iotdb/IoTDBInterpreterTest.java | 273 +++++++++++++++
36 files changed, 1865 insertions(+), 234 deletions(-)
create mode 100644
server/src/test/java/org/apache/iotdb/db/query/dataset/ListDataSetTest.java
create mode 100644
server/src/test/java/org/apache/iotdb/db/query/dataset/SingleDataSetTest.java
create mode 100644 zeppelin-interpreter/IoTDB-Zeppelin-Demo.zpln
create mode 100644 zeppelin-interpreter/README.md
create mode 100644 zeppelin-interpreter/pom.xml
create mode 100644
zeppelin-interpreter/src/main/java/org/apache/zeppelin/iotdb/IoTDBInterpreter.java
create mode 100644
zeppelin-interpreter/src/main/resources/interpreter-setting.json
create mode 100644
zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java