You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by su...@apache.org on 2020/02/12 07:45:59 UTC

[incubator-iotdb] branch mmanager_refactor updated (56147c0 -> 25dc278)

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

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


    from 56147c0  Delete duplicated with check methods
     add 8c51724  add some tests
     add 7d16f11  Merge branch 'new_series_reader' of https://github.com/apache/incubator-iotdb into new_series_reader
     add bb35953  Add Apache Header
     add e04acb2  solve the group by device bug
     add 3e01c49  Fix SeriesAggregateReaderTest
     add 1d799d5  fix tsfile read doc
     add 851e041  Merge remote-tracking branch 'upstream/new_series_reader' into new_series_reader
     add a937845  Merge branch 'new_series_reader' of https://github.com/apache/incubator-iotdb into new_series_reader
     add 4ab12f4  add documents for group by device syntax (#781)
     add c400bf1  [IOTDB-405] cache results in the client and makes the display look nice. (#782)
     add 414fdbe  Merge remote-tracking branch 'origin/master' into new_series_reader
     add f9287cb  Fix Query Bug (#788)
     add 5b0f7ff  remove usused daemon. (#787)
     add dd3385c  merge master
     add f28cd4a  fix doc
     add 511ac74  fix fill filter
     add 29303a4  solve the fill bug
     add 5668225  delete useless IPointReader in IFill
     add 8a0e49f  fix upperbound filter
     add 27f0852  fix upperbound filter
     add b190f92  Merge remote-tracking branch 'origin/new_series_reader' into new_series_reader
     add 3baa733  Add sync design doc (#783)
     add ee76d50  Self-serve modification of git topics (#789)
     add 81f9928  Revert "Self-serve modification of git topics (#789)" (#791)
     add e3f7437  self-serve modification of git topics (#792)
     add 1013014  [IOTDB-470]fix IllegalArgumentException when there exists 0 byte TsFile (#784)
     add 5c059bf  change maven-download-plugin to 1.3.0 (#794)
     add 9a4b83c  Typos in Fill (#795)
     add 15630d0  Merge remote-tracking branch 'origin/master' into new_series_reader
     add 6c9a4e8  Merge branch 'new_series_reader' of https://github.com/apache/incubator-iotdb into new_series_reader
     add 7bad43b  change the Linear Fill logic
     add 305b02a  add some comments
     add 25dc278  Merge remote-tracking branch 'upstream/new_series_reader' into mmanager

No new revisions were added by this update.

Summary of changes:
 .../resources/sbin/stop-server.sh => .asf.yaml     |  22 +-
 .../org/apache/iotdb/client/AbstractClient.java    | 441 ++++++---------------
 .../main/java/org/apache/iotdb/client/Client.java  |  32 +-
 .../java/org/apache/iotdb/client/WinClient.java    |  31 +-
 .../SystemDesign/1-TsFile/4-Read.md                |  23 +-
 .../SystemDesign/5-DataQuery/3-RawDataQuery.md     |   2 +-
 .../SystemDesign/6-Tools/1-Sync.md                 | 278 ++++++++++++-
 .../2-DML (Data Manipulation Language).md          |  15 +
 .../5-Operation Manual/4-SQL Reference.md          |  89 ++++-
 .../2-DML (Data Manipulation Language).md          |  20 +-
 .../5-Operation Manual/4-SQL Reference.md          |  24 +-
 .../iotdb/jdbc/IoTDBNonAlignQueryResultSet.java    |   8 +-
 pom.xml                                            |   2 +-
 .../engine/storagegroup/StorageGroupProcessor.java |   8 +
 .../db/query/dataset/DeviceIterateDataSet.java     |  15 +-
 .../iotdb/db/query/executor/FillQueryExecutor.java |   9 +-
 .../java/org/apache/iotdb/db/query/fill/IFill.java |  35 +-
 .../org/apache/iotdb/db/query/fill/LinearFill.java |  30 +-
 .../apache/iotdb/db/query/fill/PreviousFill.java   |  15 +-
 .../iotdb/db/sync/sender/transfer/SyncClient.java  |   9 +-
 .../org/apache/iotdb/db/utils/UpgradeUtils.java    |   6 +-
 .../iotdb/db/integration/IoTDBDisableAlignIT.java  |   9 -
 .../iotdb/db/integration/IoTDBQueryDemoIT.java     |  13 +-
 .../iotdb/db/integration/IoTDBRecoverIT.java       |  14 +-
 .../reader/series/SeriesAggregateReaderTest.java   |  21 +-
 .../apache/iotdb/db/utils/EnvironmentUtils.java    |  12 +
 .../iotdb/tsfile/read/reader/page/PageReader.java  |   5 -
 .../decoder/delta/DeltaBinaryEncoderLongTest.java  |  18 +-
 .../iotdb/tsfile/read/common/BatchDataTest.java    |  71 ++++
 .../read/filter/MinTimeMaxTimeFilterTest.java      |   6 +
 .../iotdb/tsfile/write/TsFileWriterTest.java       |  26 +-
 .../iotdb/tsfile/write/writer/PageWriterTest.java  |  18 +-
 32 files changed, 747 insertions(+), 580 deletions(-)
 copy server/src/assembly/resources/sbin/stop-server.sh => .asf.yaml (79%)
 mode change 100755 => 100644
 create mode 100644 tsfile/src/test/java/org/apache/iotdb/tsfile/read/common/BatchDataTest.java