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