| 819 | |
| 820 | |
| 821 | bool Protocol_text::store_long(longlong from) |
| 822 | { |
| 823 | #ifndef DBUG_OFF |
| 824 | DBUG_ASSERT(field_types == 0 || |
| 825 | field_types[field_pos] == MYSQL_TYPE_INT24 || |
| 826 | field_types[field_pos] == MYSQL_TYPE_LONG); |
| 827 | field_pos++; |
| 828 | #endif |
| 829 | char buff[20]; |
| 830 | return net_store_data((uchar*) buff, |
| 831 | (size_t) (int10_to_str((long int)from, buff, |
| 832 | (from <0)?-10:10)-buff)); |
| 833 | } |
| 834 | |
| 835 | |
| 836 | bool Protocol_text::store_longlong(longlong from, bool unsigned_flag) |
nothing calls this directly
no test coverage detected