Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Issue 1610963002: Import SQLite 3.10.2. (Closed)

Created:
4 years, 11 months ago by Scott Hess - ex-Googler
Modified:
4 years, 11 months ago
Reviewers:
michaeln
CC:
chromium-reviews, tim+watch_chromium.org, maxbogue+watch_chromium.org, plaree+watch_chromium.org, jshin+watch_chromium.org, zea+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Import SQLite 3.10.2. Ran through the import script in third_party/sqlite/README.Chromium, including the SQLite test suite. No new errors observed. SQLite changes are at http://www.sqlite.org/changes.html , Chromium previously used 3.8.7.4. All patches were applied and the results reviewed to make sure backported patches were safe to remove, and retained patches were still covering what was necessary. Keep fts4 disabled, and also the new fts3 virtual table and unicode61 tokenizer. Once enabled, these are very hard to disable, and there doesn't seem to be any pressure to enable them. Set SQLITE_DEFAULT_PCACHE_INITSZ to 0 so SQLite does not preallocate 100 pages to pcache (both so Chromium can manage memory, also because our code disables shared pcache). Other SQLITE_* flags were reviewed for applicability, none looked essential. BUG=579743 R=michaeln@chromium.org Committed: https://chromium.googlesource.com/chromium/src/+/e0b6a82cadecbda7e005921c2416fc7afb3542aa

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+30971 lines, -41540 lines) Patch
M third_party/sqlite/BUILD.gn View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/README.chromium View 1 chunk +11 lines, -13 lines 0 comments Download
M third_party/sqlite/amalgamation/sqlite3.h View 183 chunks +1776 lines, -689 lines 0 comments Download
M third_party/sqlite/patches/0001-test-SQLite-tests-compiling-on-Linux.patch View 4 chunks +24 lines, -10 lines 0 comments Download
D third_party/sqlite/patches/0002-Fix-expr.c-linker-error.patch View 1 chunk +0 lines, -30 lines 0 comments Download
A + third_party/sqlite/patches/0002-Use-seperate-page-cache-pools-for-each-sqlite-connec.patch View 2 chunks +16 lines, -16 lines 0 comments Download
A + third_party/sqlite/patches/0003-Exclude-journal-file-from-Time-Machine-if-database-i.patch View 8 chunks +12 lines, -12 lines 0 comments Download
D third_party/sqlite/patches/0003-Use-seperate-page-cache-pools-for-each-sqlite-connec.patch View 1 chunk +0 lines, -44 lines 0 comments Download
D third_party/sqlite/patches/0004-Exclude-journal-file-from-Time-Machine-if-database-i.patch View 1 chunk +0 lines, -157 lines 0 comments Download
A + third_party/sqlite/patches/0004-Modify-default-VFS-to-support-WebDatabase.patch View 9 chunks +19 lines, -19 lines 0 comments Download
D third_party/sqlite/patches/0005-Modify-default-VFS-to-support-WebDatabase.patch View 1 chunk +0 lines, -177 lines 0 comments Download
A + third_party/sqlite/patches/0005-Virtual-table-supporting-recovery-of-corrupted-datab.patch View 16 chunks +34 lines, -31 lines 0 comments Download
A + third_party/sqlite/patches/0006-Custom-shell.c-helpers-to-load-Chromium-s-ICU-data.patch View 4 chunks +15 lines, -15 lines 0 comments Download
D third_party/sqlite/patches/0006-Virtual-table-supporting-recovery-of-corrupted-datab.patch View 1 chunk +0 lines, -3613 lines 0 comments Download
D third_party/sqlite/patches/0007-Custom-shell.c-helpers-to-load-Chromium-s-ICU-data.patch View 1 chunk +0 lines, -145 lines 0 comments Download
A + third_party/sqlite/patches/0007-fts3-Disable-fts3_tokenizer-and-fts4.patch View 6 chunks +7 lines, -7 lines 0 comments Download
D third_party/sqlite/patches/0008-fts3-Disable-fts3_tokenizer-and-fts4.patch View 1 chunk +0 lines, -60 lines 0 comments Download
A + third_party/sqlite/patches/0008-fts3-Interior-node-corruption-detection.patch View 3 chunks +5 lines, -5 lines 0 comments Download
A + third_party/sqlite/patches/0009-fts3-Fix-uninit-variable-in-fts3EvalDeferredPhrase.patch View 3 chunks +5 lines, -5 lines 0 comments Download
D third_party/sqlite/patches/0009-fts3-Interior-node-corruption-detection.patch View 1 chunk +0 lines, -46 lines 0 comments Download
A third_party/sqlite/patches/0010-Allow-read-only-memory-mapping.patch View 1 chunk +47 lines, -0 lines 0 comments Download
D third_party/sqlite/patches/0010-fts3-Fix-uninit-variable-in-fts3EvalDeferredPhrase.patch View 1 chunk +0 lines, -33 lines 0 comments Download
D third_party/sqlite/patches/0011-backport-Fix-collation-dequoting.patch View 1 chunk +0 lines, -205 lines 0 comments Download
D third_party/sqlite/patches/0012-Allow-read-only-memory-mapping.patch View 1 chunk +0 lines, -84 lines 0 comments Download
M third_party/sqlite/sqlite.gyp View 1 chunk +4 lines, -0 lines 0 comments Download
D third_party/sqlite/src/Makefile.arm-wince-mingw32ce-gcc View 1 chunk +0 lines, -138 lines 0 comments Download
M third_party/sqlite/src/Makefile.in View 31 chunks +243 lines, -42 lines 0 comments Download
M third_party/sqlite/src/Makefile.linux-gcc View 3 chunks +2 lines, -7 lines 0 comments Download
M third_party/sqlite/src/Makefile.msc View 49 chunks +608 lines, -241 lines 0 comments Download
D third_party/sqlite/src/Makefile.vxworks View 1 chunk +0 lines, -671 lines 0 comments Download
M third_party/sqlite/src/README.md View 6 chunks +29 lines, -14 lines 0 comments Download
M third_party/sqlite/src/VERSION View 1 chunk +1 line, -1 line 0 comments Download
D third_party/sqlite/src/addopcodes.awk View 1 chunk +0 lines, -34 lines 0 comments Download
M third_party/sqlite/src/autoconf/Makefile.am View 2 chunks +5 lines, -3 lines 0 comments Download
M third_party/sqlite/src/autoconf/README.first View 1 chunk +8 lines, -54 lines 0 comments Download
D third_party/sqlite/src/autoconf/config.guess View 1 chunk +0 lines, -1530 lines 0 comments Download
D third_party/sqlite/src/autoconf/config.sub View 1 chunk +0 lines, -1773 lines 0 comments Download
M third_party/sqlite/src/autoconf/configure.ac View 4 chunks +62 lines, -4 lines 0 comments Download
D third_party/sqlite/src/autoconf/depcomp View 1 chunk +0 lines, -708 lines 0 comments Download
D third_party/sqlite/src/autoconf/install-sh View 1 chunk +0 lines, -527 lines 0 comments Download
D third_party/sqlite/src/autoconf/ltmain.sh View 1 chunk +0 lines, -9655 lines 0 comments Download
D third_party/sqlite/src/autoconf/missing View 1 chunk +0 lines, -331 lines 0 comments Download
M third_party/sqlite/src/autoconf/tea/Makefile.in View 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/autoconf/tea/configure.ac View 0 chunks +-1 lines, --1 lines 0 comments Download
D third_party/sqlite/src/autoconf/tea/configure.in View 1 chunk +0 lines, -202 lines 0 comments Download
M third_party/sqlite/src/autoconf/tea/win/nmakehlp.c View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/config.h.in View 2 chunks +6 lines, -0 lines 0 comments Download
M third_party/sqlite/src/configure View 351 chunks +2700 lines, -4741 lines 0 comments Download
M third_party/sqlite/src/configure.ac View 12 chunks +76 lines, -77 lines 0 comments Download
M third_party/sqlite/src/ext/async/sqlite3async.c View 5 chunks +11 lines, -5 lines 0 comments Download
M third_party/sqlite/src/ext/fts1/fts1.c View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/ext/fts1/simple_tokenizer.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3.c View 47 chunks +226 lines, -102 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3Int.h View 9 chunks +20 lines, -4 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_aux.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_expr.c View 2 chunks +123 lines, -97 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_icu.c View 1 chunk +7 lines, -6 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_porter.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_snippet.c View 22 chunks +261 lines, -76 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_term.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_tokenize_vtab.c View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_tokenizer.c View 5 chunks +13 lines, -7 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_write.c View 16 chunks +37 lines, -21 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/tool/fts3view.c View 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/unicode/mkunicode.tcl View 9 chunks +51 lines, -168 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/unicode/parseunicode.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/extract_api_docs.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5Int.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_aux.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_buffer.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_config.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_expr.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_hash.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_index.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_main.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_storage.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_tcl.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_test_mi.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_tokenize.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_unicode2.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_varint.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5_vocab.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/fts5parse.y View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/mkportersteps.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5_common.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5aa.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5ab.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5ac.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5ad.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5ae.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5af.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5ag.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5ah.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5ai.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5aj.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5ak.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5al.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5alter.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5auto.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5aux.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5auxdata.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5bigpl.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5columnsize.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5config.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5conflict.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5content.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5corrupt.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5corrupt2.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5corrupt3.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5dlidx.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5doclist.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5ea.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5eb.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5fault1.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5fault2.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5fault3.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5fault4.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5fault5.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5fault6.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5fault7.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5full.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5hash.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5integrity.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5matchinfo.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5merge.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5near.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5onepass.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5optimize.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5phrase.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5plan.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5porter.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5porter2.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5prefix.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5query.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5rank.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5rebuild.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5restart.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5rowid.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5simple.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5synonym.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5tokenizer.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5unicode.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5unicode2.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5unicode3.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5unindexed.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5version.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/test/fts5vocab.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/tool/fts5txt2db.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/tool/loadfts5.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/tool/mkfts5c.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts5/tool/showfts5.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/ext/icu/icu.c View 2 chunks +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/misc/amatch.c View 8 chunks +26 lines, -8 lines 0 comments Download
M third_party/sqlite/src/ext/misc/closure.c View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/ext/misc/compress.c View 3 chunks +9 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/eval.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/ext/misc/fuzzer.c View 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/sqlite/src/ext/misc/ieee754.c View 1 chunk +3 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/json1.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/series.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/ext/misc/spellfix.c View 17 chunks +97 lines, -54 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu1.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu10.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu11.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu12.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu13.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu14.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu3.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu5.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu6.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu7.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu8.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu9.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbuA.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbuB.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbu_common.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbucrash.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbudiff.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbufault.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbufault2.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbufts.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/rbusave.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/sqlite3rbu.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/sqlite3rbu.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rbu/test_rbu.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree.c View 15 chunks +62 lines, -18 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree1.test View 2 chunks +55 lines, -0 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree6.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree9.test View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/ext/rtree/rtreeC.test View 1 chunk +83 lines, -0 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtreeE.test View 4 chunks +13 lines, -2 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/sqlite3rtree.h View 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/sqlite/src/main.mk View 29 chunks +227 lines, -44 lines 0 comments Download
M third_party/sqlite/src/manifest View 25 chunks +586 lines, -389 lines 0 comments Download
M third_party/sqlite/src/manifest.uuid View 1 chunk +1 line, -1 line 0 comments Download
D third_party/sqlite/src/mkopcodec.awk View 1 chunk +0 lines, -50 lines 0 comments Download
D third_party/sqlite/src/mkopcodeh.awk View 1 chunk +0 lines, -235 lines 0 comments Download
M third_party/sqlite/src/mptest/crash01.test View 4 chunks +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/mptest/mptest.c View 30 chunks +72 lines, -33 lines 0 comments Download
M third_party/sqlite/src/mptest/multiwrite01.test View 5 chunks +10 lines, -0 lines 0 comments Download
M third_party/sqlite/src/sqlite3.1 View 5 chunks +45 lines, -38 lines 0 comments Download
M third_party/sqlite/src/src/alter.c View 4 chunks +9 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/analyze.c View 14 chunks +40 lines, -32 lines 0 comments Download
M third_party/sqlite/src/src/attach.c View 6 chunks +5 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/auth.c View 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/backup.c View 14 chunks +64 lines, -15 lines 0 comments Download
M third_party/sqlite/src/src/bitvec.c View 4 chunks +9 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/btmutex.c View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/sqlite/src/src/btree.h View 8 chunks +74 lines, -9 lines 0 comments Download
M third_party/sqlite/src/src/btree.c View 154 chunks +1908 lines, -946 lines 0 comments Download
M third_party/sqlite/src/src/btreeInt.h View 11 chunks +39 lines, -6 lines 0 comments Download
M third_party/sqlite/src/src/build.c View 61 chunks +361 lines, -228 lines 0 comments Download
M third_party/sqlite/src/src/complete.c View 3 chunks +9 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/ctime.c View 4 chunks +132 lines, -107 lines 0 comments Download
M third_party/sqlite/src/src/date.c View 14 chunks +36 lines, -27 lines 0 comments Download
A + third_party/sqlite/src/src/dbstat.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/delete.c View 22 chunks +111 lines, -56 lines 0 comments Download
M third_party/sqlite/src/src/expr.c View 63 chunks +286 lines, -384 lines 0 comments Download
M third_party/sqlite/src/src/fkey.c View 21 chunks +89 lines, -43 lines 0 comments Download
M third_party/sqlite/src/src/func.c View 19 chunks +63 lines, -36 lines 0 comments Download
M third_party/sqlite/src/src/global.c View 5 chunks +29 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/insert.c View 52 chunks +168 lines, -102 lines 0 comments Download
D third_party/sqlite/src/src/lempar.c View 1 chunk +0 lines, -864 lines 0 comments Download
M third_party/sqlite/src/src/loadext.c View 11 chunks +23 lines, -12 lines 0 comments Download
M third_party/sqlite/src/src/main.c View 82 chunks +593 lines, -121 lines 0 comments Download
M third_party/sqlite/src/src/malloc.c View 22 chunks +87 lines, -135 lines 0 comments Download
M third_party/sqlite/src/src/mem1.c View 2 chunks +6 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/mem3.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/mem5.c View 6 chunks +16 lines, -26 lines 0 comments Download
A + third_party/sqlite/src/src/msvc.h View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/mutex.c View 9 chunks +20 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/mutex_noop.c View 3 chunks +14 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/mutex_unix.c View 6 chunks +46 lines, -16 lines 0 comments Download
M third_party/sqlite/src/src/mutex_w32.c View 6 chunks +39 lines, -10 lines 0 comments Download
M third_party/sqlite/src/src/os.c View 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/os_common.h View 1 chunk +0 lines, -10 lines 0 comments Download
M third_party/sqlite/src/src/os_unix.c View 157 chunks +412 lines, -441 lines 0 comments Download
M third_party/sqlite/src/src/os_win.h View 1 chunk +11 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/os_win.c View 44 chunks +162 lines, -73 lines 0 comments Download
M third_party/sqlite/src/src/pager.h View 6 chunks +19 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/pager.c View 59 chunks +348 lines, -235 lines 0 comments Download
M third_party/sqlite/src/src/parse.y View 31 chunks +165 lines, -83 lines 0 comments Download
M third_party/sqlite/src/src/pcache.h View 3 chunks +19 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/pcache.c View 18 chunks +95 lines, -70 lines 0 comments Download
M third_party/sqlite/src/src/pcache1.c View 30 chunks +360 lines, -164 lines 0 comments Download
A + third_party/sqlite/src/src/pragma.h View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/pragma.c View 64 chunks +297 lines, -721 lines 0 comments Download
M third_party/sqlite/src/src/prepare.c View 7 chunks +21 lines, -14 lines 0 comments Download
M third_party/sqlite/src/src/printf.c View 27 chunks +118 lines, -157 lines 0 comments Download
M third_party/sqlite/src/src/random.c View 1 chunk +11 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/recover.c View 5 chunks +7 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/resolve.c View 33 chunks +150 lines, -121 lines 0 comments Download
M third_party/sqlite/src/src/select.c View 131 chunks +585 lines, -466 lines 0 comments Download
M third_party/sqlite/src/src/shell.c View 152 chunks +1237 lines, -538 lines 0 comments Download
M third_party/sqlite/src/src/sqlite.h.in View 135 chunks +1035 lines, -465 lines 0 comments Download
M third_party/sqlite/src/src/sqlite3ext.h View 4 chunks +28 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/sqliteInt.h View 81 chunks +370 lines, -139 lines 0 comments Download
M third_party/sqlite/src/src/sqliteLimit.h View 1 chunk +7 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/status.c View 4 chunks +103 lines, -21 lines 0 comments Download
M third_party/sqlite/src/src/table.c View 4 chunks +6 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/tclsqlite.c View 19 chunks +111 lines, -35 lines 0 comments Download
M third_party/sqlite/src/src/test1.c View 51 chunks +509 lines, -198 lines 0 comments Download
M third_party/sqlite/src/src/test2.c View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test3.c View 6 chunks +62 lines, -6 lines 0 comments Download
M third_party/sqlite/src/src/test4.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/test7.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/test8.c View 10 chunks +59 lines, -16 lines 0 comments Download
M third_party/sqlite/src/src/test_backup.c View 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/src/test_blob.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/test_config.c View 9 chunks +61 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_demovfs.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/test_fs.c View 7 chunks +585 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/test_func.c View 4 chunks +47 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/test_intarray.c View 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/test_journal.c View 2 chunks +5 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_loadext.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/test_malloc.c View 8 chunks +51 lines, -18 lines 0 comments Download
M third_party/sqlite/src/src/test_multiplex.c View 17 chunks +36 lines, -25 lines 0 comments Download
M third_party/sqlite/src/src/test_mutex.c View 11 chunks +82 lines, -15 lines 0 comments Download
M third_party/sqlite/src/src/test_onefile.c View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/test_osinst.c View 3 chunks +0 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/test_quota.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/test_rtree.c View 4 chunks +41 lines, -9 lines 0 comments Download
M third_party/sqlite/src/src/test_sqllog.c View 13 chunks +68 lines, -19 lines 0 comments Download
D third_party/sqlite/src/src/test_stat.c View 1 chunk +0 lines, -640 lines 0 comments Download
M third_party/sqlite/src/src/test_superlock.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/test_tclvar.c View 6 chunks +167 lines, -27 lines 0 comments Download
M third_party/sqlite/src/src/test_thread.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/test_vfs.c View 7 chunks +12 lines, -13 lines 0 comments Download
A + third_party/sqlite/src/src/test_windirent.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/src/test_windirent.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/threads.c View 6 chunks +16 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/tokenize.c View 9 chunks +33 lines, -36 lines 0 comments Download
A + third_party/sqlite/src/src/treeview.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/trigger.c View 6 chunks +14 lines, -33 lines 0 comments Download
M third_party/sqlite/src/src/update.c View 15 chunks +127 lines, -92 lines 0 comments Download
M third_party/sqlite/src/src/utf.c View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/util.c View 11 chunks +48 lines, -14 lines 0 comments Download
M third_party/sqlite/src/src/vacuum.c View 4 chunks +6 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/vdbe.h View 6 chunks +19 lines, -1 line 0 comments Download
M third_party/sqlite/src/src/vdbe.c View 170 chunks +822 lines, -519 lines 0 comments Download
M third_party/sqlite/src/src/vdbeInt.h View 12 chunks +84 lines, -42 lines 0 comments Download
M third_party/sqlite/src/src/vdbeapi.c View 25 chunks +253 lines, -41 lines 0 comments Download
M third_party/sqlite/src/src/vdbeaux.c View 76 chunks +595 lines, -231 lines 0 comments Download
M third_party/sqlite/src/src/vdbeblob.c View 5 chunks +16 lines, -6 lines 0 comments Download
M third_party/sqlite/src/src/vdbemem.c View 15 chunks +179 lines, -36 lines 0 comments Download
M third_party/sqlite/src/src/vdbesort.c View 36 chunks +348 lines, -131 lines 0 comments Download
M third_party/sqlite/src/src/vdbetrace.c View 3 chunks +6 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/vtab.c View 26 chunks +149 lines, -34 lines 0 comments Download
A + third_party/sqlite/src/src/vxworks.h View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/wal.h View 3 chunks +9 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/wal.c View 39 chunks +420 lines, -194 lines 0 comments Download
M third_party/sqlite/src/src/walker.c View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/where.c View 113 chunks +911 lines, -2893 lines 0 comments Download
M third_party/sqlite/src/src/whereInt.h View 13 chunks +95 lines, -21 lines 0 comments Download
A + third_party/sqlite/src/src/wherecode.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/src/whereexpr.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/affinity2.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/alter.test View 1 chunk +9 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/analyze.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/analyze3.test View 4 chunks +50 lines, -12 lines 0 comments Download
M third_party/sqlite/src/test/analyze8.test View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/analyze9.test View 1 chunk +112 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/analyzeF.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/analyzer1.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/atof1.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/attach.test View 1 chunk +12 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/autoindex1.test View 2 chunks +10 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/autoindex2.test View 1 chunk +0 lines, -44 lines 0 comments Download
M third_party/sqlite/src/test/autoindex3.test View 2 chunks +34 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/autoindex4.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/autoindex5.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/backup.test View 1 chunk +1 line, -0 lines 0 comments Download
A + third_party/sqlite/src/test/backup5.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/bc_common.tcl View 1 chunk +3 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/bigsort.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/btree01.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/btree02.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/cacheflush.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/capi3.test View 1 chunk +13 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/capi3c.test View 2 chunks +23 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/capi3d.test View 1 chunk +2 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/test/cffault.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/collate1.test View 1 chunk +15 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/collate3.test View 2 chunks +6 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/collate4.test View 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/collate8.test View 2 chunks +33 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/colmeta.test View 3 chunks +28 lines, -12 lines 0 comments Download
M third_party/sqlite/src/test/conflict2.test View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/corrupt2.test View 3 chunks +48 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/corrupt7.test View 1 chunk +14 lines, -35 lines 0 comments Download
M third_party/sqlite/src/test/corruptC.test View 3 chunks +6 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/corruptE.test View 6 chunks +10 lines, -36 lines 0 comments Download
M third_party/sqlite/src/test/corruptH.test View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/corruptI.test View 1 chunk +155 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/corruptJ.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/count.test View 1 chunk +5 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/crashM.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/cursorhint.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/date.test View 1 chunk +9 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/delete.test View 1 chunk +0 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/delete4.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/distinct.test View 1 chunk +47 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/e_blobbytes.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/e_blobclose.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/e_blobopen.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/e_blobwrite.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/e_changes.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/e_createtable.test View 3 chunks +7 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/e_delete.test View 2 chunks +8 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/e_expr.test View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/e_insert.test View 4 chunks +11 lines, -11 lines 0 comments Download
M third_party/sqlite/src/test/e_reindex.test View 3 chunks +9 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/e_resolve.test View 3 chunks +6 lines, -6 lines 0 comments Download
A + third_party/sqlite/src/test/e_totalchanges.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/e_update.test View 3 chunks +8 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/e_uri.test View 1 chunk +2 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/e_wal.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/e_walauto.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/e_walckpt.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/e_walhook.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/enc3.test View 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/expr.test View 1 chunk +8 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/extraquick.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/filectrl.test View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fkey1.test View 1 chunk +64 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fkey2.test View 3 chunks +21 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/fkey5.test View 4 chunks +32 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/fkey7.test View 1 chunk +17 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/fkey8.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fordelete.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts3aa.test View 2 chunks +22 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3atoken.test View 1 chunk +23 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3conf.test View 2 chunks +39 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/fts3d.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3defer2.test View 1 chunk +6 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3expr3.test View 2 chunks +32 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/fts3expr5.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts3fault.test View 4 chunks +7 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3fault2.test View 1 chunk +19 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3matchinfo.test View 1 chunk +102 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/fts3offsets.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts3prefix.test View 1 chunk +82 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3query.test View 2 chunks +78 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/fts3snippet.test View 1 chunk +38 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3tok1.test View 1 chunk +10 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts4check.test View 1 chunk +30 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts4content.test View 6 chunks +18 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/fts4incr.test View 1 chunk +3 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/fts4onepass.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts4unicode.test View 2 chunks +12 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/fuzz2.test View 2 chunks +32 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fuzz3.test View 2 chunks +4 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/fuzzcheck.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fuzzdata1.db View Binary file 0 comments Download
A + third_party/sqlite/src/test/fuzzdata2.db View Binary file 0 comments Download
A + third_party/sqlite/src/test/fuzzdata3.db View Binary file 0 comments Download
A + third_party/sqlite/src/test/fuzzdata4.db View Binary file 0 comments Download
M third_party/sqlite/src/test/hexlit.test View 1 chunk +8 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/hidden.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/ieee754.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/imposter1.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/in.test View 2 chunks +23 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/incrblob2.test View 1 chunk +32 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/incrcorrupt.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/incrvacuum2.test View 1 chunk +3 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/index.test View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/index2.test View 2 chunks +1 line, -2 lines 0 comments Download
M third_party/sqlite/src/test/index3.test View 3 chunks +44 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/index5.test View 1 chunk +4 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/index6.test View 1 chunk +108 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/index7.test View 3 chunks +38 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/indexedby.test View 5 chunks +48 lines, -5 lines 0 comments Download
A + third_party/sqlite/src/test/indexexpr1.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/insert2.test View 2 chunks +20 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/insert4.test View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/join.test View 1 chunk +26 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/join5.test View 1 chunk +23 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/jrnlmode.test View 1 chunk +14 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/json101.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/json102.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/json103.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/like.test View 3 chunks +43 lines, -10 lines 0 comments Download
A + third_party/sqlite/src/test/like3.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/limit.test View 1 chunk +6 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/lock.test View 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/lock_common.tcl View 1 chunk +44 lines, -14 lines 0 comments Download
M third_party/sqlite/src/test/lookaside.test View 2 chunks +3 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/main.test View 1 chunk +20 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/malloc.test View 1 chunk +21 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/malloc5.test View 11 chunks +44 lines, -22 lines 0 comments Download
M third_party/sqlite/src/test/mallocK.test View 1 chunk +37 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/malloc_common.tcl View 6 chunks +13 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/memdb.test View 1 chunk +3 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/memsubsys1.test View 6 chunks +11 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/memsubsys2.test View 1 chunk +5 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/misc1.test View 3 chunks +90 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/misc4.test View 1 chunk +21 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/misc5.test View 1 chunk +18 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/misc8.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/mmap1.test View 6 chunks +44 lines, -42 lines 0 comments Download
M third_party/sqlite/src/test/multiplex4.test View 2 chunks +18 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/mutex1.test View 3 chunks +31 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/notify2.test View 5 chunks +33 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/null.test View 1 chunk +17 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/numindex1.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/offset1.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/orderby1.test View 2 chunks +49 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/orderby8.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/orderby9.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/oserror.test View 2 chunks +17 lines, -14 lines 0 comments Download
M third_party/sqlite/src/test/pagesize.test View 1 chunk +18 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/parser1.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/pcache.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/pcache2.test View 4 chunks +7 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/percentile.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/permutations.test View 10 chunks +57 lines, -12 lines 0 comments Download
M third_party/sqlite/src/test/pragma.test View 12 chunks +212 lines, -20 lines 0 comments Download
M third_party/sqlite/src/test/pragma2.test View 6 chunks +77 lines, -9 lines 0 comments Download
A + third_party/sqlite/src/test/pragma3.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/printf.test View 4 chunks +27 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/printf2.test View 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/progress.test View 1 chunk +0 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/rbu.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/rdonly.test View 1 chunk +5 lines, -0 lines 0 comments Download
D third_party/sqlite/src/test/releasetest.mk View 1 chunk +0 lines, -14 lines 0 comments Download
M third_party/sqlite/src/test/releasetest.tcl View 13 chunks +699 lines, -125 lines 0 comments Download
M third_party/sqlite/src/test/resolver01.test View 2 chunks +9 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/rollback2.test View 5 chunks +85 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/test/rollbackfault.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/rowallock.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/rowid.test View 2 chunks +3 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/scanstatus.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/select1.test View 2 chunks +8 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/select4.test View 6 chunks +56 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/select6.test View 1 chunk +56 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/select7.test View 2 chunks +20 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/select8.test View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/selectA.test View 1 chunk +60 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/selectE.test View 1 chunk +5 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/selectG.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/shared4.test View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/shell1.test View 13 chunks +139 lines, -33 lines 0 comments Download
M third_party/sqlite/src/test/shell2.test View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/shell4.test View 2 chunks +22 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/shell5.test View 3 chunks +67 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/shrink.test View 3 chunks +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/skipscan1.test View 1 chunk +49 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/skipscan6.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/snapshot.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/snapshot_fault.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/softheap1.test View 1 chunk +8 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/sort.test View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/sort2.test View 2 chunks +5 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/sort4.test View 1 chunk +20 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/sortfault.test View 1 chunk +6 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/speedtest1.c View 19 chunks +68 lines, -10 lines 0 comments Download
M third_party/sqlite/src/test/spellfix.test View 1 chunk +117 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/spellfix2.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/spellfix3.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/sqldiff1.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/sqllimits1.test View 11 chunks +42 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/sqllog.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/stat.test View 2 chunks +8 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/test/statfault.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/subquery.test View 1 chunk +10 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/subtype1.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/symlink.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/syscall.test View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/sysfault.test View 1 chunk +1 line, -0 lines 0 comments Download
A + third_party/sqlite/src/test/tabfunc01.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/table.test View 2 chunks +47 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tclsqlite.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/tester.tcl View 25 chunks +238 lines, -64 lines 0 comments Download
M third_party/sqlite/src/test/threadtest2.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/threadtest3.c View 39 chunks +188 lines, -131 lines 0 comments Download
A + third_party/sqlite/src/test/threadtest4.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-f777251dc7a.test View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt3871.test View 2 chunks +5 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/trace.test View 1 chunk +8 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/trace2.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/transitive1.test View 4 chunks +73 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/trigger1.test View 1 chunk +16 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/trigger7.test View 2 chunks +1 line, -2 lines 0 comments Download
M third_party/sqlite/src/test/triggerC.test View 2 chunks +49 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tt3_checkpoint.c View 3 chunks +2 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/tt3_index.c View 4 chunks +13 lines, -13 lines 0 comments Download
A + third_party/sqlite/src/test/tt3_lookaside1.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tt3_stress.c View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tt3_vacuum.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/unique2.test View 1 chunk +8 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/uri.test View 1 chunk +8 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/vacuum2.test View 2 chunks +20 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/view.test View 5 chunks +33 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/vtab1.test View 21 chunks +190 lines, -45 lines 0 comments Download
M third_party/sqlite/src/test/vtab2.test View 3 chunks +28 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/vtab4.test View 5 chunks +16 lines, -16 lines 0 comments Download
M third_party/sqlite/src/test/vtab6.test View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/vtabA.test View 1 chunk +17 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/vtabE.test View 1 chunk +2 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/vtabH.test View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/vtabI.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/wal.test View 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/wal3.test View 3 chunks +9 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/wal5.test View 3 chunks +124 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/wal6.test View 1 chunk +42 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/walblock.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/where.test View 10 chunks +40 lines, -10 lines 0 comments Download
M third_party/sqlite/src/test/where2.test View 1 chunk +7 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/where4.test View 7 chunks +37 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/where7.test View 1 chunk +12 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/where8.test View 1 chunk +15 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/whereC.test View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/sqlite/src/test/whereD.test View 2 chunks +7 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/whereG.test View 1 chunk +37 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/whereJ.test View 1 chunk +35 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/whereK.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/win32lock.test View 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/with1.test View 1 chunk +163 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/with2.test View 2 chunks +2 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/test/with3.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/without_rowid1.test View 1 chunk +51 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/without_rowid3.test View 1 chunk +16 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/without_rowid5.test View 2 chunks +6 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/test/without_rowid6.test View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/wordcount.c View 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/zeroblob.test View 3 chunks +62 lines, -1 line 0 comments Download
A + third_party/sqlite/src/tool/GetFile.cs View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/GetTclKit.bat View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/addopcodes.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/build-all-msvc.bat View 15 chunks +242 lines, -36 lines 0 comments Download
A + third_party/sqlite/src/tool/cg_anno.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
D third_party/sqlite/src/tool/diffdb.c View 1 chunk +0 lines, -44 lines 0 comments Download
A + third_party/sqlite/src/tool/fuzzershell.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/lemon.c View 80 chunks +310 lines, -171 lines 0 comments Download
M third_party/sqlite/src/tool/lempar.c View 24 chunks +231 lines, -163 lines 0 comments Download
A + third_party/sqlite/src/tool/loadfts.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/mkautoconfamal.sh View 3 chunks +8 lines, -13 lines 0 comments Download
M third_party/sqlite/src/tool/mkkeywordhash.c View 4 chunks +19 lines, -35 lines 0 comments Download
A + third_party/sqlite/src/tool/mkopcodec.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/mkopcodeh.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/mkpragmatab.tcl View 13 chunks +60 lines, -26 lines 0 comments Download
M third_party/sqlite/src/tool/mksqlite3c.tcl View 12 chunks +83 lines, -34 lines 0 comments Download
M third_party/sqlite/src/tool/mksqlite3c-noext.tcl View 7 chunks +73 lines, -26 lines 0 comments Download
M third_party/sqlite/src/tool/mksqlite3h.tcl View 3 chunks +32 lines, -16 lines 0 comments Download
M third_party/sqlite/src/tool/mksqlite3internalh.tcl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/sqlite/src/tool/mkvsix.tcl View 9 chunks +44 lines, -5 lines 0 comments Download
D third_party/sqlite/src/tool/opcodeDoc.awk View 1 chunk +0 lines, -23 lines 0 comments Download
A + third_party/sqlite/src/tool/replace.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/run-speed-test.sh View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/showdb.c View 29 chunks +234 lines, -116 lines 0 comments Download
M third_party/sqlite/src/tool/showjournal.c View 3 chunks +3 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/tool/showlocks.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/showstat4.c View 4 chunks +8 lines, -5 lines 0 comments Download
M third_party/sqlite/src/tool/showwal.c View 3 chunks +5 lines, -2 lines 0 comments Download
D third_party/sqlite/src/tool/space_used.tcl View 1 chunk +0 lines, -111 lines 0 comments Download
M third_party/sqlite/src/tool/spaceanal.tcl View 8 chunks +51 lines, -27 lines 0 comments Download
M third_party/sqlite/src/tool/speedtest16.c View 2 chunks +3 lines, -1 line 0 comments Download
M third_party/sqlite/src/tool/speedtest8inst1.c View 2 chunks +3 lines, -1 line 0 comments Download
A + third_party/sqlite/src/tool/sqldiff.c View 0 chunks +-1 lines, --1 lines 0 comments Download
D third_party/sqlite/src/tool/tostr.awk View 1 chunk +0 lines, -8 lines 0 comments Download
A + third_party/sqlite/src/tool/tostr.tcl View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/varint.c View 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/vdbe_profile.tcl View 1 chunk +8 lines, -0 lines 0 comments Download
M third_party/sqlite/src/tool/warnings.sh View 1 chunk +22 lines, -0 lines 0 comments Download

