Revision 34a70859bcb74d20d0b5f265d4ffc2e8c7d3b2b4 authored by Maysam Yabandeh on 25 March 2017, 00:07:38 UTC, committed by Facebook Github Bot on 25 March 2017, 00:24:11 UTC
Summary:
Fixes #1961 which causes a segfault when filter_policy is nullptr and both
pin_l0_filter_and_index_blocks_in_cache/cache_index_and_filter_blocks
are set.
Closes https://github.com/facebook/rocksdb/pull/2029

Differential Revision: D4764862

Pulled By: maysamyabandeh

fbshipit-source-id: 05bd695
1 parent 8dee8ca
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