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

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


    from 9c7e86f  Merge branch 'master' of https://github.com/apache/iotdb into 
virtual_partition_2_merge
     add 491c17f  fix TsFile doc (#2282)
     add f77b851  Add Unit tests for Utils module (#2246)
     add e97d532  add auth test UT (#2271)
     add 413fe1b  Fix the path of seed_nodes configuration (#2206)
     add 113bd38  add new committer HouliangQi (#2286)
     add 35fb6c0  change parallelism in timeseries metadata cache (#2289)
     add 758c450  Fixed a section number in the sync tool document (#2296)
     add 923cf57  add new committer Xinyu Tan (#2297)
     add ebe335c  Remove extra commas to make the param annotation take effect 
(#2295)
     add b30cec2  fix some doc grammar issues in the cluster module  (#2287)
     add 59e9b9c  add missing information of javadoc in cluster module (#2285)
     new fa94e10  Merge branch 'master' of https://github.com/apache/iotdb into 
virtual_partition_2_merge

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:
 .../apache/iotdb/cluster/metadata/CMManager.java   |   4 +-
 .../cluster/partition/slot/SlotPartitionTable.java |   4 +-
 .../cluster/server/member/MetaGroupMember.java     |   2 +-
 .../iotdb/cluster/server/member/RaftMember.java    |   2 +-
 docs/SystemDesign/TsFile/Format.md                 |   4 +-
 docs/UserGuide/Server/Cluster Setup.md             |   2 +-
 docs/UserGuide/System Tools/Sync Tool.md           |   2 +-
 docs/zh/SystemDesign/TsFile/Format.md              |   4 +-
 docs/zh/UserGuide/Server/Cluster Setup.md          |   2 +-
 docs/zh/UserGuide/System Tools/Sync Tool.md        |   2 +-
 .../org/apache/iotdb/db/auth/AuthException.java    |   5 -
 .../iotdb/db/auth/authorizer/BasicAuthorizer.java  |   2 +-
 .../db/auth/authorizer/LocalFileAuthorizer.java    |   2 +-
 .../iotdb/db/auth/authorizer/OpenIdAuthorizer.java |  10 +-
 .../apache/iotdb/db/auth/entity/PathPrivilege.java |   4 +-
 .../db/engine/cache/TimeSeriesMetadataCache.java   |   7 +-
 .../iotdb/db/metadata/logfile/MLogWriter.java      |   2 +-
 .../org/apache/iotdb/db/utils/SerializeUtils.java  |  12 +-
 .../apache/iotdb/db/auth/AuthorityCheckerTest.java | 147 ++++++++++
 .../{ => authorizer}/LocalFileAuthorizerTest.java  | 295 ++++++++++---------
 .../db/auth/authorizer/OpenIdAuthorizerTest.java   | 107 ++++---
 .../iotdb/db/auth/entity/PathPrivilegeTest.java    |  45 ++-
 .../org/apache/iotdb/db/auth/entity/RoleTest.java  |  22 +-
 .../org/apache/iotdb/db/auth/entity/UserTest.java  |  44 +++
 .../auth/{ => role}/LocalFileRoleAccessorTest.java |  13 +-
 .../auth/{ => role}/LocalFileRoleManagerTest.java  |  45 +--
 .../auth/{ => user}/LocalFileUserAccessorTest.java |  13 +-
 .../auth/{ => user}/LocalFileUserManagerTest.java  |  69 ++---
 .../iotdb/db/mqtt/BrokerAuthenticatorTest.java     |  16 ++
 .../iotdb/db/utils/CopyOnReadLinkedListTest.java   |  67 +++++
 .../db/utils/EncodingInferenceUtilsTest.java}      |  46 ++-
 .../org/apache/iotdb/db/utils/MemUtilsTest.java    | 114 ++++++++
 .../org/apache/iotdb/db/utils/SchemaUtilsTest.java |  64 +++++
 .../apache/iotdb/db/utils/SerializeUtilsTest.java  | 312 +++++++++++++++++++++
 .../db/utils/datastructure/BinaryTVListTest.java   |  58 ++++
 .../db/utils/datastructure/BooleanTVListTest.java  |  62 ++++
 .../db/utils/datastructure/DoubleTVListTest.java   |  72 +++++
 .../db/utils/datastructure/FloatTVListTest.java    |  72 +++++
 .../db/utils/datastructure/IntTVListTest.java      |  71 +++++
 .../db/utils/datastructure/LongTVListTest.java     |  18 ++
 .../apache/iotdb/session/IoTDBSessionSimpleIT.java |  10 +-
 .../theme/global-components/Contributor.vue        |  14 +
 42 files changed, 1504 insertions(+), 364 deletions(-)
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/auth/AuthorityCheckerTest.java
 rename server/src/test/java/org/apache/iotdb/db/auth/{ => 
authorizer}/LocalFileAuthorizerTest.java (52%)
 copy tsfile/src/test/java/org/apache/iotdb/tsfile/common/LRUCacheTest.java => 
server/src/test/java/org/apache/iotdb/db/auth/entity/PathPrivilegeTest.java 
(52%)
 copy cli/src/test/java/org/apache/iotdb/tool/CsvLineSplitTest.java => 
server/src/test/java/org/apache/iotdb/db/auth/entity/RoleTest.java (55%)
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/auth/entity/UserTest.java
 rename server/src/test/java/org/apache/iotdb/db/auth/{ => 
role}/LocalFileRoleAccessorTest.java (85%)
 rename server/src/test/java/org/apache/iotdb/db/auth/{ => 
role}/LocalFileRoleManagerTest.java (73%)
 rename server/src/test/java/org/apache/iotdb/db/auth/{ => 
user}/LocalFileUserAccessorTest.java (89%)
 rename server/src/test/java/org/apache/iotdb/db/auth/{ => 
user}/LocalFileUserManagerTest.java (70%)
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/utils/CopyOnReadLinkedListTest.java
 copy 
server/src/{main/java/org/apache/iotdb/db/utils/EncodingInferenceUtils.java => 
test/java/org/apache/iotdb/db/utils/EncodingInferenceUtilsTest.java} (53%)
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/utils/MemUtilsTest.java
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/utils/SchemaUtilsTest.java
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/utils/SerializeUtilsTest.java
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/utils/datastructure/BinaryTVListTest.java
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/utils/datastructure/BooleanTVListTest.java
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/utils/datastructure/DoubleTVListTest.java
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/utils/datastructure/FloatTVListTest.java
 create mode 100644 
server/src/test/java/org/apache/iotdb/db/utils/datastructure/IntTVListTest.java

Reply via email to