๐ŸŒ AIๆœ็ดข & ไปฃ็† ไธป้กต
  1. 6fd5c1e Fixes for compiler warnings and errors in the makefiles. Rename the by drh ยท 10 years ago json
  2. f28ed79 Change the name of the json loadable extension to "json1.c", in anticipation by drh ยท 10 years ago
  3. 4af352d Add the fullkey column to both json_each() and json_tree(). by drh ยท 10 years ago
  4. b1b124d Merge header file fixes from trunk. by drh ยท 10 years ago
  5. cfe05d8 Add a missing #define for sqlite3_vsnprintf to sqlite3ext.h. by drh ยท 10 years ago
  6. 180872f Reserve the SQLITE_IOERR_VNODE error code name. by drh ยท 10 years ago
  7. 505ad2c Add the json_tree() virtual table. by drh ยท 10 years ago
  8. a7781dc Merge in trunk fixes for table-valued functions. by drh ยท 10 years ago
  9. 1f2fc28 Fix a corner-case bug in table-valued functions. Update the generate_series() by drh ยท 10 years ago
  10. 0dfbe06 Fix typo in comment. No changes to code. by drh ยท 10 years ago
  11. 6842952 Merge the latest changes from trunk, including the table-valued function by drh ยท 10 years ago
  12. 0fee596 Compiler-warning fixes in the sqldiff.exe utility. by drh ยท 10 years ago
  13. c743579 Fix a couple C99-isms that cause compile errors on MSVC. by drh ยท 10 years ago
  14. d8b1bfc Fix corner-case memory management issues in table-valued functions. Change by drh ยท 10 years ago
  15. 197d59f Skip calling the virtual table xDestroy method when it is null. by mistachkin ยท 10 years ago
  16. 1abbe28 Fix compiler warnings in the sqldiff tool seen with MSVC. by mistachkin ยท 10 years ago
  17. bc63ec1 Fix stray variable declaration for C89. by mistachkin ยท 10 years ago
  18. d10dbad Correctly handle empty function argument lists on table-valued functions. by drh ยท 10 years ago
  19. 7fcdd06 Add support for table-valued functions in the FROM clause implemented as by drh ยท 10 years ago
  20. b81fba1 Prevent the series.c extension from loading on older versions of SQLite that by drh ยท 10 years ago table-valued-functions
  21. cbd8db3 Make SQLITE_BUSY_SNAPSHOT and SQLITE_BUSY_RECOVERY retryable, just as a plain by drh ยท 10 years ago
  22. 01dced1 Fix a typo in series.c. by dan ยท 10 years ago
  23. 6b43cc8 Fix the path lookup for objects so that it can handle quoted identifier by drh ยท 10 years ago
  24. cb6c6c6 Add the json_each(JSON,PATH) table-valued-function. by drh ยท 10 years ago
  25. 222cd5b Merge the table-valued-function rowid fix. by drh ยท 10 years ago
  26. 509c3fc Fix eponymous virtual tables so that they do not automatically make the first by drh ยท 10 years ago
  27. 03726aa Merge support for table-valued functions. by drh ยท 10 years ago
  28. bc550df Improved comments on the generate_series virtual table. Test cases for by drh ยท 10 years ago
  29. 01d230c A list of arguments following a table name translates into equality by drh ยท 10 years ago
  30. 8a48b9c Minor refactor of the SrcList object so that it is able to hold the argument by drh ยท 10 years ago
  31. 398f872 Virtual table modules with a null xCreate method act as eponymous-only modules - by drh ยท 10 years ago
  32. b89c92a Merge changes from trunk. by drh ยท 10 years ago
  33. 0e07f6a Simplification to error handling in addModuleArgument() in the virtual table by drh ยท 10 years ago
  34. 5ef2b28 When updating a zipvfs database with RBU, set journal_mode=off to prevent the upper-level pager from creating a large temporary file. by dan ยท 10 years ago
  35. 51be387 Initial implementation of eponymous virtual table instances. by drh ยท 10 years ago
  36. c1e63be Add test file spellfix2.test, which should have been checked in some time ago. by dan ยท 10 years ago
  37. 0cbb513 Fix harmless compiler warning in FTS5. by mistachkin ยท 10 years ago
  38. 0042a97 Comment clarification. No changes to code. by drh ยท 10 years ago
  39. 52216ad Initial implementation of json_set() and json_insert(). by drh ยท 10 years ago
  40. d096059 Initial implementation of json_replace(). by drh ยท 10 years ago
  41. 301eecc Add an initial implementation for json_remove(). by drh ยท 10 years ago
  42. 987eb1f Initial implementation for json_array_length(), json_extract(), and json_type(). by drh ยท 10 years ago
  43. 5634cc0 Abandon the JSONB format for now. (We may return to it in the future.) Add by drh ยท 10 years ago
  44. b2cd10e Fix off-by-one error when parsing primitive JSON types "true", "false", and by drh ยท 10 years ago
  45. e9c37f3 Add a prototype JSON parser. by drh ยท 10 years ago
  46. d5a74c8 Minor fix to the display of oversized KeyInfo structures in the P4 operand by drh ยท 10 years ago
  47. e31dc59 Duplicate the output of releasetest.tcl into releasetest-out.txt by drh ยท 10 years ago
  48. 82d7aea Add the sqlite3rbu_savestate() function to the rbu extension. To force rbu to save its state to disk without closing the sqlite3rbu* handle. by dan ยท 10 years ago
  49. bd0621b Experimental code (untested) for a JSONB datatype. by drh ยท 10 years ago
  50. 4510faa Avoid invoking system call unlink() directly from RBU code. Use the xDelete method of the default VFS instead. by dan ยท 10 years ago
  51. 2032d60 Add the json_object() function. by drh ยท 10 years ago
  52. 5fa5c10 Begin adding an extension that provides JSON SQL functions. by drh ยท 10 years ago
  53. 7899fa7 Minor optimization for fts5 API xInst(). by dan ยท 10 years ago
  54. 7918dc8 Add the xPhraseFirst() and xPhraseNext() fts5 APIs, for faster iteration through a single phrases position list. Also optimize xInst() and xInstCount() a bit. by dan ยท 10 years ago
  55. f053ceb Merge fixes from the fts5NoWarn branch. by dan ยท 10 years ago
  56. aa2cdca Fix compiler warnings and remove unreachable code. by drh ยท 10 years ago
  57. 834f997 Fix an assert() that was in the wrong spot. by drh ยท 10 years ago
  58. 027616d Fix compiler warnings and remove unreachable code. by drh ยท 10 years ago
  59. d50bd6b Update RBU to avoid repreparing a statement immediately after it is prepared. by dan ยท 10 years ago
  60. cf599b6 Enhance the query planner so that it is able to use partial indexes that use by drh ยท 10 years ago
  61. 5a79028 Add a specially formatted comment to shell.c to make it easier for scripts to edit. No code changes. by dan ยท 10 years ago
  62. 3acc85f increase the version number to 3.8.12 by drh ยท 10 years ago
  63. 7e968a7 Fix harmless compiler warnings in FTS5 code. by mistachkin ยท 10 years ago fts5NoWarn
  64. c38e00f Fix duplicate test numbering in the FTS5 matchinfo tests. by mistachkin ยท 10 years ago
  65. 50b5491 Add tests for the matchinfo-like test function. Fix problems found in test and fts5 code by doing so. by dan ยท 10 years ago
  66. b20a42e Update the spellfix virtual table extension so that an explicit "top = ?" constraint works even if there is also a "distance < ?" or "distance <= ?" constraint. by dan ยท 10 years ago
  67. dca9290 Fix some problems in test code detected by cppcheck. by dan ยท 10 years ago
  68. f9419d1 Remove all references to "docid" within fts5 source code and comments. Replace with "rowid". by dan ยท 10 years ago
  69. d3789c0 Add new test file fts5_test_mi.c, containing an implementation of a function similar to FTS4 matchinfo() for FTS5. by dan ยท 10 years ago
  70. dc6ef98 Improve the usage comment on sqlite3_analyzer: show the available switches. by drh ยท 10 years ago
  71. 30c16ad Update the [showdb] program so that the database file is read directly (bypassing the SQLite VFS) only if the --raw option is specified. Otherwise, it is read using the default VFS. Also, the URI syntax may be used on the command line to specify the name of the database file to examine, so an alternative VFS may be requested using a URI parameter. by dan ยท 10 years ago
  72. 8fb1bd2 Update the [showdb] program so that the database file is read directly (bypassing the SQLite VFS) only if the --raw option is specified. Otherwise, it is read using the default VFS. An alternative VFS may be specified by specifying the database file to open using the URI syntax. by dan ยท 10 years ago showdb-uri-option
  73. 8fb6c43 In the sqlite3_analyzer.exe utility, show the depth of each btree and report by drh ยท 10 years ago
  74. 871f6e3 Add the "--uri" option to utility program "showdb". This option causes showdb to use sqlite with the SQLITE_OPEN_URI option to open the database file, instead of opening it directly using the OS open() function. by dan ยท 10 years ago
  75. fa4620b Allow a VIEW to reference undefined tables and functions when initially by drh ยท 10 years ago
  76. 0734b5a Add extra tests for RBU and FTS3/4. by dan ยท 10 years ago
  77. a9ca8af Add support for "fossil deltas" to RBU and "sqldiff --rbu". by dan ยท 10 years ago
  78. 8ff2587 Fix the sqlite3_stmt_busy() interface so that it always returns FALSE after by drh ยท 10 years ago
  79. 90c3179 Remove a duplicate "typedef struct Fts5Global Fts5Global;" from fts5_main.c (duplicate is in fts5Int.h). by dan ยท 10 years ago
  80. 809edfc When building the VSIX package for UAP, omit the AppLocal suffix for the MSVC runtime library because it is no longer needed. by mistachkin ยท 10 years ago
  81. dd688e7 Fix a problem causing [sqldiff --rbu] to fail on tables for which all columns are part of the PRIMARY KEY. by dan ยท 10 years ago
  82. 79e2347 Fix a bug in the fts5 porter tokenizer preventing it from passing xCreate() arguments through to its parent tokenizer. by dan ยท 10 years ago
  83. 9946185 Add the --rbu switch to the "sqldiff" utility. by dan ยท 10 years ago
  84. c1e8ae6 Allow RBU tables to be named "data[0-9]*_<target>" instead of strictly "data_<target>". Also update RBU so that it always processes data tables in order sorted by name. by dan ยท 10 years ago
  85. dbac3ec Return an error message (instead of segfaulting) if test function fts5_expr() is invoked with no arguments. by dan ยท 10 years ago
  86. e61d31f Support building VSIX packages for UAP using Visual Studio 2015 and the Windows 10 SDK. by mistachkin ยท 10 years ago
  87. afb4004 Update Windows 10 SDK version for RTM. by mistachkin ยท 10 years ago msvc2015
  88. 60e0807 Add SQLITE_DISABLE_INTRINSIC define to disable use of intrinsic functions (e.g. for certain older compilers and/or platforms). by mistachkin ยท 10 years ago
  89. 36c25f7 Fix the releasetest.tcl script so that it ignore cast overflow errors that by drh ยท 10 years ago
  90. 6a8d08b Version 3.8.11.1 by drh ยท 10 years ago version-3.8.11.1
  91. 3bc3709 Restore an undocumented side-effect of PRAGMA cache_size: it forces the by drh ยท 10 years ago
  92. 0f43df3 Update comments in fts5.h describing the xColumnCount() API function. by dan ยท 10 years ago
  93. cc3c382 Increase the version number to 3.8.11.1 by drh ยท 10 years ago branch-3.8.11
  94. 8ea60e3 The "PRAGMA cache_size" reads the database schema, as it has down in all prior by drh ยท 10 years ago
  95. 9b71414 Update batch build tool library paths for MSVC 2015. by mistachkin ยท 10 years ago
  96. 41b9ca2 Fix the xfer optimization for WITHOUT ROWID tables so that it correctly by drh ยท 10 years ago
  97. 33a3c75 Clarification to the documentation for sqlite3_result_zeroblob64(). No by drh ยท 10 years ago
  98. 3b8d5ac Version 3.8.11 by drh ยท 10 years ago version-3.8.11
  99. 291d090 Merge the fts5-btree-index branch with this one. FTS5 changes only. by dan ยท 10 years ago
  100. c3b4132 Bump the "version" field in the fts5 config table. by dan ยท 10 years ago fts5-btree-index