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

Function net_store_data

sql/protocol.cc:755–761  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

753/* The following will only be used for short strings < 65K */
754
755uchar *net_store_data(uchar *to, const uchar *from, size_t length)
756{
757 to=net_store_length_fast(to,length);
758 if (length)
759 memcpy(to,from,length);
760 return to+length;
761}
762
763uchar *net_store_data(uchar *to,int32 from)
764{

Callers 6

net_store_data_csMethod · 0.85
net_send_progress_packetFunction · 0.85
store_string_auxMethod · 0.85
store_warningMethod · 0.85
register_slave_on_masterFunction · 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