You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@quickstep.apache.org by ji...@apache.org on 2016/08/03 20:34:53 UTC

incubator-quickstep git commit: Minor comment revision

Repository: incubator-quickstep
Updated Branches:
  refs/heads/execution-dag-visualizer cb49749d8 -> ccb27f911


Minor comment revision


Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/ccb27f91
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/ccb27f91
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/ccb27f91

Branch: refs/heads/execution-dag-visualizer
Commit: ccb27f91194215e8aafd3595789992d2b711761f
Parents: cb49749
Author: Jianqiao Zhu <ji...@cs.wisc.edu>
Authored: Wed Aug 3 15:34:43 2016 -0500
Committer: Jianqiao Zhu <ji...@cs.wisc.edu>
Committed: Wed Aug 3 15:34:43 2016 -0500

----------------------------------------------------------------------
 query_execution/QueryExecutionTypedefs.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/ccb27f91/query_execution/QueryExecutionTypedefs.hpp
----------------------------------------------------------------------
diff --git a/query_execution/QueryExecutionTypedefs.hpp b/query_execution/QueryExecutionTypedefs.hpp
index a177494..4bbab59 100644
--- a/query_execution/QueryExecutionTypedefs.hpp
+++ b/query_execution/QueryExecutionTypedefs.hpp
@@ -106,8 +106,8 @@ enum QueryExecutionMessageType : message_type_id {
 struct WorkOrderTimeEntry {
   std::size_t worker_id;
   std::size_t operator_id;
-  std::size_t start_time;
-  std::size_t end_time;
+  std::size_t start_time;  // Epoch time measured in microseconds
+  std::size_t end_time;  // Epoch time measured in microseconds
 };
 // Key = query ID.
 // Value = vector of work order profiling records.