| 335 | |
| 336 | |
| 337 | inline |
| 338 | int my_decimal_round(uint mask, const my_decimal *from, int scale, |
| 339 | bool truncate, my_decimal *to) |
| 340 | { |
| 341 | return check_result(mask, decimal_round(from, to, scale, |
| 342 | (truncate ? TRUNCATE : HALF_UP))); |
| 343 | } |
| 344 | |
| 345 | |
| 346 | inline |
no test coverage detected