full_history_ts_low should be const (#10411)

Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/10411

Reviewed By: jay-zhuang

Differential Revision: D38131644

Pulled By: riversand963

fbshipit-source-id: d241521dccff1ab8882ae0726ec368f84b7e8311
This commit is contained in:
Jay Lee 2022-07-25 17:38:39 -07:00 committed by Facebook GitHub Bot
parent 2fc6df37d6
commit 84e9b6ee2d

View file

@ -1865,7 +1865,7 @@ struct CompactRangeOptions {
uint32_t max_subcompactions = 0;
// Set user-defined timestamp low bound, the data with older timestamp than
// low bound maybe GCed by compaction. Default: nullptr
Slice* full_history_ts_low = nullptr;
const Slice* full_history_ts_low = nullptr;
// Allows cancellation of an in-progress manual compaction.
//