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 2017/02/05 19:14:22 UTC

[1/2] incubator-quickstep git commit: Fixes

Repository: incubator-quickstep
Updated Branches:
  refs/heads/collision-free-agg fe2ec5409 -> b6a20591f


Fixes


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

Branch: refs/heads/collision-free-agg
Commit: daf70b867ba6217cf798483fad7831027c8eeee9
Parents: fe2ec54
Author: Jianqiao Zhu <ji...@cs.wisc.edu>
Authored: Sun Feb 5 13:12:10 2017 -0600
Committer: Jianqiao Zhu <ji...@cs.wisc.edu>
Committed: Sun Feb 5 13:12:10 2017 -0600

----------------------------------------------------------------------
 expressions/aggregation/AggregationConcreteHandle.hpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/daf70b86/expressions/aggregation/AggregationConcreteHandle.hpp
----------------------------------------------------------------------
diff --git a/expressions/aggregation/AggregationConcreteHandle.hpp b/expressions/aggregation/AggregationConcreteHandle.hpp
index 78e34f5..8f47105 100644
--- a/expressions/aggregation/AggregationConcreteHandle.hpp
+++ b/expressions/aggregation/AggregationConcreteHandle.hpp
@@ -115,7 +115,8 @@ class AggregationConcreteHandle : public AggregationHandle {
 
  protected:
   explicit AggregationConcreteHandle(const AggregationID agg_id)
-      : AggregationHandle(agg_id) {}
+      : AggregationHandle(agg_id),
+        block_update_(false) {}
 
   template <typename HandleT, typename StateT>
   StateT* aggregateOnDistinctifyHashTableForSingleUnaryHelper(


[2/2] incubator-quickstep git commit: Modify travis for debugging

Posted by ji...@apache.org.
Modify travis for debugging


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

Branch: refs/heads/collision-free-agg
Commit: b6a20591fb4bb4f6ce1d30374fafe1dba59686da
Parents: daf70b8
Author: Jianqiao Zhu <ji...@cs.wisc.edu>
Authored: Sun Feb 5 13:13:52 2017 -0600
Committer: Jianqiao Zhu <ji...@cs.wisc.edu>
Committed: Sun Feb 5 13:13:52 2017 -0600

----------------------------------------------------------------------
 .travis.yml | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/b6a20591/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 834337b..4e2dda0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,21 +11,12 @@ language: cpp
 cache: ccache
 
 compiler:
-  - gcc
   - clang
 
 env:
-  - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
   - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=selection
-  - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
-  - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=selection
 
 matrix:
-  exclude:  # Due to time-out.
-  - compiler: gcc
-    env: BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions
-  - compiler: gcc
-    env: BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=selection
 
 install:
   - export TEST_JOBS=2;