本文整理汇总了C++中ObNumber::round_to方法的典型用法代码示例。如果您正苦于以下问题:C++ ObNumber::round_to方法的具体用法?C++ ObNumber::round_to怎么用?C++ ObNumber::round_to使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ObNumber
的用法示例。
在下文中一共展示了ObNumber::round_to方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: set_decimal
int ObObj::set_decimal(const ObNumber &num, int8_t precision, int8_t scale, bool is_add /*= false*/)
{
int ret = OB_SUCCESS;
set_flag(is_add);
meta_.type_ = ObDecimalType;
meta_.dec_precision_ = static_cast<uint8_t>(precision) & META_PREC_MASK;
meta_.dec_scale_ = static_cast<uint8_t>(scale) & META_SCALE_MASK;
int8_t nwords = 0;
int8_t vscale = 0;
uint32_t words[ObNumber::MAX_NWORDS];
ret = num.round_to(precision, scale, nwords, vscale, words);
if (OB_SUCCESS == ret)
{
if (nwords <= 3)
{
meta_.dec_nwords_ = static_cast<uint8_t>(nwords - 1) & META_NWORDS_MASK;
meta_.dec_vscale_ = static_cast<uint8_t>(vscale) & META_VSCALE_MASK;
memcpy(reinterpret_cast<uint32_t*>(&val_len_), words, sizeof(uint32_t)*nwords);
}
else
{
//@todo, use ob_pool.h to allocate memory
ret = OB_NOT_IMPLEMENT;
}
}
return ret;
}