| 566 | |
| 567 | |
| 568 | bool Binary_string::append_longlong(longlong val) |
| 569 | { |
| 570 | if (realloc(str_length+MAX_BIGINT_WIDTH+2)) |
| 571 | return TRUE; |
| 572 | char *end= (char*) longlong10_to_str(val, (char*) Ptr + str_length, -10); |
| 573 | str_length= (uint32)(end - Ptr); |
| 574 | return FALSE; |
| 575 | } |
| 576 | |
| 577 | |
| 578 | bool Binary_string::append_ulonglong(ulonglong val) |
no test coverage detected