(&mut self, sql: &str)
| 1290 | } |
| 1291 | |
| 1292 | fn run_exec_command(&mut self, sql: &str) -> Result<()> { |
| 1293 | self.exec_internal(sql, None).map(|_| ()) |
| 1294 | } |
| 1295 | |
| 1296 | fn handle_blob_input(&mut self, blob: Option<&Vec<u8>>) -> Result<()> { |
| 1297 | let path = self.dev_blob_path(); |
no test coverage detected