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 e8e0f5b commit 2b93a30Copy full SHA for 2b93a30
datafusion/sql/src/unparser/expr.rs
@@ -1417,9 +1417,7 @@ impl Unparser<'_> {
1417
}
1418
DataType::Utf8 => Ok(self.dialect.utf8_cast_dtype()),
1419
DataType::LargeUtf8 => Ok(self.dialect.large_utf8_cast_dtype()),
1420
- DataType::Utf8View => {
1421
- not_impl_err!("Unsupported DataType: conversion: {data_type:?}")
1422
- }
+ DataType::Utf8View => Ok(self.dialect.utf8_cast_dtype()),
1423
DataType::List(_) => {
1424
not_impl_err!("Unsupported DataType: conversion: {data_type:?}")
1425
0 commit comments