๐ŸŒ AIๆœ็ดข & ไปฃ็† ไธป้กต
  1. 5b4b255 Version 3.7.16 by drh ยท 13 years ago version-3.7.16
  2. 27e6df4 Enhance tests for ticket [4dd95f6943]. by dan ยท 13 years ago
  3. b19cad6 Fix the ORDER BY with IN constraint logic so that it works with all by drh ยท 13 years ago
  4. 725e1ae Add a single new test case to the ORDER BY with IN logic verify that if the by drh ยท 13 years ago desc-orderby-fix-1
  5. 706627b Fix typo in sqlite3_close() function documentation reported on the mailing list. by mistachkin ยท 13 years ago
  6. 3c60421 Fix a test case that had an ambiguous result. by drh ยท 13 years ago
  7. f584016 Fix typo in sqlite3_close() function documentation reported on the mailing list. by mistachkin ยท 13 years ago docTypo
  8. 1ccce44 Fix the ORDER BY optimization with IN constraints when the RHS of the by drh ยท 13 years ago
  9. d383216 Revise the patch to make it easier to understand. by drh ยท 13 years ago
  10. d7e8689 Add test cases for [4dd95f6943]. by dan ยท 13 years ago
  11. 7a3e147 Revised fix for the DESC ORDER BY and IN constraint bug, by drh ยท 13 years ago
  12. 0fe456b A proposed fix for the DESC ORDER BY bug of ticket [4dd95f6943fbd18]. by drh ยท 13 years ago
  13. 881bd79 Define _BSD_SOURCE when building on OpenBSD. This is required for fchmod(). by dan ยท 13 years ago
  14. b606ec5 Fixes for compiling with SQLITE_OMIT_AUTOVACUUM and/or SQLITE_OMIT_TRIGGER defined. by dan ยท 13 years ago
  15. 09ff9e1 Fixes for compiling with SQLITE_OMIT_AUTOVACUUM and/or SQLITE_OMIT_TRIGGER defined. by dan ยท 13 years ago omit-fixes
  16. 3da0df9 Add a test case for the problem fixed by the previous commit. by dan ยท 13 years ago
  17. 6d235cb Fix a problem with resolving "db.view.column" references that appear in UPDATE or DELETE statements executed against views. by dan ยท 13 years ago
  18. 994ff6f If SQLITE_OMIT_UTF16 is defined, avoid setting the 'enc' field of Schema objects to any value except SQLITE_UTF8. Otherwise, assert() statements may fail or spurious SQLITE_NOMEM errors may be returned at the vdbe level later on. by dan ยท 13 years ago
  19. dbd4d5f If SQLITE_OMIT_UTF16 is defined, avoid setting the 'enc' field of Schema objects to any value except SQLITE_UTF8. Otherwise, assert() statements may fail or spurious SQLITE_NOMEM errors may be returned at the vdbe level later on. by dan ยท 13 years ago
  20. fe7a5d1 Fix the char() function so that it works even if SQLITE_OMIT_UTF16 is defined. by drh ยท 13 years ago
  21. 5acefe7 Skip tests that require UTF-16 support when compiled with SQLITE_OMIT_UTF16. by mistachkin ยท 13 years ago
  22. ef593f2 Fix two compilation issues, one warning and one error, that occur only when SQLITE_OMIT_UTF16 is defined. by mistachkin ยท 13 years ago
  23. 42c4bd0 Fix a problem in incrvacuum_ioerr.test. Do not run ioerr6.test with an in-memory journal. by dan ยท 13 years ago
  24. 459f63e Fix a bug (ticket [fc7bd6358f59]) that caused incorrect query results in by drh ยท 13 years ago
  25. a0272d8 Add the SQLITE_READONLY_ROLLBACK extended error code. by drh ยท 13 years ago
  26. cfc1769 Fix an operator precedence problem on the [1d8086902e] check-in. by drh ยท 13 years ago ex-robust-open
  27. 77dfe91 Merge experimental branch with trunk. by dan ยท 13 years ago
  28. b83c21e Do not attempt to set the permissions on an existing journal or wal file. Do this only immediately after creating a new file (or opening one zero bytes in size). by dan ยท 13 years ago
  29. e3664fb Add extended error code SQLITE_READONLY_ROLLBACK. Returned if a read-only connection cannot read the database because doing so would require it to roll back a hot-journal. by dan ยท 13 years ago
  30. e1df4e3 Fix a bug in the recent incremental-vacuum related changes. by dan ยท 13 years ago
  31. edf9a17 Simplified error message on the showdb utility. by drh ยท 13 years ago
  32. 84fb4c2 Omit a test that uses the progress handler callback from view.test if OMIT_PROGRESS_HANDLER is defined. by dan ยท 13 years ago
  33. e0ac363 Remove an assert() statement that has been incorrect since the recent incremental-vacuum related changes in [26e235b7a4]. by dan ยท 13 years ago
  34. 7015698 Add the test_fs.c test module to Makefile.in. Adjust the success criteria by drh ยท 13 years ago
  35. 82e647d Update comments on the free-page allocator to accurately reflect the by drh ยท 13 years ago
  36. 1d59d03 Complete the initialization of the loadable extension thunk table. Also by drh ยท 13 years ago
  37. 1488052 Update the cygwin interface to use the newer 1.7 APIs instead of the by drh ยท 13 years ago
  38. 6e8a54f Prevent Tcl file encoding issues in the tests for the unicode() and char() functions. by mistachkin ยท 13 years ago
  39. 6ffb497 Fix an overly restrictive assert() in the pager. by drh ยท 13 years ago
  40. de97724 Fix the handling of UTF16 surrogate pairs in the char() function. by drh ยท 13 years ago
  41. 503a686 Always use strncmp() rather than memcmp() when comparing strings where one by drh ยท 13 years ago
  42. 016fff2 In the incrvacuum3 test, add missing call to the Tcl close command. by mistachkin ยท 13 years ago
  43. dd1dd48 When comparing names during name resolution, make sure the names match by drh ยท 13 years ago
  44. 9cf37e7 Change the way test script incrvacuum3.test copies database files in order to avoid trying to read the (locked) 512 byte 'pending-byte' region. by dan ยท 13 years ago
  45. 8d0b81d Prevent Tcl file encoding issues in the tests for the unicode() and char() functions. by mistachkin ยท 13 years ago funcTestEncoding
  46. c954544 Remove extra use of the sqlite3_value_int64() function. by mistachkin ยท 13 years ago
  47. fbc1ddf Add new SQL functions unicode() and char(). by drh ยท 13 years ago
  48. c6a6717 Strengthen the final test case in index5.test. Also provide additional by drh ยท 13 years ago
  49. 132d938 Fix an error in test script index5.test. by dan ยท 13 years ago
  50. f2874b0 Merge the incr-vacuum-opt branch with the trunk. by dan ยท 13 years ago
  51. 295fc44 Add test file incrvacuum3.test. No code changes. by dan ยท 13 years ago incr-vacuum-opt
  52. 896f99e Catch a dropped error code in backup.c. by dan ยท 13 years ago
  53. 9138471 Fix a case where database corruption may cause an assert() to fail. by dan ยท 13 years ago
  54. e0b6059 Fix a case in the incremental vacuum code where database corruption was going unreported. by dan ยท 13 years ago
  55. 22d2730 Fix a cut-and-paste bug causing the library to fail to report database corruption in a few cases. by dan ยท 13 years ago
  56. b88e24f Enhancements to test scripts. No code changes. by dan ยท 13 years ago
  57. 87ade19 Fix off-by-one bug in [c3939d2491] uncovered by th3. by dan ยท 13 years ago
  58. bc1a3c6 If a rollback mode transaction reduces the size of the database file, avoid actually truncating the file until after the transaction has been committed (but before the db has been unlocked). This means pages that are removed from the database by truncating the file need not be journalled. by dan ยท 13 years ago
  59. f38b65a Fix a problem with the previous commit. by dan ยท 13 years ago
  60. 51f0b6d Avoid moving pages more than once in an incremental vacuum operation. by dan ยท 13 years ago
  61. d495d8c Two new SQL functions: unicode() and char(). by drh ยท 13 years ago unicode-function
  62. d5d0f64 On Minix, disable the ".timer" command in the shell in order to avoid by drh ยท 13 years ago
  63. 344a97b Enhance the showdb tool with options to show PTRMAP usage and content. by drh ยท 13 years ago
  64. 103a70f Fix the showdb utility so that it displays the correct secondary usage of by drh ยท 13 years ago
  65. 00e637f Enhance the pgidx of the showdb utility so that it provides better information by drh ยท 13 years ago
  66. 5c5760a Do not rollback the schema if a parsing error occurs while parsing the schema by drh ยท 13 years ago
  67. 4bde370 Truncate over-length source lines in sqliteInt.h to 80 characters or less. by drh ยท 13 years ago
  68. 5cee8a7 Add the edit_cost_table= command to the spellfix1 virtual table, permitting by drh ยท 13 years ago
  69. c8ac0d1 Fix an unsafe VM register deallocation. by drh ยท 13 years ago
  70. 4600255 Check for a NULL handle prior to manually calling winClose. by mistachkin ยท 13 years ago
  71. c95e01d Verify that the schema has not changed before running PRAGMA table_info, by drh ยท 13 years ago
  72. 9ce59a9 On WinCE, fill in the winFile structure after winceCreateLock has succeeded. by mistachkin ยท 13 years ago
  73. 4207a3f Add recent API additions to the extension mechanism. by drh ยท 13 years ago
  74. a4b05e2 Allow an index to be used for sorting even if prior terms of the index by drh ยท 13 years ago
  75. 2512924 Improve memory allocation error handling on WinCE. by drh ยท 13 years ago
  76. 785097d A bug report coming from from Firefox by drh ยท 13 years ago
  77. 7e87eae Improve memory allocation error handling on WinCE. by mistachkin ยท 13 years ago wince
  78. a173eab Add extended error codes for all SQLITE_CONSTRAINT errors. by drh ยท 13 years ago
  79. 433dccf Rename SQLITE_CONSTRAINT_RAISE to SQLITE_CONSTRAINT_TRIGGER. Put the by drh ยท 13 years ago constraint-error-codes
  80. d91c1a1 Add extended error codes for constraint errors. by drh ยท 13 years ago
  81. 5edf843 Fix a potential NULL-pointer dereference following an OOM error by drh ยท 13 years ago IN-with-ORDERBY
  82. 3667033 Make sure the virtual tables that take advantage of IN operators sort the by drh ยท 13 years ago
  83. 2d96b93 Loop through the elements on the RHS of an IN operator in reverse order when by drh ยท 13 years ago
  84. c3e552f Allow the "a=?1 OR a=?2" to "a IN (?1,?2)" transformation to work on virtual by drh ยท 13 years ago
  85. 1b8fc65 Allow an index to be used for sorting even if prior terms of the index by drh ยท 13 years ago
  86. 928d9c6 Fix harmless compiler warnings. by drh ยท 13 years ago
  87. 2bfe1df Add the ability to skip defining the localtime() function when being compiled for WinCE. by mistachkin ยท 13 years ago
  88. 28a3bcb Remove some debugging logic accidently left in the limit.test module. by drh ยท 13 years ago
  89. 547180b Fix LIMIT and OFFSET so that they work and do not leak memory even on by drh ยท 13 years ago
  90. e096205 New debugging pragmas: PRAGMA vdbe_debug=ON is short-hand for the sql_trace, by drh ยท 13 years ago
  91. 47f2239 Fix an issue with the SQLITE_TESTCTRL_EXPLAIN_STMT and compound queries with by drh ยท 13 years ago
  92. d2a5623 Issue an error message and quit (rather than overflowing a reference counter) by drh ยท 13 years ago
  93. 173ba09 Cause the command-line shell to issue an error message if you give something by drh ยท 13 years ago
  94. 7c37e2f Add a single test case to fts4unicode.test to verify that title-case by drh ยท 13 years ago
  95. ef4c035 Fix the test_spellfix.c extension so that it can be made loadable at run-time. by drh ยท 13 years ago
  96. d3ac7d9 Enhance the command-line shell so that adding a non-zero numeric argument by drh ยท 13 years ago
  97. 1590d10 Add btree-page decoding logic to showwal.c. Commands of the form: by drh ยท 13 years ago
  98. 03c41c0 Further improvements to showwal.c: Reset the checksum after each frame so that by drh ยท 13 years ago
  99. d63ce04 Enhance the "showwal" utility program to show checksum failures on frames. by drh ยท 13 years ago
  100. bc46f02 Improved parsing of the arguments to the ".backup" command in the by drh ยท 13 years ago