| 24 | namespace impala { |
| 25 | |
| 26 | string 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 |
no test coverage detected