| 159 | |
| 160 | |
| 161 | my_decimal *Item::val_decimal_from_int(my_decimal *decimal_value) |
| 162 | { |
| 163 | longlong nr= val_int(); |
| 164 | if (null_value) |
| 165 | return 0; |
| 166 | int2my_decimal(E_DEC_FATAL_ERROR, nr, unsigned_flag, decimal_value); |
| 167 | return decimal_value; |
| 168 | } |
| 169 | |
| 170 | |
| 171 | my_decimal *Item::val_decimal_from_string(my_decimal *decimal_value) |
nothing calls this directly
no test coverage detected