| 834 | |
| 835 | |
| 836 | bool Protocol_text::store_longlong(longlong from, bool unsigned_flag) |
| 837 | { |
| 838 | #ifndef DBUG_OFF |
| 839 | DBUG_ASSERT(field_types == 0 || |
| 840 | field_types[field_pos] == MYSQL_TYPE_LONGLONG); |
| 841 | field_pos++; |
| 842 | #endif |
| 843 | char buff[22]; |
| 844 | return net_store_data((uchar*) buff, |
| 845 | (size_t) (longlong10_to_str(from,buff, |
| 846 | unsigned_flag ? 10 : -10)- |
| 847 | buff)); |
| 848 | } |
| 849 | |
| 850 | |
| 851 | bool Protocol_text::store_decimal(const my_decimal *d) |
nothing calls this directly
no test coverage detected