0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-18 02:43:53 +02:00

deps: Upgrade RocksDB.

This commit is contained in:
Jason Volk 2018-12-09 15:29:49 -08:00
parent 8cad778565
commit f5b431005d
3 changed files with 3 additions and 3 deletions

View file

@ -1202,7 +1202,7 @@ AC_HELP_STRING([--with-included-rocksdb[[[=shared]]]], [Use the RocksDB sources
AC_SUBST(ROCKSDB_LIBS, ["-lrocksdb"])
fi
bash tools/buildrocks.sh $rocksdb_linkage "v5.15.10"
bash tools/buildrocks.sh $rocksdb_linkage "v5.16.6"
AS_IF([ test $? != 0 ],
[
AC_MSG_ERROR([Failed to build RocksDB])

2
deps/rocksdb vendored

@ -1 +1 @@
Subproject commit 7e1f37eb4fc711dbf3ecc9610178931f00754de8
Subproject commit cfdea78fdeb9332cb7688da7f23790e36254d4e3

View file

@ -23,7 +23,7 @@ struct ircd::db::database::comparator final
database *d;
db::comparator user;
bool CanKeysWithDifferentByteContentsBeEqual() const noexcept; //TODO: override
bool CanKeysWithDifferentByteContentsBeEqual() const noexcept override;
bool IsSameLengthImmediateSuccessor(const Slice &s, const Slice &t) const noexcept override;
void FindShortestSeparator(std::string *start, const Slice &limit) const noexcept override;
void FindShortSuccessor(std::string *key) const noexcept override;