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

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


    from 2787ca3  claim 4GB memory max for vue compile
     add 5b6cd8b  enlarge memory for vue compiling (#1037)
     add 6a3219b  Add new Fill function docs and rearrange SystemDesign doc 
index (#1036)
     add f4e08c2  set vue compiler memory as 4GB
     add 537230d  [IOTDB-456] GroupByFill (#1039)
     new 83a85ee  fix website license; add more memory because of vuepress 1.x 
bug

The 1 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:
 docs/SystemDesign/5-DataQuery/1-DataQuery.md       |  15 +-
 .../5-DataQuery/10-GroupByFillQuery.md             | 177 ++++++++
 ...dificationHandle.md => 3-ModificationHandle.md} |   0
 .../{3-RawDataQuery.md => 4-RawDataQuery.md}       |   0
 ...4-AggregationQuery.md => 5-AggregationQuery.md} |   0
 .../{5-GroupByQuery.md => 6-GroupByQuery.md}       |   0
 .../5-DataQuery/{6-LastQuery.md => 7-LastQuery.md} |   0
 ...ignByDeviceQuery.md => 8-AlignByDeviceQuery.md} |   0
 docs/SystemDesign/5-DataQuery/9-FillFunction.md    | 149 +++++++
 .../2-DML Data Manipulation Language.md            |  35 +-
 .../5-Operation Manual/4-SQL Reference.md          |  24 ++
 docs/zh/SystemDesign/5-DataQuery/1-DataQuery.md    |  15 +-
 .../5-DataQuery/10-GroupByFillQuery.md             | 176 ++++++++
 ...dificationHandle.md => 3-ModificationHandle.md} |   0
 .../{3-RawDataQuery.md => 4-RawDataQuery.md}       |   0
 ...4-AggregationQuery.md => 5-AggregationQuery.md} |   0
 .../{5-GroupByQuery.md => 6-GroupByQuery.md}       |   0
 .../5-DataQuery/{6-LastQuery.md => 7-LastQuery.md} |   0
 ...ignByDeviceQuery.md => 8-AlignByDeviceQuery.md} |   0
 docs/zh/SystemDesign/5-DataQuery/9-FillFunction.md | 148 +++++++
 .../5-Operation Manual/4-SQL Reference.md          |  24 ++
 pom.xml                                            |   2 +-
 .../org/apache/iotdb/db/qp/strategy/SqlBase.g4     |  22 +-
 .../apache/iotdb/db/qp/constant/SQLConstant.java   |   2 +
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  16 +-
 .../org/apache/iotdb/db/qp/logical/Operator.java   |   2 +-
 .../iotdb/db/qp/logical/crud/SelectOperator.java   |   5 +-
 .../{FillQueryPlan.java => GroupByFillPlan.java}   |  26 +-
 .../iotdb/db/qp/strategy/LogicalGenerator.java     | 197 +++------
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |  16 +-
 .../dataset/groupby/GroupByEngineDataSet.java      |  10 +
 .../query/dataset/groupby/GroupByFillDataSet.java  | 118 ++++++
 .../iotdb/db/query/executor/FillQueryExecutor.java |   2 -
 .../iotdb/db/query/executor/IQueryRouter.java      |  16 +-
 .../iotdb/db/query/executor/LastQueryExecutor.java |  16 +-
 .../iotdb/db/query/executor/QueryRouter.java       |  10 +
 .../apache/iotdb/db/query/fill/PreviousFill.java   |  42 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |   1 +
 .../iotdb/db/integration/IoTDBGroupByFillIT.java   | 465 +++++++++++++++++++++
 .../apache/iotdb/db/integration/IoTDBLastIT.java   |  14 +-
 .../apache/iotdb/db/qp/plan/PhysicalPlanTest.java  | 177 +++++++-
 site/src/main/.vuepress/config.js                  |  30 +-
 site/src/main/package.json                         |   8 +-
 43 files changed, 1712 insertions(+), 248 deletions(-)
 create mode 100644 docs/SystemDesign/5-DataQuery/10-GroupByFillQuery.md
 rename docs/SystemDesign/5-DataQuery/{8-ModificationHandle.md => 
3-ModificationHandle.md} (100%)
 rename docs/SystemDesign/5-DataQuery/{3-RawDataQuery.md => 4-RawDataQuery.md} 
(100%)
 rename docs/SystemDesign/5-DataQuery/{4-AggregationQuery.md => 
5-AggregationQuery.md} (100%)
 rename docs/SystemDesign/5-DataQuery/{5-GroupByQuery.md => 6-GroupByQuery.md} 
(100%)
 rename docs/SystemDesign/5-DataQuery/{6-LastQuery.md => 7-LastQuery.md} (100%)
 rename docs/SystemDesign/5-DataQuery/{7-AlignByDeviceQuery.md => 
8-AlignByDeviceQuery.md} (100%)
 create mode 100644 docs/SystemDesign/5-DataQuery/9-FillFunction.md
 create mode 100644 docs/zh/SystemDesign/5-DataQuery/10-GroupByFillQuery.md
 rename docs/zh/SystemDesign/5-DataQuery/{8-ModificationHandle.md => 
3-ModificationHandle.md} (100%)
 rename docs/zh/SystemDesign/5-DataQuery/{3-RawDataQuery.md => 
4-RawDataQuery.md} (100%)
 rename docs/zh/SystemDesign/5-DataQuery/{4-AggregationQuery.md => 
5-AggregationQuery.md} (100%)
 rename docs/zh/SystemDesign/5-DataQuery/{5-GroupByQuery.md => 
6-GroupByQuery.md} (100%)
 rename docs/zh/SystemDesign/5-DataQuery/{6-LastQuery.md => 7-LastQuery.md} 
(100%)
 rename docs/zh/SystemDesign/5-DataQuery/{7-AlignByDeviceQuery.md => 
8-AlignByDeviceQuery.md} (100%)
 create mode 100644 docs/zh/SystemDesign/5-DataQuery/9-FillFunction.md
 copy 
server/src/main/java/org/apache/iotdb/db/qp/physical/crud/{FillQueryPlan.java 
=> GroupByFillPlan.java} (71%)
 create mode 100644 
server/src/main/java/org/apache/iotdb/db/query/dataset/groupby/GroupByFillDataSet.java
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/integration/IoTDBGroupByFillIT.java

Reply via email to