Remove unused time_second from query/engine.hpp
Reviewers: florijan, mislav.bradac, buda Reviewed By: mislav.bradac Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D562
This commit is contained in:
parent
104fe22f53
commit
1ad3b7f906
@ -91,11 +91,6 @@ class QueryEngine {
|
||||
return result;
|
||||
}
|
||||
|
||||
// helper function for calculating time in seconds
|
||||
auto time_second = [](clock_t start, clock_t end) {
|
||||
return query::TypedValue(double(end - start) / CLOCKS_PER_SEC);
|
||||
};
|
||||
|
||||
std::map<std::string, query::TypedValue> summary;
|
||||
summary["query_parsing_time"] = parsing_time.count();
|
||||
// This doesn't do any actual planning, but benchmarking harness knows how
|
||||
|
Loading…
Reference in New Issue
Block a user