Skip to content

Commit 2b93a30

Browse files
Support Utf8View in Unparser (#65)
1 parent e8e0f5b commit 2b93a30

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

datafusion/sql/src/unparser/expr.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1417,9 +1417,7 @@ impl Unparser<'_> {
14171417
}
14181418
DataType::Utf8 => Ok(self.dialect.utf8_cast_dtype()),
14191419
DataType::LargeUtf8 => Ok(self.dialect.large_utf8_cast_dtype()),
1420-
DataType::Utf8View => {
1421-
not_impl_err!("Unsupported DataType: conversion: {data_type:?}")
1422-
}
1420+
DataType::Utf8View => Ok(self.dialect.utf8_cast_dtype()),
14231421
DataType::List(_) => {
14241422
not_impl_err!("Unsupported DataType: conversion: {data_type:?}")
14251423
}

0 commit comments

Comments
 (0)