()
| 213 | |
| 214 | #[test] |
| 215 | fn bind_any_op_rhs() { |
| 216 | let result = bind_and_format( |
| 217 | "SELECT * FROM t WHERE id = ANY($1)", |
| 218 | &[ParamValue::Text("{a,b}".into())], |
| 219 | ); |
| 220 | assert!(!result.contains("$1"), "got: {result}"); |
| 221 | } |
| 222 | |
| 223 | #[test] |
| 224 | fn bind_all_op_rhs() { |
nothing calls this directly
no test coverage detected