()
| 128 | |
| 129 | #[test] |
| 130 | fn bind_null_param() { |
| 131 | let result = bind_and_format("SELECT * FROM users WHERE name = $1", &[ParamValue::Null]); |
| 132 | assert!(result.contains("name = NULL"), "got: {result}"); |
| 133 | } |
| 134 | |
| 135 | #[test] |
| 136 | fn bind_multiple_params() { |
nothing calls this directly
no test coverage detected