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 <stdexcept>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "db/dbformat.h"
|
|
||||||
#include "table/multiget_context.h"
|
|
||||||
|
|
||||||
namespace rocksdb {
|
namespace rocksdb {
|
||||||
|
|
||||||
@ -66,7 +64,6 @@ class FilterBitsBuilder {
|
|||||||
|
|
||||||
// A class that checks if a key can be in filter
|
// A class that checks if a key can be in filter
|
||||||
// It should be initialized by Slice generated by BitsBuilder
|
// It should be initialized by Slice generated by BitsBuilder
|
||||||
using MultiGetRange = MultiGetContext::Range;
|
|
||||||
class FilterBitsReader {
|
class FilterBitsReader {
|
||||||
public:
|
public:
|
||||||
virtual ~FilterBitsReader() {}
|
virtual ~FilterBitsReader() {}
|
||||||
|
@ -18,23 +18,27 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <memory>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include "db/dbformat.h"
|
||||||
|
#include "format.h"
|
||||||
#include "rocksdb/options.h"
|
#include "rocksdb/options.h"
|
||||||
#include "rocksdb/slice.h"
|
#include "rocksdb/slice.h"
|
||||||
#include "rocksdb/slice_transform.h"
|
#include "rocksdb/slice_transform.h"
|
||||||
#include "rocksdb/table.h"
|
#include "rocksdb/table.h"
|
||||||
|
#include "table/multiget_context.h"
|
||||||
#include "util/hash.h"
|
#include "util/hash.h"
|
||||||
#include "format.h"
|
|
||||||
|
|
||||||
namespace rocksdb {
|
namespace rocksdb {
|
||||||
|
|
||||||
const uint64_t kNotValid = ULLONG_MAX;
|
const uint64_t kNotValid = ULLONG_MAX;
|
||||||
class FilterPolicy;
|
class FilterPolicy;
|
||||||
|
|
||||||
|
using MultiGetRange = MultiGetContext::Range;
|
||||||
|
|
||||||
// A FilterBlockBuilder is used to construct all of the filters for a
|
// A FilterBlockBuilder is used to construct all of the filters for a
|
||||||
// particular Table. It generates a single string which is stored as
|
// particular Table. It generates a single string which is stored as
|
||||||
// a special block in the Table.
|
// a special block in the Table.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user