more cleanup before merge
This commit is contained in:
parent
912ef76f1c
commit
85f64bf42c
|
@ -27,7 +27,6 @@
|
|||
#include "fdbclient/CommitTransaction.h"
|
||||
#include "fdbclient/FDBTypes.h"
|
||||
|
||||
// TODO should GranuleSnapshot and GranuleDeltas just be typedefs instead of subclasses?
|
||||
// file format of actual blob files
|
||||
struct GranuleSnapshot : VectorRef<KeyValueRef> {
|
||||
|
||||
|
@ -48,7 +47,6 @@ struct GranuleDeltas : VectorRef<MutationsAndVersionRef> {
|
|||
}
|
||||
};
|
||||
|
||||
// TODO better name?
|
||||
struct BlobFilePointerRef {
|
||||
constexpr static FileIdentifier file_identifier = 5253554;
|
||||
StringRef filename;
|
||||
|
|
|
@ -1753,7 +1753,6 @@ ACTOR Future<ChangeFeedReply> getChangeFeedMutations(StorageServer* data, Change
|
|||
reply.arena, MutationsAndVersionRef(finalVersion, finalVersion == dequeVersion ? dequeKnownCommit : 0));
|
||||
}
|
||||
|
||||
// TODO REMOVE or only do if mutation tracking is enabled
|
||||
if (MUTATION_TRACKING_ENABLED) {
|
||||
for (auto& mutations : reply.mutations) {
|
||||
for (auto& m : mutations.mutations) {
|
||||
|
|
Loading…
Reference in New Issue