aboutsummaryrefslogtreecommitdiff
path: root/src/dbpage.c
Commit message (Expand)AuthorAge
* Add some missing UNUSED_PARAMETER() annotations to squelch downstream build w...stephan2025-05-31
* Fix a problem in the sqlite_dbpage() table-valued function when it isdrh2025-03-20
* If any errors occur while processing sqlite_dbpage changes, canceldrh2025-01-31
* Add a test case for ROLLBACK TO of database truncate operations made through ...dan2025-01-02
* Improvements to the way that truncation is implemented in sqlite_dbpage().drh2025-01-02
* The BTree mutex must be held when calling sqlite3BtreeLastPage(). Thisdrh2024-12-19
* Do not attempt to truncate a database in sqlite_dbpage if the database isdrh2024-12-17
* In sqlite_dbpage, cancel any pending truncate operation if there an errordrh2024-11-30
* Fix to the previous: The dbpageRollbackTo() method should return SQLITE_OK.drh2024-10-03
* Fix missing return value from the new dbpageRollbackTo() callback.drh2024-10-03
* Modify the behavior of sqlite_dbpage so that the null-INSERT that truncatesdrh2024-10-02
* Adjust the new truncation behavior of sqlite_dbpage(N,null) such that it causesdrh2024-10-02
* Bug fix in the enhanced sqlite_dbpage for when truncating two or moredrh2024-09-13
* Add the ability for sqlite_dbpage to truncate the database file by writingdrh2024-09-10
* Generalize the sqlite3_dbpage virtual table so that it is able to writedrh2024-09-09
* Ensure that all fields of static sqlite3_module objects are explicitlydrh2023-10-06
* Add the SQLITE_VTAB_USES_ALL_SCHEMAS option to sqlite3_vtab_config(). Updatedrh2023-04-03
* Restore a test for pBt NULL that was removed by [12a14711afa6cddb] but turneddrh2023-02-05
* Changes to the sqlite_dbpage virtual table to tag or remove unreachabledrh2023-02-05
* Add ALWAYS() and NEVER() macros to unreachable branchs in sqlite_dbpage.drh2023-02-04
* Better error message when trying to do an INSERT on an sqlite_dbpage virtualdrh2023-02-04
* Fix lots of harmless, nuisance compiler warnings, mostly unused parameterdrh2022-12-23
* Make the UPDATE method of the sqlite_dbpage virtual table rebust againstdrh2022-10-31
* 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
* Avoid dropping error codes in the xBegin() method of virtual table sqlite_dbp...dan2022-07-06
* Enhance the sqlite_dbpage fix at [/info/642a0b4752743216|check-in 642a0b4752743]drh2022-04-08
* Fix the sqlite_dbpage virtual table so that it starts a write transactiondrh2022-03-09
* Fix compiler warnings.drh2022-03-08
* Create the "trusted_schema" pragma. Add sqlite3_vtab_config() calls to setdrh2020-01-07
* Add SQLITE_CONSTRAINT support to the xBestIndex methods on dbstat,drh2018-11-16
* Initial code to make shadow tables read-only to ordinary SQL. The nowdrh2018-11-05
* Add the SQLITE_DBCONFIG_DEFENSIVE flag.drh2018-11-03
* Change sqlite3BtreeBeginTrans() to return the BTREE_SCHEMA_COOKIE, for adrh2018-06-06
* Fix harmless compiler warning seen with MSVC.mistachkin2017-11-10
* Fix harmless compiler warnings in sqlite3_checker.exedrh2017-11-01
* Fix a Pager ref-count leak in the sqlite_dbpage virtual table.drh2017-10-27
* Fix the sqlite3_dbpage virtual table so that it can read and write fromdrh2017-10-25
* Get writes working on the sqlite_dbpage virtual table. Add a few test cases.drh2017-10-11
* Initial implementation of the "sqlite_dbpage" virtual table. Currentlydrh2017-10-11