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:
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user