Skip to content

Commit

Permalink
Add release notes for full/right outer join
Browse files Browse the repository at this point in the history
  • Loading branch information
haozhun committed May 1, 2015
1 parent baea265 commit 76972a6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions presto-docs/src/main/sphinx/release/release-0.102.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ Additionally, the functions operate on Unicode code points and not user visible
into a single user-perceived *character*, the basic unit of a writing system for a
language, but the functions will treat each code point as a separate unit.

Full and Right Outer Join
-------------------------

Execution of right outer joins has changed. Right joins are no longer flipped
and executed as left outer joins. Instead, they are hash partitioned. For each
partition, an index is built on the right side. Left side is used to probe the
index to produce the inner join result. At the end, unvisited index entries are
processed to produce additional rows in the result.

Full outer join support has also been added. It is executed in a way that
combines how left joins and right joins are executed.

General Changes
---------------
Expand Down

0 comments on commit 76972a6

Please sign in to comment.