@@ -327,6 +327,9 @@ static std::unordered_map<std::string, OptionTypeInfo>
327
327
{offsetof (struct ImmutableDBOptions , enable_pipelined_write),
328
328
OptionType::kBoolean , OptionVerificationType::kNormal ,
329
329
OptionTypeFlags::kNone }},
330
+ {" enable_pipelined_commit" ,
331
+ {0 , OptionType::kBoolean , OptionVerificationType::kDeprecated ,
332
+ OptionTypeFlags::kNone }},
330
333
{" enable_multi_batch_write" ,
331
334
{offsetof (struct ImmutableDBOptions , enable_multi_batch_write),
332
335
OptionType::kBoolean , OptionVerificationType::kNormal ,
@@ -922,8 +925,7 @@ void ImmutableDBOptions::Dump(Logger* log) const {
922
925
ROCKS_LOG_HEADER (log , " Options.wal_compression: %d" ,
923
926
wal_compression);
924
927
ROCKS_LOG_HEADER (log , " Options.atomic_flush: %d" , atomic_flush);
925
- ROCKS_LOG_HEADER (log ,
926
- " Options.avoid_unnecessary_blocking_io: %d" ,
928
+ ROCKS_LOG_HEADER (log , " Options.avoid_unnecessary_blocking_io: %d" ,
927
929
avoid_unnecessary_blocking_io);
928
930
ROCKS_LOG_HEADER (log , " Options.persist_stats_to_disk: %u" ,
929
931
persist_stats_to_disk);
@@ -1060,14 +1062,13 @@ void MutableDBOptions::Dump(Logger* log) const {
1060
1062
ROCKS_LOG_HEADER (log ,
1061
1063
" Options.wal_bytes_per_sync: %" PRIu64,
1062
1064
wal_bytes_per_sync);
1063
- ROCKS_LOG_HEADER (log ,
1064
- " Options.strict_bytes_per_sync: %d" ,
1065
+ ROCKS_LOG_HEADER (log , " Options.strict_bytes_per_sync: %d" ,
1065
1066
strict_bytes_per_sync);
1066
1067
ROCKS_LOG_HEADER (log ,
1067
1068
" Options.compaction_readahead_size: %" ROCKSDB_PRIszt,
1068
1069
compaction_readahead_size);
1069
1070
ROCKS_LOG_HEADER (log , " Options.max_background_flushes: %d" ,
1070
- max_background_flushes);
1071
+ max_background_flushes);
1071
1072
ROCKS_LOG_HEADER (log , " Options.daily_offpeak_time_utc: %s" ,
1072
1073
daily_offpeak_time_utc.c_str ());
1073
1074
}
0 commit comments