()
| 110 | |
| 111 | #[test] |
| 112 | fn bind_select_where() { |
| 113 | let result = bind_and_format( |
| 114 | "SELECT * FROM users WHERE id = $1", |
| 115 | &[ParamValue::Int64(42)], |
| 116 | ); |
| 117 | assert!(result.contains("id = 42"), "got: {result}"); |
| 118 | } |
| 119 | |
| 120 | #[test] |
| 121 | fn bind_string_param() { |
nothing calls this directly
no test coverage detected