encode_base64
Aliases: encodebase64 (deprecated).
encode_base64(str: string, [urlSafe: const bool]?) -> string
EncodeBase64 encodes the input in the base64 format
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
Examples
make_col encoded:encode_base64(log)
Encodes the value of the field log in the base64 encoding
make_col encoded:encode_base64(log, true)
Encodes the value of the field log in the url safe base64 encoding
Updated 8 days ago