]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2015-06-24  danAdd "ON CONFLICT" handling to the spellfix module. spellfix-constraints
2015-06-24  drhIn the fuzzcheck test program, use the progress handler...
2015-06-24  drhFix the progress handler so that it does not fire too...
2015-06-24  drhFix a harmless compiler warning.
2015-06-24  drhRig the fuzzcheck test program so that it times out...
2015-06-24  drhUpdate the database fuzz test cases to cover all recent...
2015-06-24  drhAdd the --rebuild object to fuzzcheck.
2015-06-24  drhPrevent an infinite loop while searching a corrupt...
2015-06-24  drhStrengthen the new balance_nonroot() code against vario...
2015-06-24  drhAdjustment to a malloc test so that it accepts a narrow...
2015-06-24  drhRemove an invalid NEVER() and add a test case to cover it.
2015-06-24  drhPerformance optimization on balance_nonroot() and relat...
2015-06-23  drhMark some branches as unreachable after the recent...
2015-06-23  drhTestability improvement. btree-opt2
2015-06-23  drhMultiple overflow cells are always adjacent and sequent...
2015-06-23  drhFaster loading of cell pointers into the b.apCell array...
2015-06-23  drhAvoid unnecessary cachedCellSize() calls in the cell...
2015-06-23  drhChange pageInsertArray() and pageFreeArray() so that...
2015-06-23  drhImprovements to the way balance_nonroot() constructs...
2015-06-23  drhMerge the compound SELECT operator fix from trunk.
2015-06-23  danTest that the left and right sides of a compound SELECT...
2015-06-23  drhAvoid computing cell sizes in balance_nonroot() until...
2015-06-22  drhChange the way that balance_nonroot() partitions cells...
2015-06-20  drhUpdate the fuzztest data using the latest test vectors...
2015-06-20  drhMake sure that the likelihood() function does not mess...
2015-06-19  drhPerformance improvements in btreeParseCell() by inlinin...
2015-06-19  drhFix corner cases involving corrupt varint values in...
2015-06-19  drhPerformance improvements in btreeParseCell() by inlinin...
2015-06-19  drhAdd the MemPage.xParseCell method and provide various...
2015-06-19  drhMake cellSizePtr() a method on the MemPage object,...
2015-06-18  drhFurther #ifdef changes in speedtest1.c in order to...
2015-06-18  drhPervent the likelihood() function from moving ON clause...
2015-06-18  drhShow the values of Expr.flag in the AST of ".selecttrace"
2015-06-18  drhAdd #ifdefs to some features speedtest1.c so that it...
2015-06-17  drhPerformance improvement in sqlite3VdbeMemShallowCopy...
2015-06-17  mistachkinImprove spacing and comment style for the shell. No...
2015-06-17  drhImproved comments on the fuzzcheck.c test program....
2015-06-17  drhFix a uninitialized variable use in the command-line...
2015-06-17  drhPerformance optimization and comment fixes for the...
2015-06-17  drhMake getCellInfo() a real function instead of a macro...
2015-06-17  drhOptimizations to two VDBE accessory routines for a...
2015-06-16  drhEnsure that the CREATE TABLE AS statement correctly...
2015-06-15  drhAdjust ICU tests to account for recent changes in the...
2015-06-15  drhFix a harmless comment typo. No code changes.
2015-06-15  drhFix harmless compiler warnings.
2015-06-15  drhImproved detection of database corruption in freeSpace().
2015-06-15  drhComment typo fix. No code changes.
2015-06-13  drhOmit mutex calls in pcache1 when the mutex is NULL...
2015-06-13  drhAvoid unnecessary mutex usage in pcache1, for a signifi... faster-pcache1-fetch
2015-06-12  drhAdd a fast-path implementation of pcache1Fetch() for...
2015-06-12  drhMinor performance optimization in pcache1.c.
2015-06-12  drhAdd the OP_ColumnsUsed opcode (when compiled with
2015-06-11  drhRemove stray outputs from the test suite.
2015-06-11  drhWhen generating code for partial indexes, be sure not...
2015-06-10  mistachkinMore test output refinements. testerOutput
2015-06-10  mistachkinRemove possibly stray output from various tests.
2015-06-10  mistachkinFix minor typo in the quicktest MSVC makefile target.
2015-06-10  drh"test" targets on all makefiles use --verbose=file...
2015-06-10  danAvoid passing constraints that are unusable due to...
2015-06-09  danAdd the --output=$file and --verbose=(0|1|file) options...
2015-06-09  danRemove some repeated lines of source code. Probably... vtab-left-join
2015-06-08  drhAdd the valgrindfuzz target to unix makefile.
2015-06-08  danIf a query contains "FROM t1 LEFT JOIN t2, t3, t4"...
2015-06-08  danAvoid passing constraints that are unusable due to...
2015-06-08  mistachkinFix typo in comment. No changes to code.
2015-06-08  drhSplit out some source code into new files: wherecode...
2015-06-08  drhFactor out the TreeView parse tree printing module...
2015-06-08  drhSplit more subfunctions of where.c out into a new where...
2015-06-06  drhSplit out the bulk of the actual VDBE code generation...
2015-06-06  drhCode simplifications in select.c and where.c.
2015-06-06  drhMinor cleanup of the sqlite3Select() procedure.
2015-06-05  drhSplit FROM-clause subquery flattening and code generati...
2015-06-05  drhProvide one final Select tree dump prior to WHERE claus...
2015-06-05  drhAdd a new opcode to the VDBE that gives the b-tree... column-usage-hint
2015-06-04  drhChange the name of SrcList.a[].zIndex to the more descr...
2015-06-02  drhAlways check for cell overflow before returning a slot...
2015-06-02  drhFor FROM-clause subqueries that cannot be flattened...
2015-06-02  drhAdd test cases for type affinity rules.
2015-06-02  drhRename SQLITE_AFF_NONE to SQLITE_AFF_BLOB to avoid...
2015-06-02  drhRename SQLITE_AFF_NONE to SQLITE_AFF_BLOB. blob-affinity-rename
2015-06-02  drhFix a faulty assert() in btree.c. Update the database...
2015-06-01  drhFor FROM-clause subqueries that cannot be flattened... subquery-opt
2015-06-01  drhCorrections to comments in expr.c. No code changes.
2015-06-01  drhTypo fixes and additional background information in...
2015-05-30  drhUpdates to configure.ac to help it find where the TCL...
2015-05-30  mistachkinFix minor typo in comment. No changes to code.
2015-05-29  drhEnsure that allocateBtreePage() always clears the MemPa...
2015-05-29  drhMove two unreachable conditionals inside of NEVER(...
2015-05-29  drhRemove a corruption test in balance_nonroot that is...
2015-05-29  drhOmit the rowallock.test script (Read-Only WAL lock...
2015-05-29  drhAdd support for automatic indexes on FROM-clause subque...
2015-05-29  drhAdd some extra source-code comments and a test case. coroutine-autoindex
2015-05-29  drhAn attempt to allow automatic index creation on subquer...
2015-05-29  drhUsing "SELECT ALL" instead of just "SELECT" on a query...
2015-05-28  drhAdded comments and testcase() macros to error cases...
2015-05-28  drhEarlier detection of incompatible sibling pages in...
2015-05-28  drhAdd new test cases to the fuzzdata3.db set of database...
2015-05-28  drhAdd the btreeGetUnusedPage() routine to btree.c, and...
2015-05-28  drhDo not attempt to take any write lock on a read-only...
2015-05-27  drhThe fuzzoomtest makefile target is no longer supported...
next