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