This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a change to branch release-1.0
in repository https://gitbox.apache.org/repos/asf/paimon.git
from 049a5ae27e [parquet] Support using file index result to filter row
ranges (#4780)
new 02d94a0a19 [doc] Fix incorrect header level in manage-branches.md
new 2408548ab2 [doc] Add a note to the delete branch operation to explain
its behavior (#4803)
new 0a6d95f83b [parquet] Fix file index result filter the row ranges
missing rowgroup offset problem (#4806)
new ada85925fc [core] Introduce Partition to Catalog.listPartitions (#4807)
The 4 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:
docs/content/maintenance/manage-branches.md | 6 +-
.../org/apache/paimon/catalog/AbstractCatalog.java | 8 +-
.../org/apache/paimon/catalog/CachingCatalog.java | 16 ++-
.../java/org/apache/paimon/catalog/Catalog.java | 6 +-
.../org/apache/paimon/catalog/CatalogUtils.java | 32 +++++
.../org/apache/paimon/catalog/DelegateCatalog.java | 5 +-
.../apache/paimon/metastore/MetastoreClient.java | 6 +-
.../apache/paimon/metastore/PartitionStats.java | 64 ----------
.../org/apache/paimon/partition/Partition.java | 135 +++++++++++++++++++++
.../java/org/apache/paimon/rest/RESTCatalog.java | 5 +-
.../apache/paimon/catalog/CachingCatalogTest.java | 6 +-
.../paimon/catalog/TestableCachingCatalog.java | 4 +-
.../paimon/table/AppendOnlyFileStoreTableTest.java | 29 ++---
.../partition/PartitionStatisticsReporter.java | 8 +-
.../sink/partition/AddDonePartitionActionTest.java | 6 +-
.../partition/PartitionStatisticsReporterTest.java | 16 +--
.../apache/parquet/hadoop/ParquetFileReader.java | 1 +
.../filter2/columnindex/ColumnIndexFilter.java | 7 +-
.../internal/filter2/columnindex/RowRanges.java | 13 +-
.../apache/paimon/hive/HiveMetastoreClient.java | 25 ++--
20 files changed, 257 insertions(+), 141 deletions(-)
delete mode 100644
paimon-core/src/main/java/org/apache/paimon/metastore/PartitionStats.java
create mode 100644
paimon-core/src/main/java/org/apache/paimon/partition/Partition.java