aboutsummaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-01-20 17:29:16 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-01-20 17:29:16 +0000
commitd6a77cbf0cf342f2091c9c92c58ace6ed4951b89 (patch)
treee97fa099e2a6b24e9253ec9e108b3f7a07b316b7 /storageapi
parentd47460a83e0cc3938ccc69327f433f110a6cf2da (diff)
Add TODO for next commit.
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; }