Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fluencelabs/sqlite
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: fluencelabs/sqlite
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: original
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 122 files changed
  • 2 contributors

Commits on Feb 13, 2023

  1. Copy the full SHA
    9a6d654 View commit details
  2. Merge pull request #8 from raftedproc/original

    This commit bumps original sqlite sources up to 3.40.1
    raftedproc authored Feb 13, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b0f9bda View commit details
Showing with 55,615 additions and 37,742 deletions.
  1. +875 −265 src/alter.c
  2. +319 −316 src/analyze.c
  3. +158 −172 src/attach.c
  4. +9 −14 src/auth.c
  5. +9 −39 src/backup.c
  6. +1 −1 src/bitvec.c
  7. +1 −0 src/btmutex.c
  8. +1,452 −724 src/btree.c
  9. +47 −16 src/btree.h
  10. +35 −14 src/btreeInt.h
  11. +1,431 −504 src/build.c
  12. +110 −59 src/callback.c
  13. +234 −214 src/ctime.c
  14. +312 −204 src/date.c
  15. +36 −17 src/dbpage.c
  16. +298 −124 src/dbstat.c
  17. +107 −55 src/delete.c
  18. +1,826 −743 src/expr.c
  19. +104 −60 src/fkey.c
  20. +262 −135 src/fts3.c
  21. +37 −14 src/fts3Int.h
  22. +6 −1 src/fts3_aux.c
  23. +11 −9 src/fts3_expr.c
  24. +1 −1 src/fts3_porter.c
  25. +84 −55 src/fts3_snippet.c
  26. +7 −4 src/fts3_tokenize_vtab.c
  27. +4 −2 src/fts3_tokenizer.c
  28. +1 −1 src/fts3_tokenizer1.c
  29. +1 −0 src/fts3_unicode.c
  30. +198 −109 src/fts3_write.c
  31. +1,567 −727 src/fts5.c
  32. +3 −3 src/fts5.h
  33. +625 −146 src/func.c
  34. +50 −23 src/geopoly.c
  35. +92 −19 src/global.c
  36. +2 −1 src/hash.c
  37. +1 −1 src/hash.h
  38. +15 −15 src/hwtime.h
  39. +20 −18 src/icu.c
  40. +1,025 −322 src/insert.c
  41. +399 −234 src/{json1.c → json.c}
  42. +370 −221 src/keywordhash.h
  43. +90 −21 src/loadext.c
  44. +749 −265 src/main.c
  45. +258 −76 src/malloc.c
  46. +6 −6 src/mem2.c
  47. +74 −74 src/mem3.c
  48. +11 −2 src/mem5.c
  49. +372 −67 src/memdb.c
  50. +41 −35 src/memjournal.c
  51. +1 −0 src/mutex.c
  52. +1 −0 src/mutex.h
  53. +1 −1 src/mutex_unix.c
  54. +1 −1 src/mutex_w32.c
  55. +8 −8 src/notify.c
  56. +162 −148 src/opcodes.c
  57. +189 −172 src/opcodes.h
  58. +32 −8 src/os.c
  59. +13 −0 src/os.h
  60. +0 −6 src/os_common.h
  61. +979 −0 src/os_kv.c
  62. +60 −26 src/os_setup.h
  63. +484 −246 src/os_unix.c
  64. +84 −22 src/os_win.c
  65. +422 −415 src/pager.c
  66. +19 −22 src/pager.h
  67. +4,042 −3,458 src/parse.c
  68. +105 −96 src/parse.h
  69. +56 −15 src/pcache.c
  70. +53 −47 src/pcache1.c
  71. +494 −123 src/pragma.c
  72. +132 −143 src/pragma.h
  73. +269 −129 src/prepare.c
  74. +150 −45 src/printf.c
  75. +59 −36 src/random.c
  76. +693 −323 src/resolve.c
  77. +2 −2 src/rowset.c
  78. +207 −95 src/rtree.c
  79. +2,597 −1,016 src/select.c
  80. +16,517 −7,841 src/shell.c
  81. +0 −11,792 src/sqlite3.h
  82. +77 −2 src/sqlite3ext.h
  83. +304 −169 src/sqlite3rbu.c
  84. +71 −43 src/sqlite3rbu.h
  85. +568 −217 src/sqlite3session.c
  86. +78 −17 src/sqlite3session.h
  87. +1,463 −566 src/sqliteInt.h
  88. +5 −6 src/sqliteLimit.h
  89. +143 −0 src/sqlite_cfg.h
  90. +0 −1 src/sqliteicu.h
  91. +22 −4 src/status.c
  92. +90 −43 src/stmt.c
  93. +2 −2 src/table.c
  94. +234 −116 src/tclsqlite.c
  95. +72 −83 src/tokenize.c
  96. +679 −106 src/treeview.c
  97. +412 −123 src/trigger.c
  98. +568 −218 src/update.c
  99. +154 −90 src/upsert.c
  100. +1 −1 src/userauth.c
  101. +68 −65 src/utf.c
  102. +181 −61 src/util.c
  103. +23 −25 src/vacuum.c
  104. +1,921 −743 src/vdbe.c
  105. +50 −30 src/vdbe.h
  106. +157 −60 src/vdbeInt.h
  107. +381 −144 src/vdbeapi.c
  108. +986 −624 src/vdbeaux.c
  109. +20 −11 src/vdbeblob.c
  110. +206 −148 src/vdbemem.c
  111. +27 −20 src/vdbesort.c
  112. +2 −4 src/vdbetrace.c
  113. +428 −0 src/vdbevtab.c
  114. +197 −106 src/vtab.c
  115. +516 −206 src/wal.c
  116. +5 −0 src/wal.h
  117. +96 −29 src/walker.c
  118. +1,983 −599 src/where.c
  119. +105 −56 src/whereInt.h
  120. +764 −262 src/wherecode.c
  121. +445 −198 src/whereexpr.c
  122. +533 −160 src/window.c
Loading