Scalar Functions
Binary string functions
Scalar functions for manipulating binary strings
Arroyo’s Scalar function implementations are based on Apache DataFusion and these docs are derived from the DataFusion function reference.
encode
Encode binary data into a textual representation.
Arguments
-
expression: Expression containing string or binary data
-
format: Supported formats are:
base64
,hex
Related functions: decode
decode
Decode binary data from textual representation in string.
Arguments
-
expression: Expression containing encoded string data
-
format: Same arguments as encode
Related functions: encode