This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
commit b105ea213a77970b43c64647071d2d293e887875 Author: Xinyi Zou <[email protected]> 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 e16bbf5e13..85a424878d 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: [email protected] For additional commands, e-mail: [email protected]
