| 477 | |
| 478 | |
| 479 | bool String::append_ulonglong(ulonglong val) |
| 480 | { |
| 481 | if (realloc(str_length+MAX_BIGINT_WIDTH+2)) |
| 482 | return TRUE; |
| 483 | char *end= (char*) longlong10_to_str(val, (char*) Ptr + str_length, 10); |
| 484 | str_length= end - Ptr; |
| 485 | return FALSE; |
| 486 | } |
| 487 | |
| 488 | /* |
| 489 | Append a string in the given charset to the string |
no test coverage detected