[
https://issues.apache.org/jira/browse/TAJO-1525?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14633539#comment-14633539
]
Hudson commented on TAJO-1525:
------------------------------
SUCCESS: Integrated in Tajo-master-build #757 (See
[https://builds.apache.org/job/Tajo-master-build/757/])
TAJO-1525: Implement INTERSECT [ALL] physical operator. (Contributed Keuntae
Park, committed by hyunsik) (hyunsik: rev
7481050e3d75eb860590f3237aca210fdd98190a)
*
tajo-core/src/main/java/org/apache/tajo/engine/planner/physical/SetTupleComparator.java
* CHANGES
*
tajo-core/src/main/java/org/apache/tajo/engine/planner/physical/SortIntersectExec.java
*
tajo-core/src/test/java/org/apache/tajo/engine/planner/physical/TestSortIntersectExec.java
TAJO-1525: Implement INTERSECT [ALL] physical operator. (missed issue close)
(hyunsik: rev c50a5dadff90fa90709abbce59856e834baa4867)
* CHANGES
> Implement INTERSECT [ALL] physical operator
> -------------------------------------------
>
> Key: TAJO-1525
> URL: https://issues.apache.org/jira/browse/TAJO-1525
> Project: Tajo
> Issue Type: Sub-task
> Reporter: Keuntae Park
> Assignee: Keuntae Park
> Fix For: 0.11.0
>
>
> As discussed in TAJO-1517,
> INTERSECT ALL needs new physical operator,
> which returns the exact number of overlapping rows between results of two
> query blocks.
> For example, when query1 returns
> {code}
> 1, 3, 3, 3
> {code}
> while query2 returns
> {code}
> 3, 3
> {code}
> query1 INTERSECT ALL query2 should return
> {code}
> 3, 3
> {code}
> INTERSECT can be implemented by selecting distinct result of above physical
> operator.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)