Skip to content

Commit 06c013d

Browse files
committed
Fix tests
1 parent 2045495 commit 06c013d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

datafusion/common/src/config.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,11 @@ where
987987
{
988988
input.parse().map_err(|e| {
989989
DataFusionError::Context(
990-
format!("Error parsing '{}' as {}", input, stringify!(T),),
990+
format!(
991+
"Error parsing '{}' as {}",
992+
input,
993+
std::any::type_name::<T>()
994+
),
991995
Box::new(DataFusionError::External(Box::new(e))),
992996
)
993997
})

0 commit comments

Comments
 (0)