/ Timeline
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

50 check-ins occurring around 66d5f2b76750f352.

2013-03-23
12:15
In the winMremap VFS function, unmap the region prior to attempting to truncate the file. check-in: 8870c4cc6c user: mistachkin tags: experimental-mmap
10:09
Do not unmap the mapped file region in winTruncate as there may be outstanding pointers to it. check-in: f57a9c91e9 user: mistachkin tags: experimental-mmap
09:56
Preliminary changes to support the xMremap VFS method on Windows. check-in: 75a85a1c6a user: mistachkin tags: experimental-mmap
2013-03-22
20:15
Update wal mode tests so that they work with the mmap test permutation. check-in: f7295872a3 user: dan tags: experimental-mmap
19:56
Fix a potential NULL-pointer dereference in btreeSwapOutMmap(). check-in: e81ccdcd87 user: drh tags: experimental-mmap
19:17
Fix a case where the mapped part of a database file may be written during a backup operation. check-in: c8d67aefff user: dan tags: experimental-mmap
18:20
Allow the database file to be memory mapped in wal mode. check-in: d190ddabc3 user: dan tags: experimental-mmap
17:46
Add a fix for the assert() statements added by the previous commit. check-in: 19345416ed user: dan tags: experimental-mmap
08:58
Add assert statements to os_unix.c to ensure that any mapped region of the database file is not being read or written using the xRead() or xWrite() methods. check-in: 765615f9fb user: dan tags: experimental-mmap
2013-03-21
21:20
Many spelling fixes in comments. No changes to code. check-in: 6f6e2d5094 user: mistachkin tags: trunk
20:39
Fix cases where xRead() was being used to read from a memory mapped part of the database file. check-in: 5c9e9df27b user: dan tags: experimental-mmap
20:00
Avoid calling xRead() on a part of the database file that is memory mapped. check-in: c8eac290a7 user: dan tags: experimental-mmap
15:57
Fix a problem when opening a write-transaction while there exist read-only b-tree cursors in mmap mode. check-in: 32e0bbb736 user: dan tags: experimental-mmap
14:47
Do not use the Linux mremap() call. Use the same strategy for xMremap() as on OSX instead. check-in: 5ed8ad780c user: dan tags: experimental-mmap
2013-03-20
18:25
Optimize the xMremap method in os_unix.c some. check-in: 9529ed88a7 user: dan tags: experimental-mmap
14:26
When possible, use memory mapping when appending new pages to a database file. check-in: 14135da3cd user: dan tags: experimental-mmap
12:04
Fix text-to-numeric type casting so that it works correctly on UTF16 strings that contain characters where the LSB is numeric but the MSB is non-zero. Ticket [689137afb6da41] check-in: 5b22053f91 user: drh tags: trunk
10:07
Add test file mmap1.test. check-in: aee1f53a74 user: dan tags: experimental-mmap
2013-03-19
19:28
Add the sqlite3_io_methods.xMremap() method to the VFS interface. Also "PRAGMA mmap_size". check-in: 6183f1bd86 user: dan tags: experimental-mmap
17:10
Also export the sqlite3changeset interfaces in the amalgamated version of the sessions extension. check-in: 5b399f2bc4 user: drh tags: sessions
16:12
Bring makefiles and build scripts into alignment with the sessions branch. No changes to code. check-in: d1f41089ab user: drh tags: trunk
15:23
Include the sqlite3session.h header file in with sqlite3.h. Make sure the session APIs are all public. check-in: ec490336bc user: drh tags: sessions
2013-03-18
17:18
Clarifications to the documentation for the sqlite3_aggregate_context() API. Also, shorten an over-length source line in sqlite.h.in. check-in: 4fe2db1d86 user: drh tags: trunk
16:24
Adjust the MSVC makefile so that it correctly handles the sessions extension being included in the amalgamation. Import the test case changes that appeared in 3.7.16 final. check-in: 9bac09a99a user: drh tags: sessions
11:39
Version 3.7.16 check-in: 66d5f2b767 user: drh tags: trunk, release, version-3.7.16
2013-03-16
20:19
When possible, use memcpy() to and from the mapped region instead of xWrite() and xRead(). check-in: f8ca5622d9 user: dan tags: experimental-mmap
2013-03-15
19:13
Fix a dropped error code in pager.c. check-in: 022fdc986b user: dan tags: experimental-mmap
18:29
Allow read-only cursors to use mmap pages even if there is an open write transaction. check-in: b387e2f9d2 user: dan tags: experimental-mmap
2013-03-14
18:34
Use mmap() to read from the database file in rollback mode. This branch is unix only for now. check-in: 6f21d9cbf5 user: dan tags: experimental-mmap
2013-03-13
20:52
Merge updates from trunk. check-in: d63fa039a0 user: mistachkin tags: toTypeFuncs
19:02
Fix typos in MSVC makefile. check-in: 2d15c26857 user: mistachkin tags: sessions
12:20
Fix main.mk so that it builds the amalgamation correctly. check-in: 0b84e27724 user: drh tags: sessions
11:42
Fix a compiler warning in sqlite3VdbePreUpdateHook(). Add sqlite3session.c to the amalgamation. Fix the Makefile.in to work with sessions. check-in: e54b0225f2 user: drh tags: sessions
07:02
Enhance tests for ticket [4dd95f6943]. check-in: 0b452734fa user: dan tags: trunk
06:48
Rename the experimental todouble() function to toreal(), update comments. check-in: 12c318ef1b user: mistachkin tags: toTypeFuncs
06:34
Merge latest trunk changes into this branch. check-in: d6cd3c780c user: dan tags: sessions
00:13
Fix the ORDER BY with IN constraint logic so that it works with all combinations of DESC on the ORDER BY clause, on the RHS of the IN operator, and in the index used by ORDER BY and IN. Fix for ticket [4dd95f6943fbd18]. check-in: 839aa91faf user: drh tags: trunk
2013-03-12
23:58
Add a single new test case to the ORDER BY with IN logic verify that if the RHS of the IN is a descending index that it still works. Add testcase() macros to the ORDER BY with IN logic to help verify that corner cases are tested. Closed-Leaf check-in: 7e7356f155 user: drh tags: desc-orderby-fix-1
23:03
Fix typo in sqlite3_close() function documentation reported on the mailing list. check-in: c9a75d890f user: mistachkin tags: trunk
22:13
Fix a test case that had an ambiguous result. check-in: 38c6bddf8c user: drh tags: desc-orderby-fix-1
20:58
Fix typo in sqlite3_close() function documentation reported on the mailing list. Closed-Leaf check-in: 7232093d6c user: mistachkin tags: docTypo
20:38
Fix the ORDER BY optimization with IN constraints when the RHS of the IN constraint is a descending index. check-in: 62316ebaca user: drh tags: desc-orderby-fix-1
18:49
Revise the patch to make it easier to understand. check-in: 3ce7eb0265 user: drh tags: desc-orderby-fix-1
18:44
Add test cases for [4dd95f6943]. check-in: 723c144c76 user: dan tags: desc-orderby-fix-1
18:40
Revised fix for the DESC ORDER BY and IN constraint bug, ticket [4dd95f6943fbd18]. The previous check-in was incorrect. check-in: 8b2eb7a43b user: drh tags: desc-orderby-fix-1
18:34
A proposed fix for the DESC ORDER BY bug of ticket [4dd95f6943fbd18]. Seems to work, but lots more testing is needed prior to moving to trunk. check-in: 614a038ad2 user: drh tags: desc-orderby-fix-1
11:38
Merge recent changes to trunk into sessions branch. check-in: 62adb0e0d7 user: dan tags: sessions
09:07
Increase strictness of the new experimental functions and add more tests. check-in: 05c4463ec5 user: mistachkin tags: toTypeFuncs
2013-03-11
13:37
Define _BSD_SOURCE when building on OpenBSD. This is required for fchmod(). check-in: f9027cb47b user: dan tags: trunk
11:57
Fixes for compiling with SQLITE_OMIT_AUTOVACUUM and/or SQLITE_OMIT_TRIGGER defined. check-in: 1da15adba8 user: dan tags: trunk