()
| 6421 | |
| 6422 | #[test] |
| 6423 | fn test_eq_array_err_message() { |
| 6424 | assert_starts_with( |
| 6425 | ScalarValue::Utf8(Some("123".to_string())) |
| 6426 | .eq_array(&(Arc::new(Int32Array::from(vec![123])) as ArrayRef), 0) |
| 6427 | .unwrap_err() |
| 6428 | .message(), |
| 6429 | "could not cast array of type Int32 to arrow_array::array::byte_array::GenericByteArray<arrow_array::types::GenericStringType<i32>>", |
| 6430 | ); |
| 6431 | } |
| 6432 | |
| 6433 | #[test] |
| 6434 | fn scalar_add_trait_test() -> Result<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…