MCPcopy Create free account
hub / github.com/ElementsProject/elements / TableFileName

Function TableFileName

src/leveldb/db/filename.cc:33–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33std::string TableFileName(const std::string& dbname, uint64_t number) {
34 assert(number > 0);
35 return MakeFileName(dbname, number, "ldb");
36}
37
38std::string SSTTableFileName(const std::string& dbname, uint64_t number) {
39 assert(number > 0);

Callers 9

FindTableMethod · 0.85
BuildTableFunction · 0.85
DeleteAnSSTFileMethod · 0.85
RenameLDBToSSTMethod · 0.85
RecoverMethod · 0.85
TESTFunction · 0.85
ScanTableMethod · 0.85
RepairTableMethod · 0.85

Calls 1

MakeFileNameFunction · 0.85

Tested by 3

DeleteAnSSTFileMethod · 0.68
RenameLDBToSSTMethod · 0.68
TESTFunction · 0.68