Thanks to visit codestin.com
Credit goes to chromium.googlesource.com

  1. 35cd8b1 Make the new file test_delete.c portable to MSVC on Windows. by mistachkin · 9 years ago test_delete
  2. 000f95b Add new file test_delete.c, containing test code for deleting an sqlite database. by dan · 9 years ago
  3. b80dbdc Fix a out-of-order variable declaration for some compile-time configurations. by drh · 9 years ago
  4. fe37658 In releasetest.tcl, the --srcdir option is automatic, so no need to mention by drh · 9 years ago
  5. 2c33183 Fix an obsolete comment in the releasetest.tcl source code. by drh · 9 years ago
  6. eedeb92 In releasetest.tcl: by drh · 9 years ago
  7. 1fbd008 Issue a warning and prompt the user to continue if the releasetest.tcl script by drh · 9 years ago
  8. f78dcd1 Add support for row-value comparisons, including IN operators, and by drh · 9 years ago
  9. 26c8d0c Fix a problem handling expressions like "(a, b) IN (SELECT ... ORDER BY 1, 2)" when there is an index on "a" but not "b". by dan · 9 years ago rowvalue
  10. d609bdb Add the ext/misc/memvfs.c extension that implements a VFS for read-only by drh · 9 years ago
  11. c097e12 Simplify the affinity handling logic in codeAllEqualityTerms(). Logically by drh · 9 years ago
  12. af6f65f Merge fixes from trunk. by drh · 9 years ago
  13. fc8b40f Fix the ".read" command in the command-line shell so that it understands by drh · 9 years ago
  14. 57a8c61 The ORDER BY LIMIT optimization is not valid unless the inner-most IN operator by drh · 9 years ago
  15. 63cecc4 Remove obsolete vector-IN test cases. Fix a bad testcase() macro. by drh · 9 years ago
  16. 1431807 Fix corer cases of vector IN operators where the RHS is a compound SELECT by drh · 9 years ago
  17. 773d3af Remove an unnecessary branch from expr.c. by dan · 9 years ago
  18. c7a77ae Avoid unnecessary memory allocations for aiMap in codeEqualityConstraints. by drh · 9 years ago
  19. aaf8a06 Avoid a NULL pointer deref in codeAllEqualityConstraints() following an OOM. by drh · 9 years ago
  20. 1c12657 Simplify the fix in commit [7d9bd22c]. by dan · 9 years ago
  21. 099a0f5 Fix the header comment on codeEqualityTerm(). by drh · 9 years ago
  22. 83c434e Fix a problem handling (a, b) IN (SELECT ...) expressions when there is an index on just one of "a" or "b". by dan · 9 years ago
  23. ed24da4 Enhance the sqlite3GetTempRange() and sqlite3ReleaseTempRange() internal by drh · 9 years ago
  24. fad0e70 Fix a typo in a comment in expr.c. by dan · 9 years ago
  25. 9f24b53 Simplified logic to extract a column from a row value. by drh · 9 years ago
  26. c1bcd9c Fix an assert() so that it does C-compiler does not combine an assert() by drh · 9 years ago
  27. 3fffbf9 Simplifications to the SQLITE_KEEPNULL flag on VDBE comparison operators. by drh · 9 years ago
  28. 083aefc Do vector comparison size checking early - at name resolution time - to by drh · 9 years ago
  29. b29e60c Catch vector size mismatch problems during name resolution to avoid later by drh · 9 years ago early-vector-size-check
  30. 5c3340b Fix a crash that could occur under certain circumstances if the vectors on either side of a comparison operator were of a different size. by dan · 9 years ago
  31. 80aa545 Fix a problem causing the affinity of sub-select row-value elements to be ignored in some contextes. by dan · 9 years ago
  32. 8f9d1ad Merge the fuzzershell enhancement from trunk. by drh · 9 years ago
  33. 9f6dd02 Build the generate_series(START,END,STEP) table-valued function into by drh · 9 years ago
  34. 2718960 Consider the affinity of "b" when using an "a IN (SELECT b ...)" expression with an index on "a". Fix for [199df416]. by dan · 9 years ago
  35. 4910a76 Performance optimizations. by drh · 9 years ago
  36. 55a6f6d Merge recent changes from trunk. by drh · 9 years ago
  37. c6952ad Add a test case for the OOM handled by the previous commit. by dan · 9 years ago
  38. 76729ed Correctly detect an OOM occurring in the setDestPgsz() subroutine of backup. by drh · 9 years ago
  39. 033564c Within a backup operation, ensure that a read-transaction is opened on the source database before its page size is read. This ensures the page-size used to write to the backup database is the same as its actual page-size, which is important for ZipVFS databases. by dan · 9 years ago
  40. e5a0cfa Have "sqldiff --rbu" ignore rows with NULL values in primary key fields. RBU can't handle such rows and the documentation already says sqldiff ignores them. Because the code now uses "=" instead of "IS" to filter on primary key columns, diffs on virtual tables are faster now too. by dan · 9 years ago
  41. d0d49b9 If SQLITE_ENABLE_ZIPVFS is defined, journal_mode=off is configured and a savepoint or statement rollback is attempted, move the pager into the error state to prevent the transaction from being committed. This makes it safe to use journal_mode=off with zipvfs under some conditions. by dan · 9 years ago
  42. a87070a Use some of the example code from the sessions documenatation in the sessions test cases. by dan · 9 years ago
  43. 2e5c505 Fix typos in comments. No changes to running code. by drh · 9 years ago
  44. 6650190 Fix some comments in sqlite3session.h. No changes to code. by dan · 9 years ago
  45. 57b6043 Fixes to fts5 snippet() function. by dan · 9 years ago
  46. 888e1fa Merge updates from trunk. by drh · 9 years ago
  47. 1ad78c5 Fix the extra comments (added with -DSQLITE_ENABLE_EXPLAIN_COMMENTS) so that by drh · 9 years ago
  48. 88e665f Fix the "Synopsis" on the OP_Lt, OP_Le, OP_Gt, and OP_Ge opcodes, which by drh · 9 years ago
  49. 106526e Fix a minor problem in sqlite3FindInIndex() related to rowids being used by drh · 9 years ago
  50. a84a283 Fix the sqlite3FindInIndex() to ensure that it always uses a prefix of by drh · 9 years ago
  51. 363fb95 Add an EXPLAIN QUERY PLAN line for when a index is used to implement by drh · 9 years ago
  52. 4b4f511 Add test cases to rowvalue2.test. by dan · 9 years ago
  53. 6fc8f36 Enhance sqlite3FindInIndex() so that it is able to make use of the by drh · 9 years ago
  54. 0c36fca Fix a post-OOM crash in updateRangeAffinityStr(). Add several ALWAYS() by drh · 9 years ago
  55. b7ca217 Fix a problem with affinity changes and vector range comparisons. by dan · 9 years ago
  56. 0dfa4f6 Allow ROWID values in indexed vector comparisons. by drh · 9 years ago
  57. 61441c3 Fix a problem in internal function sqlite3OpenTableAndIndices causing an operand of an unrelated VM instruction to be overwritten. Fix for [ef360601]. by dan · 9 years ago
  58. 8e16b2d Rename a test procedure in 'speed3.test' to avoid a name collision. by mistachkin · 9 years ago
  59. 64bcb8c Comment improvements. Put ALWAYS and NEVER macros on three unreachable by drh · 9 years ago
  60. 975c800 Adapt the special case of '$' in item names for test 'vtabH-3.1' as well. by mistachkin · 9 years ago
  61. 0a9428d Make the test 'vtabH-3.1' work when there are less than 5 top-level items. by mistachkin · 9 years ago
  62. 7dd7d98 Support running the fstree tests in 'vtabH.test' on Windows when not using the system drive. by mistachkin · 9 years ago
  63. a28f85b Remove an unreachable branch from sqlite3ExprAffinity() by drh · 9 years ago
  64. f10122d Fix typos in 'vtabF.test' file. No changes to code. by mistachkin · 9 years ago
  65. 3cc1913 Merge recent changes from trunk. by drh · 9 years ago
  66. fb82820 Fix the sqlite3_trace_v2() interface so that it goes disabled if either the by drh · 9 years ago
  67. e347d3e Refactor the sqlite3ExprCodeIN() routine for improved maintainability. by drh · 9 years ago
  68. 0a1082a Another fix in the IN-operator algorithm description. by drh · 9 years ago
  69. 1373c3a Further refinement of the in-operator.md documentation. by drh · 9 years ago
  70. ecb87ac Improvements to IN operator code generator comments. Avoid unnecessary by drh · 9 years ago
  71. ee0f22f Corrections to the IN-operator notes. by drh · 9 years ago
  72. 539f2fe Add notes on the implementation of the IN operator. by drh · 9 years ago
  73. 18016ad Simplified VDBE code for the vector NOT IN null-scanning loop. by drh · 9 years ago
  74. 72e26de Improved extended comments of comparison operators when the SQLITE_STOREP2 by drh · 9 years ago
  75. 62659b2 In sqlite3FindInIndex(), improve internal comments and avoid an by drh · 9 years ago
  76. 37ff4d4 Fix a bug in the fts5 snippet function causing it to return text containing zero phrase instances. by dan · 9 years ago fts5-snippet-bias
  77. 24b6b81 Sync up the MSVC autoconf makefile. by mistachkin · 9 years ago
  78. 321e828 Fix more unreachable branches. by drh · 9 years ago
  79. d0b67a8 Add a NEVER() on an unreachable branch in comparisonAffinity(). by drh · 9 years ago
  80. 7887d7f Fix a buffer overrun in the code for handling IN(...) operators when the LHS of the operator contains indexed columns or expressions. by dan · 9 years ago
  81. ac6b47d The previous OOM fix was bad. Back it out and replace it with a better one. by drh · 9 years ago
  82. 894241c Avoid a potential null-pointer dereference following an OOM. by drh · 9 years ago
  83. e835bc1 Simplify the row value misuse error message. by drh · 9 years ago
  84. 66860af Fix a problem with rowvalue UPDATE when the rowvalue is not the left-most and by drh · 9 years ago
  85. abb9d5f Fix an uninitialized variable in CASE expression code generation. by drh · 9 years ago
  86. 6ae3ab0 Fix the SQLITE_USER_AUTHENTICATION login check so that the SQLITE_AUTH_USER by drh · 9 years ago
  87. cbfe110 Add support for the SQLITE_DBCONFIG_MAINDBNAME configuration option. by drh · 9 years ago
  88. 12abf40 Fix the vector BETWEEN operator so that it only evaluates the left-most by drh · 9 years ago
  89. db45bd5 Reinstate the mechanism in BETWEEN that avoids evaluating the first expression by drh · 9 years ago
  90. 84b19a3 The docs promise the in "x BETWEEN y AND z" the x expression is only evaluated by drh · 9 years ago
  91. d832da7 Further comment enhancements. No changes to code. by drh · 9 years ago
  92. 76dbe7a Clarification of code comments in expr.c. Clean up the implementations by drh · 9 years ago
  93. 8bd0d58 Fixes for problems following OOM errors. by drh · 9 years ago
  94. 783e778 Fix other minor problems with the fts5 snippet() function. by dan · 9 years ago
  95. 9854260 Do not duplicate the Expr.pLeft subtree of a TK_SELECT_COLUMN node. by drh · 9 years ago
  96. f358009 Fix a segfault that could occur if a query that used a vector comparison contained certain types of syntax errors. by dan · 9 years ago
  97. 9e730f0 Improvements to the vector comparison splitter in exprAnalyze(). by drh · 9 years ago
  98. 8762ec1 Improvements to comments. No code changes. by drh · 9 years ago
  99. a1251bc Add support for vector assignments in the SET clause of an UPDATE statement. by drh · 9 years ago
  100. fc7f27b Change the way TK_SELECT_COLUMN is handled so that the subquery is only by drh · 9 years ago