query-results: Use mu-document as backend

So the mu-specific serialization/deserialization gets handled correctly
This commit is contained in:
Dirk-Jan C. Binnema
2022-04-30 01:19:52 +03:00
parent a864616110
commit 91d2a37379
2 changed files with 33 additions and 28 deletions

View File

@ -59,7 +59,6 @@ public:
Document(const Document& rhs) { *this = rhs; }
/**
* Move CTOR
*
*/
Document(Document&& rhs) {*this = std::move(rhs); }
@ -94,6 +93,13 @@ public:
return *this;
}
/**
* Get the doc-id for this document
*
* @return the docid
*/
Xapian::docid docid() const { return xdoc_.get_docid(); }
/*
* updating a document with terms & values
*/