/ Timeline
Login

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

50 check-ins occurring around 8858042fa1449516.

2010-03-19
13:59
Rewrite a couple of queries used internally by FTS3 to take advantage of the "SELECT max(x) FROM ..." optimization. check-in: b7e42ae774 user: dan tags: trunk
2010-03-18
16:34
Mark internal routines as "static" in FTS3. Ticket [b1552d0fa7]. check-in: 39b34ac4a7 user: drh tags: trunk
2010-03-15
20:53
Improved error message when the right-hand operand of MATCH in FTS3 is not a valid search expression. Ticket [170872f1c3]. check-in: bea9258643 user: drh tags: trunk
19:27
Fix FTS3 so that it does not run illegal SQL and cause a spurious log message. Ticket [42d45a693e6]. check-in: f186b6a619 user: drh tags: trunk
2010-03-13
02:15
Store the database size in pages in bytes 28..31 of the header. Currently this is for forensic use only, but it might be used in the future. check-in: 59f75bba02 user: drh tags: trunk
2010-03-12
16:32
Add assert()s to mem2.c (activated by SQLITE_MEMDEBUG) which verify that memory alloctions that might have come from lookaside are always freed using a lookaside-aware free routine. check-in: c2af2164cf user: drh tags: trunk
2010-03-10
23:13
Move the ctime.c source module near the beginning of the list of files inserted into the amalgamation so that #defines that are overridden in other modules will not effect the values returned by sqlite3_compiletime_used(). check-in: bb591802ff user: drh tags: trunk
21:42
Add the SQLITE_DBSTATUS_CACHE_SIZE verb for sqlite3_db_status(). The highwater mark does not yet work on this verb. check-in: 418c6d8113 user: drh tags: trunk
20:06
Remove the "experimental" markings on most interfaces that have been around for multiple releases. check-in: d670e8bd51 user: drh tags: trunk
14:06
Fix typo in a comment in the sqliteInt.h. No changes to code. check-in: 1716821ddb user: drh tags: trunk
2010-03-09
19:31
Version 3.6.23 check-in: 4ae453ea7b user: drh tags: trunk, release
15:10
Fix a test script issue affecting the TCL backup tests under Windows. check-in: 20c400e73a user: shaneh tags: trunk
14:41
Version 3.6.23 release candidate 4 check-in: 3445eda029 user: shaneh tags: trunk
14:41
Minor changes to silence compiler warnings on various MSVC builds. check-in: 115c978b6b user: shaneh tags: trunk
13:12
Version 3.6.23 release candidate 3 check-in: 747baea5c3 user: drh tags: trunk
13:02
Check-in [87a6a9970b] did not completely disable FTS4. This check-in aims to finish the job. check-in: 0259b6299e user: drh tags: trunk
12:35
Version 3.6.23 release candidate 2 check-in: 73f4d292dc user: drh tags: trunk
12:35
Disable FTS4 (which is incomplete and not ready for publication) to prevent accidental use. check-in: 87a6a9970b user: drh tags: trunk
05:01
Version 3.6.23 release candidate 1 check-in: 30e9f966e7 user: drh tags: trunk
2010-03-08
21:40
Add NEVER and assert macros and explanatory comments for unreachable conditions. check-in: ffb6596e6c user: drh tags: trunk
15:17
Correct an assert() in mem2.c (test code only). check-in: 1a88e31b03 user: dan tags: trunk
10:32
Do not run the stmt.test script as part of the inmemory_journal permutation. check-in: 049cadf92b user: dan tags: trunk
2010-03-05
20:17
Make sure the dbFileVers field in the Pager object is properly initialized even if there is an I/O error while reading its content off of disk. check-in: 81ff698f62 user: drh tags: trunk
18:46
Change a condition in sqlite3VdbeMemShallowCopy() to avoid accessing an unitialized variable (doing so was not dangerous, but caused a valgrind error). check-in: 4793c381c6 user: dan tags: trunk
17:27
Fix a one byte buffer overread in fts3. check-in: 6e3e014af9 user: dan tags: trunk
16:32
Modify the vdbe so that the comparison operator opcodes do not modify the data type of operands. Fix for [aa92c76cd4]. check-in: 8858042fa1 user: dan tags: trunk
13:53
Adjustments to #ifdefs so that the #include of <sys/mount.h> is not included twice, because that confuses the amalgamation builder. check-in: 27413fc8dd user: drh tags: trunk
13:41
Adjust some #ifdefs so that the build works on Mac both with and without SQLITE_ENABLE_LOCKING_STYLE. check-in: 0cc981f1cc user: drh tags: trunk
2010-03-04
22:36
Second thoughts: Let Tiger users set SQLITE_ENABLE_LOCKING_STYLE=0. Was: Change SQLITE_ENABLE_LOCKING_STYLE to default off, even on Macs, since older Macs (Tiger) cannot compile the latest proxy locking sources. Closed-Leaf check-in: 1a0fa8d19d user: drh tags: mistake
17:58
Fix for [9abd6aa831]. Do not overread a buffer used for an %q or %w conversion with a precision specifier. check-in: 5e472896e0 user: dan tags: trunk
17:11
Fix an uninitialized variable in printf when compiling with SQLITE_OMIT_FLOATING_POINT. check-in: 14ad62b9a5 user: drh tags: trunk
16:12
Suppress harmless compiler warnings. check-in: fc2c63ac78 user: drh tags: trunk
00:53
Increase the maximum length of an sqlite3_log() result string. Provide more details on the statement abort log message. check-in: 5322d1df5b user: drh tags: trunk
2010-03-03
22:43
Pull the latest Lemon updates from the lemon-update-2010 branch into the trunk. check-in: 84d760bfc1 user: drh tags: trunk
22:40
Modify the sqlite3_log() interface and implementation so that it never uses dynamic memory allocation - to avoid deadlocking when called while holding the memory allocator mutex. Cherry-pick merge of [28d1bc98d6]. check-in: 6f368b5448 user: drh tags: branch-3.6.22
22:25
Modify the sqlite3_log() interface and implementation so that it never uses dynamic memory allocation - to avoid deadlocking when called while holding the memory allocator mutex. check-in: 28d1bc98d6 user: drh tags: trunk
17:09
Fixed compiler warning on Visual Studio. check-in: 83495128c8 user: icculus tags: lemon-update-2010
17:06
Whoops, that shouldn't have been in the merge. Removed buggy code. check-in: 6437280032 user: icculus tags: lemon-update-2010
17:00
Use Strsafe() instead of strdup(). Fixes Visual Studio complaining. check-in: 89d8f98ea6 user: icculus tags: lemon-update-2010
16:54
Merged trunk to lemon-update-2010 branch. check-in: 88b466bae4 user: icculus tags: lemon-update-2010
16:02
Fix some extra instances of the constants addressed by [83e47ca006]. check-in: 0354ab279f user: dan tags: trunk
15:49
Fix some extra instances of the problematic constant in util.c on the 3.6.1 branch. check-in: 527c71d54e user: dan tags: branch-3.6.1
15:34
Merge change [83e47ca006] into the 3.6.1 branch. check-in: 96bfaf9c8c user: dan tags: branch-3.6.1
15:18
Factor out constant expressions in sqlite3GetVarint() to work around nuisance warning messages from the RVT compiler. check-in: 83e47ca006 user: drh tags: trunk
14:23
Modify the command line tool to disable all mutexes. The command line tool is single-threaded. check-in: 00e5679047 user: dan tags: trunk
08:18
Fix another instance of the same warning-inducing expression in util.c. Closed-Leaf check-in: 80c64e16e3 user: dan tags: mistake
08:12
Silence a compiler warning by using a constant value instead of a constant expression that some compilers mistakenly believe causes bitshift overflow. check-in: 587109c81a user: dan tags: mistake
00:02
When TEMP files are in memory, also put the massive TEMP file used by the VACUUM command in memory. This is a cherry-pick merge of [9daf4e7d07] check-in: e534223435 user: drh tags: branch-3.6.22
2010-03-02
23:34
When TEMP files are in memory, also put the massive TEMP file used by the VACUUM command in memory. check-in: 9daf4e7d07 user: drh tags: trunk
2010-02-26
22:05
fix merge error and compiler warning check-in: 5c0afe70a5 user: adam tags: apple-osx