This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a change to branch auto-pick-62721-branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
discard 2ecf1a68d6a [fix](query) avoid missing result packet for query during
master switch (#62721)
add a30257d720d branch-4.0: [fix](fe) Fix Ranger column-level privilege
bypass when CTE combined #61741 (#63047)
add 33da8f60e25 branch-4.0: [fix](parse) No longer throws exceptions when
parse datetime failed in from_olap_string #63035 (#63077)
add fb5654c3c93 branch-4.0: [fix](be) Load JNI log4j2 properties config
#63063 (#63074)
add aa4ac4e4e72 branch-4.0: [fix](regression) Fix typo in
different_serialize test data directory introduced by #59489 #62480 (#62542)
add 1eada5729dd branch-4.0: [fix](build) Backport JFS support from
branch-4.1 (#62927)
add 389afa17b70 branch-4.0: [fix](datetime)Require exact match in
DateTimeV2Type.acceptsType #62201 (#62834)
add 2375fb414be branch-4.0: [fix](streaming-job) Fix PG replication slot
leak when streaming task is cancelled during pause/resume #62010 (#62736)
add 5fd4aa8adb0 [fix](query) avoid missing result packet for query during
master switch (#62721)
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 (2ecf1a68d6a)
\
N -- N -- N refs/heads/auto-pick-62721-branch-4.0 (5fd4aa8adb0)
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:
.../serde/data_type_date_or_datetime_serde.cpp | 10 +-
.../serde/data_type_datetimev2_serde.cpp | 1 +
.../data_types/serde/data_type_datev2_serde.cpp | 1 +
be/test/olap/olap_type_test.cpp | 43 ++-
build.sh | 27 +-
.../docker-compose/hive/hadoop-hive-3x.env.tpl | 3 +-
.../docker-compose/hive/hadoop-hive.env.tpl | 3 +-
.../docker-compose/hive/hive-2x_settings.env | 3 +
.../docker-compose/hive/hive-3x.yaml.tpl | 1 +
.../docker-compose/hive/hive-3x_settings.env | 5 +-
.../docker-compose/hive/scripts/hive-metastore.sh | 14 +-
docker/thirdparties/juicefs-helpers.sh | 301 +++++++++++++++++++++
docker/thirdparties/run-thirdparties-docker.sh | 19 ++
.../test/juicefs-helpers-mirror-test.sh | 68 +++++
.../doris/common/classloader/ScannerLoader.java | 2 +-
.../java-common/src/main/resources/log4j2.xml | 63 -----
.../java/org/apache/doris/analysis/BrokerDesc.java | 2 +-
.../org/apache/doris/analysis/OutFileClause.java | 6 +-
.../java/org/apache/doris/catalog/Resource.java | 3 +
.../property/storage/HdfsProperties.java | 5 +-
.../java/org/apache/doris/fs/SchemaTypeMapper.java | 4 +-
.../rules/SimplifyConditionalFunction.java | 18 +-
.../nereids/rules/rewrite/CheckPrivileges.java | 33 ++-
.../expressions/functions/scalar/CreateMap.java | 38 ++-
.../apache/doris/nereids/types/DateTimeV2Type.java | 2 +-
.../doris/nereids/util/TypeCoercionUtils.java | 37 +--
.../apache/doris/common/util/LocationPathTest.java | 6 +-
.../property/storage/HdfsPropertiesTest.java | 20 ++
.../property/storage/HdfsPropertiesUtilsTest.java | 18 +-
.../nereids/privileges/TestCheckPrivileges.java | 27 ++
.../nereids/rules/expression/FoldConstantTest.java | 2 +-
.../rules/SimplifyConditionalFunctionTest.java | 17 +-
.../functions/FieldDateTimeV2WildcardTest.java | 47 ++++
.../plans/commands/CreateResourceCommandTest.java | 5 +
.../source/reader/JdbcIncrementalSourceReader.java | 12 +
.../source/reader/mysql/MySqlSourceReader.java | 12 +
.../different_serialize.out} | 0
.../simplify_conditional_function.out | 6 +
.../jdbc/test_mysql_jdbc_catalog.groovy | 4 +-
.../test_jfs_hms_catalog_read.groovy | 141 ++++++++++
.../simplify_conditional_function.groovy | 47 ++++
thirdparty/build-thirdparty.sh | 11 +
thirdparty/download-thirdparty.sh | 30 ++
.../test/download-thirdparty-fallback-test.sh | 99 +++++++
thirdparty/vars.sh | 7 +
45 files changed, 1077 insertions(+), 146 deletions(-)
create mode 100644 docker/thirdparties/juicefs-helpers.sh
create mode 100644 docker/thirdparties/test/juicefs-helpers-mirror-test.sh
delete mode 100644
fe/be-java-extensions/java-common/src/main/resources/log4j2.xml
create mode 100644
fe/fe-core/src/test/java/org/apache/doris/nereids/trees/expressions/functions/FieldDateTimeV2WildcardTest.java
rename
regression-test/data/cloud_p0/{diffrent_serialize/diffrent_serialize.out =>
different_serialize/different_serialize.out} (100%)
create mode 100644
regression-test/suites/external_table_p0/refactor_storage_param/test_jfs_hms_catalog_read.groovy
create mode 100644 thirdparty/test/download-thirdparty-fallback-test.sh
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]