MCPcopy Create free account
hub / github.com/DeNA/HandlerSocket-Plugin-for-MySQL / write_ui64

Function write_ui64

libhsclient/escape.cpp:116–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114}
115
116void
117write_ui64(string_buffer& buf, uint64_t v)
118{
119 char *wp = buf.make_space(22);
120 int len = snprintf(wp, 22, "%llu", static_cast<unsigned long long>(v));
121 if (len > 0) {
122 buf.space_wrote(len);
123 }
124}
125
126};
127

Callers 1

dbcb_resp_short_num64Method · 0.85

Calls 2

make_spaceMethod · 0.80
space_wroteMethod · 0.80

Tested by

no test coverage detected