You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ji...@apache.org on 2019/02/27 07:44:56 UTC

[incubator-iotdb] branch fix_sonar_bug updated (15c5801 -> bbeb32f)

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

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


    from 15c5801  fix ImportCsv
     new 22af4b5  add partition mode load of chunkGroupMetaData in MetadataQuerierByFileImpl chunkMetaDataCache
     new 722fbdc  Merge pull request #59 from LeiRui/partitionload
     new 6819e33  fix that an empty BufferWriteProcessor will fail writing WAL of deletion
     new b576720  enable users define the location of their thrift compiler
     new bd30ea8  [IOTDB-17] add english doc (#18)
     new a733151  Add config for listen address (#65)
     new eb662d0  add debug log info for jdbc service (#68)
     new 1f022e1  add apache license
     new 647e1eb  Merge pull request #70 from Ring-k/master
     new ade931b  add an initial committer: Kun Liu
     new a5c354c  Merge pull request #71 from apache/update_doc
     new a1e3a30  [IOTDB-26] client-cli output error when exiting (#73)
     new bbeb32f  Merge branch 'master' into fix_sonar_bug

The 1463 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:
 Readme.md                                          |    93 +-
 .../README.md => docs/Community-History&Vision.md  |     4 +-
 docs/Community-Powered By.md                       |    42 +
 docs/Community-Project Committers.md               |    44 +
 docs/Development.md                                |   197 +
 docs/Documentation/Frequently asked questions.md   |   126 +
 docs/Documentation/OtherMaterial-Examples.md       |    84 +
 docs/Documentation/OtherMaterial-Reference.md      |    30 +
 .../OtherMaterial-ReleaseNotesV0.7.0.md            |    59 +
 docs/Documentation/OtherMaterial-Sample Data.md    |    67 +
 docs/Documentation/OtherMaterial-Sample Data.txt   | 60509 +++++++++++++++++++
 docs/Documentation/QuickStart.md                   |   345 +
 docs/Documentation/UserGuideV0.7.0/1-Overview.md   |   120 +
 docs/Documentation/UserGuideV0.7.0/2-Concept.md    |   247 +
 .../UserGuideV0.7.0/3-Operation Manual.md          |   875 +
 .../UserGuideV0.7.0/4-Deployment and Management.md |   779 +
 .../UserGuideV0.7.0/5-SQL Documentation.md         |   633 +
 .../UserGuideV0.7.0/6-JDBC Documentation.md        |     7 +-
 docs/Documentation/UserGuideV0.7.0/7-Tools-Cli.md  |    93 +
 .../UserGuideV0.7.0/7-Tools-Grafana.md             |   138 +
 .../UserGuideV0.7.0/7-Tools-Hadoop.md              |     9 +-
 .../Documentation/UserGuideV0.7.0/7-Tools-spark.md |   291 +
 .../apache/iotdb/cli/client/AbstractClient.java    |    14 +-
 .../java/org/apache/iotdb/cli/client/Client.java   |     4 +-
 .../org/apache/iotdb/cli/client/WinClient.java     |     3 +-
 .../apache/iotdb/cli/client/AbstractClientIT.java  |     4 +-
 iotdb/iotdb/conf/iotdb-engine.properties           |     2 +
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |     1 +
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |     2 +
 .../iotdb/db/engine/filenode/FileNodeManager.java  |     6 +-
 .../db/engine/filenode/FileNodeProcessor.java      |     4 +-
 .../iotdb/db/qp/executor/OverflowQPExecutor.java   |     8 +-
 .../org/apache/iotdb/db/service/JDBCService.java   |    30 +-
 .../org/apache/iotdb/jdbc/IoTDBConnection.java     |     2 +-
 pom.xml                                            |     5 +-
 .../apache/iotdb/tsfile/read/ReadOnlyTsFile.java   |    12 +
 .../read/controller/MetadataQuerierByFileImpl.java |    51 +
 .../controller/MetadataQuerierByFileImplTest.java  |    19 +-
 38 files changed, 64904 insertions(+), 55 deletions(-)
 copy hadoop/README.md => docs/Community-History&Vision.md (96%)
 create mode 100644 docs/Community-Powered By.md
 create mode 100644 docs/Community-Project Committers.md
 create mode 100644 docs/Development.md
 create mode 100644 docs/Documentation/Frequently asked questions.md
 create mode 100644 docs/Documentation/OtherMaterial-Examples.md
 create mode 100644 docs/Documentation/OtherMaterial-Reference.md
 create mode 100644 docs/Documentation/OtherMaterial-ReleaseNotesV0.7.0.md
 create mode 100644 docs/Documentation/OtherMaterial-Sample Data.md
 create mode 100644 docs/Documentation/OtherMaterial-Sample Data.txt
 create mode 100755 docs/Documentation/QuickStart.md
 create mode 100644 docs/Documentation/UserGuideV0.7.0/1-Overview.md
 create mode 100644 docs/Documentation/UserGuideV0.7.0/2-Concept.md
 create mode 100644 docs/Documentation/UserGuideV0.7.0/3-Operation Manual.md
 create mode 100644 docs/Documentation/UserGuideV0.7.0/4-Deployment and Management.md
 create mode 100644 docs/Documentation/UserGuideV0.7.0/5-SQL Documentation.md
 copy hadoop/README.md => docs/Documentation/UserGuideV0.7.0/6-JDBC Documentation.md (90%)
 create mode 100644 docs/Documentation/UserGuideV0.7.0/7-Tools-Cli.md
 create mode 100644 docs/Documentation/UserGuideV0.7.0/7-Tools-Grafana.md
 copy hadoop/README.md => docs/Documentation/UserGuideV0.7.0/7-Tools-Hadoop.md (84%)
 create mode 100644 docs/Documentation/UserGuideV0.7.0/7-Tools-spark.md