From eb65f8ed6bb2f93efd7e9e8ae3d21283bf264f2e Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Fri, 16 Apr 2021 13:38:45 +0300 Subject: [PATCH] cache_flat_mutation_reader: Fix trace message text The entry inserted in this branch is not dummy, but an empty row. Signed-off-by: Pavel Emelyanov --- cache_flat_mutation_reader.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache_flat_mutation_reader.hh b/cache_flat_mutation_reader.hh index cbcad7f2e2..60de186465 100644 --- a/cache_flat_mutation_reader.hh +++ b/cache_flat_mutation_reader.hh @@ -361,7 +361,7 @@ future<> cache_flat_mutation_reader::read_from_underlying(db::timeout_clock::tim e.release(); auto next = std::next(it); it->set_continuous(next->continuous()); - clogger.trace("csm {}: inserted dummy at {}, cont={}", fmt::ptr(this), it->position(), it->continuous()); + clogger.trace("csm {}: inserted empty row at {}, cont={}", fmt::ptr(this), it->position(), it->continuous()); } }); } else if (ensure_population_lower_bound()) {