terrajobst / nquery-vnext

A Roslyn inspired rewrite of NQuery
MIT License
72 stars 16 forks source link

Fix infinite loop with OutOfMemoryException on query in NQuery issue 13 #1

Closed dallmair closed 7 years ago

dallmair commented 7 years ago

When the iterator's last item is part of the tie, every subsequent Read operation would return true instead of false, because the iterator exhaustion wasn't considered in the tie case.

terrajobst commented 7 years ago

Excellent find, thanks!