๐ŸŒ AIๆœ็ดข & ไปฃ็† ไธป้กต
  1. e05461c Enhance the command-line shell to handle MBCS characters on input and output. by drh ยท 10 years ago mbcs-shell
  2. ff135ae Add the json_group_array() and json_group_object() aggregate functions to by drh ยท 10 years ago
  3. e1462a7 Avoid a harmless compiler warning on systems where the byteorder cannot by drh ยท 10 years ago
  4. 3e6a141 Fix some harmless gcc compiler warnings. Mostly in fts5, but also two in the core code. by dan ยท 10 years ago
  5. caeca51 Enhance the 'utc' modifier on date/time functions so that if the LHS is by drh ยท 10 years ago
  6. 1c75c9d Ensure that the Expr objects that describe indexed expressions are not modified by drh ยท 10 years ago
  7. d319b8c Micro-optimizations and comment fixes on the mem5.c memory allocator module. by drh ยท 10 years ago
  8. 1db0a72 Fix the spellfix1_scriptcode() function to ignore whitespace and punctuation, by drh ยท 10 years ago
  9. 5732671 Fixes for harmless compiler warnings. by drh ยท 10 years ago
  10. b9becaa Fix even more harmless compiler warnings. by mistachkin ยท 10 years ago
  11. 8ccdef6 Fix some more harmless compiler warnings. by mistachkin ยท 10 years ago
  12. 8c7cd6a Fix compiler warning seen with MSVC. by mistachkin ยท 10 years ago
  13. 8b0ba7b Make greater use of the SQLITE_WITHIN macro. by drh ยท 10 years ago
  14. 991c5d6 Update the mkautoconfamal.sh script to make the building of the sqlite3-autoconf-VERSION.tar.gz package more orthodox. by dan ยท 10 years ago
  15. 3592680 Add the SQLITE_OMIT_PARSER_TRACE compile-time option. by drh ยท 10 years ago
  16. b1d6b53 Add a missing memAboutToChange() macro to vdbe.c, the lack of which was causing an assert() to fail incorrectly. Problem found by libfuzzer. by dan ยท 10 years ago
  17. 0f308f5 Add a new assert() statement to the snapshot-specific part of sqlite3WalBeginReadTrans(). by dan ยท 10 years ago
  18. 567a43b Simplified alignment constraints in the memory reuse logic of by drh ยท 10 years ago
  19. cc99e24 Add the experimental snapshot interface. Because it is experimental, it is by drh ยท 10 years ago
  20. 9b810ae Fix a memory allocation bug introduced last week by check-in by drh ยท 10 years ago
  21. 5a6e89c Mention that the snapshot interfaces are only available if SQLite is compiled by drh ยท 10 years ago snapshot-get
  22. 68d28ea Disable the snapshot test scripts if not compiled with SQLITE_ENABLE_SNAPSHOT. by drh ยท 10 years ago
  23. c49e960 Fix a variable type mismatch problem in the snapshot logic. by drh ยท 10 years ago
  24. 71b62fa Fix a bad assert related to snapshots. by drh ยท 10 years ago
  25. e230a89 Snapshot documentation updates. Comment changes only - no changes to code. by drh ยท 10 years ago
  26. 7116dc6 Update the sqlite3_snapshot_get() API so that if the caller does not have an open read transaction on the named database, one is automatically opened. by dan ยท 10 years ago
  27. 745c14e Add tests to snapshot.test. by dan ยท 10 years ago
  28. a7aeb39 Return SQLITE_BUSY (not SQLITE_BUSY_SNAPSHOT) if sqlite3_snapshot_open() fails to obtain the shared checkpointer lock. by dan ยท 10 years ago
  29. 7d15979 Add tests to ensure that an sqlite3_snapshot_open() client cannot be tricked into reading a corrupt snapshot even if another process fails mid-checkpoint. by dan ยท 10 years ago
  30. 34628b4 Move pointer range comparisons into a macro, where they can be dealt with in a more portable way. by drh ยท 10 years ago
  31. 3bf83cc Have sqlite3_snapshot_open() avoid a race condition by taking a shared CHECKPOINTER lock while checking pInfo->nBackfillAttempted. by dan ยท 10 years ago
  32. ac536e6 Move pointer range comparisons into a macro, where they can be dealt with by drh ยท 10 years ago stdint.h
  33. c9fb38e Fix spacing typo in comment. No changes to code. by mistachkin ยท 10 years ago
  34. 998147e Add the nBackfillAttempted field in formerly unused space in WalCkptInfo and by drh ยท 10 years ago
  35. 65127cd Update sqlite3_snapshot_open() to reduce the chances of reading a corrupt snapshot created by a checkpointer process exiting unexpectedly. by dan ยท 10 years ago
  36. 5ef09bf Further simplifications to the VDBE code generation logic that flow out by drh ยท 10 years ago
  37. 8c8dddc Simplification of the DROP TRIGGER logic using sqlite3NestedParse() instead by drh ยท 10 years ago
  38. ee3b7a2 Merge unrelated fixes from trunk. by drh ยท 10 years ago
  39. 72ea29d Changes to avoid undefined behavior in memset() and memcpy() and in the by drh ยท 10 years ago
  40. ea06a27 Avoid doing comparisons with pointers that might have been previously been by drh ยท 10 years ago
  41. 92a8277 Add a test case of the form "WHERE a<2 OR a<3" using PRAGMA count_changes. by drh ยท 10 years ago
  42. a295d15 Update the TclKit download URL. by mistachkin ยท 10 years ago
  43. 855ed4a Update MSVC batch build tool to the latest Windows 10 SDK version. by mistachkin ยท 10 years ago
  44. df12f1c Add the ".changes ON|OFF" command to the sqlite3.exe command-line shell, for by drh ยท 10 years ago
  45. dc27851 Fix the openDirectory() routine in the unix VFS so that it works for databases by drh ยท 10 years ago
  46. d797a9b Changes to avoid obscure, theoretical undefined behavior. This is preventative by drh ยท 10 years ago
  47. 818b11a Add tests for snapshot_get(), _open() and _free(). by dan ยท 10 years ago
  48. fc1acf3 Add untested implementations of experimental APIs sqlite3_snapshot_get(), _open() and _free(). by dan ยท 10 years ago
  49. 28a6a11 Remove the dependence on "exec ls -U" from the vtabH.test module, as the -U by drh ยท 10 years ago
  50. 2f5bfd9 Prevent a segfault on Solaris in the test_fs.c due to differences in the by drh ยท 10 years ago
  51. 1542727 Fix typos in requirements text and update requirements marks. No changes by drh ยท 10 years ago
  52. 9802947 Improved OOM recovery in the SELECT code generator logic. by drh ยท 10 years ago
  53. 7a7f688 Make the SQLITE_ENABLE_8_3_NAMES compile-time option available to by drh ยท 10 years ago
  54. 90e5dda Cleaner code and additional comments on the handling of 8+3 filenames when by drh ยท 10 years ago
  55. 7be53fe Make the sqlite3_status64(), sqlite3_strlike(), and by drh ยท 10 years ago
  56. 5fcc1ba Fix threadtest3 so that it builds using the autoconf build system. by dan ยท 10 years ago
  57. 48c06f3 Improve concurrency in test_multiplex.c. Add a switch to "threadtest3" allowing it to run using the multiplexor VFS. by dan ยท 10 years ago
  58. c18ed97 A unix VFS change replaces fsync() with fstat() when using SQLITE_NO_SYNC, so by drh ยท 10 years ago
  59. f7ce429 Remove unreachable branches from the decltype computation logic in the query by drh ยท 10 years ago
  60. 9a8941f Have the sqlite3_column_decltype() API report the declared types for the left-most SELECT statement in a compound SELECT. by dan ยท 10 years ago
  61. af19f17 Fix an incorrect, though harmless, assert() in the unix VFS. by drh ยท 10 years ago
  62. ab37277 Remove more (dead) SQLITE_FCNTL_WAL_BLOCK logic from wal.c - code that was by drh ยท 10 years ago
  63. 333e6ca Remove an unreachable branch from the unixMapfile() routine of the unix VFS. by drh ยท 10 years ago
  64. f3b1ed0 Minor simplifications to the unix VFS. by drh ยท 10 years ago
  65. 2c8fd12 Change the SQLITE_NO_SYNC compile-time option to call fstat() in place of by drh ยท 10 years ago
  66. adfa22e Fix a (harmless) off-by-one error in the unix VFS logic that fsync()s a by drh ยท 10 years ago
  67. 50358ad Simplification of the logic used to take the process-wide lock in the by drh ยท 10 years ago
  68. dcfb965 Remove all traces of SQLITE_FCNTL_WAL_BLOCK from the unix VFS - that feature by drh ยท 10 years ago
  69. 053378d Simplification to the posix_fallocate() replacement used for the by drh ยท 10 years ago
  70. 41d2e66 Add the SQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option. by drh ยท 10 years ago
  71. 415afdd The test_fs.c test module now works on Windows. by drh ยท 10 years ago
  72. e1818ec Simplification to the read and write primatives in the unix VFS. by drh ยท 10 years ago
  73. 92af1eb Add experimental support for the 'test_fs' test module on Win32. by mistachkin ยท 10 years ago testFsWin32
  74. c386ef4 Add the SQLITE_PRINTF_PRECISION_LIMIT compile-time option. by drh ยท 10 years ago
  75. 025d2f7 Fix a problem in xFullPathname for the unix VFS. The problem was found by by drh ยท 10 years ago
  76. 40fe8d3 The EOVERFLOW errors from fstat() is not possible unless SQLite has been by drh ยท 10 years ago
  77. f8b0be4 Fix the threadtest3 test program so that it works with VFSes that omit the by drh ยท 10 years ago
  78. d6b459c Add the "colUsed" field to the sqlite3_index_info structure passed to virtual table xBestIndex methods. To indicate the subset of the virtual table columns that may be required by the current scan. by dan ยท 10 years ago
  79. a8de1e1 Simplifications to the locking logic in the unix-dotfile VFS. by drh ยท 10 years ago
  80. 06db66f Fix the sqldiff utility program so that it works for schemas that have by drh ยท 10 years ago
  81. b7e50ad Improvements to temporary file creation logic in the unix VFS. by drh ยท 10 years ago
  82. 790f287 Add the SQLITE_FCNTL_VFS_POINTER file control which obtains a pointer to by drh ยท 10 years ago
  83. ecf0c27 Disable testing with SQLITE_USER_AUTHENTICATION as the makefiles are not set by drh ยท 10 years ago
  84. a6082f6 The first argument to SQLITE_CONFIG_PAGECACHE, SQLITE_CONFIG_SCRATCH, and by drh ยท 10 years ago
  85. 1acb539 Add the "colUsed" field to the sqlite3_index_info structure passed to virtual table xBestIndex methods. To indicate the subset of the virtual table columns that may be required by the current scan. by dan ยท 10 years ago vtab-colused
  86. fab1d40 Fix a problem with the userauth extension and no-authentication databases. Run the tests for this extension as part of the Debug-One module in releasetest.tcl. by dan ยท 10 years ago
  87. acb6b28 Simplify logic for syncing directories after creating or deleting a file in by drh ยท 10 years ago
  88. 5a2d970 Small simplification to the xOpen method in the unix VFS. by drh ยท 10 years ago
  89. 970942e Simplify the temporary filename generator and the time-of-day functions in by drh ยท 10 years ago
  90. 489f1e8 Fix harmless compiler warnings in test_fs.c. Fix typos and clean up the text by drh ยท 10 years ago
  91. 1e93173 Update test_fs.c to include a virtual table that reads a file-system hierarchy. Use it to further test GLOB and LIKE support for virtual tables. by dan ยท 10 years ago
  92. d260b5b Make the xAccess method of the unix VFS smaller and faster. by drh ยท 10 years ago
  93. 5337dac Remove unused methods from the unix VFS. by drh ยท 10 years ago
  94. 91c4defb Simplification of the error code translator in os_unix.c. Code cleanup only. by drh ยท 10 years ago
  95. f5d8c58 Fix the fts5 "prefix=" option to match the documentation (space separated list, multiple prefix= options supported). The undocumented comma-separated format (compatible with fts4) still works. by dan ยท 10 years ago
  96. d4a3ce4 Enhancement the virtual table interface to support LIKE, GLOB, and REGEXP by drh ยท 10 years ago
  97. 8b4a94a Add the sqlite3_strlike() interface, which might be useful for implementing by drh ยท 10 years ago vtab-like-operator
  98. ff7b22b Fix a problem in whereexpr.c causing a crash while processing a user-function taht accepts zero arguments. by dan ยท 10 years ago
  99. 060f9a4 Fix harmless compiler warnings in the TCL test harness logic. by drh ยท 10 years ago
  100. 898f70b Merge latest trunk changes with this branch. by dan ยท 10 years ago