๐ŸŒ AIๆœ็ดข & ไปฃ็† ไธป้กต
  1. 92af1eb Add experimental support for the 'test_fs' test module on Win32. by mistachkin ยท 10 years ago testFsWin32
  2. c386ef4 Add the SQLITE_PRINTF_PRECISION_LIMIT compile-time option. by drh ยท 10 years ago
  3. 025d2f7 Fix a problem in xFullPathname for the unix VFS. The problem was found by by drh ยท 10 years ago
  4. 40fe8d3 The EOVERFLOW errors from fstat() is not possible unless SQLite has been by drh ยท 10 years ago
  5. f8b0be4 Fix the threadtest3 test program so that it works with VFSes that omit the by drh ยท 10 years ago
  6. 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
  7. a8de1e1 Simplifications to the locking logic in the unix-dotfile VFS. by drh ยท 10 years ago
  8. 06db66f Fix the sqldiff utility program so that it works for schemas that have by drh ยท 10 years ago
  9. b7e50ad Improvements to temporary file creation logic in the unix VFS. by drh ยท 10 years ago
  10. 790f287 Add the SQLITE_FCNTL_VFS_POINTER file control which obtains a pointer to by drh ยท 10 years ago
  11. ecf0c27 Disable testing with SQLITE_USER_AUTHENTICATION as the makefiles are not set by drh ยท 10 years ago
  12. a6082f6 The first argument to SQLITE_CONFIG_PAGECACHE, SQLITE_CONFIG_SCRATCH, and by drh ยท 10 years ago
  13. 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
  14. 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
  15. acb6b28 Simplify logic for syncing directories after creating or deleting a file in by drh ยท 10 years ago
  16. 5a2d970 Small simplification to the xOpen method in the unix VFS. by drh ยท 10 years ago
  17. 970942e Simplify the temporary filename generator and the time-of-day functions in by drh ยท 10 years ago
  18. 489f1e8 Fix harmless compiler warnings in test_fs.c. Fix typos and clean up the text by drh ยท 10 years ago
  19. 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
  20. d260b5b Make the xAccess method of the unix VFS smaller and faster. by drh ยท 10 years ago
  21. 5337dac Remove unused methods from the unix VFS. by drh ยท 10 years ago
  22. 91c4defb Simplification of the error code translator in os_unix.c. Code cleanup only. by drh ยท 10 years ago
  23. 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
  24. d4a3ce4 Enhancement the virtual table interface to support LIKE, GLOB, and REGEXP by drh ยท 10 years ago
  25. 8b4a94a Add the sqlite3_strlike() interface, which might be useful for implementing by drh ยท 10 years ago vtab-like-operator
  26. ff7b22b Fix a problem in whereexpr.c causing a crash while processing a user-function taht accepts zero arguments. by dan ยท 10 years ago
  27. 060f9a4 Fix harmless compiler warnings in the TCL test harness logic. by drh ยท 10 years ago
  28. 898f70b Merge latest trunk changes with this branch. by dan ยท 10 years ago
  29. 43970dd Add further tests and related fixes for GLOB/REGEXP/LIKE support in virtual tables. by dan ยท 10 years ago
  30. 5a8d190 Remove from os_unix.c pointless logic that tries to prevent a recurrence of by drh ยท 10 years ago
  31. aaeaa18 Fix a comment typo in the unix VFS. No changes to code. by drh ยท 10 years ago
  32. 6226ca2 Make the geteuid() system call overloadable using xSetSystemCall() on the by drh ยท 10 years ago
  33. 7060ef9 Add a test case for the fix of check-in [19d9f9ce691963310] by drh ยท 10 years ago
  34. 2edc5fd Remove an incorrect ALWAYS() macro. Fix for ticket [e5c6268dd807fa8950] - by drh ยท 10 years ago
  35. a9124d3 Add a clarifying comment to the virtual table test module 'test8'. by mistachkin ยท 10 years ago
  36. 3d4143a Do not try to eliminate No-ops at the end of VDBE program as this can cause by drh ยท 10 years ago
  37. 07bdba8 Add experimental support for LIKE, GLOB and REGEXP to the virtual table interface. by dan ยท 10 years ago
  38. 8836cbb Fix an obscure memory leak found by libfuzzer that may occur under some circumstances if expanding a "*" expression causes a SELECT to return more than 32767 columns. by dan ยท 10 years ago
  39. 62aaa6c Fix over-length source code lines. No logic changes. by drh ยท 10 years ago
  40. 2029231 Do not allow table-valued function syntax on ordinary tables and views as those by drh ยท 10 years ago
  41. c960dcb Refactor the VdbeCursor object. It is now slightly smaller and faster and is by drh ยท 10 years ago
  42. 5f7dacb In the OP_Column opcode, only test the btree payload size for exceeding the by drh ยท 10 years ago
  43. 7977fa3 Enhancements to a comment in sqliteInt.h. No changes to code. by drh ยท 10 years ago
  44. 18f8e73 Fix problems with the way the IsHiddenColumn() macro is defined. by drh ยท 10 years ago
  45. aaea314 Fix a problem with VACUUM and __hidden__ columns. by dan ยท 10 years ago
  46. 80090f9 When manifesting a view as part of an DELETE or UPDATE, be sure to include by drh ยท 10 years ago
  47. ba68f8f Fix problems with INSERT INTO ... SELECT ... statements that write to tables with __hidden__ columns. by dan ยท 10 years ago
  48. 1a1d3cd Create the new TK_ASTERISK token to represent the "*" in "SELECT *". Formerly by drh ยท 10 years ago
  49. 05bdfa4 If compiled with SQLITE_ENABLE_HIDDEN_COLUMNS, then columns in ordinary by drh ยท 10 years ago
  50. 03d69a6 Only support the magic "__hidden__" column name prefix interpretation when by drh ยท 10 years ago hidden-columns-in-tables
  51. a6f88ff Fix a 10-year-old misguided attempt at parser performance improvement that by drh ยท 10 years ago
  52. b1daa3f Get the __hidden__ column mechanism working on views with INSTEAD OF triggers. by drh ยท 10 years ago
  53. ab5a8ee Add tests for views to hidden.test. by dan ยท 10 years ago
  54. 6aed239 Honor the "__hidden__" prefix on the columns of views. by drh ยท 10 years ago
  55. d1ce65f Add a test for the __hidden__ hack on this branch. by dan ยท 10 years ago
  56. f0c9145 If a table column name begins with "__hidden__" then do not include that by drh ยท 10 years ago
  57. c88cd13 When using mmap mode on Win32, use a read-only mapping by default. Write to the database file using WriteFile(). Unless SQLITE_MMAP_READWRITE is defined, in which case use a read/write mapping and write into the file using memcpy(). by mistachkin ยท 10 years ago
  58. fe33e39 When using mmap mode on unix, use a read-only mapping by default. Write to the database file using write(). Unless SQLITE_MMAP_READWRITE is defined, in which case use a read/write mapping and write into the file using memcpy(). by dan ยท 10 years ago
  59. bfe8bd5 Fix uninitialized variable in the command line shell. by mistachkin ยท 10 years ago
  60. 81c7811 Fix harmless compiler warning. by mistachkin ยท 10 years ago
  61. e4e416e Add testfixture command "vfs_current_time_int64". Returns the value returned by the xCurrentTimeInt64 method of the default VFS. by dan ยท 10 years ago
  62. 3fd415b In the shell tool, avoid testing if (sqlite3_vfs.xGetCurrentInt64) is NULL for a version 1 VFS. This field is only defined for version 2 and greater. by dan ยท 10 years ago
  63. f7ee896 Fix the column name uniquifier so that it works with zero-length column names. by drh ยท 10 years ago
  64. 96ceaf8 Code simplification in sqlite3ColumnsFromExprList(). Update the %z format by drh ยท 10 years ago
  65. 0315e3c Use a hash table to improve the preformance of column name uniqueness checking. by drh ยท 10 years ago
  66. ebed3fa Use randomness to prevent showness in the generated-column-name uniqueness by drh ยท 10 years ago
  67. 6653fbe Fix a memory leak in the fuzzcheck utility. by drh ยท 10 years ago
  68. ce6cbf9 Add the "--enable-static-shell" option to the amalgamation autoconf script. If set (the default) the compiled shell tool is statically linked against sqlite3.o. Otherwise, it is linked against libsqlite3.so. by dan ยท 10 years ago
  69. 05d4ebf Add the --transaction option to the sqldiff tool. by drh ยท 10 years ago
  70. d63fbb7 Fix the releasetest-out.txt log output from releasetest.tcl so that it works by drh ยท 10 years ago
  71. 29fbdb7 Disable two PRAGMA cache_spill tests when MEMORY_MANAGEMENT is enabled. by drh ยท 10 years ago
  72. 061d35c Change the error messages so that they begin can be grepped using '^!' instead by drh ยท 10 years ago
  73. 5e3cefe Update the SQLLOG logic so that to builds in accordance with the instructions by drh ยท 10 years ago
  74. 8d4482d Always parse the schema *before* running "PRAGMA cache_size", not after. by drh ยท 10 years ago
  75. d66b2e0 Add a space before each line of error output in the test scripts so that all by drh ยท 10 years ago
  76. d83f7ca Add support for the SQLITE_SQLLOG_CONDITIONAL environment variable to the logging code in test_sqllog.c. When defined, logging is only performed if the "<database>-sqllog" file is present in the file system when the main database is opened. by dan ยท 10 years ago
  77. c2e0dd4 Enhance the "PRAGMA cache_spill" statement to accept an integer argument which by drh ยท 10 years ago
  78. 4f9c8ec Test cases. Minor problems fixed. All appears to work now. by drh ยท 10 years ago cache_spill=N
  79. 644f4c1 Fix a #define in parse.y that disabled unused code in the generated parser. by drh ยท 10 years ago
  80. 9b0cf34 First attempt at enhancing the "PRAGMA cache_spill" statement to accept a by drh ยท 10 years ago
  81. 24e9895 Fix missing word in a documentation comment. No changes to code. by mistachkin ยท 10 years ago
  82. 3d38cec Improvements to the SQLITE_CONFIG_PAGECACHE documentation. Enhance the by drh ยท 10 years ago
  83. 0c4105e Improved output formatting for "PRAGMA parser_trace=ON;". by drh ยท 10 years ago
  84. 97e58a2 Make the output of "PRAGMA parser_trace" go to stdout instead of stderr. by drh ยท 10 years ago
  85. 3334d08 Save a few bytes in the parser by using "int" instead of "u8" or "u16" for by drh ยท 10 years ago
  86. 634b242 Change all parsers to use the standard "lempar.c" template in the tool/ by drh ยท 10 years ago
  87. 4350976 Fix harmless compiler warnings in FTS5. by drh ยท 10 years ago parser-enhancements
  88. 54bb56d Performance enhancement to the tokenizer. by drh ยท 10 years ago
  89. 07b09a9 Remove an unused non-terminal from the grammar. by drh ยท 10 years ago
  90. 822a62f Fix a comment typo in the lempar.c template that was missed by the prior by drh ยท 10 years ago
  91. 82415f2 Change the parser to use the standard "lempar.c" template over in the tool/ by drh ยท 10 years ago
  92. a441404 Avoid recursion in the yy_find_shift_action() routine of the Lemon-generated by drh ยท 10 years ago
  93. 3781f01 Size reduction and performance improvement in the stack-popping logic of by drh ยท 10 years ago
  94. 7450494 Fix incorrect WHERE clause in sqldiff, as reported on the mailing list by drh ยท 10 years ago
  95. f10b1f7 Check in the cg_anno.tcl and run-speed-test.sh scripts, as an historical record. by drh ยท 10 years ago
  96. d797035 Avoid unnecessary function prologues in the sqlite3VdbeAddOp3() routine. by drh ยท 10 years ago
  97. 0739e45 Small size reduction and performance increase in the parser. by drh ยท 10 years ago
  98. edd2260 Enhance the sqldiff utility to deal gracefully with ALTER TABLE ADD COLUMN. by drh ยท 10 years ago
  99. cc03305 Fix a bug in CTE handling discovered by LibFuzzer that can cause an infinite loop in the query planner. by dan ยท 10 years ago
  100. fe88fbf Add test cases for WITH clauses. by dan ยท 10 years ago infinite-with-loop-bug