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

Method Prints

storage/connect/value.cpp:585–595  ·  view source on GitHub ↗

/ Make string output of an object value. */ /

Source from the content-addressed store, hash-verified

583/* Make string output of an object value. */
584/***********************************************************************/
585void VALUE::Prints(PGLOBAL g, char *ps, uint z)
586{
587 char *p, buf[64];
588
589 if (Null)
590 p = strcpy(buf, "<null>");
591 else
592 p = GetCharString(buf);
593
594 strncpy(ps, p, z);
595} // end of Prints
596
597/* -------------------------- Class TYPVAL ---------------------------- */
598

Callers 3

MakeCursorMethod · 0.45
MakeSelectorFunction · 0.45
MakeCursorMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected