Spark-compatible `hex` function
(args: &[ColumnarValue])
| 219 | |
| 220 | /// Spark-compatible `hex` function |
| 221 | pub fn spark_hex(args: &[ColumnarValue]) -> Result<ColumnarValue, DataFusionError> { |
| 222 | compute_hex(args, false) |
| 223 | } |
| 224 | |
| 225 | /// Spark-compatible `sha2` function |
| 226 | pub fn spark_sha2_hex(args: &[ColumnarValue]) -> Result<ColumnarValue, DataFusionError> { |
searching dependent graphs…