| 792 | |
| 793 | |
| 794 | bool Protocol_text::store_tiny(longlong from) |
| 795 | { |
| 796 | #ifndef DBUG_OFF |
| 797 | DBUG_ASSERT(field_types == 0 || field_types[field_pos] == MYSQL_TYPE_TINY); |
| 798 | field_pos++; |
| 799 | #endif |
| 800 | char buff[20]; |
| 801 | return net_store_data((uchar*) buff, |
| 802 | (size_t) (int10_to_str((int) from, buff, -10) - buff)); |
| 803 | } |
| 804 | |
| 805 | |
| 806 | bool Protocol_text::store_short(longlong from) |
nothing calls this directly
no test coverage detected