mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Clarify documentation regarding the --recovery-db option to ".recover" and
the magic 789 configuration option it is associated with. FossilOrigin-Name: f6fa0cffa921ccde8910e7fa4a63c2e4ef8ddb376c8ce99e436b27ac332c4498
This commit is contained in:
@ -2750,6 +2750,11 @@ int sqlite3_recover_config(sqlite3_recover *p, int op, void *pArg){
|
||||
}else{
|
||||
switch( op ){
|
||||
case 789:
|
||||
/* This undocumented magic configuration option is used to set the
|
||||
** name of the auxiliary database that is ATTACH-ed to the database
|
||||
** connection and used to hold state information during the
|
||||
** recovery process. This option is for debugging use only and
|
||||
** is subject to change or removal at any time. */
|
||||
sqlite3_free(p->zStateDb);
|
||||
p->zStateDb = recoverMPrintf(p, "%s", (char*)pArg);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user