()
| 212 | |
| 213 | #[test] |
| 214 | fn test_spark_space_scalar() -> Result<()> { |
| 215 | let scalar = ColumnarValue::Scalar(ScalarValue::Int32(Some(-5))); |
| 216 | let ColumnarValue::Scalar(result) = spark_space(&[scalar])? else { |
| 217 | unreachable!() |
| 218 | }; |
| 219 | match result { |
| 220 | ScalarValue::Utf8(Some(result)) => { |
| 221 | assert_eq!(result, ""); |
| 222 | } |
| 223 | _ => unreachable!(), |
| 224 | } |
| 225 | Ok(()) |
| 226 | } |
| 227 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…