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
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.
DataFusion 48.x is the first release affected.
Describe the bug
To Reproduce
cargo run --bin datafusion-cli -- --command "SELECT CAST(DATE '9999-12-31' AS varchar);"Expected behavior
Additional context
This used to work in DataFusion 47.
DataFusion 48.x is the first release affected.