(vals: &[i64])
| 429 | } |
| 430 | |
| 431 | fn rows_v(vals: &[i64]) -> Vec<Vec<Value>> { |
| 432 | vals.iter().map(|&v| vec![Value::Integer(v)]).collect() |
| 433 | } |
| 434 | |
| 435 | fn agg_spec(func: &str, frame: WindowFrame, order_by: Vec<(SqlExpr, bool)>) -> WindowFuncSpec { |
| 436 | WindowFuncSpec { |