๐ŸŒ AIๆœ็ดข & ไปฃ็† ไธป้กต
  1. af7626f Add tests to e_delete.test. by dan ยท 15 years ago
  2. b51d2fa Further tests and changes to make the r-tree module more robust. by dan ยท 15 years ago
  3. bd188af Add new file rtreeA.test, to test that the r-tree extension doesn't crash if it encounters a corrupt or inconsistent database. by dan ยท 15 years ago
  4. 9fe5b85 Remove additional occurrences of <ctype.h> from FTS2. by drh ยท 15 years ago
  5. 8786f7f Have all FTS3 queries obtain a read or write table-lock at the shared-cache level before doing anything else. by dan ยท 15 years ago
  6. f2fcd07 Completely remove all trace of ctype.h from FTS2. by drh ยท 15 years ago
  7. d9e430e When building from the amalgamation with ENABLE_RTREE defined, do not try to include sqlite3rtree.h. by dan ยท 15 years ago
  8. 9977edc Changes to comments and type names in rtree.c. by dan ยท 15 years ago
  9. 18ec96b Add the "circle" test geometry callback to test_rtree.c. And tests for the same. by dan ยท 15 years ago
  10. c223b8f When generating sqlite3.h, append the contents of sqlite3rtree.h. by dan ยท 15 years ago
  11. 7bddb75 Add tests (and associated fixes) to restore coverage of rtree.c. by dan ยท 15 years ago
  12. 3b5a7a3 Add file sqlite3rtree.h. by dan ยท 15 years ago
  13. 9508daa Add code to allow user-defined searches of r-tree tables. Still largely untested. by dan ยท 15 years ago
  14. 897230e Fix a couple of memory leaks in r-tree that can occur following an OOM condition. by dan ยท 15 years ago
  15. c234540 Remove unreachable condition from rtree.c. by dan ยท 15 years ago
  16. 2bf1917 Improve coverage of rtree.c some more. by dan ยท 15 years ago
  17. f836afd Further test coverage improvements for rtree.c. by dan ยท 15 years ago
  18. 92e01aa Test cases to improve coverage of rtree module. Fixes associated with the same. by dan ยท 15 years ago
  19. a235d0c Fixes to allow fts3 tables to be renamed mid-transaction. by dan ยท 15 years ago
  20. ee2c813 The R-tree module should not assume that its shadow tables are consistent. by drh ยท 15 years ago
  21. 036391f Update an r-tree extension test case to account for recent changes to the query planner. Also fix a comment in rtree.c. by dan ยท 15 years ago
  22. f053d5b Fix two comment typos that were reported on the mailing list. by drh ยท 15 years ago
  23. c78db07 Remove all vestiges of ctype.h from FTS3. by drh ยท 15 years ago
  24. 60176fa Updates to the README.txt file for ICU. by drh ยท 15 years ago
  25. a69f7d5 Re-introduce the prefix-search optimization of [feef1b15d6], which was lost in a reorganization of FTS3 code. by dan ยท 15 years ago
  26. d846c5e In the async-IO module, do not increment the open file-counter until after an "open file" event has been added to the event queue. Otherwise, an OOM may cause the system to increment the counter even though no file was successfully opened. by dan ยท 15 years ago
  27. b638a3d Fix some MSVC compiler warnings in the ASYNC extension. by shaneh ยท 15 years ago
  28. 78f1e53 Change the async-IO extension to return SQLITE_IOERR_SHORT_READ when appropriate. This prevents a valgrind warning in the test suite. by dan ยท 15 years ago
  29. 8a300f8 Fix a couple more compiler warnings under MSVC. by shaneh ยท 15 years ago
  30. 6d3cb2f Fix for [9861b74ab9]. Correctly handle strings with zero tokens in the fts3 offsets() function. by dan ยท 16 years ago
  31. 7bca0a3 More commenting and documentation enhancements in FTS3. by drh ยท 16 years ago
  32. d6291c9 Fix up obsolete comments in FTS3 to conform to the latest nomenclature. by drh ยท 16 years ago
  33. 3f0d9d3 Have the xUpdate() method of the rtree module virtual table implementation set the *pRowid output variable when inserting a row. Fix for [dd3ba6063a]. by dan ยท 16 years ago
  34. 3b6f4c0 Rewrite a couple of queries used internally by FTS3 to take advantage of the "SELECT max(x) FROM ..." optimization. by dan ยท 16 years ago
  35. 71663ad Mark internal routines as "static" in FTS3. Ticket [b1552d0fa7]. by drh ยท 16 years ago
  36. 3a3dd3a Improved error message when the right-hand operand of MATCH in FTS3 is by drh ยท 16 years ago
  37. 9396a41 Fix FTS3 so that it does not run illegal SQL and cause a spurious log by drh ยท 16 years ago
  38. 40d238e Disable FTS4 (which is incomplete and not ready for publication) to prevent by drh ยท 16 years ago
  39. 89374d2 Fix a one byte buffer overread in fts3. by dan ยท 16 years ago
  40. 84f4b2f Minor changes to silence some compiler warnings with MSVC. by shaneh ยท 16 years ago
  41. 31caa42 Remove an unused variable from rtree. by drh ยท 16 years ago
  42. 5dcb393 Fix for [e9a9fde1f4]. When opening an existing rtree, determine the node size by inspecting the root node of the r-tree structure (instead of assuming it is a function of the page-size). by dan ยท 16 years ago
  43. 56f2996 Fix a segfault in fts3 that may occur if the snippet, offsets or matchinfo functions are used in a query that does not contain a MATCH clause. by dan ยท 16 years ago
  44. b4a1fed Add a new full-text search variant that tracks the total number of documents by drh ยท 16 years ago
  45. d3789b9 Fix two similar problems in fts3 that meant that an OOM error could cause a memory leak. by dan ยท 16 years ago
  46. 3996a06 Add coverage tests for fts3_snippet.c. Also fixes related to the same. by dan ยท 16 years ago
  47. f596da5 Update comments in fts3_snippet.c. by dan ยท 16 years ago
  48. 9a34020 Modify snippets code to run more efficiently. And to avoid a bug relating to snippets based on full-text queries that contain duplicate terms. by dan ยท 16 years ago
  49. 1a54b8e Fix handling of an OOM error in the fts3 offsets() function. Fix a couple of snippet related test cases in e_fts3.test. by dan ยท 16 years ago
  50. 819443e Update comments in fts3.c to more accurately describe the doclist format. by drh ยท 16 years ago
  51. 3174598 Fixes to problems in FTS3 snippet() function found by th3 tests. by dan ยท 16 years ago
  52. c06013d Fix a segfault that can occur following an OOM in the FTS3 snippet() function by dan ยท 16 years ago
  53. b023b04 Change the fts3 snippet function to return (hopefully) more relevant snippets in less time. by dan ยท 16 years ago
  54. bb6b987 Removed compiler warnings in MSVC. by shaneh ยท 16 years ago
  55. a98af17 Add experimental implementation of FTS3 functions matchinfo() and snippet() (not enabled by default). by dan ยท 16 years ago
  56. 46aae3c Changes to remove warnings in MSVC build. by shaneh ยท 16 years ago
  57. 8718183 Fix a bug triggered by optimizing an FTS3 table when there are no segments on disk but pending terms in the hash table. by dan ยท 16 years ago
  58. 3540c1f Add the experimental FTS3 matchinfo() function. Provides details of the match that may be used for result ranking and other purposes. by dan ยท 16 years ago
  59. e61fc3b Fix a problem in FTS3 phrase queries. Add tests to check that it really is fixed. by dan ยท 16 years ago
  60. 6695f47 Change the REGEXP function in ICU to require exactly 2 arguments. by drh ยท 16 years ago
  61. c007646 Handle an unhandled OOM error code that occurs in fts3 with SQLITE_TEST defined. by dan ยท 16 years ago
  62. 9717420 Fix a broken assert() in fts3_write.c. Also fix a couple of compiler warnings in fts3 code. by dan ยท 16 years ago
  63. ca6be31 Tests to cover a few extra branches in fts3.c. by dan ยท 16 years ago
  64. 55be744 Further fts3 coverage tests. by dan ยท 16 years ago
  65. 45bcd6c Extra tests for coverage of fts3 code. by dan ยท 16 years ago
  66. f5fff2a Add coverage test cases for fts3. by dan ยท 16 years ago
  67. 601cd9a Change the fts3 test interface used to configure the advisory node size paraemeter. by dan ยท 16 years ago
  68. 4f887ab Rationalize some code in fts3 used by optimize operations, queries of the pending-terms hash table and segment merges. Add the "INSERT INTO tbl(tbl) VALUES('optimize')" syntax. by dan ยท 16 years ago
  69. ef4114d Avoid declaring and freeing test variables if SQLITE_TEST not defined. by shaneh ยท 16 years ago
  70. dcf3cc1 Remove some unused macros and types from fts3.c. by dan ยท 16 years ago
  71. 0502e56 Fix handling of "WHERE col MATCH ? AND docid = ?" clauses in fts3. by dan ยท 16 years ago
  72. 2c11d59 Fix an OOM related problem in the snippet() and offsets() functions of fts3. by dan ยท 16 years ago
  73. b893721 Changes to fts3 to avoid flushing data to disk within a SELECT statement. by dan ยท 16 years ago
  74. 18ff7fa Improve test coverage of fts3.c. by dan ยท 16 years ago
  75. 6d67e33 Mark fts3ReallocOrFree and fts3InitVtab as static. Ticket [ff44d82f3b]. by dan ยท 16 years ago
  76. 84db21e Add tests to improve coverage of fts3. Associated bugfixes. by dan ยท 16 years ago
  77. 7bf44fc Remove a redundant line from fts3. by dan ยท 16 years ago
  78. 0d93557 Move some SQLITE_TEST code down to avoid mixing code and variable declarations. by shaneh ยท 16 years ago
  79. ff32e39 Add some tests for OR, AND and NOT operations to fts3rnd.test. Add tests to check that errors are returned when bad arguments are passed to fts3 functions snippet, offsets and optimize. Minor fix for the same by dan ยท 16 years ago
  80. 28f372f Fix another bug in 3-way NEAR queries. by dan ยท 16 years ago
  81. 6e053f9 Fix some problems with FTS3 and 3-way NEAR queries. by dan ยท 16 years ago
  82. 165b67c Fix a problem involving a 3-way NEAR query. by dan ยท 16 years ago
  83. acf28fb Modify [2ad1461f25] to avoid leaving a prepared statement in "active" state following an OOM error in FTS3. by dan ยท 16 years ago
  84. 406a15a Fix an FTS3 problem where an OOM error was not being propagated back by drh ยท 16 years ago
  85. e2e5145 Fix an incorrect assert() in fts3.c. Add further fts3 tests. by dan ยท 16 years ago
  86. e585b8f Updates to FTS3 to correct compiler warnings under MSVC. by shaneh ยท 16 years ago
  87. c12075b Change an error message in FTS3 to avoid using an uninitialized variable. by drh ยท 16 years ago
  88. 19125aa Fix an uninitialized value read in sqlite3async.c. by dan ยท 16 years ago
  89. bc7c039 Clear the Pager.dbModified flag when unlocking the database. Assert that it is clear when locking the database. by dan ยท 16 years ago
  90. 6bd3b2a Use #include "sqlite3.h" instead of <sqlite3.h> in fts3Int.h. by dan ยท 16 years ago
  91. 8c44997 Add typedefs for i16 and u8 to fts3Int.h when not building via the amalgamation method. by dan ยท 16 years ago
  92. 65e8c82 Changes to the TCL interface header to allow it to be compiled independently by drh ยท 16 years ago
  93. 3acb07d Open a savepoint within the FTS3 optimize() function. by dan ยท 16 years ago
  94. 612b1d5 Fix a segfault that can occur when querying an empty FTS3 table. Also restore the rowid/docid conflict handling to work as it did in version 3.6.20. by dan ยท 16 years ago
  95. ff3f307 Test coverage improvements in the FTS3 porter stemmer. by drh ยท 16 years ago
  96. 0a62730 Updates to snippet() and offsets() functions of FTS3 so that they work by drh ยท 16 years ago
  97. 9287d93 Change FTS3 to detect when the RHS of the MATCH opertor encounters an OOM by drh ยท 16 years ago
  98. 44c1e5a Remove all benign OOM failure opportunities from the FTS3 hash table by drh ยท 16 years ago
  99. 8e9f6ae Add a test case for creating an FTS3 table with no module arguments or opening/closing brackets in the CREATE VIRTUAL TABLE statement. by dan ยท 16 years ago
  100. 81fa6dc Fix a bug introduced by the fts3 refactoring (segfault when creating a table with zero module args). Also a fix to handle an OOM error. by dan ยท 16 years ago