(conn: &Connection)
| 163 | } |
| 164 | |
| 165 | fn ensure_table(conn: &Connection) -> Result<()> { |
| 166 | conn.execute_batch(CREATE_SYMBOLS_TABLE)?; |
| 167 | Ok(()) |
| 168 | } |
| 169 | |
| 170 | fn create_indexes(conn: &Connection) -> Result<()> { |
| 171 | conn.execute_batch( |
no outgoing calls
no test coverage detected