aboutsummaryrefslogtreecommitdiff
path: root/ext/recover/sqlite3recover.c
Commit message (Expand)AuthorAge
* Fix a problem causing an infinite loop in the recovery extension when process...dan2023-05-31
* Fix a broken assert() in the recovery extension. [forum:/forumpost/82a88f5812...dan2023-04-20
* Fix lots of harmless, nuisance compiler warnings, mostly unused parameterdrh2022-12-23
* Add the SQLITE_FCNTL_RESET_CACHE verb. Use it to ensure that the page cache i...dan2022-11-28
* Make sure that the recoverStrlen() function (used internally by the newdrh2022-11-07
* The recoverAssertMutexHeld() function is for testing and verification onlydrh2022-11-06
* Fix Tcl tests so that they again build and run with SQLITE_OMIT_VIRTUALTABLE ...dan2022-11-04
* Clarify documentation regarding the --recovery-db option to ".recover" anddrh2022-11-02
* Emcc seems confused by SQLITE_DEBUG, for reasons unknown. Use NDEBUG insteaddrh2022-11-02
* Fix a missing symbol in non-SQLITE_DEBUG builds.stephan2022-11-02
* Fix a harmless compiler warning.drh2022-11-01
* Fix harmless compiler warnings.drh2022-11-01
* Fix compilation errors in the recover API seen with MSVC.mistachkin2022-11-01
* Avoid a segfault that could occur when running the recover API on a database ...dan2022-10-31
* Fix harmless compiler warnings in testing code.drh2022-10-28
* Fix another crash in the recover extension triggered by a corrupt database.dan2022-10-27
* Fix another problem to do with recovering from in-memory databases.dan2022-10-27
* Ensure that the VFS wrapper in the recover extension does not attempt to invo...dan2022-10-27
* Fix a problem with running ".recover" on an in-memory database.dan2022-10-27
* Do not use sqlite3_mutex_xxx() functions in sqlite3recover.c when built with ...dan2022-10-27
* Remove an unused variable from the recovery extension.drh2022-10-26
* Remove an undefined left-shift operation from the recover extension.dan2022-10-26
* Add missing comments and fix other code issues.dan2022-10-15
* Handle recovering databases with reserved bytes at the end of each page.dan2022-10-14
* Add tests for detecting page size of databases.dan2022-10-13
* Ensure the page-size, auto-vacuum and other settings are copied into the reco...dan2022-10-06
* Add code to determine the database page-size by searching for well-formed pages.dan2022-10-06
* Improve handling of corruption in the sqlite_schema table b-tree structure.dan2022-10-05
* Better handling for databases with corrupt headers.dan2022-10-04
* Modify implementation of recovery to break recovery of the lost_and_found tab...dan2022-09-26
* Add the SQLITE_RECOVER_SLOWINDEXES option, for specifying that indexes should...dan2022-09-24
* Add sqlite3_recover_step() to header file sqlite3recover.h. Update the API do...dan2022-09-24
* Update things to use sqlite3_recover_step() internally.dan2022-09-24
* Internal changes to the recover extension towards a step() style interface.dan2022-09-23
* Fix various compiler warnings in new code on this branch.dan2022-09-23
* Fix windows builds of recover extension.dan2022-09-15
* Extra tests and fixes.dan2022-09-14
* Fix a broken error handling case in the recovery extension.dan2022-09-13
* Add tests. Deal issues surrounding aborting recovery from within the SQL call...dan2022-09-13
* Fix some problems with handling corrupt database in the recovery extension.dan2022-09-12
* More tests for the recover module.dan2022-09-12
* Rework recover extension code for readability.dan2022-09-10
* Further fixes to comments in sqlite3recover.h. Also rework some data structur...dan2022-09-09
* Handle recovery of virtual tables by recovering each shadow table individuall...dan2022-09-09
* Update comments in sqlite3recover.h.dan2022-09-08
* Update the shell to use the recover extension for the .recover command.dan2022-09-08
* Fix problems with recovering the sqlite_sequence table.dan2022-09-08
* Ensure that the recover extension properly escapes CR and NL characters in te...dan2022-09-07
* Tests and a fix for the SQLITE_RECOVER_ROWIDS option.dan2022-09-06
* Fix a problem with script mode and lost-and-found tables.dan2022-09-05