| 1554 | |
| 1555 | |
| 1556 | bool Protocol_text::store_longlong(longlong from, bool unsigned_flag) |
| 1557 | { |
| 1558 | #ifndef DBUG_OFF |
| 1559 | DBUG_ASSERT(valid_handler(field_pos, PROTOCOL_SEND_LONGLONG)); |
| 1560 | field_pos++; |
| 1561 | #endif |
| 1562 | char buff[22]; |
| 1563 | size_t length= (size_t) (longlong10_to_str(from, buff, |
| 1564 | unsigned_flag ? 10 : -10) - |
| 1565 | buff); |
| 1566 | return store_numeric_string_aux(buff, length); |
| 1567 | } |
| 1568 | |
| 1569 | |
| 1570 | bool Protocol_text::store_decimal(const my_decimal *d) |
no test coverage detected