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

morningman pushed a change to branch branch-2.1-lakehouse
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard 032cc82fd02 [feature](sql-dialect)support convert hive view and presto 
view use sql convertor service #46308
     new f12a9f40b14 [feature](sql-dialect)support convert hive view and presto 
view use sql convertor service #46308
     new 8d24b929fa5 [opt](iceberg)support iceberg in batch mode (#46398)
     new a9a82a9c934 [opt](jdbc scan) Add more jdbc scan profile items (#46460)
     new 1b18bee7ddb [opt](parquet) change parquet init footer read size to 
48KB (#46904)
     new 320e3b27bab [opt](paimon)Upgrade the Paimon version to 1.0.0 and 
Iceberg to 1.6.1 (#46990)
     new 844c38d850d [enhance](runtime filter) impl partition pruning in 
runtime filer (#47025)
     new 7969696be74 [feature](iceberg) support s3 tables (#47115)
     new 7f50edd05c8 [opt](mvn) remove iceberg-aws-bundle and upgrade aws sdk 
to 2.29.26 (#47117)

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   (032cc82fd02)
            \
             N -- N -- N   refs/heads/branch-2.1-lakehouse (7f50edd05c8)

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.

The 8 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:
 be/src/common/config.cpp                           |   2 +-
 be/src/util/s3_util.cpp                            |   7 +-
 be/src/util/s3_util.h                              |   3 +
 be/src/vec/core/block.cpp                          |   4 +-
 .../vec/exec/format/parquet/parquet_thrift_util.h  |   2 +-
 be/src/vec/exec/scan/new_jdbc_scanner.cpp          |  14 +-
 be/src/vec/exec/scan/new_jdbc_scanner.h            |   6 +-
 be/src/vec/exec/scan/vfile_scanner.cpp             | 167 +++++++++++-
 be/src/vec/exec/scan/vfile_scanner.h               |  12 +-
 be/src/vec/exec/vjdbc_connector.cpp                |  57 ++--
 be/src/vec/exec/vjdbc_connector.h                  |   6 +-
 .../scripts/create_preinstalled_scripts/run74.hql  |  44 ++++
 .../partition_col=2025-01-01/000000_0              | Bin 0 -> 587 bytes
 .../partition_col=2025-01-02/000000_0              | Bin 0 -> 581 bytes
 .../partition_col=2025-01-03/000000_0              | Bin 0 -> 600 bytes
 .../partition_col=100.01/000000_0                  | Bin 0 -> 587 bytes
 .../partition_col=200.02/000000_0                  | Bin 0 -> 581 bytes
 .../partition_col=300.03/000000_0                  | Bin 0 -> 600 bytes
 .../int_partition_table/partition_col=1/000000_0   | Bin 0 -> 587 bytes
 .../int_partition_table/partition_col=2/000000_0   | Bin 0 -> 581 bytes
 .../int_partition_table/partition_col=3/000000_0   | Bin 0 -> 600 bytes
 .../partition_col=A/000000_0                       | Bin 0 -> 587 bytes
 .../partition_col=B/000000_0                       | Bin 0 -> 581 bytes
 .../partition_col=C/000000_0                       | Bin 0 -> 600 bytes
 .../authentication/HadoopAuthenticator.java        |   7 +
 .../authentication/PreExecutionAuthenticator.java  |  48 +---
 fe/fe-core/pom.xml                                 |  26 +-
 .../org/apache/doris/common/ThreadPoolManager.java |  69 +++++
 .../apache/doris/datasource/ExternalCatalog.java   |   6 +
 .../apache/doris/datasource/FileQueryScanNode.java |   8 +-
 .../apache/doris/datasource/SplitAssignment.java   |  30 ++-
 .../apache/doris/datasource/SplitGenerator.java    |   2 +-
 .../datasource/iceberg/IcebergExternalCatalog.java |  16 ++
 .../iceberg/IcebergExternalCatalogFactory.java     |   2 +
 .../iceberg/IcebergHMSExternalCatalog.java         |   7 -
 .../datasource/iceberg/IcebergMetadataOps.java     |  28 +-
 .../iceberg/IcebergS3TablesExternalCatalog.java    |  66 +++++
 .../s3tables/CustomAwsCredentialsProvider.java}    |  27 +-
 .../datasource/iceberg/source/IcebergScanNode.java | 222 +++++++++++-----
 .../datasource/iceberg/source/IcebergSplit.java    |   3 +-
 .../datasource/paimon/PaimonExternalCatalog.java   |  11 +-
 .../datasource/paimon/PaimonExternalTable.java     |   2 +-
 .../datasource/paimon/PaimonMetadataCache.java     |   2 +-
 .../apache/doris/datasource/paimon/PaimonUtil.java |   2 +-
 .../datasource/paimon/source/PaimonScanNode.java   |   7 +-
 .../datasource/property/S3ClientBEProperties.java  |   8 +
 .../property/constants/S3Properties.java           |   2 +
 .../doris/nereids/parser/SqlDialectHelper.java     |  66 +++++
 .../org/apache/doris/persist/gson/GsonUtils.java   |   3 +
 .../java/org/apache/doris/planner/ScanNode.java    |   2 +-
 .../java/org/apache/doris/qe/SessionVariable.java  |  19 +-
 .../datasource/hive/HMSExternalTableTest.java      | 126 +++++++++
 .../datasource/property/PropertyConverterTest.java |  48 ++--
 .../doris/datasource/s3tables/S3TablesTest.java    |  87 ++++++
 fe/pom.xml                                         |  14 +-
 gensrc/thrift/PaloInternalService.thrift           |   2 +
 regression-test/conf/regression-conf.groovy        |   9 +
 .../test_hive_runtime_filter_partition_pruning.out | Bin 0 -> 1101 bytes
 .../iceberg/test_s3tables_insert_overwrite.out     | Bin 0 -> 23561 bytes
 .../iceberg/test_s3tables_write_insert.out}        | Bin 79099 -> 41743 bytes
 .../iceberg/test_s3tables_write_partitions.out     | Bin 0 -> 267 bytes
 ...st_hive_runtime_filter_partition_pruning.groovy | 107 ++++++++
 .../iceberg/test_iceberg_filter.groovy             |   2 +
 .../iceberg/test_s3tables_insert_overwrite.groovy} | 254 ++----------------
 .../iceberg/test_s3tables_write_insert.groovy}     | 292 ++++-----------------
 .../iceberg/test_s3tables_write_partitions.groovy  | 108 ++++++++
 66 files changed, 1363 insertions(+), 701 deletions(-)
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/create_preinstalled_scripts/run74.hql
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/date_partition_table/partition_col=2025-01-01/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/date_partition_table/partition_col=2025-01-02/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/date_partition_table/partition_col=2025-01-03/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/decimal_partition_table/partition_col=100.01/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/decimal_partition_table/partition_col=200.02/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/decimal_partition_table/partition_col=300.03/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/int_partition_table/partition_col=1/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/int_partition_table/partition_col=2/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/int_partition_table/partition_col=3/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/string_partition_table/partition_col=A/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/string_partition_table/partition_col=B/000000_0
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/preinstalled_data/partition_tables/string_partition_table/partition_col=C/000000_0
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergS3TablesExternalCatalog.java
 copy 
fe/fe-core/src/main/java/{com/amazonaws/glue/catalog/credentials/ConfigurationAWSCredentialsProvider2x.java
 => 
org/apache/doris/datasource/iceberg/s3tables/CustomAwsCredentialsProvider.java} 
(53%)
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/nereids/parser/SqlDialectHelper.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/datasource/hive/HMSExternalTableTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/datasource/s3tables/S3TablesTest.java
 create mode 100644 
regression-test/data/external_table_p0/hive/test_hive_runtime_filter_partition_pruning.out
 create mode 100644 
regression-test/data/external_table_p2/iceberg/test_s3tables_insert_overwrite.out
 copy 
regression-test/data/{external_table_p0/iceberg/write/test_iceberg_insert_overwrite.out
 => external_table_p2/iceberg/test_s3tables_write_insert.out} (52%)
 create mode 100644 
regression-test/data/external_table_p2/iceberg/test_s3tables_write_partitions.out
 create mode 100644 
regression-test/suites/external_table_p0/hive/test_hive_runtime_filter_partition_pruning.groovy
 copy 
regression-test/suites/{external_table_p0/iceberg/write/test_iceberg_insert_overwrite.groovy
 => external_table_p2/iceberg/test_s3tables_insert_overwrite.groovy} (75%)
 copy 
regression-test/suites/{external_table_p0/iceberg/write/test_iceberg_insert_overwrite.groovy
 => external_table_p2/iceberg/test_s3tables_write_insert.groovy} (71%)
 create mode 100644 
regression-test/suites/external_table_p2/iceberg/test_s3tables_write_partitions.groovy


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

Reply via email to