** Set the recover handle error to the error code and message returned by ** calling sqlite3_errcode() and sqlite3_errmsg(), respectively, on database ** handle db. */
| 13894 | ** handle db. |
| 13895 | */ |
| 13896 | static int recoverDbError(sqlite3_recover *p, sqlite3 *db){ |
| 13897 | return recoverError(p, sqlite3_errcode(db), "%s", sqlite3_errmsg(db)); |
| 13898 | } |
| 13899 | |
| 13900 | /* |
| 13901 | ** This function is a no-op if recover handle p already contains an error |
no test coverage detected