chores: Address CR comment

This commit is contained in:
evenyag
2022-06-14 16:53:12 +08:00
parent 268598eb57
commit 7700a167f2
3 changed files with 63 additions and 61 deletions

View File

@@ -15,11 +15,5 @@ pub trait MutableVector: Send + Sync {
fn as_mut_any(&mut self) -> &mut dyn Any;
// /// Push a value into the mutable vector.
// ///
// /// # Panics
// /// Panics if the data type of the value differs from the mutable vector's data type.
// fn push_value(&mut self, value: &Value);
fn to_vector(&mut self) -> VectorRef;
}