We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 415c40e commit 8ca7f69Copy full SHA for 8ca7f69
vortex-vector/src/vector_mut.rs
@@ -66,10 +66,9 @@ impl VectorMut {
66
DType::Decimal(decimal_dtype, _) => {
67
DecimalVectorMut::with_capacity(decimal_dtype, capacity).into()
68
}
69
- DType::Utf8(_)
70
- | DType::Binary(_)
71
- | DType::List(..)
72
- | DType::Extension(_) => vortex_panic!("Unsupported dtype for VectorMut"),
+ DType::Utf8(_) | DType::Binary(_) | DType::List(..) | DType::Extension(_) => {
+ vortex_panic!("Unsupported dtype for VectorMut")
+ }
73
74
75
0 commit comments