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/06/19 21:06:09 UTC

incubator-quickstep git commit: Minor refactor for printing FilterJoin in a Physical Plan.

Repository: incubator-quickstep
Updated Branches:
  refs/heads/master 4b8963493 -> 261c955ad


Minor refactor for printing FilterJoin in a Physical Plan.


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

Branch: refs/heads/master
Commit: 261c955ad45c3098dd1792bb3763b13643fd9906
Parents: 4b89634
Author: Zuyu Zhang <zu...@apache.org>
Authored: Mon Jun 19 16:06:01 2017 -0500
Committer: Zuyu Zhang <zu...@apache.org>
Committed: Mon Jun 19 16:06:01 2017 -0500

----------------------------------------------------------------------
 query_optimizer/physical/FilterJoin.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/261c955a/query_optimizer/physical/FilterJoin.cpp
----------------------------------------------------------------------
diff --git a/query_optimizer/physical/FilterJoin.cpp b/query_optimizer/physical/FilterJoin.cpp
index ca46791..06f5a16 100644
--- a/query_optimizer/physical/FilterJoin.cpp
+++ b/query_optimizer/physical/FilterJoin.cpp
@@ -99,7 +99,7 @@ void FilterJoin::getFieldStringItems(
                                   container_child_fields);
 
   inline_field_names->push_back("is_anti_join");
-  inline_field_values->push_back(std::to_string(is_anti_join_));
+  inline_field_values->push_back(is_anti_join_ ? "true" : "false");
 
   if (build_side_filter_predicate_ != nullptr) {
     non_container_child_field_names->emplace_back("build_side_filter_predicate");