MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / getUUID

Method getUUID

src/Databases/DatabaseOverlay.cpp:219–229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

217}
218
219UUID DatabaseOverlay::getUUID() const
220{
221 UUID result = UUIDHelpers::Nil;
222 for (const auto & db : databases)
223 {
224 result = db->getUUID();
225 if (result != UUIDHelpers::Nil)
226 break;
227 }
228 return result;
229}
230
231UUID DatabaseOverlay::tryGetTableUUID(const String & table_name) const
232{

Callers 15

processConfigMethod · 0.45
getEngineFullFunction · 0.45
getFilteredDatabasesFunction · 0.45
fillDataMethod · 0.45
attachImplFunction · 0.45
chooseZooKeeperPathMethod · 0.45
prepareTableMethod · 0.45
assertOrSetUUIDMethod · 0.45
executeToTableImplMethod · 0.45
executeToTableMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected