| 409 | } |
| 410 | |
| 411 | static u64 db_sqlite3_last_insert_id(struct db_stmt *stmt) |
| 412 | { |
| 413 | sqlite3 *s = conn2sql(stmt->db->conn); |
| 414 | return sqlite3_last_insert_rowid(s); |
| 415 | } |
| 416 | |
| 417 | static bool db_sqlite3_vacuum(struct db *db) |
| 418 | { |
nothing calls this directly
no test coverage detected