| 149 | |
| 150 | |
| 151 | my_decimal *Item::val_decimal_from_real(my_decimal *decimal_value) |
| 152 | { |
| 153 | double nr= val_real(); |
| 154 | if (null_value) |
| 155 | return 0; |
| 156 | double2my_decimal(E_DEC_FATAL_ERROR, nr, decimal_value); |
| 157 | return (decimal_value); |
| 158 | } |
| 159 | |
| 160 | |
| 161 | my_decimal *Item::val_decimal_from_int(my_decimal *decimal_value) |
nothing calls this directly
no test coverage detected