Skip to content

Commit

Permalink
HPCC-30931 Avoid spurious wild seeks
Browse files Browse the repository at this point in the history
Avoid incrementing wild seek if at end of filter (e.g. if
single SingleFieldFilter filter).

Signed-off-by: Jake Smith <[email protected]>
  • Loading branch information
jakesmith committed Nov 28, 2023
1 parent 92bba5b commit 1ab038d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions system/jhtree/jhtree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1983,6 +1983,8 @@ bool CKeyCursor::_lookup(bool exact, unsigned lastSeg, bool unfiltered, KeyStats
ret = true;
break;
}
if (eof)
break;
lwildseeks++;
}
else
Expand Down

0 comments on commit 1ab038d

Please sign in to comment.