MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / net_store_data

Function net_store_data

sql/protocol.cc:584–589  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

582/* The following will only be used for short strings < 65K */
583
584uchar *net_store_data(uchar *to, const uchar *from, size_t length)
585{
586 to=net_store_length_fast(to,length);
587 memcpy(to,from,length);
588 return to+length;
589}
590
591uchar *net_store_data(uchar *to,int32 from)
592{

Callers 11

net_store_dataMethod · 0.85
net_send_okFunction · 0.85
store_string_auxMethod · 0.85
store_tinyMethod · 0.85
store_shortMethod · 0.85
store_longMethod · 0.85
store_longlongMethod · 0.85
store_decimalMethod · 0.85
storeMethod · 0.85
store_dateMethod · 0.85
store_timeMethod · 0.85

Calls 3

net_store_length_fastFunction · 0.85
int10_to_strFunction · 0.85
longlong10_to_strFunction · 0.85

Tested by

no test coverage detected