mirror of https://github.com/facebook/rocksdb.git
19 lines
322 B
C++
19 lines
322 B
C++
#ifndef MERGE_OPERATORS_H
|
|
#define MERGE_OPERATORS_H
|
|
|
|
#include <memory>
|
|
|
|
#include "leveldb/merge_operator.h"
|
|
|
|
namespace leveldb {
|
|
|
|
class MergeOperators {
|
|
public:
|
|
static std::shared_ptr<leveldb::MergeOperator> CreatePutOperator();
|
|
static std::shared_ptr<leveldb::MergeOperator> CreateUInt64AddOperator();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|