vinyl: make sure next_lsn callback is only called after next_key
Currently, ->next_lsn() may be (and actually is) called right after opening the iterator, which means that apart from advancing the iterator to the next version of the same statement it has to handle the case of starting iteration. This complicates the callback semantics so let's require ->next_key() to be called first.
Showing
- src/box/vy_cache.c 7 additions, 4 deletionssrc/box/vy_cache.c
- src/box/vy_mem.c 1 addition, 2 deletionssrc/box/vy_mem.c
- src/box/vy_point_iterator.c 5 additions, 9 deletionssrc/box/vy_point_iterator.c
- src/box/vy_read_iterator.c 6 additions, 13 deletionssrc/box/vy_read_iterator.c
- src/box/vy_run.c 1 addition, 2 deletionssrc/box/vy_run.c
- src/box/vy_tx.c 5 additions, 1 deletionsrc/box/vy_tx.c
Loading
Please register or sign in to comment