Messages

Total messages: 9 (3 generated)
Scott Hess - ex-Googler
Posting to give you a chance to rubber-stamp LGTM it :-). The trybots won't touch ...
4 years, 11 months ago (2016-01-21 01:44:26 UTC) #2
Scott Hess - ex-Googler
On 2016/01/21 01:44:26, Scott Hess wrote: > The trybots won't touch the amalgamation/sqlite3.c file, but ...
4 years, 11 months ago (2016-01-21 20:49:04 UTC) #3
michaeln
r/s lgtm !!!
4 years, 11 months ago (2016-01-21 21:01:02 UTC) #4
Scott Hess - ex-Googler
On 2016/01/21 21:01:02, michaeln wrote: > r/s lgtm !!! Well, the try run looks green, ...
4 years, 11 months ago (2016-01-22 23:37:51 UTC) #5
commit-bot: I haz the power
Patchset 1 (id:??) landed as https://crrev.com/e0b6a82cadecbda7e005921c2416fc7afb3542aa Cr-Commit-Position: refs/heads/master@{#371085}
4 years, 11 months ago (2016-01-22 23:47:06 UTC) #7
Scott Hess - ex-Googler
4 years, 11 months ago (2016-01-22 23:47:39 UTC) #9
Message was sent while issue was closed.
Committed patchset #1 (id:1) manually as
e0b6a82cadecbda7e005921c2416fc7afb3542aa.

Powered by Google App Engine
This is Rietveld 408576698