()
| 198 | |
| 199 | #[test] |
| 200 | fn compact_happy() { |
| 201 | let p = plan_one("SELECT ARRAY_COMPACT('g')").unwrap(); |
| 202 | assert!(matches!(p, SqlPlan::ArrayCompact { .. })); |
| 203 | } |
| 204 | |
| 205 | #[test] |
| 206 | fn flush_unknown_array_rejected() { |
nothing calls this directly
no test coverage detected