mutation_partition: operator<<(mutation_partition::printer)

Include row tombstones in the row printout.

Signed-off-by: Botond Dénes <bdenes@scylladb.com>
Message-Id: <20210305094106.210249-1-bdenes@scylladb.com>
This commit is contained in:
Botond Dénes
2021-03-05 11:41:06 +02:00
committed by Avi Kivity
parent 45471419d0
commit debaae41f9

View File

@@ -998,6 +998,9 @@ operator<<(std::ostream& os, const mutation_partition::printer& p) {
if (!row.marker().is_missing()) {
os << indent << indent << indent << "marker: " << row.marker() << ",\n";
}
if (row.deleted_at()) {
os << indent << indent << indent << "tombstone: " << row.deleted_at() << ",\n";
}
position_in_partition pip(re.position());
if (pip.get_clustering_key_prefix()) {