[Enhancement](status) Unify error code and enable customed err msg for BE internal errors (#14744)

This commit is contained in:
plat1ko
2022-12-11 23:33:18 +08:00
committed by GitHub
parent c4a1f4816c
commit f3aea7f0f0
204 changed files with 1520 additions and 1643 deletions

View File

@ -436,7 +436,7 @@ Status UserFunctionCache::check_jar(int64_t fid, const std::string& url,
return Status::InternalError(
"Java UDAF has error, maybe you should check the path about java impl jar, because "
"{}",
st.get_error_msg());
st.to_string());
}
return Status::OK();
}