()
| 181 | |
| 182 | #[test] |
| 183 | fn elementwise_happy() { |
| 184 | let p = plan_one("SELECT * FROM ARRAY_ELEMENTWISE('left', 'right', 'add', 'qual')").unwrap(); |
| 185 | assert!(matches!(p, SqlPlan::ArrayElementwise { .. })); |
| 186 | } |
| 187 | |
| 188 | #[test] |
| 189 | fn elementwise_unknown_op_rejected() { |
nothing calls this directly
no test coverage detected