mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
9ab0d7b4e9
Copy of commit dcd9379eb5707bc7514a2ff4d9127790356505cb Author: Manuel Ung <mung@fb.com> Date: Fri Jun 14 10:38:17 2019 -0700 Skip valgrind for rocksdb.force_shutdown Summary: This test does unclean shutdown, and leaks memory. Squash with: D15749084 Reviewed By: hermanlee Differential Revision: D15828957 fbshipit-source-id: 30541455d74
85 lines
2.8 KiB
C++
85 lines
2.8 KiB
C++
/*
|
|
Copyright (c) 2012,2015 Monty Program Ab
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */
|
|
#pragma once
|
|
|
|
/* C++ system header files */
|
|
#include <string>
|
|
|
|
/* MySQL includes */
|
|
#include "./m_ctype.h"
|
|
|
|
/* RocksDB header files */
|
|
#include "rocksdb/comparator.h"
|
|
|
|
/* MyRocks header files */
|
|
#include "./rdb_utils.h"
|
|
|
|
namespace myrocks {
|
|
|
|
/*
|
|
The keys are in form: {index_number} {mem-comparable-key}
|
|
|
|
(todo: knowledge about this format is shared between this class and
|
|
Rdb_key_def)
|
|
*/
|
|
class Rdb_pk_comparator : public rocksdb::Comparator {
|
|
public:
|
|
Rdb_pk_comparator(const Rdb_pk_comparator &) = delete;
|
|
Rdb_pk_comparator &operator=(const Rdb_pk_comparator &) = delete;
|
|
Rdb_pk_comparator() = default;
|
|
|
|
// extracting from rocksdb::BytewiseComparator()->Compare() for optimization
|
|
int Compare(const rocksdb::Slice &a, const rocksdb::Slice &b) const override {
|
|
return a.compare(b);
|
|
}
|
|
|
|
const char *Name() const override { return "RocksDB_SE_v3.10"; }
|
|
|
|
// TODO: advanced funcs:
|
|
// - FindShortestSeparator
|
|
// - FindShortSuccessor
|
|
|
|
// for now, do-nothing implementations:
|
|
void FindShortestSeparator(std::string *start,
|
|
const rocksdb::Slice &limit) const override {
|
|
rocksdb::BytewiseComparator()->FindShortestSeparator(start, limit);
|
|
}
|
|
void FindShortSuccessor(std::string *key) const override {
|
|
rocksdb::BytewiseComparator()->FindShortSuccessor(key);
|
|
}
|
|
};
|
|
|
|
class Rdb_rev_comparator : public rocksdb::Comparator {
|
|
public:
|
|
Rdb_rev_comparator(const Rdb_rev_comparator &) = delete;
|
|
Rdb_rev_comparator &operator=(const Rdb_rev_comparator &) = delete;
|
|
Rdb_rev_comparator() = default;
|
|
|
|
// extracting from rocksdb::BytewiseComparator()->Compare() for optimization
|
|
int Compare(const rocksdb::Slice &a, const rocksdb::Slice &b) const override {
|
|
return -a.compare(b);
|
|
}
|
|
const char *Name() const override { return "rev:RocksDB_SE_v3.10"; }
|
|
void FindShortestSeparator(std::string *start,
|
|
const rocksdb::Slice &limit) const override {
|
|
rocksdb::ReverseBytewiseComparator()->FindShortestSeparator(start, limit);
|
|
}
|
|
void FindShortSuccessor(std::string *key) const override {
|
|
rocksdb::ReverseBytewiseComparator()->FindShortSuccessor(key);
|
|
}
|
|
};
|
|
|
|
} // namespace myrocks
|