()
| 222 | |
| 223 | #[test] |
| 224 | fn bind_all_op_rhs() { |
| 225 | let result = bind_and_format( |
| 226 | "SELECT * FROM t WHERE id = ALL($1)", |
| 227 | &[ParamValue::Text("{a,b}".into())], |
| 228 | ); |
| 229 | assert!(!result.contains("$1"), "got: {result}"); |
| 230 | } |
| 231 | |
| 232 | #[test] |
| 233 | fn bind_update_returning() { |
nothing calls this directly
no test coverage detected