mirror of
https://github.com/janishutz/eth-summaries.git
synced 2026-07-27 21:29:09 +02:00
[DMDB] Set up join section
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
\subsubsection{Simple Join}
|
||||
\begin{algorithm}
|
||||
\caption{SimpleJoin Algorithm}
|
||||
\begin{algorithmic}[1]
|
||||
\Procedure{SimpleJoin}{$R$, $S$}
|
||||
\For{each tuple $t_R \in R$}
|
||||
\For{each tuple $t_S \in S$}
|
||||
\If{$\texttt{pred}(t_R, t_S)$}
|
||||
\State $\texttt{add}\{ t_R, t_S \}$ to the join output
|
||||
\EndFor
|
||||
\EndFor
|
||||
\EndProcedure
|
||||
\end{algorithmic}
|
||||
\end{algorithm}
|
||||
@@ -20,4 +20,16 @@
|
||||
|
||||
\subsection{Aggregation}
|
||||
\input{parts/04_query-processing/03_aggregation.tex}
|
||||
|
||||
\subsection{Join}
|
||||
\input{parts/04_query-processing/04_join/00_simple-join.tex}
|
||||
\input{parts/04_query-processing/04_join/01_nested-loops.tex}
|
||||
\input{parts/04_query-processing/04_join/02_index-nested-loops.tex}
|
||||
\input{parts/04_query-processing/04_join/03_block-nested-loops.tex}
|
||||
\input{parts/04_query-processing/04_join/04_block-index-nested-loops.tex}
|
||||
\input{parts/04_query-processing/04_join/05_sort-merge-join.tex}
|
||||
\input{parts/04_query-processing/04_join/06_optimized-smj.tex}
|
||||
\input{parts/04_query-processing/04_join/07_hash-join.tex}
|
||||
\input{parts/04_query-processing/04_join/08_recursive-partitioning.tex}
|
||||
\input{parts/04_query-processing/04_join/09_conclusion.tex}
|
||||
% \input{parts/04_query-processing/}
|
||||
|
||||
Reference in New Issue
Block a user