MCPcopy Create free account
hub / github.com/MariaDB/server / append_longlong

Method append_longlong

sql/sql_string.cc:568–575  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

566
567
568bool 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
578bool Binary_string::append_ulonglong(ulonglong val)

Callers 10

parse_mysql_scalarFunction · 0.80
print_item_valueMethod · 0.80
append_valMethod · 0.80
formatMethod · 0.80
printMethod · 0.80
add_keyword_intFunction · 0.80
add_partition_valuesFunction · 0.80
show_create_sequenceFunction · 0.80
store_triggerFunction · 0.80

Calls 1

longlong10_to_strFunction · 0.85

Tested by

no test coverage detected