Revision 53863b76f90182c4df7f24ffdbb1daace8a91637 authored by Maysam Yabandeh on 15 November 2017, 16:19:57 UTC, committed by Facebook Github Bot on 15 November 2017, 16:27:06 UTC
Summary:
The sequence number was not properly advanced after a rollback marker. The patch extends the existing unit tests to detect the bug and also fixes it.
Closes https://github.com/facebook/rocksdb/pull/3157

Differential Revision: D6304291

Pulled By: maysamyabandeh

fbshipit-source-id: 1b519c44a5371b802da49c9e32bd00087a8da401
1 parent 175d5d6
Raw File
README
This directory contains interfaces and implementations that isolate the
rest of the package from platform details.

Code in the rest of the package includes "port.h" from this directory.
"port.h" in turn includes a platform specific "port_<platform>.h" file
that provides the platform specific implementation.

See port_posix.h for an example of what must be provided in a platform
specific header file.

back to top