()
| 611 | |
| 612 | #[test] |
| 613 | fn unknown_function_errors() { |
| 614 | let mut rows = rows_v(&[1]); |
| 615 | let cols = ci(&["v"]); |
| 616 | let s = spec("nonexistent", vec![], vec![], vec![]); |
| 617 | let err = evaluate_window_functions_value(&mut rows, &cols, &[s]).unwrap_err(); |
| 618 | assert!(matches!(err, WindowError::ArgEval { .. })); |
| 619 | } |
| 620 | |
| 621 | #[test] |
| 622 | fn missing_partition_column_is_null_keyed() { |
nothing calls this directly
no test coverage detected