Skip to content
Snippets Groups Projects
Commit 310e0715 authored by Vladimir Davydov's avatar Vladimir Davydov
Browse files

vinyl: fix crash in vy_read_iterator_evaluate_src

There's an optimization in vy_read_iterator_evaluate_src(): in case
the evaluated statement exactly matches the search key, we assume
that it precedes all statements that have been evaluated so far.
This assumption holds when we are looking for the next key, but it
results in a crash when we are applying UPSERTs:

  vy_read_iterator_evaluate_src: Assertion `vy_read_iterator_cmp_stmt(itr, src->stmt, itr->curr_stmt) < 0' failed

Actually, this optimization is rather dubious. It saves us one
comparison on the first iteration if the iterator type is LE/GE, the
search key is full, and there's an exact match. However, if there's
no exact match, it will add an extra comparison instead. One might
argue that we should optimize for exact match because of space.get(),
but for space.get(), the read iterator is not invoked at all - we use
point lookup instead. That being said, let's simply zap this
"optimization" altogether to fix this crash.

Closes #3003
parent aa70a19b
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment