Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/coverage/cpp.develop.coverage_report.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Directory: ..
------------------------------------------------------------------------------
File Lines Exec Cover Missing
------------------------------------------------------------------------------
client/cpp/CSVParserUtil.cpp 345 290 84% 37-45,48,50,239,241,264-265,269-270,286,292,304,313-314,317,323,331-332,335,345,351,363,368,373,379-387,389,425,435-437,450,474-476,478,503-506
client/cpp/CSVParserUtil.cpp 345 292 84% 37-45,48,50,239,241,265,269-270,286,292,304,313-314,317,323,331-332,335,345,351,363,368,373,379-387,389,425,435-437,474-476,478,503-506
client/cpp/VDMSClient.cc 20 20 100%
src/AutoDeleteNode.cc 9 8 88% 40
src/BackendNeo4j.cc 133 73 54% 7,11,13,15,20,24,29-41,65-70,89,115-117,119-121,129-131,133,177,183,185,187,201,210,212-215,219-220,222-223,226-230,235,239-241,243
Expand All @@ -27,7 +27,7 @@ src/PMGDQueryHandler.cc 934 651 69% 88-90,172-173,
src/QueryHandlerBase.cc 35 15 42% 29,35-36,46,48-49,53,57-59,61-63,65-67,69-70,73-74
src/QueryHandlerExample.cc 33 18 54% 65-67,75-78,84-85,89-92,94-95
src/QueryHandlerNeo4j.cc 166 98 59% 87-89,97-100,111-112,116-120,123-127,131-138,141-144,146-148,157-159,163-165,208,219-221,224,245-246,252-255,269-271,276-278,293-300,304-306
src/QueryHandlerPMGD.cc 358 284 79% 115-117,125-128,151-152,158-159,189-191,195-197,215-216,239-245,249-251,287,356-357,368-370,372-374,377-378,380-383,409-410,419,431-438,440-442,449-457,475,498,500,555-556,558-559
src/QueryHandlerPMGD.cc 358 284 79% 116-118,126-129,152-153,159-160,190-192,196-198,216-217,240-246,250-252,288,357-358,369-371,373-375,378-379,381-384,410-411,420,432-439,441-443,450-458,476,499,501,556-557,559-560
src/QueryMessage.cc 12 3 25% 42-43,45-46,48,51-54
src/RSCommand.cc 144 105 72% 65-67,73-74,98,100-101,103,110,131,134-138,141,172-174,176,178-181,188,262,285,287-289,291-297,301
src/SearchExpression.cc 99 38 38% 59,132-133,135,137-139,143,146,148-153,157,160,168-170,177,180-181,183-185,188,192-195,197,201,217-222,224-225,227,235-240,243,247-249,252-256,263,276,284-285
Expand Down Expand Up @@ -61,8 +61,8 @@ utils/src/comm/Connection.cc 82 61 74% 48-53,75,77-79
utils/src/comm/ConnServer.cc 61 49 80% 60,64,68,75,84,91,103,108,128,135,140,145
utils/src/comm/Exception.cc 6 0 0% 35-40
utils/src/kubernetes/KubeHelper.cc 183 37 20% 23-30,32-35,37-49,51-54,56-65,68-79,81-90,96-99,101,103-105,107-110,112-118,120-125,127-143,146-154,156,158-161,163-165,167,177,183,198,204,206-218,231-238
utils/src/stats/SystemStats.cc 250 248 99% 231,455
utils/src/stats/SystemStats.cc 250 249 99% 455
utils/src/timers/TimerMap.cc 82 74 90% 126,151,153,155-158,162
------------------------------------------------------------------------------
TOTAL 12492 8506 68%
TOTAL 12492 8509 68%
------------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion .github/coverage/cpp.develop.coverage_value.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
68.0916
68.1156
3 changes: 2 additions & 1 deletion src/QueryHandlerPMGD.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#include <fstream>
#include <sstream>
#include <string>
#include <iomanip>

#include "BlobCommand.h"
#include "BoundingBoxCommand.h"
Expand Down Expand Up @@ -474,7 +475,7 @@ void QueryHandlerPMGD::regular_run_autoreplicate(
if (localtime_r(&t, &tm) == nullptr) {
oss << t;
} else {
oss << asctime(&tm);
oss << std::put_time(&tm, "%Y%m%d%H%M%S");
}
name = oss.str();
name.erase(remove(name.begin(), name.end(), ' '), name.end());
Expand Down