clustering_row: Add new .apply() overload

The clustering_row is a wrapper over the deletable_row and
facilitates the apply-creation of the latter from some other
objects. Soon it will accept the deletable_row itself for
apply()-ing.

Signed-off-by: Pavel Emelyanov <xemul@scylladb.com>
This commit is contained in:
Pavel Emelyanov
2021-04-08 13:48:52 +03:00
parent b9175edea4
commit 772fe2b089

View File

@@ -97,6 +97,9 @@ public:
void apply(const schema& s, const rows_entry& r) {
_row.apply(s, deletable_row(s, r.row()));
}
void apply(const schema& s, const deletable_row& r) {
_row.apply(s, deletable_row(s, r));
}
position_in_partition_view position() const;