Fix unsigned double hash calc inconsistent

This commit is contained in:
hezuojiao 2023-02-14 08:47:29 +00:00 committed by ob-robot
parent 28536648f7
commit 628998ff7e

View File

@ -1678,7 +1678,7 @@ public:
OB_INLINE bool is_blob_locator() const { return meta_.is_blob_locator(); }
OB_INLINE bool is_clob_locator() const { return meta_.is_clob_locator(); }
OB_INLINE bool is_lob_locator() const { return meta_.is_lob_locator(); }
OB_INLINE bool is_fixed_double() const { return meta_.is_double() &&
OB_INLINE bool is_fixed_double() const { return ob_is_double_type(meta_.get_type()) &&
SCALE_UNKNOWN_YET < meta_.get_scale() && OB_MAX_DOUBLE_FLOAT_SCALE >= meta_.get_scale(); }
OB_INLINE bool is_string_or_lob_locator_type() const {
return meta_.is_string_or_lob_locator_type();