refactor: remove Clone derive on CompletedPersist
This type is exposed as an Arc-wrapped (reference counted) shared item to avoid cloning the underlying data, and as such this type should not be cloned directly.pull/24376/head
parent
ece8641767
commit
43d174b891
|
@ -22,7 +22,7 @@ pub(crate) trait PersistCompletionObserver: Send + Sync + Debug {
|
|||
}
|
||||
|
||||
/// A set of details describing the persisted data.
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Debug)]
|
||||
pub struct CompletedPersist {
|
||||
/// The catalog identifiers for the persisted partition.
|
||||
namespace_id: NamespaceId,
|
||||
|
|
Loading…
Reference in New Issue