I have a Merge Join Transform that is doing a Left Outer Join. Can anyone show me the pseudo code for this transform? I think I understand the output, but I'm curious to know the logic that is used to produce it.
Thank you!
|
I have a Merge Join Transform that is doing a Left Outer Join. Can anyone show me the pseudo code for this transform? I think I understand the output, but I'm curious to know the logic that is used to produce it. Thank you!
| |||
|
feedback
|
|
The merge join works follows by traversing all the records in two sorted lists. The merge matches the records where it can, but always returns the records from the left list, even without a corresponding record in the right list. As the records are sorted in both lists, the process knows that it can discard the possibility of any matches further down the list;
| |||||||
feedback
|