]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2017-01-04  drhChanges to the printf implementation for better perform... printf-optimization
2017-01-03  drhUse compiler intrinsic functions for signed integer...
2017-01-03  drhBack out the use of __sync_fetch_and_sub() as it does... gnu-safe-math
2017-01-03  drhFix a typo in a comment.
2017-01-03  drhUse the CLANG_VERSION macro to control clang-specific...
2017-01-03  drhUse the GCC built-in __sync_fetch_and_sub() to make...
2017-01-03  drhMake use of the __buildin_OP_overflow() functions from...
2017-01-03  drhAdd the experimental affinity() SQL function when SQLIT...
2017-01-03  drhPut the affinity() function implementation inside of... affinity-sql-func
2017-01-03  drhMerge all the latest changes from trunk.
2017-01-03  drhDefer size checking on row-value assignments for when...
2017-01-03  drhFix a typo on a comment. No code changes.
2017-01-03  danAdd test cases for the fix in [f12ed3ce]. No problems...
2017-01-03  drhImprovements to the way vector assignment size checking... vector-size-check
2017-01-03  drhFix the row-values in UPDATE statements within TRIGGER...
2017-01-03  drhImproved assert()s on the sqlite3ExprListDup() logic... rowvalue-update-trigger
2017-01-02  drhTest cases for the row-value UPDATE TRIGGER fix.
2017-01-02  drhPut an ALWAYS() on an unreachable branch in the sqlite3...
2017-01-02  drhProposed fix for the row-value TRIGGER UPDATE problem...
2017-01-02  drhIncrease the version number to 3.17.0 for the next...
2017-01-02  drhProvide the SQLITE_DEFAULT_LOOKASIDE compile-time optio...
2017-01-02  drhChange SQLITE_DEFAULT_PCACHE_INITSZ from 100 to 20...
2017-01-02  drhAvoid unnecessary calls to sqlite3BtreeEnterAll() and...
2017-01-02  drhAdd the --all option to the wordcount test program.
2017-01-02  drhVersion 3.16.0 version-3.16.0
2017-01-01  drhDetect row-value comparison size mismatches even when...
2016-12-31  drhAdd the --help and --all options to the wordcount test... wordcount-enhancement
2016-12-31  drhIn speedtest1.c, make the "--lookaside 0 0" option... speedtest1
2016-12-31  drhMinor #include change to speedtest1.c so that it will...
2016-12-30  danFix a crash that could occur following an OOM in the...
2016-12-30  drhStrengthen the defense against OOM in the instr() SQL...
2016-12-30  drhAdd a test to ensure that the app-defined pcache xFetch...
2016-12-30  danAvoid passing NULL pointers to memcmp() or memcpy(...
2016-12-30  drhFix a harmless compiler warning in fuzzcheck.c
2016-12-30  drhDisable the pagerAcquireMapPage() routine if memory...
2016-12-30  drhEncode a 64-bit integer literal in date.c as a constant...
2016-12-29  drhFix harmless compiler warnings in the command-line...
2016-12-29  drhIn kvtest.c, use stat() instead of fseek()/ftell()...
2016-12-29  drhAdd the kvtest.c test program used to show that it...
2016-12-29  drhAdd more detail to the header command to further explai... kvtest
2016-12-29  drhFix kvtest.c so that it compiles using MSVC.
2016-12-29  drhIn kvtest.c: do not show the --cache-size setting on...
2016-12-29  drhImprovements to the kvtest.c utility. Added the -...
2016-12-29  drhAdd the kvtest.c test program for measuring key/value...
2016-12-27  drhDo not allow the nockpt.test module to run under the...
2016-12-27  drhAllow sqlite3_interrupt() to be invoked on a database...
2016-12-27  drhAdjust a corruption test case to accommodate the sqlite...
2016-12-27  drhDisable new test modules nockpt.test and interrupt2...
2016-12-27  drhAvoid a potential (harmless) signed integer overflow...
2016-12-27  drhMinor changes to make some newer test cases work under...
2016-12-26  drhDuring fuzz testing with the fuzzcheck utility program...
2016-12-26  drhEnable ossfuzz.c to build even if SQLITE_OMIT_PROGRESS_...
2016-12-26  drhRemove an incorrect ALWAYS() macro from balance_nonroot...
2016-12-26  drhAdd the built-in affinity() SQL function.
2016-12-26  drhEnhance the fuzztest utility with the --prng-seed optio...
2016-12-24  drhCombine the implementations of the ".tables" and "...
2016-12-24  drhThe schema name "main" is always an acceptable alias...
2016-12-24  drhChange the output format of the ".databases" command...
2016-12-24  drhIn the command-line shell, improve the formatting to...
2016-12-23  drhFill in missing opcode documentation entries for OP_Sor...
2016-12-23  drhUse the VList object to capture the mapping between...
2016-12-23  drhAdd check to prevent a VList from growing after pointer... VList
2016-12-23  drhFix the VList object so that it actually works.
2016-12-23  drhUse the VList object to replace Parse.azVar for trackin...
2016-12-22  drhFix harmless compiler warnings.
2016-12-21  drhChange the default lookaside configuration from 500...
2016-12-21  drhSimplifications to the way UnpackedRecord objects are...
2016-12-18  drhChange the OP_IfNotZero opcode so that it decrements...
2016-12-17  drhRefinements to the new dbfuzz test program.
2016-12-17  drhEnhance fuzzershell.c to read and execute SQL commands...
2016-12-17  danFix a problem in the shell tools readfile() command...
2016-12-16  drhAdd the ".lint fkey-indexes" command to the command...
2016-12-16  drhFix minor issues with the ".lint" command implemention... fkey-missing-indexes
2016-12-16  drhBuilt-in PRAGMA statements without side-effects can...
2016-12-16  danChange ".fkey_missing_indexes" to ".lint fkey-indexes".
2016-12-16  danUpdate .fkey_missing_indexes to use the built-in pragma...
2016-12-16  danMerge the pragma-as-vtab change into this branch.
2016-12-16  danFix a problem causing the planner to generate sub-optim...
2016-12-16  drhFix an error in the way the "schema" argument to some... pragma-as-vtab
2016-12-16  drhSimplifications to facilitate full test coverage.
2016-12-16  drhMinor bug fixes and enhancements to the pragma eponymou...
2016-12-16  drhMerge enhancements from trunk, and especially the abili...
2016-12-16  drhAll temp.sqlite_master to be used as an alias for sqlit...
2016-12-15  drhFix the cost estimation in the BestIndex method of...
2016-12-15  drhThe pragma as eponymous virtual table mechanism now...
2016-12-15  drhCode to automatically create eponymous virtual tables...
2016-12-15  drhDo exponential rather than linear expansion of the...
2016-12-15  drhDo more pragma processing from tables rather than in... table-driven-pragma
2016-12-15  danAdd the -groupbyparent option to the ".fkey_missing_ind...
2016-12-14  danAdd the experimental ".fkey_missing_indexes" command...
2016-12-14  drhRefactor the Table.nRef field as Table.nTabRef for...
2016-12-14  drhIncrease the size of the reference count on Table objec...
2016-12-14  drhFix the configure makefile to align it with the manual...
2016-12-14  drhAdjust the unix makefiles so that "make test" runs...
2016-12-14  drhThree times faster sqlite3SrcListAppend() in the common...
2016-12-14  drhFix the optimization that prevents writing freelist...
2016-12-13  drhIn the command-line shell, in the output of the ".dump...
2016-12-13  drhFix harmless compiler warnings.
2016-12-13  drhConvert sqlite3PagerGet() into a pointer-dispatched...
2016-12-13  drhIn the pager, avoid checking for the illegal page numbe... pager-get-method
next