Revision 01eabf7375d4458c8a352126a8bc57eb600c46c0 authored by Andrew Kryczka on 28 November 2016, 23:36:54 UTC, committed by Facebook Github Bot on 28 November 2016, 23:54:12 UTC
Summary:
Both the single deletion and the value are included in compaction outputs, so no need to update the stat for the value's deletion yet, otherwise it'd be double-counted.
Closes https://github.com/facebook/rocksdb/pull/1574

Differential Revision: D4241181

Pulled By: ajkr

fbshipit-source-id: c9aaa15
1 parent 7ffb10f
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