]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2009-05-25  drhVersion 3.6.14.2 (CVS 6680) branch_3_6_14
2009-05-25  drhUpdate the configure script for version 3.6.14.2. ...
2009-05-25  drhPort the fix for ticket #3879 (check-in (6676)) to...
2009-05-19  drhVersion 3.6.14.1 (CVS 6655)
2009-05-18  drhPort the sqlite3_backup fix of check-in (6632), ticket...
2009-05-18  drhUpdate the configure script for the 3.6.14.1 release...
2009-05-18  drhPort patches from the trunk into the 3.6.14.1 branch:
2009-05-18  drhUpdate the version number for the 3.6.14.1 branch....
2009-05-07  drhVersion 3.6.14 (CVS 6615)
2009-05-06  drhFix compiler warning found with gcc -Wextra. (CVS 6614)
2009-05-06  shaneChanges to silence compiler warnings under MSVC. (CVS...
2009-05-06  drhFix three variable initialization problems found by...
2009-05-06  chwupdated vxworks makefile for 3.6.14 release (CVS 6611)
2009-05-06  drhAdd a short pause to force a context swap while waiting...
2009-05-06  drhFix the test case misc3-6.11 so that it works correctly...
2009-05-05  drhMinor changes to the sqlite3_exec() implementation...
2009-05-05  drhBump the version number up to 3.6.14. (CVS 6607)
2009-05-05  drhChanges to vacuum.c to facilitate full coverage testing...
2009-05-05  drhMake sure the left-shift operator never overflows....
2009-05-05  drhChanges to update.c to facilitate full coverage testing...
2009-05-05  drhMake sure the default value on a column added using...
2009-05-04  drhMake sure va_arg() does not occur on the same line...
2009-05-04  danielk1977Avoid parsing cells that fit entirely on the b-tree...
2009-05-04  drhChanges to auth.c to promote full coverage testing...
2009-05-04  danielk1977Speed up INSERT operations that add data to UNIQUE...
2009-05-04  drhWork toward cleaning up the authorizer interface. ...
2009-05-03  drhChanges to facility full coverage testing of util.c...
2009-05-03  drhMore changes to insert.c to facilitate full coverage...
2009-05-02  drhSimplifications to the uniqueness constraint failure...
2009-05-02  drhRemove the aFKey hash table, which was not being used...
2009-05-02  drhReduce the size of an integer literal in rowhash.tcl...
2009-05-02  danielk1977When a cursor points at the last entry of an intkey...
2009-05-02  danielk1977Do not reset the cursor before seeking it in sqlite3Btr...
2009-05-02  drhWhen checking indices for xfer compatibility, compare...
2009-05-01  drhRecord within the Token structure itself whether or...
2009-05-01  drhFix an error message that is generated if the number...
2009-05-01  drhUpdate PRAGMA integrity_check so that it treats SQLITE_...
2009-05-01  danielk1977Change lock2.test so that it does not enter a busy...
2009-05-01  danielk1977Remove a NEVER() clause from a condition that is true...
2009-05-01  danielk1977Fix for tempdb.test so that it passes when running...
2009-05-01  drhFix processing of BEFORE triggers on INSERT statements...
2009-04-30  shaneMore cleanup, etc. to support MSVC compiles. (CVS 6582)
2009-04-30  drhDisable an always-false test in the attach.c module...
2009-04-30  danielk1977Fix a problem with in-memory sub-journals and exclusive...
2009-04-30  drhDocumentation updates for sqlite3_set_authorizer()...
2009-04-30  drhDisallow attaching the same database multiple times...
2009-04-30  drhFix apparent typo on exclusive.test in the (6575) check...
2009-04-30  drhChanges sqlite3TempInMemory() to take a const parameter...
2009-04-30  danielk1977When SQLite is configured to use in-memory temp files...
2009-04-30  drhFix a memory leak introduced in the previous check...
2009-04-30  drhTake care not to leave a zombie attached database if...
2009-04-30  drhRemove always-true tests from attach.c. In btree.c...
2009-04-30  drhRemove an always-true test from delete.c. Move the...
2009-04-29  shaneFixed compile for MSVC; removed compiler warnings...
2009-04-29  danielk1977Modify the assemblePage() function in btree.c so that...
2009-04-29  drhUpdate the documentation on the sqlite3_changes() and...
2009-04-29  danielk1977Fix a case in where.c where a crash can follow a malloc...
2009-04-29  danielk1977Add a version of cellSizePtr() that is faster than...
2009-04-29  danielk1977Simplify a conditional expression in btree.c. (CVS...
2009-04-28  drhFix an out-of-order test number in blob.test. Cosmetic...
2009-04-28  drhFix asserts in hash.c so that zero-length symbols can...
2009-04-28  danielk1977When testing with TEMP_STORE=3 and the test pcache...
2009-04-28  drhRemove an unused function declaration from hash.h....
2009-04-28  danielk1977Further adjustment to rowhash.test to account for rowid...
2009-04-28  drhSimplifications to the symbol table implementation...
2009-04-28  danielk1977Have sqlite3_create_collation() return MISUSE if passed...
2009-04-28  drhDo not store the zero string terminator as part of...
2009-04-28  danielk1977Another fix to the same assert as in (6555). It can...
2009-04-28  danielk1977Fix an assert that could fail after a parse error in...
2009-04-28  danielk1977Avoid changing the pager journal-mode once a write...
2009-04-28  drhAdd test cases for sqlite3_complete with an EXPLAIN...
2009-04-28  drhMake sure sqlite3_open16() always zeros the db return...
2009-04-28  drhEnhance sqlite3_complete() so that it understands EXPLA...
2009-04-27  drhBring the documenation and implementation of sqlite3_co...
2009-04-25  danielk1977Tests for the new asynchronous IO API. (CVS 6549)
2009-04-24  drhAdd another test case for the "x IS NULL" uniqueness...
2009-04-24  danielk1977Dequote the "from" table in a FOREIGN KEY definition...
2009-04-24  drhGet rid of the special RowSet processing in where.c...
2009-04-24  drhMake sure that the optimizer realizes that an "x IS...
2009-04-24  danielk1977Make selecting the asynchronous IO file-locking mode...
2009-04-24  danielk1977Improve comments and documentation of the asynchronous...
2009-04-23  shaneos_win.c, winOpen(), changed to handle the SQLITE_OPEN_...
2009-04-23  shaneUpdated misc. test scripts for Windows testing with...
2009-04-23  shaneRemove some incorrect async tests; (CVS 6540)
2009-04-23  danielk1977Move the asynchronous IO code from src/test_async.c...
2009-04-23  drhRework the column-cache mechanism to be more robust...
2009-04-22  drhEliminate the OP_VRowid opcode. The regular OP_Rowid...
2009-04-22  drhChange the OP_Rowid opcode so that a deferred OP_Seek...
2009-04-22  drhRemove the rowhash object from the code. Rowset now...
2009-04-22  drhExtend the Rowset object to contain all the capabilitie...
2009-04-21  danielk1977Move RowHashBlock.nUsed to RowHash.nUsed. Fix a typo...
2009-04-21  danielk1977Fix a segfault that followed a malloc failure introduce...
2009-04-21  drhAdjust the rowhash.test module so that it recovers...
2009-04-21  drhAllocate the initial RowHash object using lookaside...
2009-04-21  drhNew comments and minor refactoring of rowhash.c. (CVS...
2009-04-21  drhRemove a redundant test from sqlite3_shutdown(). (CVS...
2009-04-21  danielk1977Attempt to optimize virtual table queries with 'OR...
2009-04-20  drhChange the journal_mode pragma so that it always return...
2009-04-20  drhAdd new tests to show that journal_mode=OFF works with...
2009-04-20  drhClarify the documentation to make it clear that sqlite3...
next