Jefffrey commented on issue #6521:
URL: https://github.com/apache/datafusion/issues/6521#issuecomment-3706963990
Works on main like so:
```sql
> select arrow_typeof(X'FF01');
+-------------------------------+
| arrow_typeof(Binary("255,1")) |
+-------------------------------+
| Binary |
+-------------------------------+
1 row(s) fetched.
Elapsed 0.004 seconds.
> select arrow_cast(X'DEADBEEF', 'FixedSizeBinary(4)');
+------------------------------------------------------------------+
| arrow_cast(Binary("222,173,190,239"),Utf8("FixedSizeBinary(4)")) |
+------------------------------------------------------------------+
| deadbeef |
+------------------------------------------------------------------+
1 row(s) fetched.
Elapsed 0.003 seconds.
```
--
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]