Skip to content

Commit 9e80295

Browse files
committed
Improve Display for NativeType
1 parent 0ebb1bd commit 9e80295

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/common/src/types/native.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ pub enum NativeType {
185185

186186
impl Display for NativeType {
187187
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
188-
write!(f, "NativeType::{self:?}")
188+
write!(f, "{self:?}") // TODO: nicer formatting
189189
}
190190
}
191191

0 commit comments

Comments
 (0)