| 351 | |
| 352 | |
| 353 | inline |
| 354 | int my_decimal_ceiling(uint mask, const my_decimal *from, my_decimal *to) |
| 355 | { |
| 356 | return check_result(mask, decimal_round(from, to, 0, CEILING)); |
| 357 | } |
| 358 | |
| 359 | |
| 360 | inline bool str_set_decimal(const my_decimal *val, String *str, |
nothing calls this directly
no test coverage detected