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

Method GetKeylist

storage/connect/tabsys.cpp:587–594  ·  view source on GitHub ↗

/ Get the key list from the INI file. */ /

Source from the content-addressed store, hash-verified

585/* Get the key list from the INI file. */
586/***********************************************************************/
587char *TDBXIN::GetKeylist(PGLOBAL g, char *sec)
588 {
589 if (!Keylist)
590 Keylist = (char*)PlugSubAlloc(g, NULL, Keylen);
591
592 GetPrivateProfileString(sec, NULL, "", Keylist, Keylen, Ifile);
593 return Keylist;
594 } // end of GetKeylist
595
596/***********************************************************************/
597/* Allocate XIN column description block. */

Callers

nothing calls this directly

Calls 2

PlugSubAllocFunction · 0.85
GetPrivateProfileStringFunction · 0.85

Tested by

no test coverage detected