I have a parquet dataset where I saved a byte_array.
I am using Apache Drill to query the dataset:
SELECT id, x, y FROM `dfs.root`.`./data`
This gives me:
+--------------------------------------+-------------+-------------+
| ID | X | Y |
+--------------------------------------+-------------+-------------+
| 0A3D27D8-DEC5-54D6-6A8E-8FD5CF721E1C | [B@654e7f63 | [B@39a668e8 |
+--------------------------------------+-------------+-------------+
How do I convert the binary object ID to an actual Python byte_array when querying with PyDrill?