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

tanxinyu pushed a change to branch fix_ratis_recover_failure
in repository https://gitbox.apache.org/repos/asf/iotdb.git


 discard 44a9a59fdac better
 discard 4448e1ffd02 fix
     add 95708409a01 [RatisConsensus] Use empty map for create peer (#12463)
     add 9f92b1ae829 bump ratis 3.1.0-d09cbac-SNAPSHOT (#12547)
     add 81382d71c05 Fix client cpp IT warning (#12548)
     add 9f61a4e2aca Feat/jenkins auto redeploy (#12542)
     add e1ea758f173 ODBC: Add example to the example module (#12544)
     add f9292455bce Fixed deadlock problem caused by concurrent auto create 
schema and delete database  (#12489)
     add 318718dad28 Bump org.jacoco:jacoco-maven-plugin from 0.8.10 to 0.8.12 
(#12457)
     add d81972227d9 Check duplicated measurements in one row for all insert 
APIs
     add 337bfe5b891 Pipe IT: Fix 
IoTDBPipeClusterIT#testCreatePipesWithSameConnector() fails because the thread 
is interrupted or encountered non-pipe exceptions (#12553)
     add 70f18ccc4e2 Load Tsfile Tool: load does not delete the source tsfile 
by default (#12549)
     add 9d564e33618 Pipe: implemented ChangingValueSamplingProcessor (#12466)
     add b0306420a10 Pipe: Fix RPC payload compression in 
PipeTransferTsFileInsertionEventHandler (#12558)
     add e89e8425c12 fix
     add 742b20bab78 better

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (44a9a59fdac)
            \
             N -- N -- N   refs/heads/fix_ratis_recover_failure (742b20bab78)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/client-cpp.yml                   |   7 +-
 Jenkinsfile                                        |   2 +-
 example/odbc/.gitignore                            | 344 +++++++++++++++++++++
 example/odbc/ODBC-Example.sln                      |  35 +++
 example/odbc/ODBC-Example/ODBC-Example.csproj      |  40 +++
 example/odbc/ODBC-Example/ODBC_Example.cs          |  84 +++++
 example/odbc/README.md                             |  81 +++++
 .../pipe/it/autocreate/IoTDBPipeClusterIT.java     |  55 ++--
 .../iotdb/session/it/IoTDBSessionSimpleIT.java     | 134 ++++++++
 .../iotdb/confignode/manager/ConfigManager.java    |   2 +-
 .../PipeDataRegionProcessorConstructor.java        |   4 +
 .../PipeTransferTsFileInsertionEventHandler.java   |  23 +-
 .../dataregion/DataRegionWatermarkInjector.java    |   2 +-
 .../downsampling/changing/ChangingValueFilter.java |  95 ++++++
 .../ChangingValueSamplingProcessor.java}           |  50 ++-
 .../sdt/SwingingDoorTrendingFilter.java            |   4 +-
 .../impl/DataNodeInternalRPCServiceImpl.java       |  19 +-
 .../queryengine/plan/analyze/AnalyzeVisitor.java   |  14 +-
 .../db/queryengine/plan/parser/ASTVisitor.java     |   6 +-
 .../plan/statement/crud/InsertBaseStatement.java   |  17 +-
 .../crud/InsertMultiTabletsStatement.java          |   7 +
 .../plan/statement/crud/InsertRowStatement.java    |  11 +
 .../crud/InsertRowsOfOneDeviceStatement.java       |   7 +
 .../plan/statement/crud/InsertRowsStatement.java   |   7 +
 .../plan/statement/crud/InsertStatement.java       |  35 +--
 .../plan/statement/crud/InsertTabletStatement.java |  11 +
 .../plan/statement/crud/LoadTsFileStatement.java   |   4 +-
 .../config/constant/PipeProcessorConstant.java     |  11 +
 .../pipe/plugin/builtin/BuiltinPipePlugin.java     |   4 +
 ...or.java => ChangingValueSamplingProcessor.java} |   6 +-
 pom.xml                                            |   4 +-
 31 files changed, 1002 insertions(+), 123 deletions(-)
 create mode 100644 example/odbc/.gitignore
 create mode 100644 example/odbc/ODBC-Example.sln
 create mode 100644 example/odbc/ODBC-Example/ODBC-Example.csproj
 create mode 100644 example/odbc/ODBC-Example/ODBC_Example.cs
 create mode 100644 example/odbc/README.md
 create mode 100644 
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/processor/downsampling/changing/ChangingValueFilter.java
 copy 
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/processor/downsampling/{sdt/SwingingDoorTrendingSamplingProcessor.java
 => changing/ChangingValueSamplingProcessor.java} (75%)
 copy 
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/pipe/plugin/builtin/processor/downsampling/{TumblingTimeSamplingProcessor.java
 => ChangingValueSamplingProcessor.java} (82%)

Reply via email to