(additional_data: &str)
| 149 | } |
| 150 | |
| 151 | pub fn send_scram_client_final_message(additional_data: &str) -> Vec<u8> { |
| 152 | let mut writer = BufferWriter::default(); |
| 153 | writer.add_string(additional_data); |
| 154 | writer.flush(Some(CODE_STARTUP)) |
| 155 | } |
| 156 | |
| 157 | pub fn query(text: &str) -> Vec<u8> { |
| 158 | let mut writer = BufferWriter::default(); |
nothing calls this directly
no test coverage detected