MCPcopy Create free account
hub / github.com/apache/impala / GenerateUUIDString

Function GenerateUUIDString

be/src/util/uid-util.cc:26–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24namespace impala {
25
26string GenerateUUIDString() {
27 boost::uuids::basic_random_generator<boost::mt19937> gen;
28 boost::uuids::uuid u = gen();
29 string uuid(u.begin(), u.end());
30 return uuid;
31}
32} // namespace impala

Callers 1

GenerateUUIDFunction · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected