mirror of https://gitee.com/bigwinds/arangodb
fix windows warnings (#9326)
This commit is contained in:
parent
33ce94379f
commit
739b6f273e
|
@ -96,14 +96,6 @@ void RocksDBBuilderIndex::toVelocyPack(VPackBuilder& builder,
|
|||
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.
|
||||
Result RocksDBBuilderIndex::insert(transaction::Methods& trx, RocksDBMethods* mthd,
|
||||
LocalDocumentId const& documentId,
|
||||
|
|
|
@ -44,11 +44,6 @@ class RocksDBBuilderIndex final : public arangodb::RocksDBIndex {
|
|||
void toVelocyPack(velocypack::Builder& builder,
|
||||
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(); }
|
||||
|
||||
IndexType type() const override { return _wrapped->type(); }
|
||||
|
|
Loading…
Reference in New Issue