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

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 78b8541  [fix](debug) get_hash_value_fvn DCHECK failed (#8811)
78b8541 is described below

commit 78b85414d6cb9f839cd3dd1e09a1a12cb19db79e
Author: Xinyi Zou <zouxiny...@gmail.com>
AuthorDate: Sun Apr 3 10:55:15 2022 +0800

    [fix](debug) get_hash_value_fvn DCHECK failed (#8811)
    
    * fix_get_hash_value_fvn
    
    * fix compile
---
 be/src/runtime/raw_value.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/be/src/runtime/raw_value.h b/be/src/runtime/raw_value.h
index e16bbf5..85a4248 100644
--- a/be/src/runtime/raw_value.h
+++ b/be/src/runtime/raw_value.h
@@ -294,6 +294,7 @@ inline uint32_t RawValue::get_hash_value_fvn(const void* v, 
const PrimitiveType&
     case TYPE_VARCHAR:
     case TYPE_CHAR:
     case TYPE_HLL:
+    case TYPE_OBJECT:
     case TYPE_STRING: {
         const StringValue* string_value = reinterpret_cast<const 
StringValue*>(v);
         return HashUtil::fnv_hash(string_value->ptr, string_value->len, seed);

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to