Spark-compatible `sha2` function
(args: &[ColumnarValue])
| 224 | |
| 225 | /// Spark-compatible `sha2` function |
| 226 | pub fn spark_sha2_hex(args: &[ColumnarValue]) -> Result<ColumnarValue, DataFusionError> { |
| 227 | compute_hex(args, true) |
| 228 | } |
| 229 | |
| 230 | pub fn compute_hex( |
| 231 | args: &[ColumnarValue], |
nothing calls this directly
no test coverage detected
searching dependent graphs…