mirror of https://github.com/facebook/rocksdb.git
Remove a couple of non-public includes from public header file (#5219)
Summary: Cleanup a couple of stray includes left by #5011. Pull Request resolved: https://github.com/facebook/rocksdb/pull/5219 Differential Revision: D15007244 Pulled By: anand1976 fbshipit-source-id: 15ca1d4f977b5b60e99df3bfb8fc3db217d19bdd
This commit is contained in:
parent
7a73adda9c
commit
5265c5709e
|
@ -24,8 +24,6 @@
|
|||
#include <stdexcept>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include "db/dbformat.h"
|
||||
#include "table/multiget_context.h"
|
||||
|
||||
namespace rocksdb {
|
||||
|
||||
|
@ -66,7 +64,6 @@ class FilterBitsBuilder {
|
|||
|
||||
// A class that checks if a key can be in filter
|
||||
// It should be initialized by Slice generated by BitsBuilder
|
||||
using MultiGetRange = MultiGetContext::Range;
|
||||
class FilterBitsReader {
|
||||
public:
|
||||
virtual ~FilterBitsReader() {}
|
||||
|
|
|
@ -18,23 +18,27 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include "db/dbformat.h"
|
||||
#include "format.h"
|
||||
#include "rocksdb/options.h"
|
||||
#include "rocksdb/slice.h"
|
||||
#include "rocksdb/slice_transform.h"
|
||||
#include "rocksdb/table.h"
|
||||
#include "table/multiget_context.h"
|
||||
#include "util/hash.h"
|
||||
#include "format.h"
|
||||
|
||||
namespace rocksdb {
|
||||
|
||||
const uint64_t kNotValid = ULLONG_MAX;
|
||||
class FilterPolicy;
|
||||
|
||||
using MultiGetRange = MultiGetContext::Range;
|
||||
|
||||
// A FilterBlockBuilder is used to construct all of the filters for a
|
||||
// particular Table. It generates a single string which is stored as
|
||||
// a special block in the Table.
|
||||
|
|
Loading…
Reference in New Issue