()
| 112 | |
| 113 | #[test] |
| 114 | fn slice_unknown_dim_rejected() { |
| 115 | let err = plan_one("SELECT * FROM ARRAY_SLICE('g', '{nope: [1, 2]}')") |
| 116 | .err() |
| 117 | .unwrap(); |
| 118 | assert!(format!("{err}").contains("no dim")); |
| 119 | } |
| 120 | |
| 121 | #[test] |
| 122 | fn project_happy() { |