Move IKeyValueContainer from flow to fdbserver

This commit is contained in:
sfc-gh-tclinkenbeard 2020-11-15 12:04:36 -08:00
parent 575b36bf53
commit fff8e34b4d
4 changed files with 9 additions and 8 deletions

View File

@ -25,6 +25,7 @@ set(FDBSERVER_SRCS
FDBExecHelper.actor.h
GrvProxyServer.actor.cpp
IDiskQueue.h
IKeyValueContainer.h
IKeyValueStore.h
IPager.h
IVersionedStore.h

View File

@ -21,7 +21,7 @@
#define IKEYVALUECONTAINER_H
#pragma once
#include "IndexedSet.h"
#include "flow/IndexedSet.h"
// Stored in the IndexedSets that hold the database.
// Each KeyValueMapPair is 32 bytes, excluding arena memory.

View File

@ -18,15 +18,15 @@
* limitations under the License.
*/
#include "fdbserver/IKeyValueStore.h"
#include "fdbserver/IDiskQueue.h"
#include "fdbserver/RadixTree.h"
#include "flow/IKeyValueContainer.h"
#include "flow/ActorCollection.h"
#include "fdbclient/Notified.h"
#include "fdbclient/SystemData.h"
#include "flow/actorcompiler.h" // This must be the last #include.
#include "fdbserver/DeltaTree.h"
#include "fdbserver/IDiskQueue.h"
#include "fdbserver/IKeyValueContainer.h"
#include "fdbserver/IKeyValueStore.h"
#include "fdbserver/RadixTree.h"
#include "flow/ActorCollection.h"
#include "flow/actorcompiler.h" // This must be the last #include.
#define OP_DISK_OVERHEAD (sizeof(OpHeader) + 1)

View File

@ -31,8 +31,8 @@
#include <map>
#include <stdexcept>
#include "fdbserver/IKeyValueContainer.h"
#include "flow/Arena.h"
#include "flow/IKeyValueContainer.h"
// forward declaration
const int LEAF_BYTE = -1;