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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 64bbf53da7 [typo] fix typo in distinct (#6475)
64bbf53da7 is described below

commit 64bbf53da7537d92f804f539835fafe78f55d030
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);
     }
 

Reply via email to