()
| 1098 | } |
| 1099 | |
| 1100 | fn startup_message() -> Vec<u8> { |
| 1101 | startup_message_with(&[ |
| 1102 | ("user", "postgres"), |
| 1103 | ("database", "template1"), |
| 1104 | ("client_encoding", "UTF8"), |
| 1105 | ]) |
| 1106 | } |
| 1107 | |
| 1108 | fn startup_message_with(params: &[(&str, &str)]) -> Vec<u8> { |
| 1109 | let mut body = Vec::new(); |
no test coverage detected