1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

Update to 6.4.6

Changes:	https://github.com/facebook/rocksdb/releases
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-11-18 18:10:29 +00:00
parent 0acdcb763f
commit b9d48941e4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=517882
4 changed files with 25 additions and 4 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= rocksdb
PORTVERSION= 6.3.6
PORTVERSION= 6.4.6
DISTVERSIONPREFIX= v
CATEGORIES= databases

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1571671533
SHA256 (facebook-rocksdb-v6.3.6_GH0.tar.gz) = 9878beb4e9b74a5f0d9500772235a39066fd019ba7af9ae6afe483ca713e3c7c
SIZE (facebook-rocksdb-v6.3.6_GH0.tar.gz) = 5573722
TIMESTAMP = 1573888131
SHA256 (facebook-rocksdb-v6.4.6_GH0.tar.gz) = 540bbf9369a31e0891fcb4056a36ffa439c59fc179aa0b1f46e3478417f97643
SIZE (facebook-rocksdb-v6.4.6_GH0.tar.gz) = 5651221

View File

@ -0,0 +1,10 @@
--- table/get_context.h.orig 2019-10-30 17:32:00 UTC
+++ table/get_context.h
@@ -88,7 +88,6 @@ class GetContext {
ReadCallback* callback = nullptr, bool* is_blob_index = nullptr,
uint64_t tracing_get_id = 0);
- GetContext() = default;
// This can be called to indicate that a key may be present, but cannot be
// confirmed due to IO not allowed

View File

@ -0,0 +1,11 @@
--- tools/block_cache_analyzer/block_cache_trace_analyzer.cc.orig 2019-10-30 17:32:00 UTC
+++ tools/block_cache_analyzer/block_cache_trace_analyzer.cc
@@ -580,7 +580,7 @@ void BlockCacheTraceAnalyzer::WriteCorre
const std::map<std::string, Features>& label_features,
const std::map<std::string, Predictions>& label_predictions,
uint32_t max_number_of_values) const {
- std::default_random_engine rand_engine(env_->NowMicros());
+ std::default_random_engine rand_engine(static_cast<unsigned int>(env_->NowMicros()));
for (auto const& label_feature_vectors : label_features) {
const Features& past = label_feature_vectors.second;
auto it = label_predictions.find(label_feature_vectors.first);