summaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
Diffstat (limited to 'storageapi')
-rw-r--r--storageapi/src/vespa/storageapi/message/bucket.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/storageapi/src/vespa/storageapi/message/bucket.h b/storageapi/src/vespa/storageapi/message/bucket.h
index ec1df33a285..45af2296e8a 100644
--- a/storageapi/src/vespa/storageapi/message/bucket.h
+++ b/storageapi/src/vespa/storageapi/message/bucket.h
@@ -254,6 +254,8 @@ public:
GetBucketDiffCommand::Entry _entry;
vespalib::string _docName;
std::vector<char> _headerBlob;
+ // TODO: In theory the body blob could be removed now as all is in one blob
+ // That will enable simplification of code in document.
std::vector<char> _bodyBlob;
const document::DocumentTypeRepo *_repo;
@@ -282,7 +284,7 @@ public:
ApplyBucketDiffCommand(const document::Bucket &bucket,
const std::vector<Node>& nodes,
uint32_t maxBufferSize);
- ~ApplyBucketDiffCommand();
+ ~ApplyBucketDiffCommand() override;
const std::vector<Node>& getNodes() const { return _nodes; }
const std::vector<Entry>& getDiff() const { return _diff; }