diff --git a/sstables/sstables.cc b/sstables/sstables.cc index 2d01cbcda5..739619c932 100644 --- a/sstables/sstables.cc +++ b/sstables/sstables.cc @@ -878,12 +878,14 @@ future<> sstable::load() { } future<> sstable::store() { - // TODO: write other components as well. + _components.erase(component_type::Index); + _components.erase(component_type::Data); return seastar::async([this] { write_statistics(); write_compression(); write_filter(); write_summary(); + write_toc(); }); }