You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@quickstep.apache.org by hbdeshmukh <gi...@git.apache.org> on 2017/09/07 20:44:15 UTC

[GitHub] incubator-quickstep pull request #281: Simplified the work order generation.

Github user hbdeshmukh commented on a diff in the pull request:

    https://github.com/apache/incubator-quickstep/pull/281#discussion_r137650750
  
    --- Diff: query_execution/tests/QueryManagerSingleNode_unittest.cpp ---
    @@ -730,122 +731,4 @@ TEST_F(QueryManagerTest, TwoNodesDAGPartiallyFilledBlocksTest) {
       EXPECT_TRUE(getOperatorFinishedStatus(id2));
     }
     
    -TEST_F(QueryManagerTest, MultipleNodesNoOutputTest) {
    --- End diff --
    
    This is not a far fetched scenario. Steps to reproduce: 
    
    1. CREATE TABLE r (a INT, b INT);
    2. CREATE TABLE s (c INT, d INT);
    3. Select sum(a) from r, s where r.a = s.c;



---