aboutsummaryrefslogtreecommitdiff
path: root/src/memjournal.c
Commit message (Expand)AuthorAge
* Add assert() statements to verify that the SQLITE_OPEN_EXCLUSIVE flag is alwa...dan2022-08-16
* New assert() statements to help prove correctness of memjournal.c.drh2022-02-15
* Generalize the in-memory journal so that it is able to accept writes thatdrh2022-02-14
* Fix an obscure problem with releasing savepoints stored in an in-memory journ...dan2022-01-01
* Fix a problem in the in-memory journal code that could occasionally lead to a...dan2021-05-24
* Add ALWAYS() to an always-true conditional.drh2021-03-02
* When a sub-transaction is released, if no pages required by containing sub-tr...dan2021-02-22
* Fix pointer aliasing problem in the in-memory journal code.drh2020-07-24
* Always check for reads past the end of the file on the in-memory journaldrh2019-08-14
* More precise determination of when an in-memory journal needs to bedrh2017-07-28
* Transform two #ifdef statements into #if statements.drh2017-07-20
* Split SQLITE_ENABLE_ATOMIC_WRITE into two options - the original anddan2017-07-20
* Add support for F2FS atomic writes. Untested at this point.dan2017-07-20
* Update the header comment on the memjournal.c file. No code changes.drh2016-04-12
* Prevent the in-memory journal read cursor from entering an inconsistent statedrh2016-04-07
* Fix harmless compiler warnings.drh2016-03-21
* Simplifications to the memjournal.c logic to facilitate testing.drh2016-03-09
* Move the write failure test in memjrnlCreateFile() to just after thedrh2016-03-09
* Add an #ifdef and an ALWAYS() for coverage.drh2016-03-09
* Modify the memjournal.c code to make it a bit smaller.dan2016-03-08
* Remove the unused journal.c source file (its function have been subsumed intodrh2016-03-05
* Work around (incorrect) ASAN warnings in memjournal.c.drh2016-03-05
* Get in-memory subjournals working for builds without SQLITE_ENABLE_ATOMIC_WRITE.drh2016-03-04
* When using a temporary file for a statement journal, store the first 64KiB in...dan2016-02-29
* Fix minor problems with new code in memjournal.c.dan2016-02-29
* Extend the code in memjournal.c so that it subsumes the role of journal.c. An...dan2016-02-27
* Enhance ability to debug out-of-memory errors.mistachkin2016-02-13
* Fix typos in comments. No code changes.peter.d.reid2014-09-06
* Make the MIN() and MAX() macros available in sqliteInt.h. Add TUNINGdrh2013-06-13
* Fix harmless compiler warnings.drh2013-04-22
* Fix a comment typo in memjournal.cdrh2010-09-16
* Tweaks to the new shared-memory interface design - mostly comment changes.drh2010-07-13
* Suppress various compiler warnings.drh2010-06-26
* Remove global variables when compiled with SQLITE_OMIT_WSDdrh2010-06-03
* Undo one of the "const" markers from the previous check-in because thedrh2010-06-02
* Add some 'const' markers to static data that is really constant.dan2010-06-02
* Recent changes cause the xSync method of the memory journal implementationdrh2010-04-12
* Remove the obsolete "$Id:$" RCS identifier strings from the source code.drh2009-11-10
* Speed up INSERT operations that add data to UNIQUE or PRIMARY KEY indexes by ...danielk19772009-05-04
* Additional code to make sure and to assert that memory allocations havedrh2009-04-05
* Fix a couple of harmless nuisance warnings. (CVS 6438)drh2009-04-02
* Mark untestable branches of memjournal.c as such. Reduce the size of adrh2009-04-01
* Specify type "void" in the parameter list of functions that take no parameters.drh2008-12-20
* Additional work at eliminating silly compiler warnings. (CVS 6010)drh2008-12-10
* Never use strlen(). Use our own internal sqlite3Strlen30() which isdrh2008-12-10
* Fix some compiler warnings that show up when building the amalgamation only. ...danielk19772008-11-19
* Changes to avoid "unused parameter" compiler warnings. (CVS 5921)danielk19772008-11-19
* Do not redefine the MIN and MAX macros if they are already defined. (CVS 5896)drh2008-11-12
* Add data structure description comments to memjournal.c. (CVS 5847)drh2008-10-28
* Add the memjournal.c file that should have been with the previous checkin. (C...danielk19772008-10-17