Repository: incubator-trafodion Updated Branches: refs/heads/master c619c1e81 -> 6a130fc87
[TRAFODION-2324] Sequence operators are not parallel starting with the WITH clause support Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/83e574bc Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/83e574bc Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/83e574bc Branch: refs/heads/master Commit: 83e574bc93bdc533fb5bbf5f4aa5563595d822c6 Parents: 7092997 Author: Liu Ming <[email protected]> Authored: Sun Oct 30 20:47:52 2016 -0400 Committer: Liu Ming <[email protected]> Committed: Sun Oct 30 20:47:52 2016 -0400 ---------------------------------------------------------------------- core/sql/optimizer/RelSequence.cpp | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/83e574bc/core/sql/optimizer/RelSequence.cpp ---------------------------------------------------------------------- diff --git a/core/sql/optimizer/RelSequence.cpp b/core/sql/optimizer/RelSequence.cpp index b6280c3..0047812 100644 --- a/core/sql/optimizer/RelSequence.cpp +++ b/core/sql/optimizer/RelSequence.cpp @@ -247,6 +247,9 @@ RelSequence::copyTopNode(RelExpr *derivedNode, CollHeap *outHeap) result->cancelExpr() = cancelExpr(); result->checkPartitionChangeExpr_ = checkPartitionChangeExpr_; + result->hasOlapFunctions_ = hasOlapFunctions_; + result->hasTDFunctions_= hasTDFunctions_; + result->movePartIdsExpr_ = movePartIdsExpr_; //need to review the commented code below //result->requiredOrderTree_ = requiredOrderTree_->copyTree(outHeap)->castToItemExpr();
