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

Caideyipi pushed a change to branch cve-database
in repository https://gitbox.apache.org/repos/asf/iotdb.git


    from ebe14a9213b log
     add 9c6b90a9812 [Pipe] Deduplicate historical tsfile events in 
IoTConsensusV2 pipes (#17472)
     add 519dec01c8d Add TimeZone header support to REST API (#17344) (#17387)
     add 14c27bba99e Fix highestPriority of SHOW QUERIES are not set correctly 
(#17505)
     add 89c2af83e2a Cancel that submit the 
DataPartitionTableIntegrityCheckProcedure when ConfigNode start up. (#17506)
     add 90c540cf937 Fast schema partition fetch for single device query 
(#17493)
     add 2304ae75d54 Remove the error log for password validation failure. 
(#17509)
     add aa4b551befb Fix Integer overflow when converting 604800000000000ms to 
-3942554432415203328ns (#17511)
     add 07e2cfb63f4 fix(tvf): validate non-negative width and height in 
pattern_match (#17515)
     add 9e569661404 Merge branch 'master' of https://github.com/apache/iotdb 
into cve-database

No new revisions were added by this update.

Summary of changes:
 .../main/java/org/apache/iotdb/HttpExample.java    |  27 ++
 .../main/java/org/apache/iotdb/HttpsExample.java   |  27 ++
 .../java/org/apache/iotdb/TableHttpExample.java    |  30 ++
 .../java/org/apache/iotdb/TableHttpsExample.java   |  30 ++
 .../rest/protocol/filter/AuthorizationFilter.java  |  40 ++-
 .../protocol/table/v1/impl/RestApiServiceImpl.java |   4 +-
 .../protocol/v1/impl/GrafanaApiServiceImpl.java    |  14 +-
 .../rest/protocol/v1/impl/RestApiServiceImpl.java  |   9 +-
 .../protocol/v2/impl/GrafanaApiServiceImpl.java    |  14 +-
 .../rest/protocol/v2/impl/RestApiServiceImpl.java  |  11 +-
 .../org/apache/iotdb/db/it/IoTDBRestServiceIT.java | 323 +++++++++++++++++++++
 .../relational/it/db/it/IoTDBWindowTVFIT.java      |  12 +
 .../persistence/auth/AuthorPlanExecutor.java       |   1 -
 .../iotdb/confignode/service/ConfigNode.java       |  65 +----
 .../tsfile/PipeCompactedTsFileInsertionEvent.java  |   5 +-
 .../common/tsfile/PipeTsFileInsertionEvent.java    |  57 ++--
 ...istoricalDataRegionTsFileAndDeletionSource.java |  87 +++++-
 .../PipeRealtimeDataRegionHybridSource.java        |   9 +-
 .../realtime/PipeRealtimeDataRegionSource.java     |  10 +-
 .../PipeRealtimeDataRegionTsFileSource.java        |   7 +-
 .../realtime/assigner/PipeDataRegionAssigner.java  |   1 +
 .../PipeTsFileEpochProgressIndexKeeper.java        |  78 ++++-
 .../plan/analyze/ClusterPartitionFetcher.java      |  28 +-
 .../plan/relational/analyzer/Analysis.java         |  13 +-
 .../function/tvf/PatternMatchTableFunction.java    |   8 +
 .../plan/relational/planner/RelationPlanner.java   |   1 +
 .../pipe/event/PipeTsFileInsertionEventTest.java   |  99 +++++++
 ...ricalDataRegionTsFileAndDeletionSourceTest.java | 174 +++++++++++
 .../PipeTsFileEpochProgressIndexKeeperTest.java    | 117 ++++++++
 .../analyzer/NeedSetHighestPriorityTest.java       |  56 ++++
 .../plan/relational/planner/PlanTester.java        |   4 +
 .../commons/partition/SeriesPartitionTable.java    |  14 +-
 32 files changed, 1214 insertions(+), 161 deletions(-)
 create mode 100644 
iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/source/dataregion/historical/PipeHistoricalDataRegionTsFileAndDeletionSourceTest.java
 create mode 100644 
iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/source/dataregion/realtime/assigner/PipeTsFileEpochProgressIndexKeeperTest.java
 create mode 100644 
iotdb-core/datanode/src/test/java/org/apache/iotdb/db/queryengine/plan/relational/analyzer/NeedSetHighestPriorityTest.java

Reply via email to