Hello Dremio,
We have Hbase table in Datasets which contains encoded binary string in one column, which includes the character €,´,ü and so on.( but it is encoded as binary string and stored in that column) Characters list are here(https://www.i18nqa.com/debug/utf8-debug.html)
I wants to decode the binary string to actual String (to those characters which I mentioned above)
I tried with CAST function
SELECT CAST(test_value AS VARCHAR)
FROM table_name
It is working well for the normal string. But throwing exception for the row contains the special string(Binary string format)
Error : Unexpected byte 0xb4 at position 39076 encountered while decoding UTF8 string.
Is there any functions to convert the special character strings which is in the form of encoded binary string?