๐ŸŒ AIๆœ็ดข & ไปฃ็† ไธป้กต
  1. 47a2b4a Avoid using posix_fallocate() in WAL mode, as it is not supported by all file-systems. by dan ยท 13 years ago avoid-fallocate
  2. 5e2f28c Rebalance FTS expressions after parsing to limit recursion during evaluation. Avoid recursion when deleting FTS expression trees. Enforce a limit (currently 12) on the depth of an expression tree. by dan ยท 13 years ago
  3. 2ea5400 Merge another trunk change. by dan ยท 13 years ago fts3-expr-rebalance
  4. 6f77140 Fix harmless compiler warnings in the FTS expression parser. by drh ยท 13 years ago
  5. 2bba8c2 Reduce the default SQLITE_MAX_MMAP_SIZE slightly so that it fits in a by drh ยท 13 years ago
  6. 0d02dd8 Merge latest trunk changes. by dan ยท 13 years ago
  7. aa29c86 Rebalance FTS expressions after parsing to limit recursion during evaluation. Avoid recursion when deleting FTS expression trees. Enforce a limit on the depth of an expression tree. by dan ยท 13 years ago
  8. ea41dc4 Added the nextchar.c extension. Minor changes to the spellfix.c extension by drh ยท 13 years ago
  9. e67f418 Fix the tool/build-shell.sh script to remove references to files that are by drh ยท 13 years ago
  10. d9555a7 Add wiki documentation files for the spellfix1 virtual table. by drh ยท 13 years ago
  11. c140a6b Merge the std-ext branch into trunk. This merge adds several new extensions by drh ยท 13 years ago
  12. 8416fc7 Added the transitive_closure, ieee754, and amatch extensions. by drh ยท 13 years ago std-ext
  13. b7045ab Move the test_spellfix.c module to ext/misc/spellfix.c. by drh ยท 13 years ago
  14. 1fb64af Fix the MSVC makefile so that it works with the ext/misc/*.c extensions. by drh ยท 13 years ago
  15. e50db1c Convert the fuzzer virtual table into a loadable extension and move it by drh ยท 13 years ago
  16. 24b6422 Make test_wholenumber.c into a loadable extension and move it to by drh ยท 13 years ago
  17. aa87f9a Make sure the affinity and datatype of sub-subqueries are initialized by drh ยท 13 years ago
  18. ed17167 Fix a simple comment typo. No changes to code. by drh ยท 13 years ago
  19. 248f2be Make "test_regexp.c" into a loadable extension and move it over to by drh ยท 13 years ago
  20. da8caa0 Fix harmless compiler warnings. by drh ยท 13 years ago
  21. d99aaf1 Do not allow a virtual table to cancel the ORDER BY clause unless all by drh ยท 13 years ago
  22. 4d648c7 Update MSCV makefile for the fts3tokenize virtual table. Clear some by drh ยท 13 years ago
  23. d7a959c Add virtual table module 'fts3tokenize' to fts3. fts3tokenize provides SQL access to FTS tokenizer implementations. by dan ยท 13 years ago
  24. b9830a1 Enhanced documentation for the SQLITE_CONFIG_SQLLOG mechanism and the by drh ยท 13 years ago
  25. 0c41d22 Use transitivity to move constraints into the outer loops of a join whenever by drh ยท 13 years ago
  26. cca17c3 Add the "warning" command to the TCL test infrastructure. Fix problems by drh ยท 13 years ago
  27. f8b1c69 Enhance the extension loading mechanism so that the same source code by drh ยท 13 years ago
  28. 08ef8d7 Make the SQLITE_EXTENSION_INIT1 and SQLITE_EXTENSION_INIT2 macros into by drh ยท 13 years ago loadext
  29. c288e44 Experiments in making loadable extensions easier to program. The by drh ยท 13 years ago
  30. 93c8c45 Fix an incorrect comment (a copy/paste error) in the mptester. No code changes. by drh ยท 13 years ago
  31. bc08281 Add the --breakpoint and --show-sql-errors commands to mptester. by drh ยท 13 years ago
  32. a956af6 Fix a compiler warning in sqlite3_compileoption_used(). by drh ยท 13 years ago
  33. 83b5bfc Do not suppress the ORDER BY clause on a virtual table query if an IN by drh ยท 13 years ago
  34. 44fddca Fix the --match command in mptester so that it checks the entire result, by drh ยท 13 years ago
  35. 87f9caa In the mptester, add --glob and --notglob and --testcase. Make --exit work by drh ยท 13 years ago
  36. 7a411f4 In the command-line shell, allow a dot-command to occur after a by drh ยท 13 years ago
  37. 4670f6d Improvements to some of the comments that are used to render documentation by drh ยท 13 years ago
  38. 99b3908 Update the command-line shell to give an exit code of 0 when the ".quit" by drh ยท 13 years ago
  39. d16d0bc Omit sqlite3_compileoption_used() entries that are not explicitly stated by drh ยท 13 years ago
  40. 50287f5 Remove the unused SQLITE_CURDIR macro. by drh ยท 13 years ago
  41. 0f23401 Disable memory-mapped I/O when the codec is enabled. by drh ยท 13 years ago
  42. 5824e05 Expand scope of the SQLITE_MAX_MMAP_SIZE define for the Win32 VFS. by mistachkin ยท 13 years ago
  43. 9b4c59f Refactoring the mmap interface. The controlling pragma is now "mmap_size" by drh ยท 13 years ago
  44. a1710cc Fix a formatting typo in a comment. No changes to code. by drh ยท 13 years ago
  45. f9b70c4 Only consider AS names from the result set as candidates for resolving by drh ยท 13 years ago
  46. a3a5bd9 Only consider AS names from the result set as candidates for resolving by drh ยท 13 years ago tkt-2500cdb9be
  47. 4b2ac35 Add a test case for detaching a database referenced by an fts4aux table created in the temp schema. by dan ยท 13 years ago
  48. a8f6038 Change the fts4aux virtual table module so that fts4aux tables created in the temp database may report on fts3/fts4 tables in any attached database. by dan ยท 13 years ago
  49. 739ee7f In mptester: improve the way that child processes are dispatched. Pass by drh ยท 13 years ago
  50. fdd72c9 For the multi-process tester on Win32, make use of the GetCurrentProcessId API. by mistachkin ยท 13 years ago
  51. e82c6c3 Fix the xCheckReservedLock() method on the windows VFS so that it cannot by drh ยท 13 years ago
  52. ef8e986 Fix pragma code generation so that it always outputs an OP_Trace opcode so by drh ยท 13 years ago
  53. e3be8c8 Show the process-id on log messages from mptester. by drh ยท 13 years ago
  54. fbc7e88 Have the UNIX VFS issue warnings via sqlite3_log() if a database file is by drh ยท 13 years ago
  55. 08d4189 Enhance multi-process tester integration with the Win32 API. by mistachkin ยท 13 years ago
  56. d040e76 Add new primary error codes SQLITE_NOTICE and SQLITE_WARNING for use with by drh ยท 13 years ago
  57. 56282a5 Add the sqlite3_strglob() interface. by drh ยท 13 years ago
  58. 4c5298f Use symbolic names for tasks in mptester. by drh ยท 13 years ago
  59. 21c9b6b Fix typo in name of mptest executable files in clean targets. by mistachkin ยท 13 years ago
  60. 65eb647 Correct test numbering on several rtree tests. by mistachkin ยท 13 years ago
  61. 7de96f7 Limit integrity_check output to 10 lines in mptester scripts. by drh ยท 13 years ago
  62. ab755ac Change the rollback journal so that it invokes sqlite3_log() make a record by drh ยท 13 years ago
  63. 6e0b6d5 Add extra #ifndef statements in os_unix.c and os_win.c to make sure the by drh ยท 13 years ago
  64. 188d488 Disable the use of memory-mapped I/O if the SQLITE_DISABLE_MMAP macro is by drh ยท 13 years ago
  65. f90e50f In mptester, handle startScript no-change commits using a retry rather by drh ยท 13 years ago
  66. 6adab7a Still more tests using mptester. Added test cases that leave rollback by drh ยท 13 years ago
  67. 023dd90 Adding tests to the mptester scripts. by drh ยท 13 years ago
  68. e5ebd22 Change mptester to avoid reporting SQLITE_BUSY errors if the busy handler by drh ยท 13 years ago
  69. bcb8a86 Handle the case in os_unix.c where SQLITE_FCNTL_MMAP_LIMIT requests that the mmap limit be set to a value smaller than the current mapping. by dan ยท 13 years ago
  70. 554052c Merge the multi-process tester into trunk. by drh ยท 13 years ago
  71. bc94dbb Add the "mptester" target to the makefiles. Make mptester run with by drh ยท 13 years ago mptest
  72. 841810c Fix harmless compiler warnings in mptest.c. by drh ยท 13 years ago
  73. 1bf44c7 Add the vfsname() and eval() SQL functions to mptest.c. by drh ยท 13 years ago
  74. 7dfe8e2 Add --if, --else, --endif processing to mptest.c. by drh ยท 13 years ago
  75. fbfe388 Fix an incorrect type cast in an assignment in vdbe.c. by dan ยท 13 years ago
  76. e348fc7 Fix the --source command so that its argument is relative to the script. by drh ยท 13 years ago
  77. 8f35eb0 Merge trunk changes into the mptest branch. The mptest needs the by drh ยท 13 years ago
  78. 6062531 Increase the default SQLITE_MAX_SCHEMA_RETRY to 50. Make sure that macro by drh ยท 13 years ago
  79. 1790bb3 Add SQLITE_CONFIG_LOG error logging to the mptest program. by drh ยท 13 years ago
  80. 896be7d Get the build of mptest working on mac. by drh ยท 13 years ago
  81. f012ae0 Get the mptest program running on windows. by drh ยท 13 years ago
  82. 3f5bc38 Many improvements to the mptest program. Added a simple test script. by drh ยท 13 years ago
  83. abd6d84 Add tests to "permutations.test coverage-pager" to cover uncovered branches. by dan ยท 13 years ago
  84. 27338e6 Add a prototype TH3-script-style test harness that starts multiple processes by drh ยท 13 years ago
  85. d7a558a Improve the code coverage of "permutations.test coverage-pager". by dan ยท 13 years ago
  86. ced9813 Add further multi-client tests to mmap1.test. by dan ยท 13 years ago
  87. 75f2d54 Disable memory-mapped I/O for the win32lock.test module by drh ยท 13 years ago
  88. 67f7c78 Updates to the file-control documentation. No changes to code. by drh ยท 13 years ago
  89. 6109e50 Increase the version number to 3.7.17. by drh ยท 13 years ago
  90. a478b3f Try to use mmap() to speed access to the database file on windows, linux, by drh ยท 13 years ago
  91. b0a8ea0 Release resources prior to bailing out of the btreeCreateTable() routine by drh ยท 13 years ago experimental-mmap
  92. 370c9f4 Remove an unreachable branch in the direct blob I/O logic of btree.c. by drh ยท 13 years ago
  93. 716d6d2 Fix a bug in the detection of iOS when setting the default mmap_limit. by drh ยท 13 years ago
  94. 34f7490 Change the mmap_limit pragma to report the new limit, or to report the by drh ยท 13 years ago
  95. 6c96946 Remove the restriction on using xFetch to load the root pages of tables and indexes. It appears to have been based on a misconception. by dan ยท 13 years ago
  96. f7679ad When moving a page to make way for the root page of a new table or index in an auto-vacuum database, save the positions of any cursors that may be holding xFetch references to the page being moved. by dan ยท 13 years ago
  97. 227a1c4 In btree.c, save the positions of other cursors open on the same table when writing via an incremental blob handle. Otherwise, they may be left holding an out-of-date xFetch page reference. by dan ยท 13 years ago
  98. 2b8246e Initialize the mmap_limit of temporary files to the configured mmap_limit. by drh ยท 13 years ago
  99. 7e36962 Make use of xFetch, if it is available when doing a VACUUM or a backup. by drh ยท 13 years ago
  100. 7d9f394 Add the -mmap option to the command-line shell, for setting the default by drh ยท 13 years ago