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

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


The following commit(s) were added to refs/heads/master by this push:
     new cfef12dc [AURON #1702] Fix typo in join_hash_map.rs (#1703)
cfef12dc is described below

commit cfef12dc85dc97bf63a3f151d914694f3b255cc2
Author: James Xu <[email protected]>
AuthorDate: Sun Dec 7 19:20:10 2025 +0800

    [AURON #1702] Fix typo in join_hash_map.rs (#1703)
---
 native-engine/datafusion-ext-plans/src/joins/join_hash_map.rs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/native-engine/datafusion-ext-plans/src/joins/join_hash_map.rs 
b/native-engine/datafusion-ext-plans/src/joins/join_hash_map.rs
index 49be1d4e..c16f07e8 100644
--- a/native-engine/datafusion-ext-plans/src/joins/join_hash_map.rs
+++ b/native-engine/datafusion-ext-plans/src/joins/join_hash_map.rs
@@ -102,10 +102,10 @@ impl Table {
             "join hash table: number of rows exceeded 2^30: {num_rows}"
         );
         let hashes = join_create_hashes(num_rows, key_columns);
-        Self::craete_from_key_columns_and_hashes(num_rows, key_columns, hashes)
+        Self::create_from_key_columns_and_hashes(num_rows, key_columns, hashes)
     }
 
-    fn craete_from_key_columns_and_hashes(
+    fn create_from_key_columns_and_hashes(
         num_rows: usize,
         key_columns: &[ArrayRef],
         hashes: Vec<u32>,
@@ -319,7 +319,7 @@ impl JoinHashMap {
         hashes: Vec<u32>,
     ) -> Result<Self> {
         let table =
-            Table::craete_from_key_columns_and_hashes(data_batch.num_rows(), 
&key_columns, hashes)?;
+            Table::create_from_key_columns_and_hashes(data_batch.num_rows(), 
&key_columns, hashes)?;
 
         Ok(Self {
             data_batch,

Reply via email to