]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2015-06-12  drhAdd the OP_ColumnsUsed opcode (when compiled with
2015-06-11  drhMerge recent trunk enhancements and fixes.
2015-06-11  danAdd the sqlite3changegroup_xxx() APIs to the sessions...
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-10  danFix the fts5 xRename() method.
2015-06-09  danAdd the "columnsize=" option to fts5, similar to fts4...
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  danFix a comment in fts5.h.
2015-06-06  drhCode simplifications in select.c and where.c.
2015-06-06  danFix handling of fts5 rowid constraints in the absence...
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  danMake use of range constraints on the rowid field of...
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-03  danFix an fts5 problem in extracting columns from position...
2015-06-02  danChange the fts5 multi-column syntax to use parenthesis...
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  danMerge latest trunk changes with this branch.
2015-06-02  danReimplement [ec69e09a] so that each call to the xNext...
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-02  danAdd the "finish_test" command to the end of new test...
2015-06-02  danModify the sessions module to ignore all operations...
2015-06-01  drhFor FROM-clause subqueries that cannot be flattened... subquery-opt
2015-06-01  danImprove performance of the fts5 AND operator.
2015-06-01  drhCorrections to comments in expr.c. No code changes.
2015-06-01  drhTypo fixes and additional background information in...
2015-06-01  danChange fts5 expression processing to avoid linear scans...
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-30  danRemove the "#include sqlite3Int.h" from fts5Int.h.
2015-05-29  drhImport recent enhancements from trunk.
2015-05-29  danAdd extra tests and fixes for multi-column matches.
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  danAdd syntax to fts5 used to specify that a phrase or...
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  danOptimizations for fts5 queries that match against a...
2015-05-28  drhAdded comments and testcase() macros to error cases...
2015-05-28  danRemove some dead code from fts5. Add auxiliary function...
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...
2015-05-27  drhFix a minor and harmless memory leak in fuzzcheck....
2015-05-27  drhAll bytes of a page are initialized, even bytes that...
2015-05-27  drhA different approach to preventing buffer overreads...
2015-05-27  drhDisallow the use of "rowid" in CTEs - it has never...
2015-05-27  danA different approach to preventing buffer overreads... avoid-buffer-overread
2015-05-27  drhCTEs have never add working rowids. So disallow the... no-rowid-in-cte
2015-05-27  drhAdd the "PRAGMA cell_size_check=ON" command. cell-size-check-pragma
2015-05-26  danAvoid a buffer overread when comparing against a corrup...
2015-05-26  danAvoid branching on an uninitalized variable when compar...
2015-05-26  drhThe "make fuzztest" target now uses fuzzcheck instead...
2015-05-26  danMerge accidental fork. test-using-fuzzcheck
2015-05-26  danFix a one-byte buffer overread that may follow a syntax...
2015-05-26  drhFix fuzzcheck so that it responds correctly to the...
2015-05-26  danSimplifications and minor optimizations to fts5 prefix...
2015-05-26  drhThe "make fuzztest" target now uses fuzzcheck instead...
2015-05-26  drhEnhance fuzzcheck with the ability to store description...
2015-05-26  danAdd a cast to one side of the test added by [97806a78...
2015-05-26  danAvoid using a zero-sized array within a struct in fts3...
2015-05-26  drhFix another bug in the in-memory VFS for fuzzcheck.
2015-05-26  danUpdate test cases in corruptI.test so that they work...
2015-05-26  danReturn SQLITE_CORRUPT to the user if an attempt is...
2015-05-26  danFix a problem with ignoring UNIQUE constraints on WITHO...
2015-05-26  mistachkinSilence harmless compiler warnings when building the...
2015-05-26  mistachkinAdd fuzzcheck to makefile clean targets. Also, for...
2015-05-26  drhAdd the --result-trace option to fuzzcheck, and other...
2015-05-25  drhFix an important bug in the xRead method of the in...
2015-05-25  drhAdd the fuzzcheck test program.
2015-05-25  drhAdd fuzzcheck to all makefiles and fix compiler warnings. fuzzcheck
2015-05-25  drhMerge in trunk fixes.
2015-05-25  drhImproved tracing capabilities in fuzzcheck.
next