[FEAT MERGE] OB Support XMLType

Co-authored-by: simonjoylet <simonjoylet@gmail.com>
This commit is contained in:
obdev
2023-04-28 03:45:10 +00:00
committed by ob-robot
parent 58bb3d34b7
commit 17abf2818a
405 changed files with 18839 additions and 1573 deletions

View File

@ -56,7 +56,9 @@ int ObExprHash::calc_hash_value_expr(const ObExpr &expr, ObEvalCtx &ctx, ObDatum
LOG_WARN("failed to eval datum", K(ret));
} else {
ObExprHashFuncType hash_func = expr.args_[i]->basic_funcs_->murmur_hash_v2_;
hash_value = hash_func(*datum, hash_value);
if (OB_FAIL(hash_func(*datum, hash_value, hash_value))) {
LOG_WARN("failed to do hash", K(ret));
}
}
}
res_datum.set_uint(hash_value);