(text: &str)
| 155 | } |
| 156 | |
| 157 | pub fn query(text: &str) -> Vec<u8> { |
| 158 | let mut writer = BufferWriter::default(); |
| 159 | writer.add_cstring(text); |
| 160 | writer.flush(Some(CODE_QUERY)) |
| 161 | } |
| 162 | |
| 163 | pub fn parse(name: Option<&str>, text: &str, types: &[i32]) -> Vec<u8> { |
| 164 | if let Some(name) = name |
nothing calls this directly
no test coverage detected