()
| 241 | |
| 242 | #[test] |
| 243 | fn test_collect_rows_with_error() { |
| 244 | let error = ExecutionError::UnsupportedOperator("test".to_string()); |
| 245 | let iter = ErrorRowIterator::new(error); |
| 246 | |
| 247 | let result = collect_rows(iter); |
| 248 | assert!(result.is_err()); |
| 249 | } |
| 250 | } |
nothing calls this directly
no test coverage detected