New issue report by dominik....@skybow.com:
What steps will reproduce the problem?
test method:
GroupJoinInnerOuterKeySelectorInnerKeySelectorResultSelectorComparer_ValidA
rguments_CorrectGroupingAndJoining()
Issue attributes:
Status: Assigned
Owner: dominik....@skybow.com
Labels: Type-Defect Priority-Medium
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Comment #1 by azizatif:
The problem is in the test itself (rather than the GroupJoin operator
implementation), which runs the query twice and therefore ends up consuming
the
source twice as well. See lines 697-704 of EnumerableFixture.cs in r127:
foreach (var owner in result) {
Debug.WriteLine(owner.OwnerName);
Debug.Indent();
foreach (var petName in owner.Pets) {
Debug.WriteLine(" " + petName);
}
Debug.Unindent();
}
The exception occurs at line 697.
Issue attribute updates:
Status: Invalid