Skip to content

Commit a2dc225

Browse files
Update datum.rs
1 parent 1d12841 commit a2dc225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vortex-compute/src/comparison/datum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ where
2323
match (self.into_typed(), rhs.into_typed()) {
2424
(TypedDatum::Bool(d1), TypedDatum::Bool(d2)) => d1.compare(d2),
2525
(TypedDatum::Primitive(d1), TypedDatum::Primitive(d2)) => d1.compare(d2),
26-
_ => unreachable!(""),
26+
_ => todo!(""),
2727
}
2828
}
2929
}

0 commit comments

Comments
 (0)