1
0
Fork 0

fix windows warnings (#9326)

This commit is contained in:
Simon 2019-06-26 09:24:43 +02:00 committed by Frank Celler
parent 33ce94379f
commit 739b6f273e
2 changed files with 0 additions and 13 deletions

View File

@ -96,14 +96,6 @@ void RocksDBBuilderIndex::toVelocyPack(VPackBuilder& builder,
builder.close(); builder.close();
} }
std::unique_ptr<IndexIterator> RocksDBBuilderIndex::iteratorForCondition(transaction::Methods* /* trx */,
aql::AstNode const* /* node */,
aql::Variable const* /* reference */,
IndexIteratorOptions const& /* opts */) {
LOG_DEVEL << "index with ID " << _iid;
TRI_ASSERT(false);
}
/// insert index elements into the specified write batch. /// insert index elements into the specified write batch.
Result RocksDBBuilderIndex::insert(transaction::Methods& trx, RocksDBMethods* mthd, Result RocksDBBuilderIndex::insert(transaction::Methods& trx, RocksDBMethods* mthd,
LocalDocumentId const& documentId, LocalDocumentId const& documentId,

View File

@ -43,11 +43,6 @@ class RocksDBBuilderIndex final : public arangodb::RocksDBIndex {
/// @brief return a VelocyPack representation of the index /// @brief return a VelocyPack representation of the index
void toVelocyPack(velocypack::Builder& builder, void toVelocyPack(velocypack::Builder& builder,
std::underlying_type<Index::Serialize>::type) const override; std::underlying_type<Index::Serialize>::type) const override;
std::unique_ptr<IndexIterator> iteratorForCondition(transaction::Methods* /* trx */,
aql::AstNode const* /* node */,
aql::Variable const* /* reference */,
IndexIteratorOptions const& /* opts */) override;
char const* typeName() const override { return _wrapped->typeName(); } char const* typeName() const override { return _wrapped->typeName(); }