This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
from f889cad694 [core][format] Format Table plan partitions should ignore
hidden & illegal dirs (#6522)
add f664efddab [core] Remove hash lookup to simplify interface (#6519)
No new revisions were added by this update.
Summary of changes:
LICENSE | 2 -
.../shortcodes/generated/core_configuration.html | 6 -
.../main/java/org/apache/paimon/CoreOptions.java | 36 --
.../benchmark/lookup/AbstractLookupBenchmark.java | 11 +-
.../lookup/LookupBloomFilterBenchmark.java | 118 -----
.../benchmark/lookup/LookupReaderBenchmark.java | 51 +--
.../benchmark/lookup/LookupWriterBenchmark.java | 46 +-
.../apache/paimon/lookup/LookupStoreFactory.java | 19 +-
.../apache/paimon/lookup/LookupStoreWriter.java | 7 +-
.../org/apache/paimon/lookup/hash/HashContext.java | 83 ----
.../paimon/lookup/hash/HashLookupStoreFactory.java | 63 ---
.../paimon/lookup/hash/HashLookupStoreReader.java | 285 ------------
.../paimon/lookup/hash/HashLookupStoreWriter.java | 498 ---------------------
.../paimon/lookup/sort/SortLookupStoreFactory.java | 5 +-
.../paimon/lookup/sort/SortLookupStoreReader.java | 8 +-
.../paimon/lookup/sort/SortLookupStoreWriter.java | 4 +-
.../lookup/hash/HashLookupStoreFactoryTest.java | 482 --------------------
.../lookup/sort/SortLookupStoreFactoryTest.java | 13 +-
.../org/apache/paimon/mergetree/LookupLevels.java | 5 +-
.../paimon/mergetree/ContainsLevelsTest.java | 9 +-
.../apache/paimon/mergetree/LookupLevelsTest.java | 11 +-
.../paimon/table/PrimaryKeySimpleTableTest.java | 8 +-
22 files changed, 68 insertions(+), 1702 deletions(-)
delete mode 100644
paimon-benchmark/paimon-micro-benchmarks/src/test/java/org/apache/paimon/benchmark/lookup/LookupBloomFilterBenchmark.java
delete mode 100644
paimon-common/src/main/java/org/apache/paimon/lookup/hash/HashContext.java
delete mode 100644
paimon-common/src/main/java/org/apache/paimon/lookup/hash/HashLookupStoreFactory.java
delete mode 100644
paimon-common/src/main/java/org/apache/paimon/lookup/hash/HashLookupStoreReader.java
delete mode 100644
paimon-common/src/main/java/org/apache/paimon/lookup/hash/HashLookupStoreWriter.java
delete mode 100644
paimon-common/src/test/java/org/apache/paimon/lookup/hash/HashLookupStoreFactoryTest.java