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();
|
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,
|
||||||
|
|
|
@ -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(); }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue