Adds support the Parallel audit log index creation

The index is now being generated.
This commit is contained in:
Felipe Zimmerle
2015-07-13 16:48:57 -03:00
parent 96a777a5cf
commit f13a1bd880
8 changed files with 157 additions and 2 deletions

View File

@@ -57,6 +57,15 @@ double random_number(const double from, const double to) {
}
std::string dash_if_empty(const std::string& str) {
if (str.empty()) {
return "-";
}
return str;
}
double generate_assay_unique_id() {
return random_number(0, 100);
}