Tuple-based
nested-loop join
(R ⋈ S)
algorithm
Iterator implementation of
the tuple-based
nested-loop join
(R ⋈ S)
algorithm
Notice that:
getNext( )
must
return the
next
(one !) tuple
in the join (R ⋈ S) result
Iterator implementation of
the tuple-based
nested-loop join
(R ⋈ S)
algorithm
-
open( )
State:
The red arrows (→)
point to the
next unread tuple in
R and S
Iterator implementation of
the tuple-based
nested-loop join
(R ⋈ S)
algorithm
-
getNext( )
getNext( )
{
while ( true )
{
/* ========================================================
(1) Get the next tuple r ∈ R (and try joining with s)
======================================================= */
r = R.getNext(); // Try to get next tuple in R
if ( r == NotFound )
{ /* =========================================================
Tuple s has now joined with every tuple ∈ R
Use next tuple ∈ S in the join operation if possible
========================================================= */
s = S.getNext( );
if ( s == NotFound ) // Last tuple
{
return NotFound; // Done !!!
}
R.Close(); //
R.Open( ); // Rewind R to beginning
r = R.getNext(); // r = current tuple in R
}
/* =================================================
(2) Try to return next tuple in R ⋈ S
================================================ */
if ( r(Y) == s(Y) )
{
return (r,s); // Return next tuple of Join
}
/* =================================================
r and s failed to join - LOOP and try again
================================================= */
}
}
|
Iterator implementation of
the tuple-based
nested-loop join
(R ⋈ S)
algorithm
-
close( )
❮
❯