-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: LeftJoin produces duplicated results! #943
Comments
What's your definition of "duplicated results"? There is no duplication that I can see. If I take your exact snippet and toss in a
|
Let me elaborate more...
generates the following
While if I change the code to RightJoin
I will get this
So the RightJoin is correct, but LeftJoin provides 3 extra outputs. P.S. |
Okay, so you're concerned about redundant transforms. It looks like this was an issue with The same fix seems to be working. I'll add some tests and implement it. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Describe the bug 🐞
Simply the code below its expected to iterate and generate 3 outputs.
but after generating 3 output. it goes back and generates another 3, thus 6 in total!
If I Change it to RightJoin it works as expected, and generates only 3 results.
Step to reproduce
I just put the source code. A few lines of code.
Reproduction repository
https://github.com/reactivemarbles/DynamicData
Expected behavior
This should happen...
1,2
2,4
3,6
Screenshots 🖼️
No response
IDE
No response
Operating system
No response
Version
No response
Device
No response
DynamicData Version
No response
Additional information ℹ️
No response
The text was updated successfully, but these errors were encountered: