89cc06b3e7
Summary: Execute randomly generated operations on both a DB and a std::map, then reopen the DB and make sure that iterating the DB produces the same key-value pairs as iterating through the std::map. Pull Request resolved: https://github.com/facebook/rocksdb/pull/7762 Test Plan: cd fuzz && make db_map_fuzzer && ./db_map_fuzzer Reviewed By: pdillinger Differential Revision: D25437485 Pulled By: cheng-chang fbshipit-source-id: 3a93f7efd046b194193e45d2ab1ad81565510781
28 lines
691 B
Protocol Buffer
28 lines
691 B
Protocol Buffer
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
// (found in the LICENSE.Apache file in the root directory).
|
|
|
|
// Defines database operations.
|
|
// Each operation is a key-value pair and an operation type.
|
|
|
|
syntax = "proto2";
|
|
|
|
enum OpType {
|
|
PUT = 0;
|
|
DELETE = 2;
|
|
DELETE_RANGE = 3;
|
|
}
|
|
|
|
message DBOperation {
|
|
required string key = 1;
|
|
// value is ignored for DELETE.
|
|
// [key, value] is the range for DELETE_RANGE.
|
|
optional string value = 2;
|
|
required OpType type = 3;
|
|
}
|
|
|
|
message DBOperations {
|
|
repeated DBOperation operations = 1;
|
|
}
|