table: Get rid of table::run_compaction helper

The table::run_compaction is a trivial wrapper for
table::compact_sstables.

We have lots of similar {start, trigger, run}_compaction functions.
Dropping the run_compaction wrapper to reduce confusion.

Closes #9161
This commit is contained in:
Asias He
2021-08-08 19:37:00 +08:00
committed by Avi Kivity
parent e115fce8f7
commit 4ae6eae00a
3 changed files with 2 additions and 7 deletions

View File

@@ -881,7 +881,6 @@ public:
void start_compaction();
void trigger_compaction();
void try_trigger_compaction() noexcept;
future<> run_compaction(sstables::compaction_descriptor descriptor);
void trigger_offstrategy_compaction();
future<> run_offstrategy_compaction();
void set_compaction_strategy(sstables::compaction_strategy_type strategy);