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

yiguolei pushed a change to branch auto-pick-63522-branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard 45587161841 [fix](variant) preserve TIMESTAMPTZ values in sparse path 
(#63522)
     add dee22643551 branch-4.1: [feat](Iceberg)Rest & S3Table Support Iam-role 
(#60498) (#63655)
     add 49d2f43399f branch-4.1: [improvement](cloud) Add enable_recycler 
config to skip recycler dynamically #63286 (#63399)
     add 8a6c5d8d7a8 branch-4.1: [refactor](be) Remove scanner eos flag #63578 
(#63731)
     add 16ed81902e3 branch-4.1: [fix](function) fix tokenize function 
incorrect result when first argument is const #62699 (#63735)
     add e4d7b7a8bf3 branch-4.1: [fix](be) Handle legacy DecimalV2 segments 
with missing precision/frac #63569 (#63749)
     add 6f6da3250b4 [fix](balance) Fix PartitionRebalancer generating invalid 
moves to BEs without required storage medium (#62206) (#63756)
     add d4d1b5fbd76 branch-4.1: [fix](regression) Make Iceberg rewrite where 
init script idempotent #63673 (#63753)
     add f2af29b8ad5 branch-4.1: [fix](regression-test) stabilize 2 muted 
external_table_p0 tests #63646 (#63745)
     add 5233a514f5a branch-4.1: [feature] Add information_schema role mappings 
table (#62417)
     add b360a985278 branch-4.1 [fix](variant) Bind Variant search to nested 
indexes (#63765)
     add d993f75ce42 branch-4.1: [fix](regression) Wait row count before 
partition stats check (#63759)
     add 07b496967bd branch-4.1: [feat](snapshot) Support storage vault for 
create/list snapshot #62523 #57345 (#63534)
     add 2ef097bfead branch-4.1: [feat](snapshot) Support storage vault for 
clone instance #63217 (#63533)
     add b9101d2af4d branch-4.1: [fix](fe) Normalize default HDFS paths in 
LocationPath #63476 (#63770)
     add 69f7bf3c658 branch-4.1: [fix](cloud) Skip wait for async rowset warmup 
#62764 (#63778)
     add c026559f5d4 Revert "[fix](cache) Follower FE sql cache not invalidated 
on table metadata replay (#63612)" (#63871)
     add 361bfd09b0e branch-4.1: [feature](be/fe) Add 
exponential_moving_average aggregate function #63499 (#63814)
     add a1de719fabb Backport 63509 branch 4.1 (#63741)
     add 7d84e2ec19c branch-4.1: [pick](streamingjob) pick streaming-job batch 
#63079 #63402 #63404 #63471 #63480 #63490 #63514 #63618 (#63812)
     add d959ea0ae44 branch-4.1 [fix](match) Allow MATCH on aliased variant 
subcolumns (#63811)
     add 18c36546541 branch-4.1: [fix](test) fix some routine load case 
unstable (#63803)
     add b1a563a5c1b branch-4.1: [fix](cloud) skip stale tablet cache check for 
STOP_TOKEN #63520 (#63786)
     add 7517b64f8ac branch-4.1: [Enhancement](memory) Add 
ConcurrentLong2ObjectHashMap and ConcurrentLong2LongHashMap (#61332) (#63797)
     add cbf771c83aa branch-4.1: [fix](timestamptz) Report TIMESTAMPTZ as 
string to MySQL clients #63292 (#63806)
     add 66a4c035702 [fix](variant) preserve TIMESTAMPTZ values in sparse path 
(#63522)

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   (45587161841)
            \
             N -- N -- N   refs/heads/auto-pick-63522-branch-4.1 (66a4c035702)

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:
 .gitleaks.toml                                     |  14 +
 .licenserc.yaml                                    |   1 +
 .rat-excludes                                      |   1 +
 be/src/cloud/cloud_rowset_builder.cpp              |   2 +
 be/src/cloud/cloud_warm_up_manager.cpp             |  32 +-
 be/src/core/data_type/data_type_factory.cpp        |  19 +-
 be/src/exec/scan/scanner.cpp                       |  53 +-
 be/src/exec/scan/scanner.h                         |   1 -
 .../aggregate/aggregate_function_ema.cpp}          |  19 +-
 be/src/exprs/aggregate/aggregate_function_ema.h    | 173 ++++
 .../aggregate_function_simple_factory.cpp          |   2 +
 be/src/exprs/function/function_search.cpp          | 720 ++++------------
 be/src/exprs/function/function_search.h            |  99 +--
 be/src/exprs/function/function_tokenize.cpp        |  18 +-
 be/src/exprs/function/function_tokenize.h          |   2 +-
 .../function/variant_inverted_index_search.cpp     | 720 ++++++++++++++++
 .../exprs/function/variant_inverted_index_search.h | 218 +++++
 be/src/exprs/vsearch.cpp                           |  56 ++
 be/src/format/parquet/byte_array_dict_decoder.cpp  |  29 +-
 be/src/format/parquet/byte_array_plain_decoder.cpp |  42 +-
 .../schema_cluster_snapshots_scanner.cpp           |  14 +
 .../schema_role_mappings_scanner.cpp               | 145 ++++
 .../schema_role_mappings_scanner.h}                |  33 +-
 be/src/information_schema/schema_scanner.cpp       |   3 +
 be/src/load/routine_load/data_consumer.cpp         |  10 +-
 .../index/inverted/inverted_index_profile.h        |   9 +
 .../storage/index/inverted/inverted_index_stats.h  |  14 +
 .../query_v2/bit_set_query/bit_set_query.h         |   8 +-
 .../query_v2/bit_set_query/bit_set_weight.h        |   6 +-
 be/src/storage/segment/segment.cpp                 |  47 +-
 be/src/storage/segment/segment_iterator.cpp        |  33 +-
 .../segment/variant/variant_column_reader.cpp      |  51 +-
 .../segment/variant/variant_column_reader.h        |   4 +-
 be/test/cloud/cloud_warm_up_manager_test.cpp       | 298 +++++++
 be/test/core/data_type/data_type_decimal_test.cpp  | 179 ++++
 be/test/exec/scan/scanner_late_arrival_rf_test.cpp |  52 +-
 .../schema_cluster_snapshots_scanner_test.cpp      |   5 +
 .../schema_role_mappings_scanner_test.cpp          |  40 +
 .../exprs/function/function_search_nested_test.cpp | 353 +++++++-
 be/test/exprs/function/function_search_test.cpp    | 463 ++++++++++
 be/test/exprs/function/function_tokenize_test.cpp  |  94 ++
 .../parquet/byte_array_dict_decoder_test.cpp       |  17 +
 .../parquet/byte_array_plain_decoder_test.cpp      |  43 +
 .../index/inverted/query_v2/boolean_query_test.cpp |  22 +
 cloud/src/common/config.h                          |   2 +
 cloud/src/meta-service/meta_service_job.cpp        |  12 +-
 cloud/src/meta-service/meta_service_resource.cpp   | 520 ++++++++---
 cloud/src/recycler/recycler.cpp                    |  45 +-
 cloud/test/meta_service_job_test.cpp               |  65 ++
 cloud/test/recycler_test.cpp                       |  81 ++
 cloud/test/resource_test.cpp                       | 166 ++++
 docker/runtime/doris-compose/Readme.md             |  14 +
 docker/runtime/doris-compose/cluster.py            |  54 +-
 docker/runtime/doris-compose/command.py            |  53 +-
 docker/runtime/doris-compose/resource/common.sh    |  96 +++
 docker/runtime/doris-compose/resource/init_fe.sh   |  55 +-
 .../create_preinstalled_scripts/iceberg/run21.sql  |   9 +-
 .../postgresql/postgresql-14.yaml.tpl              |   4 +-
 .../authentication/AuthenticationException.java    |  19 +-
 .../authentication/AuthenticationFailureType.java  |  32 +-
 .../doris/authentication/AuthenticationResult.java |  57 +-
 .../doris/authentication/BasicPrincipal.java       |  32 +
 .../org/apache/doris/authentication/Principal.java |  10 +
 .../AuthenticationExceptionTest.java               |  12 +
 .../authentication/AuthenticationResultTest.java   |  35 +-
 .../doris/authentication/BasicPrincipalTest.java   |  11 +-
 .../fe-authentication-handler/pom.xml              |  15 +-
 .../handler/AuthenticationOutcome.java             |  10 +
 .../handler/AuthenticationPluginManager.java       |  29 +
 .../handler/AuthenticationService.java             |  84 +-
 .../handler/AuthenticationOutcomeTest.java         |  41 +
 .../handler/AuthenticationPluginManagerTest.java   |   5 +
 .../handler/AuthenticationServiceTest.java         | 274 +++++-
 .../handler/IntegrationRegistryTest.java           |   3 +-
 .../plugin/ldap/LdapAuthenticationPlugin.java      |  28 +-
 .../pom.xml                                        |  57 +-
 .../DefinitionBackedRoleMappingEvaluator.java      | 113 +++
 .../IntegrationPropertyRoleMappingEvaluator.java   | 200 +++++
 .../rolemapping/NoOpRoleMappingEvaluator.java}     |  35 +-
 .../rolemapping/RoleMappingDefinition.java         | 118 +++
 .../rolemapping/RoleMappingDefinitionProvider.java |  23 +-
 .../rolemapping/RoleMappingEvaluator.java          |  24 +-
 .../rolemapping/UnifiedRoleMappingCelEngine.java   | 495 +++++++++++
 .../oidc/playground/RoleMappingCelPlayground.java  | 152 ++++
 .../playground/RoleMappingCelPlaygroundTest.java}  |  31 +-
 ...ntegrationPropertyRoleMappingEvaluatorTest.java |  85 ++
 .../UnifiedRoleMappingCelEngineTest.java           | 180 ++++
 fe/fe-authentication/pom.xml                       |   1 +
 .../org/apache/doris/catalog/PrimitiveType.java    |   5 +-
 .../main/java/org/apache/doris/common/Config.java  |  36 +-
 .../apache/doris/job/cdc/DataSourceConfigKeys.java |   2 +
 .../job/cdc/request/FetchTableSplitsRequest.java   |  12 +
 fe/fe-core/pom.xml                                 |  23 +-
 .../antlr4/org/apache/doris/nereids/DorisLexer.g4  |   3 +
 .../antlr4/org/apache/doris/nereids/DorisParser.g4 |  12 +
 .../main/java/org/apache/doris/alter/Alter.java    |   4 +-
 .../org/apache/doris/analysis/SchemaTableType.java |   1 +
 .../AuthenticationIntegrationMgr.java              |  47 +-
 .../AuthenticationIntegrationRuntime.java          | 346 ++++++++
 .../doris/authentication/RoleMappingMeta.java      | 142 +++
 .../doris/authentication/RoleMappingMgr.java       | 279 ++++++
 .../doris/catalog/BuiltinAggregateFunctions.java   |   2 +
 .../main/java/org/apache/doris/catalog/Env.java    |  81 +-
 .../doris/catalog/LocalTabletInvertedIndex.java    |  13 +-
 .../java/org/apache/doris/catalog/SchemaTable.java |  12 +
 .../apache/doris/catalog/TabletInvertedIndex.java  |   4 +-
 .../apache/doris/clone/LoadStatisticForTag.java    |  13 +-
 .../apache/doris/clone/PartitionRebalancer.java    |   2 +-
 .../doris/cloud/snapshot/CloudSnapshotHandler.java |   2 +-
 .../java/org/apache/doris/common/ErrorCode.java    |   2 +
 .../doris/common/cache/NereidsSqlCacheManager.java |  28 +-
 .../apache/doris/common/util/ClassLoaderUtils.java |  80 +-
 .../org/apache/doris/common/util/LocationPath.java |  14 +-
 .../s3tables/CustomAwsCredentialsProvider.java     |  43 -
 .../jdbc/client/JdbcPostgreSQLClient.java          |   5 +
 .../common/AwsCredentialsProviderFactory.java      |  28 +
 .../common/IcebergAwsAssumeRoleProperties.java     |  52 ++
 .../IcebergAwsClientCredentialsProperties.java     | 144 ++++
 .../metastore/AbstractIcebergProperties.java       |   5 +
 .../property/metastore/IcebergRestProperties.java  |  72 +-
 .../IcebergS3TablesMetaStoreProperties.java        |  33 +-
 .../datasource/property/storage/S3Properties.java  |  30 +-
 .../streaming/DataSourceConfigValidator.java       | 133 ++-
 .../insert/streaming/StreamingInsertJob.java       |  43 +-
 .../streaming/StreamingJobSchedulerTask.java       |   7 +
 .../doris/job/offset/SourceOffsetProvider.java     |  24 +-
 .../job/offset/jdbc/JdbcSourceOffsetProvider.java  | 512 ++++++++---
 .../offset/jdbc/JdbcTvfSourceOffsetProvider.java   |  71 +-
 .../apache/doris/job/util/StreamingJobUtils.java   |  72 +-
 .../org/apache/doris/journal/JournalEntity.java    |  18 +-
 .../org/apache/doris/mysql/AcceptListener.java     |   1 +
 .../org/apache/doris/mysql/MysqlCapability.java    |  12 +-
 .../java/org/apache/doris/mysql/MysqlProto.java    |  29 +-
 .../org/apache/doris/mysql/MysqlSerializer.java    |   7 +-
 .../mysql/authenticate/AuthenticateRequest.java    | 134 ++-
 .../mysql/authenticate/AuthenticateResponse.java   |  66 +-
 .../doris/mysql/authenticate/AuthenticateType.java |   2 +
 .../authenticate/AuthenticationFailureSummary.java | 101 +++
 .../mysql/authenticate/AuthenticatorManager.java   | 376 +++++++-
 .../MysqlAuthPacketCredentialExtractor.java        |  90 ++
 .../AuthenticationIntegrationAuthenticator.java    | 239 ++++++
 .../password/AuthPacketAwarePasswordResolver.java  |  62 ++
 .../password/ClearPasswordResolver.java            |  22 +
 .../password/NativePasswordResolver.java           |  30 +-
 .../authenticate/password/PasswordResolver.java    |  15 +
 .../plugin/AuthenticationPluginAuthenticator.java  | 253 ++++++
 .../org/apache/doris/mysql/privilege/Auth.java     |  22 +-
 .../doris/mysql/privilege/UserPropertyMgr.java     |  14 +
 .../org/apache/doris/nereids/SqlCacheContext.java  |   8 +-
 .../doris/nereids/parser/LogicalPlanBuilder.java   |  36 +
 .../rules/rewrite/CheckMatchExpression.java        |   7 +-
 .../functions/agg/ExponentialMovingAverage.java    | 122 +++
 .../visitor/AggregateFunctionVisitor.java          |   5 +
 .../apache/doris/nereids/trees/plans/PlanType.java |   2 +
 .../AdminCreateClusterSnapshotCommand.java         |   9 +-
 .../plans/commands/CreateRoleMappingCommand.java   | 122 +++
 .../plans/commands/DropRoleMappingCommand.java     |  64 ++
 .../trees/plans/visitor/CommandVisitor.java        |  10 +
 .../doris/persist/DropRoleMappingOperationLog.java |  58 ++
 .../java/org/apache/doris/persist/EditLog.java     |  28 +-
 .../org/apache/doris/persist/OperationType.java    |   7 +-
 .../org/apache/doris/persist/TableMetaChange.java  | 153 ----
 .../doris/persist/meta/MetaPersistMethod.java      |  23 +-
 .../doris/persist/meta/PersistMetaModules.java     |   5 +-
 .../java/org/apache/doris/qe/ConnectContext.java   |  26 +
 .../java/org/apache/doris/qe/StmtExecutor.java     |   1 -
 .../CdcStreamTableValuedFunction.java              |  74 +-
 .../doris/tablefunction/MetadataGenerator.java     |  77 ++
 ...e.doris.mysql.authenticate.AuthenticatorFactory |   2 +-
 .../AuthenticationIntegrationMgrTest.java          | 164 ++--
 .../AuthenticationIntegrationRuntimeTest.java      | 432 ++++++++++
 .../doris/authentication/RoleMappingMgrTest.java   | 238 ++++++
 .../org/apache/doris/catalog/SchemaTableTest.java  |  13 +
 .../org/apache/doris/catalog/UserPropertyTest.java |  30 +
 .../java/org/apache/doris/clone/RebalanceTest.java |  81 ++
 .../org/apache/doris/clone/RebalancerTestUtil.java |  16 +
 .../apache/doris/common/util/LocationPathTest.java |  15 +
 .../metastore/IcebergRestPropertiesTest.java       | 303 +++++++
 .../IcebergS3TablesMetaStorePropertiesTest.java    | 272 ++++++
 .../property/storage/S3PropertiesTest.java         |  13 +
 .../doris/datasource/s3tables/S3TablesTest.java    |   9 -
 .../streaming/DataSourceConfigValidatorTest.java   | 174 ++++
 .../JdbcSourceOffsetProviderAsyncSplitTest.java    | 486 +++++++++++
 .../doris/job/offset/jdbc/SplitProgressTest.java   |  60 ++
 .../apache/doris/mysql/MysqlAuthPacketTest.java    |  26 +-
 .../apache/doris/mysql/MysqlCapabilityTest.java    |   5 +-
 .../doris/mysql/MysqlHandshakePacketTest.java      |   3 +
 .../org/apache/doris/mysql/MysqlProtoTest.java     | 118 +++
 .../mysql/MysqlSerializerTimestampTzTest.java      |  84 ++
 .../mysql/authenticate/AuthenticateTypeTest.java   |  63 +-
 .../authenticate/AuthenticatorManagerTest.java     | 948 +++++++++++++++++++++
 .../MysqlAuthPacketCredentialExtractorTest.java    |  90 ++
 .../TestAuthenticationPluginFactory.java           |  63 ++
 ...AuthenticationIntegrationAuthenticatorTest.java | 188 ++++
 .../password/ClearPasswordResolverTest.java        |  63 ++
 .../AuthenticationPluginAuthenticatorTest.java     | 178 ++++
 .../org/apache/doris/mysql/privilege/AuthTest.java |  23 +
 .../nereids/parser/RoleMappingParserTest.java      |  77 ++
 .../rules/rewrite/CheckMatchExpressionTest.java    |  45 +
 .../rules/rewrite/VariantPruningLogicTest.java     |  29 +
 .../AdminCreateClusterSnapshotCommandTest.java     |   3 +
 .../doris/service/FrontendServiceImplTest.java     | 125 ++-
 ....authentication.spi.AuthenticationPluginFactory |  18 +
 fe/fe-foundation/pom.xml                           |  14 +-
 .../util/ConcurrentLong2LongHashMap.java           | 526 ++++++++++++
 .../util/ConcurrentLong2ObjectHashMap.java         | 487 +++++++++++
 .../util/ConcurrentLong2LongHashMapTest.java       | 458 ++++++++++
 .../util/ConcurrentLong2ObjectHashMapTest.java     | 432 ++++++++++
 fe/pom.xml                                         |   7 +-
 .../postgresql/connection/PostgresConnection.java  | 905 ++++++++++++++++++++
 .../deserialize/DebeziumJsonDeserializer.java      |  46 +-
 .../source/reader/AbstractCdcSourceReader.java     |  23 +-
 .../source/reader/JdbcIncrementalSourceReader.java | 282 +++---
 .../source/reader/mysql/MySqlSourceReader.java     | 314 ++++---
 .../apache/doris/cdcclient/utils/ConfigUtil.java   |  29 +-
 .../source/fetch/PostgresScanFetchTask.java        | 391 +++++++++
 .../deserialize/DebeziumJsonDeserializerTest.java  |  76 ++
 .../doris/cdcclient/utils/ConfigUtilTest.java      |  61 +-
 gensrc/proto/cloud.proto                           |   2 +
 gensrc/thrift/Descriptors.thrift                   |   1 +
 gensrc/thrift/FrontendService.thrift               |   1 +
 .../timestamptz/test_cast_timestamptz.out          |   4 +-
 .../timestamptz/test_timestamptz_cast.out          |  12 +-
 .../sql-functions/doc_date_functions_test.out      |  48 +-
 .../paimon/test_paimon_catalog_timestamp_tz.out    |  12 +-
 ...est_streaming_mysql_job_charset_and_strings.out |  39 +
 .../cdc/test_streaming_mysql_job_composite_pk.out  |  47 +
 .../cdc/test_streaming_mysql_job_datetime_pk.out   |  29 +
 .../cdc/test_streaming_mysql_job_decimal_pk.out    |  29 +
 .../cdc/test_streaming_mysql_job_enum_set.out      |  27 +
 ...est_streaming_mysql_job_id_gap_completeness.out |  21 +
 .../test_streaming_mysql_job_integer_boundary.out  |  31 +
 .../cdc/test_streaming_mysql_job_json_types.out    |  52 ++
 .../test_streaming_mysql_job_offset_earliest.out   |   9 +
 ....out => test_streaming_mysql_job_partition.out} |   0
 ...ming_mysql_job_snapshot_with_concurrent_dml.out |  25 +
 .../cdc/test_streaming_postgres_job_all_type.out   |   4 +-
 .../test_streaming_postgres_job_array_boundary.out |  29 +
 .../test_streaming_postgres_job_composite_pk.out   |  47 +
 .../cdc/test_streaming_postgres_job_decimal_pk.out |  15 +
 ..._streaming_postgres_job_id_gap_completeness.out |  21 +
 .../test_streaming_postgres_job_jsonb_types.out    |  32 +
 ...ming_postgres_job_snapshot_historical_dates.out |  45 +
 ...g_postgres_job_snapshot_with_concurrent_dml.out |  25 +
 .../cdc/test_streaming_postgres_job_uuid.out       |  26 +
 .../exponential_moving_average.out                 |  31 +
 .../datetime_functions/test_date_function.out      |   2 +-
 .../org/apache/doris/regression/suite/Suite.groovy | 150 ++++
 .../doris/regression/suite/SuiteCluster.groovy     |  79 +-
 .../test_authentication_integration_auth.groovy    |   3 +
 .../auth_p0/test_role_mapping_system_table.groovy  | 123 +++
 ...rg_s3tables_catalog_credentials_provider.groovy | 105 +++
 .../test_timestamptz_jdbc_binary_protocol.groovy   |  85 ++
 .../cache/test_file_cache_query_limit.groovy       |  64 +-
 .../hive/test_hive_query_cache.groovy              |  11 +-
 .../tvf/test_hdfs_parquet_group6.groovy            |   4 +-
 .../test_streaming_mysql_job_async_split.groovy    | 160 ++++
 ...t_streaming_mysql_job_async_split_uneven.groovy | 195 +++++
 ..._streaming_mysql_job_charset_and_strings.groovy | 195 +++++
 .../test_streaming_mysql_job_composite_pk.groovy   | 198 +++++
 .../test_streaming_mysql_job_datetime_pk.groovy    | 153 ++++
 .../cdc/test_streaming_mysql_job_decimal_pk.groovy | 152 ++++
 .../cdc/test_streaming_mysql_job_enum_set.groovy   | 182 ++++
 ..._streaming_mysql_job_id_gap_completeness.groovy | 159 ++++
 ...est_streaming_mysql_job_integer_boundary.groovy | 165 ++++
 .../cdc/test_streaming_mysql_job_json_types.groovy | 176 ++++
 ...test_streaming_mysql_job_offset_earliest.groovy | 130 +++
 .../cdc/test_streaming_mysql_job_partition.groovy  | 166 ++++
 .../cdc/test_streaming_mysql_job_server_id.groovy  | 133 +++
 ...g_mysql_job_snapshot_with_concurrent_dml.groovy | 148 ++++
 .../cdc/test_streaming_postgres_job.groovy         |  29 +-
 ...st_streaming_postgres_job_array_boundary.groovy | 185 ++++
 ...ing_postgres_job_async_split_multi_table.groovy | 178 ++++
 ...ng_postgres_job_async_split_pause_resume.groovy | 198 +++++
 ...treaming_postgres_job_async_split_uneven.groovy | 198 +++++
 ...stgres_job_async_split_uneven_restart_fe.groovy | 207 +++++
 ...streaming_postgres_job_binlog_restart_fe.groovy | 191 +++++
 ...test_streaming_postgres_job_composite_pk.groovy | 198 +++++
 .../test_streaming_postgres_job_decimal_pk.groovy  | 130 +++
 ...eaming_postgres_job_drop_during_snapshot.groovy | 148 ++++
 ...reaming_postgres_job_id_gap_completeness.groovy | 146 ++++
 .../test_streaming_postgres_job_jsonb_types.groovy | 186 ++++
 .../test_streaming_postgres_job_publication.groovy | 124 ++-
 ..._streaming_postgres_job_slot_lsn_advance.groovy | 224 +++++
 ...g_postgres_job_snapshot_historical_dates.groovy | 229 +++++
 ...ostgres_job_snapshot_with_concurrent_dml.groovy | 153 ++++
 ...st_streaming_postgres_job_special_offset.groovy |  15 +-
 ...g_postgres_job_special_offset_restart_fe.groovy | 188 ++++
 .../cdc/test_streaming_postgres_job_uuid.groovy    | 176 ++++
 .../cdc/tvf/test_cdc_stream_tvf_mysql.groovy       |  83 +-
 .../cdc/tvf/test_cdc_stream_tvf_postgres.groovy    |  32 +
 ...ming_job_cdc_stream_postgres_async_split.groovy | 193 +++++
 ...c_stream_postgres_async_split_restart_fe.groovy | 218 +++++
 .../load_p0/routine_load/test_black_list.groovy    |   4 +-
 .../nereids_p0/stats/partitionRowCount.groovy      |  14 +-
 .../exponential_moving_average.groovy              | 158 ++++
 ...est_partition_rebalancer_medium_mismatch.groovy | 178 ++++
 297 files changed, 26191 insertions(+), 2222 deletions(-)
 create mode 100644 .gitleaks.toml
 copy be/src/{storage/index/inverted/inverted_index_stats.h => 
exprs/aggregate/aggregate_function_ema.cpp} (67%)
 create mode 100644 be/src/exprs/aggregate/aggregate_function_ema.h
 create mode 100644 be/src/exprs/function/variant_inverted_index_search.cpp
 create mode 100644 be/src/exprs/function/variant_inverted_index_search.h
 create mode 100644 be/src/information_schema/schema_role_mappings_scanner.cpp
 copy be/src/{storage/index/inverted/inverted_index_stats.h => 
information_schema/schema_role_mappings_scanner.h} (53%)
 create mode 100644 be/test/cloud/cloud_warm_up_manager_test.cpp
 create mode 100644 
be/test/exec/schema_scanner/schema_role_mappings_scanner_test.cpp
 copy be/src/storage/index/inverted/inverted_index_stats.h => 
fe/fe-authentication/fe-authentication-api/src/main/java/org/apache/doris/authentication/AuthenticationFailureType.java
 (58%)
 copy fe/fe-authentication/{fe-authentication-handler => 
fe-authentication-role-mapping}/pom.xml (52%)
 create mode 100644 
fe/fe-authentication/fe-authentication-role-mapping/src/main/java/org/apache/doris/authentication/rolemapping/DefinitionBackedRoleMappingEvaluator.java
 create mode 100644 
fe/fe-authentication/fe-authentication-role-mapping/src/main/java/org/apache/doris/authentication/rolemapping/IntegrationPropertyRoleMappingEvaluator.java
 copy 
fe/fe-authentication/{fe-authentication-api/src/main/java/org/apache/doris/authentication/AuthenticationException.java
 => 
fe-authentication-role-mapping/src/main/java/org/apache/doris/authentication/rolemapping/NoOpRoleMappingEvaluator.java}
 (51%)
 create mode 100644 
fe/fe-authentication/fe-authentication-role-mapping/src/main/java/org/apache/doris/authentication/rolemapping/RoleMappingDefinition.java
 copy be/src/storage/index/inverted/inverted_index_stats.h => 
fe/fe-authentication/fe-authentication-role-mapping/src/main/java/org/apache/doris/authentication/rolemapping/RoleMappingDefinitionProvider.java
 (73%)
 copy be/src/storage/index/inverted/inverted_index_stats.h => 
fe/fe-authentication/fe-authentication-role-mapping/src/main/java/org/apache/doris/authentication/rolemapping/RoleMappingEvaluator.java
 (62%)
 create mode 100644 
fe/fe-authentication/fe-authentication-role-mapping/src/main/java/org/apache/doris/authentication/rolemapping/UnifiedRoleMappingCelEngine.java
 create mode 100644 
fe/fe-authentication/fe-authentication-role-mapping/src/test/java/org/apache/doris/authentication/plugin/oidc/playground/RoleMappingCelPlayground.java
 copy 
fe/{fe-common/src/main/java/org/apache/doris/job/cdc/request/FetchTableSplitsRequest.java
 => 
fe-authentication/fe-authentication-role-mapping/src/test/java/org/apache/doris/authentication/plugin/oidc/playground/RoleMappingCelPlaygroundTest.java}
 (51%)
 create mode 100644 
fe/fe-authentication/fe-authentication-role-mapping/src/test/java/org/apache/doris/authentication/rolemapping/IntegrationPropertyRoleMappingEvaluatorTest.java
 create mode 100644 
fe/fe-authentication/fe-authentication-role-mapping/src/test/java/org/apache/doris/authentication/rolemapping/UnifiedRoleMappingCelEngineTest.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/authentication/AuthenticationIntegrationRuntime.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/authentication/RoleMappingMeta.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/authentication/RoleMappingMgr.java
 delete mode 100644 
fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/s3tables/CustomAwsCredentialsProvider.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/datasource/property/common/IcebergAwsAssumeRoleProperties.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/datasource/property/common/IcebergAwsClientCredentialsProperties.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/mysql/authenticate/AuthenticationFailureSummary.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/mysql/authenticate/MysqlAuthPacketCredentialExtractor.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/mysql/authenticate/integration/AuthenticationIntegrationAuthenticator.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/mysql/authenticate/password/AuthPacketAwarePasswordResolver.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/mysql/authenticate/plugin/AuthenticationPluginAuthenticator.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/agg/ExponentialMovingAverage.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/CreateRoleMappingCommand.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/DropRoleMappingCommand.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/persist/DropRoleMappingOperationLog.java
 delete mode 100644 
fe/fe-core/src/main/java/org/apache/doris/persist/TableMetaChange.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/authentication/AuthenticationIntegrationRuntimeTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/authentication/RoleMappingMgrTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/job/offset/jdbc/JdbcSourceOffsetProviderAsyncSplitTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/job/offset/jdbc/SplitProgressTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/mysql/MysqlSerializerTimestampTzTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/mysql/authenticate/AuthenticatorManagerTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/mysql/authenticate/MysqlAuthPacketCredentialExtractorTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/mysql/authenticate/TestAuthenticationPluginFactory.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/mysql/authenticate/integration/AuthenticationIntegrationAuthenticatorTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/mysql/authenticate/password/ClearPasswordResolverTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/mysql/authenticate/plugin/AuthenticationPluginAuthenticatorTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/nereids/parser/RoleMappingParserTest.java
 create mode 100644 
fe/fe-core/src/test/resources/META-INF/services/org.apache.doris.authentication.spi.AuthenticationPluginFactory
 create mode 100644 
fe/fe-foundation/src/main/java/org/apache/doris/foundation/util/ConcurrentLong2LongHashMap.java
 create mode 100644 
fe/fe-foundation/src/main/java/org/apache/doris/foundation/util/ConcurrentLong2ObjectHashMap.java
 create mode 100644 
fe/fe-foundation/src/test/java/org/apache/doris/foundation/util/ConcurrentLong2LongHashMapTest.java
 create mode 100644 
fe/fe-foundation/src/test/java/org/apache/doris/foundation/util/ConcurrentLong2ObjectHashMapTest.java
 create mode 100644 
fs_brokers/cdc_client/src/main/java/io/debezium/connector/postgresql/connection/PostgresConnection.java
 create mode 100644 
fs_brokers/cdc_client/src/main/java/org/apache/flink/cdc/connectors/postgres/source/fetch/PostgresScanFetchTask.java
 create mode 100644 
fs_brokers/cdc_client/src/test/java/org/apache/doris/cdcclient/source/deserialize/DebeziumJsonDeserializerTest.java
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_mysql_job_charset_and_strings.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_mysql_job_composite_pk.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_mysql_job_datetime_pk.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_mysql_job_decimal_pk.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_mysql_job_enum_set.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_mysql_job_id_gap_completeness.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_mysql_job_integer_boundary.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_mysql_job_json_types.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_mysql_job_offset_earliest.out
 copy 
regression-test/data/job_p0/streaming_job/cdc/{test_streaming_postgres_job_partition.out
 => test_streaming_mysql_job_partition.out} (100%)
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_mysql_job_snapshot_with_concurrent_dml.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_postgres_job_array_boundary.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_postgres_job_composite_pk.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_postgres_job_decimal_pk.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_postgres_job_id_gap_completeness.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_postgres_job_jsonb_types.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_postgres_job_snapshot_historical_dates.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_postgres_job_snapshot_with_concurrent_dml.out
 create mode 100644 
regression-test/data/job_p0/streaming_job/cdc/test_streaming_postgres_job_uuid.out
 create mode 100644 
regression-test/data/query_p0/aggregate/exponential_moving_average/exponential_moving_average.out
 create mode 100644 
regression-test/suites/auth_p0/test_role_mapping_system_table.groovy
 create mode 100644 
regression-test/suites/aws_iam_role_p0/test_iceberg_s3tables_catalog_credentials_provider.groovy
 create mode 100644 
regression-test/suites/datatype_p0/timestamptz/test_timestamptz_jdbc_binary_protocol.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_async_split.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_async_split_uneven.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_charset_and_strings.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_composite_pk.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_datetime_pk.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_decimal_pk.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_enum_set.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_id_gap_completeness.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_integer_boundary.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_json_types.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_offset_earliest.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_partition.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_server_id.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_snapshot_with_concurrent_dml.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_array_boundary.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_async_split_multi_table.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_async_split_pause_resume.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_async_split_uneven.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_async_split_uneven_restart_fe.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_binlog_restart_fe.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_composite_pk.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_decimal_pk.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_drop_during_snapshot.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_id_gap_completeness.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_jsonb_types.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_slot_lsn_advance.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_snapshot_historical_dates.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_snapshot_with_concurrent_dml.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_special_offset_restart_fe.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/test_streaming_postgres_job_uuid.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/tvf/test_streaming_job_cdc_stream_postgres_async_split.groovy
 create mode 100644 
regression-test/suites/job_p0/streaming_job/cdc/tvf/test_streaming_job_cdc_stream_postgres_async_split_restart_fe.groovy
 create mode 100644 
regression-test/suites/query_p0/aggregate/exponential_moving_average/exponential_moving_average.groovy
 create mode 100644 
regression-test/suites/storage_medium_p0/test_partition_rebalancer_medium_mismatch.groovy


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


Reply via email to