This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch release-1.3 in repository https://gitbox.apache.org/repos/asf/paimon.git
commit b856f283639ebd307bacbc3475eb8c5e484f799a Author: tclxjunjie2-zhao <[email protected]> AuthorDate: Mon Oct 27 20:31:43 2025 +0800 [typo] fix typo in distinct (#6475) --- .../org/apache/paimon/mergetree/compact/aggregate/FieldCollectAgg.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paimon-core/src/main/java/org/apache/paimon/mergetree/compact/aggregate/FieldCollectAgg.java b/paimon-core/src/main/java/org/apache/paimon/mergetree/compact/aggregate/FieldCollectAgg.java index d9e706f6e8..6fbd305085 100644 --- a/paimon-core/src/main/java/org/apache/paimon/mergetree/compact/aggregate/FieldCollectAgg.java +++ b/paimon-core/src/main/java/org/apache/paimon/mergetree/compact/aggregate/FieldCollectAgg.java @@ -86,7 +86,7 @@ public class FieldCollectAgg extends FieldAggregator { public Object aggReversed(Object accumulator, Object inputField) { // we don't need to actually do the reverse here for this agg // because accumulator has been distinct, just let accumulator be accumulator will speed up - // dinstinct process + // distinct process return agg(accumulator, inputField); }
