()
| 158 | |
| 159 | #[test] |
| 160 | fn test_list_range() { |
| 161 | evaluate_expr_test( |
| 162 | col("list").range(lit(1i64), lit(2i64)), |
| 163 | vec![ |
| 164 | "+--------------+", |
| 165 | "| expr |", |
| 166 | "+--------------+", |
| 167 | "| [one] |", |
| 168 | "| [two, three] |", |
| 169 | "| [five] |", |
| 170 | "+--------------+", |
| 171 | ], |
| 172 | ); |
| 173 | } |
| 174 | |
| 175 | #[tokio::test] |
| 176 | async fn test_aggregate_ext_order_by() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…