You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@quickstep.apache.org by zu...@apache.org on 2017/03/22 02:45:36 UTC

[1/2] incubator-quickstep git commit: Fixed a sign compare warning. [Forced Update!]

Repository: incubator-quickstep
Updated Branches:
  refs/heads/pedantic-warning 0ef873b80 -> f42c726de (forced update)


Fixed a sign compare warning.


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

Branch: refs/heads/pedantic-warning
Commit: 46f916f6feec3076288e750ebf83dd19c1ec33ad
Parents: b9016a8
Author: Zuyu Zhang <zu...@apache.org>
Authored: Tue Mar 21 17:38:35 2017 -0700
Committer: Zuyu Zhang <zu...@apache.org>
Committed: Tue Mar 21 17:38:35 2017 -0700

----------------------------------------------------------------------
 cli/distributed/Executor.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/46f916f6/cli/distributed/Executor.cpp
----------------------------------------------------------------------
diff --git a/cli/distributed/Executor.cpp b/cli/distributed/Executor.cpp
index 1415e99..4ca5693 100644
--- a/cli/distributed/Executor.cpp
+++ b/cli/distributed/Executor.cpp
@@ -65,7 +65,7 @@ void Executor::init() {
   const vector<numa_node_id> worker_numa_nodes(FLAGS_num_workers, kAnyNUMANodeID);
   vector<client_id> worker_client_ids;
 
-  for (std::size_t worker_thread_index = 0;
+  for (int worker_thread_index = 0;
        worker_thread_index < FLAGS_num_workers;
        ++worker_thread_index) {
     workers_.push_back(make_unique<Worker>(worker_thread_index, &bus_local_,


[2/2] incubator-quickstep git commit: Fixed a pedantic warning.

Posted by zu...@apache.org.
Fixed a pedantic warning.


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

Branch: refs/heads/pedantic-warning
Commit: f42c726deb2aaae06c9f8cf2ca46cbe66ad6cf2b
Parents: 46f916f
Author: Zuyu Zhang <zu...@apache.org>
Authored: Tue Mar 21 16:20:03 2017 -0700
Committer: Zuyu Zhang <zu...@apache.org>
Committed: Tue Mar 21 19:45:26 2017 -0700

----------------------------------------------------------------------
 query_execution/Shiftboss.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/f42c726d/query_execution/Shiftboss.hpp
----------------------------------------------------------------------
diff --git a/query_execution/Shiftboss.hpp b/query_execution/Shiftboss.hpp
index 05457bd..879f456 100644
--- a/query_execution/Shiftboss.hpp
+++ b/query_execution/Shiftboss.hpp
@@ -40,7 +40,7 @@
 #include "tmb/address.h"
 #include "tmb/id_typedefs.h"
 
-namespace tmb { class MessageBus; };
+namespace tmb { class MessageBus; }
 
 namespace quickstep {