mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-08 16:03:20 +00:00
mvcc: Allow dereferencing partition_snapshot_row_weakref
This commit is contained in:
@@ -81,6 +81,12 @@ public:
|
||||
}
|
||||
return false;
|
||||
}
|
||||
rows_entry* operator->() const {
|
||||
return &*_it;
|
||||
}
|
||||
rows_entry& operator*() const {
|
||||
return *_it;
|
||||
}
|
||||
};
|
||||
|
||||
// Allows iterating over rows of mutation_partition represented by given partition_snapshot.
|
||||
|
||||
Reference in New Issue
Block a user