This is an automated email from the ASF dual-hosted git repository.
zhangstar333 pushed a change to branch auto-pick-58215-branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
discard ca921d481f4 [feature](jdbc) support mapping varbinary type in JBDC
catalog (#58215)
add a879ecd3771 branch-4.0: [fix](nereids)fold constant rule can't fold
from_unixtime when its 1st param is decimalv3 literal #57363 (#58454)
add 80a4232a3b0 [chore](build) Optimize build script (#56027) (#58464)
add 807a6257ab5 branch-4.0: [fix](load) Load column mapping with
expressions #58353 (#58437)
add e967e78e49b branch-4.0: [improve](iceberg rest) Add a default network
connection timeout to Iceberg REST #58395 (#58436)
add 34be4746c7d branch-4.0: [fix](coordinator) prefer to cancel(Timeout)
than cancel(Finished) #58448 (#58452)
add de20dbc9043 branch-4.0: [chore](ci) adjust s3Endpoint to reduce cost
#58472 (#58474)
add 878c9d1eab3 branch-4.0: [Improvement](hash) remove nullable when
_serialize_null_into_key is false and add int72 #58316 (#58465)
add e1f5176f2a3 branch-4.0: [fix](load) Add channel records to fix the
unknown load_id error #57767 (#58440)
add da92993f888 branch-4.0: [chore](cleanup) remove useless field
is_materialized in SlotDescriptor (#58320) (#58384)
add c3edf7a3b84 branch-4.0: [fix](mtmv) Fix sync materialized view use
wrong check method when in the same regression test database #58245 (#58405)
add 5ce43acb1c9 branch-4.0: [fix](information_schema) Fix timezone format
incompatibility when using offset timezone #58412 (#58480)
add 3feea9095ae branch-4.0: [Refactor](Mysql output)Refactor PRESTO and
HIVE dialect output #58279 (#58481)
add d93826bcf28 branch-4.0: [fix](jni) Fix jni.log not printing #58457
(#58487)
add a0404b5d614 branch-4.0: [fix](ut) Fix SegmentCorruptionTest ASAN
heap-buffer-overflow #58456 (#58498)
add bf25f8a292c branch-4.0: [chore](FE) Log meta module size when doing
checkpoint #58478 (#58502)
add c4d05be47f2 branch-4.0: [fix](ann index) fix omp threads limit can not
be assigned manually #58427 (#58493)
add cadeb783ee1 branch-4.0: [Fix](p0) Remove dependency on pre-existing
doris_test database in binary digest test #58291 (#58503)
add a6b53037442 branch-4.0: [fix](nereids) make needsFinalize false for
distinct agg local phase #58460 (#58489)
add e11a0656c71 branch-4.0: [feature](catalog) support varbinary type
mapping in hive/iceberg/paimon table (#57821) (#58482)
add c812b4c8bcf [feature](jdbc) support mapping varbinary type in JBDC
catalog (#58215)
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 (ca921d481f4)
\
N -- N -- N refs/heads/auto-pick-58215-branch-4.0 (c812b4c8bcf)
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:
be/src/common/config.cpp | 11 +-
be/src/exec/es/es_scroll_parser.cpp | 5 +-
be/src/exec/schema_scanner.cpp | 1 +
be/src/exec/schema_scanner.h | 1 +
.../schema_active_queries_scanner.cpp | 2 +-
.../schema_scanner/schema_partitions_scanner.cpp | 2 +-
.../schema_scanner/schema_processlist_scanner.cpp | 2 +-
be/src/olap/push_handler.cpp | 8 +-
be/src/pipeline/common/agg_utils.h | 9 +-
be/src/pipeline/common/distinct_agg_utils.h | 9 +-
be/src/pipeline/common/join_utils.h | 7 +-
be/src/pipeline/common/partition_sort_utils.h | 7 +-
be/src/pipeline/common/set_utils.h | 5 +
be/src/pipeline/exec/es_scan_operator.cpp | 5 +-
be/src/pipeline/exec/hashjoin_build_sink.cpp | 6 +-
.../exec/join/process_hash_table_probe_impl.h | 1 +
be/src/pipeline/exec/result_sink_operator.cpp | 6 -
be/src/runtime/descriptor_helper.h | 10 +-
be/src/runtime/descriptors.cpp | 22 +-
be/src/runtime/descriptors.h | 10 +-
be/src/runtime/fragment_mgr.cpp | 7 +
be/src/runtime/load_channel_mgr.cpp | 53 ++-
be/src/runtime/load_channel_mgr.h | 19 +-
be/src/runtime/memory/cache_policy.h | 8 +-
be/src/util/arrow/row_batch.cpp | 4 +
be/src/vec/columns/column_varbinary.cpp | 60 +++
be/src/vec/columns/column_varbinary.h | 20 +-
be/src/vec/common/hash_table/hash.h | 21 +-
be/src/vec/common/hash_table/hash_key_type.h | 3 +
be/src/vec/common/sort/sorter.h | 3 +-
be/src/vec/common/uint128.h | 9 +
be/src/vec/core/block.cpp | 11 +-
be/src/vec/core/block.h | 6 +-
.../vec/data_types/serde/data_type_array_serde.cpp | 40 ++
.../vec/data_types/serde/data_type_array_serde.h | 6 +
.../vec/data_types/serde/data_type_jsonb_serde.cpp | 14 +
.../vec/data_types/serde/data_type_jsonb_serde.h | 3 +
.../vec/data_types/serde/data_type_map_serde.cpp | 48 +++
be/src/vec/data_types/serde/data_type_map_serde.h | 5 +
.../data_types/serde/data_type_nullable_serde.cpp | 38 ++
.../data_types/serde/data_type_nullable_serde.h | 6 +
.../data_types/serde/data_type_number_serde.cpp | 30 ++
.../vec/data_types/serde/data_type_number_serde.h | 5 +
be/src/vec/data_types/serde/data_type_serde.cpp | 12 +
be/src/vec/data_types/serde/data_type_serde.h | 6 +
.../data_types/serde/data_type_string_serde.cpp | 11 +
.../vec/data_types/serde/data_type_string_serde.h | 3 +
.../data_types/serde/data_type_struct_serde.cpp | 34 ++
.../vec/data_types/serde/data_type_struct_serde.h | 6 +
.../data_types/serde/data_type_varbinary_serde.cpp | 65 ++++
.../data_types/serde/data_type_varbinary_serde.h | 24 +-
be/src/vec/exec/format/column_type_convert.cpp | 9 +-
be/src/vec/exec/format/column_type_convert.h | 170 ++++++---
be/src/vec/exec/format/json/new_json_reader.cpp | 6 -
be/src/vec/exec/format/orc/vorc_reader.cpp | 20 +-
be/src/vec/exec/format/orc/vorc_reader.h | 2 +-
.../exec/format/parquet/parquet_column_convert.cpp | 16 +-
.../exec/format/parquet/parquet_column_convert.h | 43 +++
.../vec/exec/format/parquet/parquet_thrift_util.h | 4 +-
be/src/vec/exec/format/parquet/schema_desc.cpp | 23 +-
be/src/vec/exec/format/parquet/schema_desc.h | 4 +
.../exec/format/parquet/vparquet_file_metadata.cpp | 3 +-
.../exec/format/parquet/vparquet_file_metadata.h | 2 +-
.../exec/format/parquet/vparquet_group_reader.cpp | 4 -
be/src/vec/exec/format/parquet/vparquet_reader.cpp | 12 +-
be/src/vec/exec/scan/file_scanner.cpp | 38 +-
be/src/vec/exec/scan/meta_scanner.cpp | 4 -
be/src/vec/exec/scan/olap_scanner.cpp | 9 +-
be/src/vec/exec/scan/scanner.cpp | 4 -
be/src/vec/exec/scan/scanner_context.cpp | 6 +-
be/src/vec/exec/vjdbc_connector.cpp | 56 ++-
be/src/vec/exprs/vexpr_context.h | 8 -
be/src/vec/exprs/virtual_slot_ref.cpp | 9 +-
be/src/vec/exprs/vslot_ref.cpp | 16 +-
be/src/vec/functions/cast/function_cast.cpp | 11 +
be/src/vec/functions/complex_dict_hash_map.h | 8 +-
be/src/vec/io/io_helper.h | 32 +-
be/src/vec/runtime/vorc_transformer.cpp | 5 +
be/src/vec/sink/vmysql_result_writer.cpp | 22 +-
be/src/vec/sink/writer/vtablet_writer.cpp | 1 +
be/src/vec/utils/util.hpp | 12 +-
be/test/common/config_validator_test.cpp | 46 +++
.../test_data/parquet_scanner/dict-decoder.txt | 32 +-
.../test_data/parquet_scanner/test_uuid.parquet | Bin 0 -> 509 bytes
.../test_data/parquet_scanner/type-decoder.txt | 28 +-
be/test/exprs/virtual_slot_ref_test.cpp | 1 -
.../rowset/segment_v2/segment_corruption_test.cpp | 16 +-
.../ann_topn_runtime_negative_test.cpp | 3 -
be/test/olap/vector_search/vector_search_utils.h | 3 -
be/test/olap/wal/wal_manager_test.cpp | 3 -
.../pipeline/common/distinct_agg_utils_test.cpp | 7 +-
be/test/pipeline/common/set_utils_test.cpp | 6 +-
be/test/pipeline/pipeline_test.cpp | 6 -
be/test/runtime/descriptor_test.cpp | 2 -
be/test/vec/columns/column_varbinary_test.cpp | 424 +++++++++++++++++++++
be/test/vec/core/block_test.cpp | 5 +-
.../serde/data_type_serde_varbinary_test.cpp | 197 +++++++++-
.../vec/exec/format/parquet/parquet_expr_test.cpp | 3 +-
.../vec/exec/format/parquet/parquet_read_lines.cpp | 1 -
.../exec/format/parquet/parquet_reader_test.cpp | 291 +++++++++++++-
.../exec/format/parquet/parquet_thrift_test.cpp | 9 +-
be/test/vec/exec/sort/sort_test.cpp | 2 +-
be/test/vec/exec/vfile_scanner_exception_test.cpp | 3 -
.../scripts/create_preinstalled_scripts/run83.hql | 144 +++++++
...-01367323-fe57-4cf2-8d63-658136eef42a-0.parquet | Bin 0 -> 1649 bytes
...-6a7f405a-2ffe-4c8d-97b8-5a9f69a497c6-0.parquet | Bin 0 -> 1419 bytes
...-f52a6587-0fcb-4d15-895d-6be35077eb8d-0.parquet | Bin 0 -> 1649 bytes
.../index-86b1c133-2b65-48d2-97b5-1c311f4c32b3-0 | 1 +
.../index-b00cbd60-d07f-462c-9ddc-effcf2ba6377-0 | 1 +
.../index-f6d8156c-7d1e-4643-beb4-f1040d4a8b71-0} | 0
...manifest-044381f8-72c7-4bbe-b3e9-d4829b7dc2c7-0 | Bin 0 -> 778 bytes
...manifest-a5543fe0-8526-4707-83bb-4a46bae33d32-0 | Bin 0 -> 778 bytes
...manifest-e5878ae9-97ff-4d9d-9e16-3601ef09cc9b-0 | Bin 0 -> 778 bytes
...manifest-0f70c85a-f753-4ee3-b9dd-e81dd513ee3c-0 | Bin 0 -> 1782 bytes
...manifest-84997273-d8aa-452d-95b6-42c88639a8ce-0 | Bin 0 -> 1800 bytes
...manifest-f4bb99cc-ede0-4196-8a93-3685e67fa218-0 | Bin 0 -> 1800 bytes
...est-list-21d352ee-7901-4ca3-af30-dd0e43bedcb9-0 | Bin 0 -> 770 bytes
...est-list-21d352ee-7901-4ca3-af30-dd0e43bedcb9-1 | Bin 0 -> 743 bytes
...est-list-3dfd6008-44c0-4227-8a3f-cf4c96419518-0 | Bin 0 -> 743 bytes
...est-list-3dfd6008-44c0-4227-8a3f-cf4c96419518-1 | Bin 0 -> 743 bytes
...est-list-9a34dd3e-af29-4b67-81c4-db2d00637a41-0 | Bin 0 -> 646 bytes
...est-list-9a34dd3e-af29-4b67-81c4-db2d00637a41-1 | Bin 0 -> 743 bytes
.../paimon1/db1.db/binary_demo3/schema/schema-0 | 31 ++
.../snapshot/EARLIEST | 0
.../{complex_all => binary_demo3}/snapshot/LATEST | 0
.../db1.db/binary_demo3/snapshot/snapshot-1 | 18 +
.../db1.db/binary_demo3/snapshot/snapshot-2 | 18 +
.../db1.db/binary_demo3/snapshot/snapshot-3 | 18 +
...-5e407798-98e4-47e9-b884-ce798c662f92-0.parquet | Bin 0 -> 5936 bytes
.../index-5913b702-bb8d-4e33-b764-78c42470e82b-0} | 0
...manifest-3369567e-e644-447e-8c91-2feb5ef9079b-0 | Bin 0 -> 778 bytes
...manifest-8b25f42e-072c-4ccb-8ebf-e5faf2c65f03-0 | Bin 0 -> 1800 bytes
...est-list-1a56808b-dfe6-4f71-a3c3-49d8b428ca8d-0 | Bin 0 -> 646 bytes
...est-list-1a56808b-dfe6-4f71-a3c3-49d8b428ca8d-1 | Bin 0 -> 743 bytes
.../db1.db/binary_size_test/schema/schema-0 | 31 ++
.../snapshot/EARLIEST | 0
.../snapshot/LATEST | 0
.../db1.db/binary_size_test/snapshot/snapshot-1 | 18 +
.../create_preinstalled_scripts/iceberg/run22.sql | 91 +++++
.../{log4j.properties => log4j2.properties} | 32 +-
.../java/org/apache/doris/catalog/ScalarType.java | 2 +
.../org/apache/doris/analysis/SlotDescriptor.java | 13 -
.../doris/common/util/FileFormatConstants.java | 1 +
.../apache/doris/datasource/CatalogProperty.java | 18 +
.../apache/doris/datasource/ExternalCatalog.java | 10 +-
.../apache/doris/datasource/FileQueryScanNode.java | 26 ++
.../doris/datasource/hive/HMSExternalTable.java | 3 +-
.../datasource/hive/HiveMetaStoreClientHelper.java | 20 +-
.../doris/datasource/iceberg/IcebergUtils.java | 36 +-
.../datasource/paimon/PaimonExternalTable.java | 3 +-
.../apache/doris/datasource/paimon/PaimonUtil.java | 50 ++-
.../datasource/paimon/source/PaimonScanNode.java | 3 +-
.../property/fileformat/FileFormatProperties.java | 3 +
.../property/metastore/IcebergRestProperties.java | 17 +
.../glue/translator/PhysicalPlanTranslator.java | 15 +-
.../nereids/load/NereidsLoadScanProvider.java | 4 +-
.../nereids/rules/expression/check/CheckCast.java | 2 +
.../rules/expression/rules/SimplifyCastRule.java | 16 +
.../executable/DateTimeExtractAndTransform.java | 28 +-
.../expressions/literal/VarBinaryLiteral.java | 9 +
.../org/apache/doris/nereids/types/DataType.java | 2 +-
.../apache/doris/nereids/types/VarBinaryType.java | 4 +-
.../org/apache/doris/nereids/util/DateUtils.java | 5 +-
.../org/apache/doris/persist/meta/MetaWriter.java | 3 +
.../apache/doris/qe/runtime/QueryProcessor.java | 3 +
.../ExternalFileTableValuedFunction.java | 8 +
.../tablefunction/IcebergTableValuedFunction.java | 2 +-
.../tablefunction/PaimonTableValuedFunction.java | 2 +-
.../doris/datasource/paimon/PaimonUtilTest.java | 4 +-
.../translator/PhysicalPlanTranslatorTest.java | 41 +-
.../nereids/rules/expression/FoldConstantTest.java | 9 +
.../DateTimeExtractAndTransformTest.java | 18 +
gensrc/proto/descriptors.proto | 2 +-
gensrc/proto/internal_service.proto | 1 +
gensrc/script/gen_build_version.sh | 17 +-
gensrc/thrift/Descriptors.thrift | 6 +-
gensrc/thrift/PlanNodes.thrift | 2 +
.../hive/test_hive_varbinary_type.out | 261 +++++++++++++
.../iceberg/test_iceberg_varbinary.out | 85 +++++
.../paimon/test_paimon_catalog_varbinary.out | 29 ++
.../tvf/test_hdfs_parquet_group6.out | 8 +-
.../binary_functions/test_binary_hex_function.out | 28 ++
regression-test/pipeline/cloud_p0/run.sh | 3 +-
regression-test/pipeline/vault_p0/run.sh | 3 +-
.../hive/test_hive_varbinary_type.groovy | 92 +++++
.../iceberg/test_iceberg_varbinary.groovy | 152 ++++++++
.../test_information_schema_timezone.groovy | 11 +
.../paimon/test_paimon_catalog_varbinary.groovy | 97 +++++
.../broker_load/test_s3_load_with_set.groovy | 21 +-
.../insert/test_insert_rpc_order_problem.groovy | 114 ++++++
.../stream_load/test_stream_load_with_set.groovy | 15 +-
.../suites/nereids_syntax_p0/advance_mv.groovy | 46 +--
.../mv/newMv/aggHaveDupBase.groovy | 9 +-
.../nereids_syntax_p0/mv/newMv/case_ignore.groovy | 7 +-
.../mv/newMv/dup_gb_mv_abs.groovy | 5 +-
.../mv/newMv/dup_gb_mv_plus.groovy | 6 +-
.../nereids_syntax_p0/mv/newMv/dup_mv_abs.groovy | 5 +-
.../nereids_syntax_p0/mv/newMv/dup_mv_bin.groovy | 5 +-
.../mv/newMv/dup_mv_bm_hash.groovy | 6 +-
.../nereids_syntax_p0/mv/newMv/dup_mv_plus.groovy | 5 +-
.../nereids_syntax_p0/mv/newMv/dup_mv_year.groovy | 4 +-
.../nereids_syntax_p0/mv/newMv/multi_slot1.groovy | 5 +-
.../nereids_syntax_p0/mv/newMv/multi_slot2.groovy | 5 +-
.../nereids_syntax_p0/mv/newMv/multi_slot3.groovy | 6 +-
.../nereids_syntax_p0/mv/newMv/multi_slot4.groovy | 6 +-
.../nereids_syntax_p0/mv/newMv/multi_slot5.groovy | 6 +-
.../nereids_syntax_p0/mv/newMv/multi_slot6.groovy | 6 +-
.../nereids_syntax_p0/mv/newMv/mv_with_view.groovy | 5 +-
.../nereids_syntax_p0/mv/newMv/rollback1.groovy | 6 +-
.../nereids_syntax_p0/mv/newMv/single_slot.groovy | 6 +-
.../mv/newMv/sum_devide_count.groovy | 6 +-
.../nereids_syntax_p0/mv/newMv/unique_mv.groovy | 4 +-
.../nereids_syntax_p0/mv/ut/MVMultiUsage.groovy | 1 +
.../suites/nereids_syntax_p0/mv/ut/MVWithAs.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/aggMVCalcAggFun.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/aggOnAggMV1.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/aggOnAggMV10.groovy | 2 +
.../nereids_syntax_p0/mv/ut/aggOnAggMV11.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/aggOnAggMV2.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/aggOnAggMV3.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/aggOnAggMV5.groovy | 5 +-
.../nereids_syntax_p0/mv/ut/aggOnAggMV6.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/aggOnAggMV7.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/bitmapUnionIn.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/distinctQuery.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/incMVReInSub.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/incRewriteCD.groovy | 7 +-
.../mv/ut/joinOnCalcToJoin.groovy | 8 +-
.../mv/ut/joinOnLeftPToJoin.groovy | 9 +-
.../suites/nereids_syntax_p0/mv/ut/onStar.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/onlyGroupBy.groovy | 5 +-
.../nereids_syntax_p0/mv/ut/orderByOnPView.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/projectMV1.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/projectMV2.groovy | 6 +-
.../nereids_syntax_p0/mv/ut/projectMV3.groovy | 5 +-
.../nereids_syntax_p0/mv/ut/projectMV4.groovy | 6 +-
.../suites/nereids_syntax_p0/mv/ut/subQuery.groovy | 6 +-
.../suites/nereids_syntax_p0/mv/ut/unionDis.groovy | 6 +-
.../test_binary_hex_function.groovy | 4 +
.../test_binary_for_digest.groovy | 14 +-
240 files changed, 3666 insertions(+), 747 deletions(-)
create mode 100644 be/test/exec/test_data/parquet_scanner/test_uuid.parquet
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/create_preinstalled_scripts/run83.hql
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/bucket-0/data-01367323-fe57-4cf2-8d63-658136eef42a-0.parquet
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/bucket-0/data-6a7f405a-2ffe-4c8d-97b8-5a9f69a497c6-0.parquet
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/bucket-0/data-f52a6587-0fcb-4d15-895d-6be35077eb8d-0.parquet
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/index/index-86b1c133-2b65-48d2-97b5-1c311f4c32b3-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/index/index-b00cbd60-d07f-462c-9ddc-effcf2ba6377-0
copy
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/{auto_bucket/index/index-da673059-ffd4-41e6-9525-20581001517c-0
=> binary_demo3/index/index-f6d8156c-7d1e-4643-beb4-f1040d4a8b71-0} (100%)
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/index-manifest-044381f8-72c7-4bbe-b3e9-d4829b7dc2c7-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/index-manifest-a5543fe0-8526-4707-83bb-4a46bae33d32-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/index-manifest-e5878ae9-97ff-4d9d-9e16-3601ef09cc9b-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/manifest-0f70c85a-f753-4ee3-b9dd-e81dd513ee3c-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/manifest-84997273-d8aa-452d-95b6-42c88639a8ce-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/manifest-f4bb99cc-ede0-4196-8a93-3685e67fa218-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/manifest-list-21d352ee-7901-4ca3-af30-dd0e43bedcb9-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/manifest-list-21d352ee-7901-4ca3-af30-dd0e43bedcb9-1
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/manifest-list-3dfd6008-44c0-4227-8a3f-cf4c96419518-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/manifest-list-3dfd6008-44c0-4227-8a3f-cf4c96419518-1
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/manifest-list-9a34dd3e-af29-4b67-81c4-db2d00637a41-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/manifest/manifest-list-9a34dd3e-af29-4b67-81c4-db2d00637a41-1
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/schema/schema-0
copy
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/{append_table =>
binary_demo3}/snapshot/EARLIEST (100%)
copy
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/{complex_all =>
binary_demo3}/snapshot/LATEST (100%)
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/snapshot/snapshot-1
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/snapshot/snapshot-2
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_demo3/snapshot/snapshot-3
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_size_test/bucket-0/data-5e407798-98e4-47e9-b884-ce798c662f92-0.parquet
copy
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/{auto_bucket/index/index-da673059-ffd4-41e6-9525-20581001517c-0
=> binary_size_test/index/index-5913b702-bb8d-4e33-b764-78c42470e82b-0} (100%)
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_size_test/manifest/index-manifest-3369567e-e644-447e-8c91-2feb5ef9079b-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_size_test/manifest/manifest-8b25f42e-072c-4ccb-8ebf-e5faf2c65f03-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_size_test/manifest/manifest-list-1a56808b-dfe6-4f71-a3c3-49d8b428ca8d-0
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_size_test/manifest/manifest-list-1a56808b-dfe6-4f71-a3c3-49d8b428ca8d-1
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_size_test/schema/schema-0
copy
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/{append_table =>
binary_size_test}/snapshot/EARLIEST (100%)
copy
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/{all_table_with_parquet
=> binary_size_test}/snapshot/LATEST (100%)
create mode 100644
docker/thirdparties/docker-compose/hive/scripts/paimon1/db1.db/binary_size_test/snapshot/snapshot-1
create mode 100644
docker/thirdparties/docker-compose/iceberg/scripts/create_preinstalled_scripts/iceberg/run22.sql
rename fe/be-java-extensions/java-common/src/main/resources/{log4j.properties
=> log4j2.properties} (53%)
create mode 100644
regression-test/data/external_table_p0/hive/test_hive_varbinary_type.out
create mode 100644
regression-test/data/external_table_p0/iceberg/test_iceberg_varbinary.out
create mode 100644
regression-test/data/external_table_p0/paimon/test_paimon_catalog_varbinary.out
create mode 100644
regression-test/suites/external_table_p0/hive/test_hive_varbinary_type.groovy
create mode 100644
regression-test/suites/external_table_p0/iceberg/test_iceberg_varbinary.groovy
create mode 100644
regression-test/suites/external_table_p0/paimon/test_paimon_catalog_varbinary.groovy
create mode 100644
regression-test/suites/load_p0/insert/test_insert_rpc_order_problem.groovy
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]