MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / getAttachedDatabases

Method getAttachedDatabases

src/main/database_manager.cpp:92–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92std::vector<AttachedDatabase*> DatabaseManager::getAttachedDatabases() const {
93 std::vector<AttachedDatabase*> attachedDatabasesPtr;
94 for (auto& attachedDatabase : attachedDatabases) {
95 attachedDatabasesPtr.push_back(attachedDatabase.get());
96 }
97 return attachedDatabasesPtr;
98}
99
100void DatabaseManager::invalidateCache() {
101 for (auto& attachedDatabase : attachedDatabases) {

Callers 6

bindFuncFunction · 0.80
bindFuncFunction · 0.80
canExecuteWriteQueryMethod · 0.80
bindNodeTableEntriesMethod · 0.80
bindRelGroupEntriesMethod · 0.80

Calls 2

push_backMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected