From a7c3c4a2e122cb9648627710222c9ab5da4f2cdb Mon Sep 17 00:00:00 2001 From: advancedxy Date: Thu, 30 May 2024 09:10:24 +0800 Subject: [PATCH] Update core/src/execution/datafusion/spark_hash.rs Co-authored-by: Liang-Chi Hsieh --- core/src/execution/datafusion/spark_hash.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/execution/datafusion/spark_hash.rs b/core/src/execution/datafusion/spark_hash.rs index d06aba4a4..15d3a5021 100644 --- a/core/src/execution/datafusion/spark_hash.rs +++ b/core/src/execution/datafusion/spark_hash.rs @@ -284,8 +284,8 @@ fn create_xxhash64_hashes_dictionary( /// The number of rows to hash is determined by `hashes_buffer.len()`. /// `hashes_buffer` should be pre-sized appropriately /// -/// `hash_method` is the hash function to use -/// `create_dictionary_hash_method` is the function to create hashes for dictionary arrays input +/// `hash_method` is the hash function to use. +/// `create_dictionary_hash_method` is the function to create hashes for dictionary arrays input. macro_rules! create_hashes_internal { ($arrays: ident, $hashes_buffer: ident, $hash_method: ident, $create_dictionary_hash_method: ident) => { for (i, col) in $arrays.iter().enumerate() {