findepi opened a new issue, #17533:
URL: https://github.com/apache/datafusion/issues/17533
### Describe the bug
```
DataFusion CLI v50.0.0
> SELECT CAST(DATE '9999-12-31' AS varchar);
This feature is not implemented: Unsupported CAST from Date32 to Utf8View
```
### To Reproduce
```shell
cargo run --bin datafusion-cli -- --command "SELECT CAST(DATE '9999-12-31'
AS varchar);"
```
### Expected behavior
```
+--------------------+
| Utf8("9999-12-31") |
+--------------------+
| 9999-12-31 |
+--------------------+
1 row(s) fetched.
Elapsed 0.057 seconds.
```
### Additional context
This used to work in DataFusion 47.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]