(mode: &str, start: FrameBound, end: FrameBound)
| 456 | } |
| 457 | |
| 458 | fn frame(mode: &str, start: FrameBound, end: FrameBound) -> WindowFrame { |
| 459 | WindowFrame { |
| 460 | mode: mode.into(), |
| 461 | start, |
| 462 | end, |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | #[test] |
| 467 | fn running_sum_is_cumulative() { |
no outgoing calls