From 47fd57482984ce7d5e77ac8872e8a58a5cc2a5c9 Mon Sep 17 00:00:00 2001 From: Sagar Vemuri Date: Mon, 22 Apr 2019 15:24:04 -0700 Subject: [PATCH] Log file_creation_time table property (#5232) Summary: Log file_creation_time table property when a new table file is created. Pull Request resolved: https://github.com/facebook/rocksdb/pull/5232 Differential Revision: D15033069 Pulled By: sagar0 fbshipit-source-id: aaac56a4c03a8f96c338cad1b0cdb7fbfb887647 --- db/event_helpers.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db/event_helpers.cc b/db/event_helpers.cc index 9da946893..f1b4b6417 100644 --- a/db/event_helpers.cc +++ b/db/event_helpers.cc @@ -120,7 +120,8 @@ void EventHelpers::LogAndNotifyTableFileCreationFinished( << table_properties.compression_name << "compression_options" << table_properties.compression_options << "creation_time" << table_properties.creation_time << "oldest_key_time" - << table_properties.oldest_key_time; + << table_properties.oldest_key_time << "file_creation_time" + << table_properties.file_creation_time; // user collected properties for (const auto& prop : table_properties.readable_properties) {