summaryrefslogtreecommitdiff
path: root/db/builder.h
diff options
context:
space:
mode:
Diffstat (limited to 'db/builder.h')
-rw-r--r--db/builder.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/db/builder.h b/db/builder.h
index c00c8273c..34a4bff1a 100644
--- a/db/builder.h
+++ b/db/builder.h
@@ -50,7 +50,8 @@ TableBuilder* NewTableBuilder(
const uint64_t sample_for_compression,
const CompressionOptions& compression_opts, int level,
const bool skip_filters = false, const uint64_t creation_time = 0,
- const uint64_t oldest_key_time = 0, const uint64_t target_file_size = 0);
+ const uint64_t oldest_key_time = 0, const uint64_t target_file_size = 0,
+ const uint64_t file_creation_time = 0);
// Build a Table file from the contents of *iter. The generated file
// will be named according to number specified in meta. On success, the rest of
@@ -80,6 +81,7 @@ extern Status BuildTable(
const Env::IOPriority io_priority = Env::IO_HIGH,
TableProperties* table_properties = nullptr, int level = -1,
const uint64_t creation_time = 0, const uint64_t oldest_key_time = 0,
- Env::WriteLifeTimeHint write_hint = Env::WLTH_NOT_SET);
+ Env::WriteLifeTimeHint write_hint = Env::WLTH_NOT_SET,
+ const uint64_t file_creation_time = 0);
} // namespace rocksdb