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

Issue 901033002: Import SQLite 3.8.7.4. (Closed)

Created:
5 years, 10 months ago by Scott Hess - ex-Googler
Modified:
5 years, 10 months ago
Reviewers:
michaeln
CC:
chromium-reviews, tim+watch_chromium.org, extensions-reviews_chromium.org, zea+watch_chromium.org, maxbogue+watch_chromium.org, dcheng, pvalenzuela+watch_chromium.org, chromium-apps-reviews_chromium.org, jshin+watch_chromium.org, maniscalco+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.8.7.4. Ran through the import script in third_party/sqlite/README.Chromium, including the SQLite test suite. There are a few pager errors which are because of a change required for WebDatabase support (documented in README). SQLite changes are at http://www.sqlite.org/changes.html , Chromium previously used 3.7.6.3. 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. Other SQLITE_* flags were reviewed for applicability, none looked essential. Fixes to Chromium: - In recovery.cc, pk_column now follows the documentation. - Short garbage files now see SQLITE_NOTADB rather than SQLITE_IOERR_SHORT_READ. - Adjust to allow clients to use ScopedErrorIgnore without adding dependencies. - More-specific SQLITE_CONSTRAINT_* errors aren't necessary. - Force recovery test to scan table rather than index. BUG=340757 TEST=*EVERYTHING* continues to work. R=michaeln@chromium.org Committed: https://chromium.googlesource.com/chromium/src/+/dcf12048055030a2b5858ceca5ce26294a82a6e4

Patch Set 1 #

Patch Set 2 : Update patches, README, and sqlite3.c generator. #

Patch Set 3 : Apply patches to SQLite. #

Total comments: 2

Patch Set 4 : Chromium changes to support SQLite 3.8.7.4. #

Total comments: 4
Unified diffs Side-by-side diffs Delta from patch set Stats (+67241 lines, -40332 lines) Patch
M content/browser/dom_storage/dom_storage_database_unittest.cc View 1 2 3 2 chunks +9 lines, -2 lines 0 comments Download
M sql/BUILD.gn View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M sql/connection_unittest.cc View 1 2 3 2 chunks +16 lines, -5 lines 0 comments Download
M sql/recovery.cc View 1 2 3 1 chunk +3 lines, -8 lines 0 comments Download
M sql/recovery_unittest.cc View 1 2 3 1 chunk +3 lines, -2 lines 0 comments Download
M sql/sql.gyp View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M sql/sqlite_features_unittest.cc View 1 2 3 2 chunks +5 lines, -8 lines 0 comments Download
M sql/test/scoped_error_ignorer.h View 1 2 3 2 chunks +9 lines, -0 lines 0 comments Download
M sql/test/scoped_error_ignorer.cc View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/BUILD.gn View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/sqlite/README.chromium View 1 2 3 5 chunks +20 lines, -17 lines 0 comments Download
M third_party/sqlite/amalgamation/sqlite3.h View 1 2 3 158 chunks +1435 lines, -356 lines 0 comments Download
M third_party/sqlite/google_generate_amalgamation.sh View 1 2 3 2 chunks +4 lines, -9 lines 0 comments Download
M third_party/sqlite/patches/0001-test-SQLite-tests-compiling-on-Linux.patch View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/patches/0002-Fix-expr.c-linker-error.patch View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
A + third_party/sqlite/patches/0003-Use-seperate-page-cache-pools-for-each-sqlite-connec.patch View 1 2 3 3 chunks +7 lines, -12 lines 0 comments Download
D third_party/sqlite/patches/0003-backport-SQLite-memcmp-patch.patch View 1 2 3 1 chunk +0 lines, -104 lines 0 comments Download
A + third_party/sqlite/patches/0004-Exclude-journal-file-from-Time-Machine-if-database-i.patch View 1 2 3 7 chunks +37 lines, -35 lines 0 comments Download
D third_party/sqlite/patches/0004-Use-seperate-page-cache-pools-for-each-sqlite-connec.patch View 1 2 3 1 chunk +0 lines, -49 lines 0 comments Download
D third_party/sqlite/patches/0005-Exclude-journal-file-from-Time-Machine-if-database-i.patch View 1 2 3 1 chunk +0 lines, -155 lines 0 comments Download
A + third_party/sqlite/patches/0005-Modify-default-VFS-to-support-WebDatabase.patch View 1 2 3 7 chunks +32 lines, -37 lines 0 comments Download
D third_party/sqlite/patches/0006-Modify-default-VFS-to-support-WebDatabase.patch View 1 2 3 1 chunk +0 lines, -184 lines 0 comments Download
A + third_party/sqlite/patches/0006-Virtual-table-supporting-recovery-of-corrupted-datab.patch View 1 2 3 7 chunks +21 lines, -21 lines 0 comments Download
A + third_party/sqlite/patches/0007-Custom-shell.c-helpers-to-load-Chromium-s-ICU-data.patch View 1 2 3 4 chunks +12 lines, -12 lines 0 comments Download
D third_party/sqlite/patches/0007-backport-SQLite-os-intercept-changes.patch View 1 2 3 1 chunk +0 lines, -475 lines 0 comments Download
D third_party/sqlite/patches/0008-Virtual-table-supporting-recovery-of-corrupted-datab.patch View 1 2 3 1 chunk +0 lines, -3607 lines 0 comments Download
A + third_party/sqlite/patches/0008-fts3-Disable-fts3_tokenizer-and-fts4.patch View 1 2 3 3 chunks +15 lines, -12 lines 0 comments Download
D third_party/sqlite/patches/0009-Custom-shell.c-helpers-to-load-Chromium-s-ICU-data.patch View 1 2 3 1 chunk +0 lines, -145 lines 0 comments Download
A + third_party/sqlite/patches/0009-fts3-Interior-node-corruption-detection.patch View 1 2 3 3 chunks +10 lines, -8 lines 0 comments Download
A + third_party/sqlite/patches/0010-fts2-test-Add-fts2-to-testfixture.patch View 1 2 3 6 chunks +15 lines, -20 lines 0 comments Download
D third_party/sqlite/patches/0010-fts3-Disable-fts3_tokenizer-and-fts4.patch View 1 2 3 1 chunk +0 lines, -57 lines 0 comments Download
A + third_party/sqlite/patches/0011-fts2-Disable-fts2_tokenizer-for-security-reasons.patch View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
D third_party/sqlite/patches/0011-fts3-backport-ICU-tokenizer-iterate-by-UTF16.patch View 1 2 3 1 chunk +0 lines, -29 lines 0 comments Download
A + third_party/sqlite/patches/0012-fts2-backport-ICU-tokenizer-iterate-by-UTF16.patch View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
D third_party/sqlite/patches/0012-fts3-backport-Fix-bug-when-PRAGMA-is-not-authorized.patch View 1 2 3 1 chunk +0 lines, -36 lines 0 comments Download
A + third_party/sqlite/patches/0013-fts2-Interpret-foo-as-a-prefix-search.patch View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
D third_party/sqlite/patches/0013-fts3-backport-Fix-out-of-scope-reference.patch View 1 2 3 1 chunk +0 lines, -48 lines 0 comments Download
A + third_party/sqlite/patches/0014-fts2-Detect-and-handle-certain-corruption-cases.patch View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
D third_party/sqlite/patches/0014-fts3-backport-Fix-misaligned-address-in-icu-tokenize.patch View 1 2 3 1 chunk +0 lines, -48 lines 0 comments Download
A + third_party/sqlite/patches/0015-fts2-Fix-a-crasher-in-full-text-search-sqlite.patch View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
D third_party/sqlite/patches/0015-fts3-Interior-node-corruption-detection.patch View 1 2 3 1 chunk +0 lines, -44 lines 0 comments Download
A + third_party/sqlite/patches/0016-fts2-Fix-numerous-out-of-bounds-bugs-reading-corrupt.patch View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
D third_party/sqlite/patches/0016-fts2-test-Add-fts2-to-testfixture.patch View 1 2 3 1 chunk +0 lines, -112 lines 0 comments Download
D third_party/sqlite/patches/0017-fts2-Disable-fts2_tokenizer-for-security-reasons.patch View 1 2 3 1 chunk +0 lines, -53 lines 0 comments Download
D third_party/sqlite/patches/0018-fts2-backport-ICU-tokenizer-iterate-by-UTF16.patch View 1 2 3 1 chunk +0 lines, -29 lines 0 comments Download
D third_party/sqlite/patches/0019-fts2-backport-Fix-misaligned-address-in-icu-tokenize.patch View 1 2 3 1 chunk +0 lines, -48 lines 0 comments Download
D third_party/sqlite/patches/0020-fts2-Interpret-foo-as-a-prefix-search.patch View 1 2 3 1 chunk +0 lines, -48 lines 0 comments Download
D third_party/sqlite/patches/0021-fts2-Detect-and-handle-certain-corruption-cases.patch View 1 2 3 1 chunk +0 lines, -309 lines 0 comments Download
D third_party/sqlite/patches/0022-fts2-Fix-a-crasher-in-full-text-search-sqlite.patch View 1 2 3 1 chunk +0 lines, -89 lines 0 comments Download
D third_party/sqlite/patches/0023-fts2-Fix-numerous-out-of-bounds-bugs-reading-corrupt.patch View 1 2 3 1 chunk +0 lines, -1611 lines 0 comments Download
M third_party/sqlite/sqlite.gyp View 1 2 3 1 chunk +19 lines, -0 lines 0 comments Download
M third_party/sqlite/src/Makefile.in View 1 2 3 26 chunks +132 lines, -44 lines 0 comments Download
A + third_party/sqlite/src/Makefile.msc View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/Makefile.vxworks View 1 2 3 7 chunks +14 lines, -6 lines 0 comments Download
D third_party/sqlite/src/README View 1 2 3 1 chunk +0 lines, -39 lines 0 comments Download
A + third_party/sqlite/src/README.md View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/VERSION View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/addopcodes.awk View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
D third_party/sqlite/src/art/2005osaward.gif View 1 2 3 Binary file 0 comments Download
D third_party/sqlite/src/art/SQLite.eps View 1 2 3 Binary file 0 comments Download
D third_party/sqlite/src/art/SQLite.gif View 1 2 3 Binary file 0 comments Download
D third_party/sqlite/src/art/SQLiteLogo3.tiff View 1 2 3 Binary file 0 comments Download
D third_party/sqlite/src/art/SQLite_big.gif View 1 2 3 Binary file 0 comments Download
D third_party/sqlite/src/art/nocopy.gif View 1 2 3 Binary file 0 comments Download
D third_party/sqlite/src/art/powered_by_sqlite.gif View 1 2 3 Binary file 0 comments Download
D third_party/sqlite/src/art/src_logo.gif View 1 2 3 Binary file 0 comments Download
A + third_party/sqlite/src/autoconf/INSTALL View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/Makefile.am View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/README View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/README.first View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/config.guess View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/config.sub View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/configure.ac View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/depcomp View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/install-sh View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/ltmain.sh View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/missing View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/Makefile.in View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/README View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/aclocal.m4 View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/configure.in View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/doc/sqlite3.n View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/license.terms View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/pkgIndex.tcl.in View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/tclconfig/install-sh View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/tclconfig/tcl.m4 View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/win/makefile.vc View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/win/nmakehlp.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/autoconf/tea/win/rules.vc View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/config.h.in View 1 2 3 2 chunks +9 lines, -0 lines 0 comments Download
M third_party/sqlite/src/configure View 1 2 3 25 chunks +129 lines, -50 lines 0 comments Download
M third_party/sqlite/src/configure.ac View 1 2 3 6 chunks +17 lines, -25 lines 0 comments Download
M third_party/sqlite/src/doc/lemon.html View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/doc/pager-invariants.txt View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/async/README.txt View 1 2 3 2 chunks +7 lines, -1 line 0 comments Download
M third_party/sqlite/src/ext/async/sqlite3async.h View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/ext/async/sqlite3async.c View 1 2 3 3 chunks +8 lines, -4 lines 0 comments Download
M third_party/sqlite/src/ext/fts1/ft_hash.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts1/fts1.c View 1 2 3 1 chunk +5 lines, -2 lines 0 comments Download
M third_party/sqlite/src/ext/fts1/fts1_hash.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts1/fulltext.c View 1 2 3 4 chunks +22 lines, -7 lines 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2.c View 1 2 3 4 chunks +7 lines, -4 lines 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2_hash.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2_hash.c View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2_icu.c View 1 2 3 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2_porter.c View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2_tokenizer.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2_tokenizer.c View 1 2 3 2 chunks +1 line, -2 lines 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/README.content View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/README.tokenizers View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3.c View 1 2 3 69 chunks +3576 lines, -1466 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3Int.h View 1 2 3 17 chunks +270 lines, -63 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_aux.c View 1 2 3 12 chunks +127 lines, -47 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_expr.c View 1 2 3 19 chunks +528 lines, -182 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_hash.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_hash.c View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_icu.c View 1 2 3 2 chunks +9 lines, -8 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_porter.c View 1 2 3 7 chunks +48 lines, -32 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_snippet.c View 1 2 3 28 chunks +83 lines, -187 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/fts3_term.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/fts3_test.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/fts3_tokenize_vtab.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_tokenizer.h View 1 2 3 3 chunks +11 lines, -2 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_tokenizer.c View 1 2 3 7 chunks +22 lines, -28 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/fts3_unicode.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/fts3_unicode2.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_write.c View 1 2 3 88 chunks +3417 lines, -484 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/tool/fts3view.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/unicode/CaseFolding.txt View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/unicode/UnicodeData.txt View 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/fts3/unicode/mkunicode.tcl View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/ext/icu/README.txt View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/ext/icu/icu.c View 1 2 3 2 chunks +5 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/amatch.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/closure.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/compress.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/fileio.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/fuzzer.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/ieee754.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/nextchar.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/percentile.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/regexp.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/rot13.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/showauth.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/spellfix.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/totype.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/vfslog.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/vtshim.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/misc/wholenumber.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree.c View 1 2 3 78 chunks +1136 lines, -906 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree1.test View 1 2 3 12 chunks +163 lines, -44 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree4.test View 1 2 3 1 chunk +30 lines, -13 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree5.test View 1 2 3 2 chunks +6 lines, -4 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree6.test View 1 2 3 4 chunks +24 lines, -18 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree7.test View 1 2 3 2 chunks +20 lines, -8 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree8.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree9.test View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtreeB.test View 1 2 3 1 chunk +25 lines, -12 lines 0 comments Download
A + third_party/sqlite/src/ext/rtree/rtreeC.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rtree/rtreeD.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rtree/rtreeE.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/rtree/rtreeF.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/sqlite3rtree.h View 1 2 3 3 chunks +61 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/ext/userauth/sqlite3userauth.h View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/userauth/user-auth.txt View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/ext/userauth/userauth.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/magic.txt View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/main.mk View 1 2 3 24 chunks +176 lines, -41 lines 0 comments Download
M third_party/sqlite/src/manifest View 1 2 3 7 chunks +864 lines, -584 lines 0 comments Download
M third_party/sqlite/src/manifest.uuid View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
D third_party/sqlite/src/mkdll.sh View 1 2 3 1 chunk +0 lines, -49 lines 0 comments Download
D third_party/sqlite/src/mkextu.sh View 1 2 3 1 chunk +0 lines, -13 lines 0 comments Download
D third_party/sqlite/src/mkextw.sh View 1 2 3 1 chunk +0 lines, -22 lines 0 comments Download
M third_party/sqlite/src/mkopcodec.awk View 1 2 3 1 chunk +23 lines, -4 lines 0 comments Download
M third_party/sqlite/src/mkopcodeh.awk View 1 2 3 7 chunks +100 lines, -26 lines 0 comments Download
A + third_party/sqlite/src/mptest/config01.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/mptest/config02.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/mptest/crash01.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/mptest/crash02.subtest View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/mptest/mptest.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/mptest/multiwrite01.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
D third_party/sqlite/src/publish.sh View 1 2 3 1 chunk +0 lines, -138 lines 0 comments Download
D third_party/sqlite/src/publish_osx.sh View 1 2 3 1 chunk +0 lines, -35 lines 0 comments Download
M third_party/sqlite/src/sqlite3.1 View 1 2 3 6 chunks +72 lines, -22 lines 0 comments Download
M third_party/sqlite/src/sqlite3.pc.in View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/alter.c View 1 2 3 13 chunks +17 lines, -15 lines 0 comments Download
M third_party/sqlite/src/src/analyze.c View 1 2 3 16 chunks +1496 lines, -332 lines 0 comments Download
M third_party/sqlite/src/src/attach.c View 1 2 3 15 chunks +68 lines, -28 lines 0 comments Download
M third_party/sqlite/src/src/auth.c View 1 2 3 3 chunks +11 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/backup.c View 1 2 3 15 chunks +163 lines, -116 lines 0 comments Download
M third_party/sqlite/src/src/bitvec.c View 1 2 3 2 chunks +2 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/btmutex.c View 1 2 3 5 chunks +17 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/btree.h View 1 2 3 7 chunks +30 lines, -14 lines 0 comments Download
M third_party/sqlite/src/src/btree.c View 1 2 3 241 chunks +1552 lines, -984 lines 0 comments Download
M third_party/sqlite/src/src/btreeInt.h View 1 2 3 11 chunks +87 lines, -53 lines 0 comments Download
M third_party/sqlite/src/src/build.c View 1 2 3 102 chunks +1029 lines, -493 lines 0 comments Download
M third_party/sqlite/src/src/callback.c View 1 2 3 11 chunks +69 lines, -49 lines 0 comments Download
M third_party/sqlite/src/src/complete.c View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/ctime.c View 1 2 3 7 chunks +35 lines, -11 lines 0 comments Download
M third_party/sqlite/src/src/date.c View 1 2 3 12 chunks +137 lines, -93 lines 0 comments Download
M third_party/sqlite/src/src/delete.c View 1 2 3 15 chunks +331 lines, -135 lines 0 comments Download
M third_party/sqlite/src/src/expr.c View 1 2 3 113 chunks +1326 lines, -733 lines 0 comments Download
M third_party/sqlite/src/src/fkey.c View 1 2 3 36 chunks +284 lines, -111 lines 0 comments Download
M third_party/sqlite/src/src/func.c View 1 2 3 31 chunks +370 lines, -174 lines 0 comments Download
M third_party/sqlite/src/src/global.c View 1 2 3 4 chunks +34 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/hash.h View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/hash.c View 1 2 3 9 chunks +33 lines, -43 lines 0 comments Download
M third_party/sqlite/src/src/insert.c View 1 2 3 60 chunks +717 lines, -526 lines 0 comments Download
M third_party/sqlite/src/src/journal.c View 1 2 3 2 chunks +18 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/legacy.c View 1 2 3 4 chunks +11 lines, -12 lines 0 comments Download
M third_party/sqlite/src/src/lempar.c View 1 2 3 5 chunks +7 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/loadext.c View 1 2 3 9 chunks +131 lines, -10 lines 0 comments Download
M third_party/sqlite/src/src/main.c View 1 2 3 72 chunks +982 lines, -171 lines 0 comments Download
M third_party/sqlite/src/src/malloc.c View 1 2 3 24 chunks +104 lines, -65 lines 0 comments Download
M third_party/sqlite/src/src/mem1.c View 1 2 3 9 chunks +150 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/mem2.c View 1 2 3 8 chunks +10 lines, -10 lines 0 comments Download
M third_party/sqlite/src/src/mem3.c View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/mem5.c View 1 2 3 8 chunks +23 lines, -28 lines 0 comments Download
M third_party/sqlite/src/src/memjournal.c View 1 2 3 2 chunks +4 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/mutex.h View 1 2 3 4 chunks +6 lines, -7 lines 0 comments Download
M third_party/sqlite/src/src/mutex.c View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/mutex_noop.c View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
D third_party/sqlite/src/src/mutex_os2.c View 1 2 3 1 chunk +0 lines, -274 lines 0 comments Download
M third_party/sqlite/src/src/mutex_unix.c View 1 2 3 3 chunks +8 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/mutex_w32.c View 1 2 3 13 chunks +109 lines, -70 lines 0 comments Download
M third_party/sqlite/src/src/notify.c View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/os.h View 1 2 3 5 chunks +9 lines, -79 lines 0 comments Download
M third_party/sqlite/src/src/os.c View 1 2 3 7 chunks +65 lines, -6 lines 0 comments Download
M third_party/sqlite/src/src/os_common.h View 1 2 3 1 chunk +7 lines, -4 lines 0 comments Download
D third_party/sqlite/src/src/os_os2.c View 1 2 3 1 chunk +0 lines, -1924 lines 0 comments Download
A + third_party/sqlite/src/src/os_setup.h View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/os_unix.c View 1 2 3 137 chunks +1160 lines, -337 lines 4 comments Download
A + third_party/sqlite/src/src/os_win.h View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/os_win.c View 1 2 3 75 chunks +3577 lines, -815 lines 0 comments Download
M third_party/sqlite/src/src/pager.h View 1 2 3 5 chunks +39 lines, -10 lines 0 comments Download
M third_party/sqlite/src/src/pager.c View 1 2 3 130 chunks +856 lines, -424 lines 0 comments Download
M third_party/sqlite/src/src/parse.y View 1 2 3 33 chunks +241 lines, -139 lines 0 comments Download
M third_party/sqlite/src/src/pcache.h View 1 2 3 6 chunks +13 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/pcache.c View 1 2 3 15 chunks +267 lines, -188 lines 0 comments Download
M third_party/sqlite/src/src/pcache1.c View 1 2 3 35 chunks +248 lines, -174 lines 0 comments Download
M third_party/sqlite/src/src/pragma.c View 1 2 3 52 chunks +1252 lines, -386 lines 0 comments Download
M third_party/sqlite/src/src/prepare.c View 1 2 3 18 chunks +46 lines, -18 lines 0 comments Download
M third_party/sqlite/src/src/printf.c View 1 2 3 31 chunks +331 lines, -229 lines 0 comments Download
M third_party/sqlite/src/src/random.c View 1 2 3 4 chunks +23 lines, -42 lines 0 comments Download
M third_party/sqlite/src/src/resolve.c View 1 2 3 40 chunks +429 lines, -168 lines 0 comments Download
M third_party/sqlite/src/src/rowset.c View 1 2 3 10 chunks +147 lines, -61 lines 0 comments Download
M third_party/sqlite/src/src/select.c View 1 2 3 155 chunks +1762 lines, -710 lines 0 comments Download
M third_party/sqlite/src/src/shell.c View 1 2 3 105 chunks +2024 lines, -674 lines 0 comments Download
M third_party/sqlite/src/src/sqlite.h.in View 1 2 3 154 chunks +1371 lines, -351 lines 0 comments Download
A + third_party/sqlite/src/src/sqlite3.rc View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/sqlite3ext.h View 1 2 3 8 chunks +114 lines, -17 lines 0 comments Download
M third_party/sqlite/src/src/sqliteInt.h View 1 2 3 96 chunks +1202 lines, -613 lines 0 comments Download
M third_party/sqlite/src/src/status.c View 1 2 3 1 chunk +39 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/table.c View 1 2 3 4 chunks +7 lines, -7 lines 0 comments Download
M third_party/sqlite/src/src/tclsqlite.c View 1 2 3 84 chunks +329 lines, -184 lines 0 comments Download
M third_party/sqlite/src/src/test1.c View 1 2 3 65 chunks +1393 lines, -208 lines 0 comments Download
M third_party/sqlite/src/src/test2.c View 1 2 3 14 chunks +109 lines, -44 lines 0 comments Download
M third_party/sqlite/src/src/test3.c View 1 2 3 10 chunks +18 lines, -34 lines 0 comments Download
M third_party/sqlite/src/src/test4.c View 1 2 3 3 chunks +4 lines, -29 lines 0 comments Download
M third_party/sqlite/src/src/test5.c View 1 2 3 2 chunks +1 line, -3 lines 0 comments Download
M third_party/sqlite/src/src/test6.c View 1 2 3 11 chunks +58 lines, -39 lines 0 comments Download
M third_party/sqlite/src/src/test7.c View 1 2 3 6 chunks +20 lines, -29 lines 0 comments Download
M third_party/sqlite/src/src/test8.c View 1 2 3 11 chunks +72 lines, -17 lines 0 comments Download
M third_party/sqlite/src/src/test_async.c View 1 2 3 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/test_autoext.c View 1 2 3 5 chunks +55 lines, -1 line 0 comments Download
M third_party/sqlite/src/src/test_backup.c View 1 2 3 3 chunks +6 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/test_btree.c View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_config.c View 1 2 3 12 chunks +103 lines, -12 lines 0 comments Download
M third_party/sqlite/src/src/test_demovfs.c View 1 2 3 3 chunks +7 lines, -8 lines 0 comments Download
A + third_party/sqlite/src/src/test_fs.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/test_func.c View 1 2 3 4 chunks +183 lines, -1 line 0 comments Download
D third_party/sqlite/src/src/test_fuzzer.c View 1 2 3 1 chunk +0 lines, -944 lines 0 comments Download
M third_party/sqlite/src/src/test_hexio.c View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_init.c View 1 2 3 6 chunks +18 lines, -14 lines 0 comments Download
M third_party/sqlite/src/src/test_intarray.h View 1 2 3 3 chunks +16 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_intarray.c View 1 2 3 6 chunks +10 lines, -9 lines 0 comments Download
M third_party/sqlite/src/src/test_journal.c View 1 2 3 11 chunks +16 lines, -17 lines 0 comments Download
M third_party/sqlite/src/src/test_loadext.c View 1 2 3 2 chunks +6 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/test_malloc.c View 1 2 3 21 chunks +122 lines, -30 lines 0 comments Download
M third_party/sqlite/src/src/test_multiplex.h View 1 2 3 2 chunks +9 lines, -1 line 0 comments Download
M third_party/sqlite/src/src/test_multiplex.c View 1 2 3 33 chunks +537 lines, -296 lines 0 comments Download
M third_party/sqlite/src/src/test_mutex.c View 1 2 3 5 chunks +6 lines, -6 lines 0 comments Download
M third_party/sqlite/src/src/test_onefile.c View 1 2 3 11 chunks +13 lines, -13 lines 0 comments Download
M third_party/sqlite/src/src/test_osinst.c View 1 2 3 9 chunks +17 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/test_pcache.c View 1 2 3 14 chunks +30 lines, -21 lines 0 comments Download
A + third_party/sqlite/src/src/test_quota.h View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/test_quota.c View 1 2 3 26 chunks +1061 lines, -41 lines 0 comments Download
M third_party/sqlite/src/src/test_rtree.c View 1 2 3 12 chunks +191 lines, -14 lines 0 comments Download
M third_party/sqlite/src/src/test_schema.c View 1 2 3 2 chunks +5 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_server.c View 1 2 3 1 chunk +26 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/src/test_sqllog.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/test_stat.c View 1 2 3 13 chunks +55 lines, -22 lines 0 comments Download
M third_party/sqlite/src/src/test_syscall.c View 1 2 3 12 chunks +86 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/test_thread.c View 1 2 3 8 chunks +31 lines, -14 lines 0 comments Download
M third_party/sqlite/src/src/test_vfs.c View 1 2 3 44 chunks +248 lines, -115 lines 0 comments Download
M third_party/sqlite/src/src/test_vfstrace.c View 1 2 3 5 chunks +120 lines, -1 line 0 comments Download
D third_party/sqlite/src/src/test_wholenumber.c View 1 2 3 1 chunk +0 lines, -311 lines 0 comments Download
A + third_party/sqlite/src/src/threads.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/tokenize.c View 1 2 3 10 chunks +23 lines, -28 lines 0 comments Download
M third_party/sqlite/src/src/trigger.c View 1 2 3 18 chunks +39 lines, -31 lines 0 comments Download
M third_party/sqlite/src/src/update.c View 1 2 3 28 chunks +223 lines, -114 lines 0 comments Download
M third_party/sqlite/src/src/utf.c View 1 2 3 9 chunks +13 lines, -43 lines 0 comments Download
M third_party/sqlite/src/src/util.c View 1 2 3 27 chunks +284 lines, -70 lines 0 comments Download
M third_party/sqlite/src/src/vacuum.c View 1 2 3 9 chunks +50 lines, -26 lines 0 comments Download
M third_party/sqlite/src/src/vdbe.h View 1 2 3 7 chunks +83 lines, -28 lines 0 comments Download
M third_party/sqlite/src/src/vdbe.c View 1 2 3 212 chunks +2003 lines, -1509 lines 0 comments Download
M third_party/sqlite/src/src/vdbeInt.h View 1 2 3 17 chunks +152 lines, -90 lines 0 comments Download
M third_party/sqlite/src/src/vdbeapi.c View 1 2 3 40 chunks +302 lines, -172 lines 0 comments Download
M third_party/sqlite/src/src/vdbeaux.c View 1 2 3 109 chunks +1619 lines, -748 lines 0 comments Download
M third_party/sqlite/src/src/vdbeblob.c View 1 2 3 11 chunks +47 lines, -47 lines 0 comments Download
M third_party/sqlite/src/src/vdbemem.c View 1 2 3 39 chunks +780 lines, -364 lines 0 comments Download
A + third_party/sqlite/src/src/vdbesort.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/src/vdbetrace.c View 1 2 3 4 chunks +46 lines, -15 lines 0 comments Download
M third_party/sqlite/src/src/vtab.c View 1 2 3 30 chunks +218 lines, -61 lines 0 comments Download
M third_party/sqlite/src/src/wal.h View 1 2 3 5 chunks +22 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/wal.c View 1 2 3 43 chunks +322 lines, -130 lines 0 comments Download
M third_party/sqlite/src/src/walker.c View 1 2 3 4 chunks +27 lines, -9 lines 0 comments Download
M third_party/sqlite/src/src/where.c View 1 2 3 100 chunks +4118 lines, -2494 lines 0 comments Download
A + third_party/sqlite/src/src/whereInt.h View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/8_3_names.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/aggnested.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/all.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/alter.test View 1 2 3 6 chunks +61 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/alter2.test View 1 2 3 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/alter3.test View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/alter4.test View 1 2 3 4 chunks +29 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/test/amatch1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/analyze.test View 1 2 3 2 chunks +59 lines, -1 line 0 comments Download
D third_party/sqlite/src/test/analyze2.test View 1 2 3 1 chunk +0 lines, -554 lines 0 comments Download
M third_party/sqlite/src/test/analyze3.test View 1 2 3 10 chunks +63 lines, -13 lines 0 comments Download
M third_party/sqlite/src/test/analyze4.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/analyze5.test View 1 2 3 4 chunks +116 lines, -92 lines 0 comments Download
M third_party/sqlite/src/test/analyze6.test View 1 2 3 5 chunks +19 lines, -19 lines 0 comments Download
M third_party/sqlite/src/test/analyze7.test View 1 2 3 4 chunks +27 lines, -24 lines 0 comments Download
A + third_party/sqlite/src/test/analyze8.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/analyze9.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/analyzeA.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/analyzeB.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/analyzeC.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/analyzeD.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/analyzeE.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/async.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/async2.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/async3.test View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/async5.test View 1 2 3 2 chunks +1 line, -2 lines 0 comments Download
A + third_party/sqlite/src/test/atof1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/attach.test View 1 2 3 8 chunks +30 lines, -11 lines 0 comments Download
M third_party/sqlite/src/test/attach2.test View 1 2 3 4 chunks +7 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/attach3.test View 1 2 3 2 chunks +2 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/attach4.test View 1 2 3 1 chunk +4 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/attachmalloc.test View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/auth.test View 1 2 3 140 chunks +208 lines, -141 lines 0 comments Download
M third_party/sqlite/src/test/auth2.test View 1 2 3 6 chunks +10 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/auth3.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/autoinc.test View 1 2 3 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/autoindex1.test View 1 2 3 7 chunks +274 lines, -12 lines 0 comments Download
A + third_party/sqlite/src/test/autoindex2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/autoindex3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/autovacuum.test View 1 2 3 5 chunks +6 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/autovacuum_ioerr2.test View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/backcompat.test View 1 2 3 7 chunks +252 lines, -180 lines 0 comments Download
M third_party/sqlite/src/test/backup.test View 1 2 3 17 chunks +28 lines, -28 lines 0 comments Download
M third_party/sqlite/src/test/backup2.test View 1 2 3 8 chunks +18 lines, -21 lines 0 comments Download
A + third_party/sqlite/src/test/backup4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/backup_ioerr.test View 1 2 3 4 chunks +5 lines, -5 lines 0 comments Download
A + third_party/sqlite/src/test/bc_common.tcl View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/between.test View 1 2 3 5 chunks +17 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/bigfile.test View 1 2 3 4 chunks +6 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/test/bigfile2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/boundary3.tcl View 1 2 3 4 chunks +8 lines, -9 lines 0 comments Download
A + third_party/sqlite/src/test/btreefault.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/cache.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/capi2.test View 1 2 3 4 chunks +9 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/capi3.test View 1 2 3 12 chunks +68 lines, -30 lines 0 comments Download
M third_party/sqlite/src/test/capi3c.test View 1 2 3 9 chunks +41 lines, -26 lines 0 comments Download
M third_party/sqlite/src/test/capi3d.test View 1 2 3 2 chunks +69 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/capi3e.test View 1 2 3 2 chunks +6 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/cast.test View 1 2 3 5 chunks +5 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/check.test View 1 2 3 14 chunks +104 lines, -16 lines 0 comments Download
A + third_party/sqlite/src/test/close.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/closure01.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/collate1.test View 1 2 3 1 chunk +29 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/collate2.test View 1 2 3 3 chunks +32 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/collate3.test View 1 2 3 1 chunk +98 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/collate4.test View 1 2 3 15 chunks +24 lines, -21 lines 0 comments Download
M third_party/sqlite/src/test/collate5.test View 1 2 3 3 chunks +5 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/collate7.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/conflict.test View 1 2 3 13 chunks +28 lines, -16 lines 0 comments Download
A + third_party/sqlite/src/test/conflict2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/conflict3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/contrib01.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/corrupt.test View 1 2 3 11 chunks +14 lines, -22 lines 0 comments Download
M third_party/sqlite/src/test/corrupt2.test View 1 2 3 9 chunks +25 lines, -21 lines 0 comments Download
M third_party/sqlite/src/test/corrupt3.test View 1 2 3 1 chunk +5 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/corrupt4.test View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/corrupt5.test View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/corrupt6.test View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/corrupt7.test View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/corrupt8.test View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/corrupt9.test View 1 2 3 4 chunks +7 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/corruptA.test View 1 2 3 5 chunks +9 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/corruptB.test View 1 2 3 9 chunks +12 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/corruptC.test View 1 2 3 18 chunks +27 lines, -25 lines 0 comments Download
M third_party/sqlite/src/test/corruptD.test View 1 2 3 4 chunks +8 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/corruptE.test View 1 2 3 8 chunks +11 lines, -15 lines 0 comments Download
A + third_party/sqlite/src/test/corruptF.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/corruptG.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/corruptH.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/corruptI.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/cost.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/count.test View 1 2 3 4 chunks +6 lines, -4 lines 0 comments Download
A + third_party/sqlite/src/test/coveridxscan.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/crash.test View 1 2 3 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/crash3.test View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/crash4.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/crash5.test View 1 2 3 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/crash6.test View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/crash7.test View 1 2 3 3 chunks +35 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/crash8.test View 1 2 3 2 chunks +63 lines, -57 lines 0 comments Download
M third_party/sqlite/src/test/createtab.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/date.test View 1 2 3 2 chunks +24 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/dbstatus.test View 1 2 3 8 chunks +36 lines, -5 lines 0 comments Download
A + third_party/sqlite/src/test/dbstatus2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/default.test View 1 2 3 1 chunk +63 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/delete.test View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/descidx1.test View 1 2 3 3 chunks +5 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/descidx3.test View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/diskfull.test View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/test/distinct.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/e_createtable.test View 1 2 3 34 chunks +129 lines, -106 lines 0 comments Download
M third_party/sqlite/src/test/e_delete.test View 1 2 3 4 chunks +9 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/e_droptrigger.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/e_dropview.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/e_expr.test View 1 2 3 15 chunks +81 lines, -28 lines 0 comments Download
M third_party/sqlite/src/test/e_fkey.test View 1 2 3 60 chunks +136 lines, -127 lines 0 comments Download
M third_party/sqlite/src/test/e_fts3.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/e_insert.test View 1 2 3 7 chunks +42 lines, -18 lines 0 comments Download
M third_party/sqlite/src/test/e_reindex.test View 1 2 3 4 chunks +8 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/e_select.test View 1 2 3 33 chunks +94 lines, -81 lines 0 comments Download
M third_party/sqlite/src/test/e_select2.test View 1 2 3 3 chunks +17 lines, -17 lines 0 comments Download
M third_party/sqlite/src/test/e_update.test View 1 2 3 7 chunks +14 lines, -17 lines 0 comments Download
A + third_party/sqlite/src/test/e_uri.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/e_vacuum.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/enc2.test View 1 2 3 13 chunks +14 lines, -14 lines 0 comments Download
M third_party/sqlite/src/test/enc3.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/enc4.test View 1 2 3 3 chunks +5 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/eqp.test View 1 2 3 12 chunks +244 lines, -176 lines 0 comments Download
A + third_party/sqlite/src/test/errmsg.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/eval.test View 1 2 3 1 chunk +12 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/exclusive.test View 1 2 3 3 chunks +8 lines, -9 lines 0 comments Download
M third_party/sqlite/src/test/exclusive2.test View 1 2 3 3 chunks +10 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/exists.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/expr.test View 1 2 3 6 chunks +62 lines, -53 lines 0 comments Download
A + third_party/sqlite/src/test/extension01.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fallocate.test View 1 2 3 2 chunks +1 line, -2 lines 0 comments Download
M third_party/sqlite/src/test/filectrl.test View 1 2 3 1 chunk +8 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/filefmt.test View 1 2 3 6 chunks +39 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/fkey1.test View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fkey2.test View 1 2 3 53 chunks +107 lines, -81 lines 0 comments Download
M third_party/sqlite/src/test/fkey3.test View 1 2 3 3 chunks +108 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/fkey4.test View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/fkey5.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fkey6.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fkey7.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fkey_malloc.test View 1 2 3 3 chunks +5 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/test/fts-9fd058691.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts1j.test View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/fts1o.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/fts2j.test View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/fts2o.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/fts3_common.tcl View 1 2 3 6 chunks +130 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/fts3aa.test View 1 2 3 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/fts3ab.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3ag.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3ai.test View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3aj.test View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/fts3ao.test View 1 2 3 4 chunks +33 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/fts3atoken.test View 1 2 3 2 chunks +21 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/fts3auto.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts3aux1.test View 1 2 3 8 chunks +82 lines, -23 lines 0 comments Download
A + third_party/sqlite/src/test/fts3aux2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts3conf.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts3corrupt.test View 1 2 3 6 chunks +7 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3d.test View 1 2 3 3 chunks +74 lines, -10 lines 0 comments Download
M third_party/sqlite/src/test/fts3defer.test View 1 2 3 6 chunks +93 lines, -12 lines 0 comments Download
M third_party/sqlite/src/test/fts3defer2.test View 1 2 3 5 chunks +18 lines, -5 lines 0 comments Download
A + third_party/sqlite/src/test/fts3defer3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts3drop.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts3expr.test View 1 2 3 2 chunks +18 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/fts3expr3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts3expr4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts3fault.test View 1 2 3 3 chunks +4 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/fts3fault2.test View 1 2 3 1 chunk +73 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/fts3first.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts3join.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts3malloc.test View 1 2 3 3 chunks +5 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3matchinfo.test View 1 2 3 7 chunks +78 lines, -9 lines 0 comments Download
M third_party/sqlite/src/test/fts3near.test View 1 2 3 2 chunks +14 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/fts3prefix.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts3prefix2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts3query.test View 1 2 3 2 chunks +8 lines, -9 lines 0 comments Download
M third_party/sqlite/src/test/fts3rnd.test View 1 2 3 15 chunks +47 lines, -21 lines 0 comments Download
M third_party/sqlite/src/test/fts3shared.test View 1 2 3 4 chunks +105 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3snippet.test View 1 2 3 3 chunks +63 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/test/fts3sort.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts3tok1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts3tok_err.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts3varint.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fts4aa.test View 1 2 3 2 chunks +115 lines, -1557 lines 0 comments Download
A + third_party/sqlite/src/test/fts4check.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4content.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4docid.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4growth.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4growth2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4incr.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4langid.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4merge.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4merge2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4merge3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4merge4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4noti.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/fts4unicode.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/full.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/func.test View 1 2 3 5 chunks +134 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/func3.test View 1 2 3 2 chunks +137 lines, -18 lines 0 comments Download
A + third_party/sqlite/src/test/func4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/func5.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fuzz.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/fuzz-oss1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/fuzz3.test View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fuzz_malloc.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/fuzzer1.test View 1 2 3 2 chunks +568 lines, -84 lines 0 comments Download
A + third_party/sqlite/src/test/fuzzerfault.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/genesis.tcl View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/hexlit.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/hook.test View 1 2 3 6 chunks +81 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/in.test View 1 2 3 4 chunks +16 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/in4.test View 1 2 3 1 chunk +177 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/in5.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/incrblob.test View 1 2 3 10 chunks +12 lines, -14 lines 0 comments Download
M third_party/sqlite/src/test/incrblob2.test View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/incrblob3.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/incrblob4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/incrblob_err.test View 1 2 3 5 chunks +5 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/incrblobfault.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/incrvacuum.test View 1 2 3 6 chunks +6 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/incrvacuum2.test View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/test/incrvacuum3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/incrvacuum_ioerr.test View 1 2 3 3 chunks +5 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/index.test View 1 2 3 3 chunks +19 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/index3.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/index4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/index5.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/index6.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/index7.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/indexedby.test View 1 2 3 10 chunks +84 lines, -37 lines 0 comments Download
A + third_party/sqlite/src/test/indexfault.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/insert.test View 1 2 3 1 chunk +50 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/insert4.test View 1 2 3 6 chunks +242 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/insert5.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/instr.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/interrupt.test View 1 2 3 2 chunks +3 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/intpkey.test View 1 2 3 3 chunks +7 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/io.test View 1 2 3 11 chunks +86 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/ioerr.test View 1 2 3 3 chunks +5 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/ioerr2.test View 1 2 3 2 chunks +7 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/ioerr4.test View 1 2 3 3 chunks +5 lines, -5 lines 0 comments Download
A + third_party/sqlite/src/test/ioerr6.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/join.test View 1 2 3 2 chunks +46 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/join5.test View 1 2 3 1 chunk +54 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/join6.test View 1 2 3 1 chunk +22 lines, -20 lines 0 comments Download
M third_party/sqlite/src/test/journal1.test View 1 2 3 3 chunks +5 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/journal2.test View 1 2 3 3 chunks +2 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/journal3.test View 1 2 3 2 chunks +6 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/jrnlmode.test View 1 2 3 5 chunks +6 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/jrnlmode2.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/jrnlmode3.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/keyword1.test View 1 2 3 2 chunks +3 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/lastinsert.test View 1 2 3 1 chunk +11 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/like.test View 1 2 3 15 chunks +106 lines, -25 lines 0 comments Download
M third_party/sqlite/src/test/limit.test View 1 2 3 1 chunk +167 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/loadext.test View 1 2 3 6 chunks +28 lines, -13 lines 0 comments Download
M third_party/sqlite/src/test/loadext2.test View 1 2 3 2 chunks +26 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/lock.test View 1 2 3 1 chunk +23 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/lock4.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/lock5.test View 1 2 3 5 chunks +6 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/lock7.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/lock_common.tcl View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/main.test View 1 2 3 3 chunks +7 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/malloc.test View 1 2 3 6 chunks +58 lines, -29 lines 0 comments Download
M third_party/sqlite/src/test/malloc3.test View 1 2 3 12 chunks +57 lines, -29 lines 0 comments Download
M third_party/sqlite/src/test/malloc5.test View 1 2 3 6 chunks +7 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/mallocA.test View 1 2 3 5 chunks +72 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/mallocG.test View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/mallocK.test View 1 2 3 2 chunks +66 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/mallocL.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/malloc_common.tcl View 1 2 3 7 chunks +31 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/manydb.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/memdb.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/memsubsys1.test View 1 2 3 4 chunks +15 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/memsubsys2.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/minmax.test View 1 2 3 3 chunks +91 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/minmax2.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/minmax4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/misc1.test View 1 2 3 4 chunks +37 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/misc2.test View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/misc3.test View 1 2 3 3 chunks +7 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/misc5.test View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/misc7.test View 1 2 3 11 chunks +60 lines, -24 lines 0 comments Download
M third_party/sqlite/src/test/misuse.test View 1 2 3 2 chunks +34 lines, -31 lines 0 comments Download
A + third_party/sqlite/src/test/mmap1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/mmap2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/mmap3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/mmapfault.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/multiplex.test View 1 2 3 12 chunks +90 lines, -60 lines 0 comments Download
A + third_party/sqlite/src/test/multiplex2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/multiplex3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/multiplex4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/nan.test View 1 2 3 3 chunks +54 lines, -8 lines 0 comments Download
A + third_party/sqlite/src/test/nolock.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/notify1.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/notify2.test View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/notify3.test View 1 2 3 2 chunks +1 line, -2 lines 0 comments Download
M third_party/sqlite/src/test/notnull.test View 1 2 3 22 chunks +52 lines, -27 lines 0 comments Download
A + third_party/sqlite/src/test/numcast.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/openv2.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/orderby1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/orderby2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/orderby3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/orderby4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/orderby5.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/orderby6.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/orderby7.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/oserror.test View 1 2 3 2 chunks +20 lines, -17 lines 0 comments Download
A + third_party/sqlite/src/test/ovfl.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/pager1.test View 1 2 3 32 chunks +524 lines, -121 lines 0 comments Download
M third_party/sqlite/src/test/pager2.test View 1 2 3 2 chunks +18 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/pager4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/pagerfault.test View 1 2 3 5 chunks +308 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/pagerfault2.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/pagerfault3.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/pageropt.test View 1 2 3 2 chunks +7 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/pagesize.test View 1 2 3 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/pcache.test View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M third_party/sqlite/src/test/pcache2.test View 1 2 3 2 chunks +2 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/test/percentile.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/permutations.test View 1 2 3 13 chunks +182 lines, -13 lines 0 comments Download
M third_party/sqlite/src/test/pragma.test View 1 2 3 27 chunks +269 lines, -33 lines 0 comments Download
M third_party/sqlite/src/test/pragma2.test View 1 2 3 4 chunks +93 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/printf.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/printf2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/progress.test View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/queryonly.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/quota.test View 1 2 3 13 chunks +141 lines, -8 lines 0 comments Download
A + third_party/sqlite/src/test/quota-glob.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/quota2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/randexpr1.test View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/rdonly.test View 1 2 3 2 chunks +6 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/regexp1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/releasetest.tcl View 1 2 3 9 chunks +62 lines, -14 lines 0 comments Download
A + third_party/sqlite/src/test/resolver01.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/rollback.test View 1 2 3 2 chunks +5 lines, -5 lines 0 comments Download
A + third_party/sqlite/src/test/rollback2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/rowid.test View 1 2 3 4 chunks +20 lines, -4 lines 0 comments Download
A + third_party/sqlite/src/test/run-wordcount.sh View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/savepoint.test View 1 2 3 13 chunks +24 lines, -18 lines 0 comments Download
M third_party/sqlite/src/test/savepoint6.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/savepoint7.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/schema5.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/securedel.test View 1 2 3 2 chunks +1 line, -2 lines 0 comments Download
A + third_party/sqlite/src/test/securedel2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/select1.test View 1 2 3 2 chunks +7 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/select4.test View 1 2 3 1 chunk +55 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/select6.test View 1 2 3 2 chunks +44 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/select7.test View 1 2 3 1 chunk +16 lines, -14 lines 0 comments Download
M third_party/sqlite/src/test/select9.test View 1 2 3 1 chunk +53 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/selectA.test View 1 2 3 10 chunks +92 lines, -10 lines 0 comments Download
M third_party/sqlite/src/test/selectB.test View 1 2 3 3 chunks +59 lines, -14 lines 0 comments Download
M third_party/sqlite/src/test/selectC.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/selectD.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/selectE.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/selectF.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/server1.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/shared.test View 1 2 3 15 chunks +141 lines, -19 lines 0 comments Download
M third_party/sqlite/src/test/shared2.test View 1 2 3 2 chunks +1 line, -43 lines 0 comments Download
M third_party/sqlite/src/test/shared3.test View 1 2 3 3 chunks +36 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/shared4.test View 1 2 3 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/shared6.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/shared7.test View 1 2 3 2 chunks +4 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/shared8.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/shared9.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/sharedA.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/sharedB.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/shared_err.test View 1 2 3 3 chunks +10 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/sharedlock.test View 1 2 3 2 chunks +29 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/test/shell1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/shell2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/shell3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/shell4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/shell5.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/show_speedtest1_rtree.tcl View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/shrink.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/skipscan1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/skipscan2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/skipscan3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/skipscan5.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/softheap1.test View 1 2 3 1 chunk +20 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/sort.test View 1 2 3 2 chunks +174 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/test/sort2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/sort3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/sort4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/sort5.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/sortfault.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/speed1p.test View 1 2 3 2 chunks +2 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/speed3.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/speedtest1.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/spellfix.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/sqllimits1.test View 1 2 3 3 chunks +20 lines, -9 lines 0 comments Download
M third_party/sqlite/src/test/stat.test View 1 2 3 5 chunks +56 lines, -34 lines 0 comments Download
M third_party/sqlite/src/test/subquery.test View 1 2 3 2 chunks +91 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/test/subquery2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/superlock.test View 1 2 3 2 chunks +9 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/sync.test View 1 2 3 3 chunks +18 lines, -16 lines 0 comments Download
M third_party/sqlite/src/test/syscall.test View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/sysfault.test View 1 2 3 1 chunk +31 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/table.test View 1 2 3 5 chunks +80 lines, -4 lines 0 comments Download
A + third_party/sqlite/src/test/tableopts.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tclsqlite.test View 1 2 3 4 chunks +24 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/temptable.test View 1 2 3 4 chunks +5 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/temptrigger.test View 1 2 3 3 chunks +77 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/tester.tcl View 1 2 3 50 chunks +623 lines, -138 lines 0 comments Download
M third_party/sqlite/src/test/thread001.test View 1 2 3 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/thread002.test View 1 2 3 2 chunks +3 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/thread003.test View 1 2 3 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/thread005.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/threadtest3.c View 1 2 3 2 chunks +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tkt-02a8e81d44.test View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-2a5629202f.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-2d1a5c67d.test View 1 2 3 3 chunks +56 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/tkt-31338dca7e.test View 1 2 3 1 chunk +101 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-385a5b56b9.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-38cb5df375.test View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-3a77c9714e.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-4a03edc4c8.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/tkt-4c86b126f2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-4dd95f6943.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-4ef7e3cfca.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-54844eea3f.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-5d863f876e.test View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tkt-5ee23731f.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
A + third_party/sqlite/src/test/tkt-6bfb98dfc0.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-78e04e52ea.test View 1 2 3 3 chunks +10 lines, -10 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-7a31705a7e6.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-7bbfb7d442.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-80ba201079.test View 1 2 3 3 chunks +15 lines, -11 lines 0 comments Download
M third_party/sqlite/src/test/tkt-80e031a00f.test View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-868145d012.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-8c63ff0ec.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-91e2e8ba6f.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-94c04eaadb.test View 1 2 3 2 chunks +1 line, -2 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-9a8b09f8e6.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-9f2eb3abac.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-a7b7803e.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-a8a0d2996a.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-b1d3a2e531.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-b72787b1.test View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-b75a9ca6b0.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-ba7cbfaedc.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-bd484a090c.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-bdc6bbbb38.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-c48d99d690.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-cbd054fa6b.test View 1 2 3 3 chunks +34 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/tkt-d11f09d36e.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/tkt-d635236375.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-d82e3f3721.test View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tkt-f3e5abed55.test View 1 2 3 3 chunks +3 lines, -4 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-f67b41381a.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt-f777251dc7a.test View 1 2 3 3 chunks +9 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/tkt-f973c7ac31.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/tkt-fa7bf5ec.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tkt-fc7bd6358f.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/tkt1567.test View 1 2 3 2 chunks +32 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt1667.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt1873.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt2409.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/tkt2686.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt2817.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt2820.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/tkt2822.test View 1 2 3 1 chunk +11 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt2854.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt3442.test View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/tkt3457.test View 1 2 3 2 chunks +20 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/tkt3527.test View 1 2 3 3 chunks +9 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/tkt35xx.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/tkt3762.test View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/tkt3773.test View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tkt3793.test View 1 2 3 1 chunk +10 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/tkt3838.test View 1 2 3 2 chunks +18 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt3918.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt3922.test View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/tkt3929.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/tpch01.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/trace.test View 1 2 3 1 chunk +16 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/trace2.test View 1 2 3 1 chunk +10 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/trans2.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/trans3.test View 1 2 3 2 chunks +4 lines, -5 lines 0 comments Download
A + third_party/sqlite/src/test/transitive1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/trigger1.test View 1 2 3 11 chunks +43 lines, -30 lines 0 comments Download
M third_party/sqlite/src/test/trigger2.test View 1 2 3 6 chunks +6 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/trigger3.test View 1 2 3 6 chunks +6 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/trigger4.test View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/trigger9.test View 1 2 3 2 chunks +33 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/triggerA.test View 1 2 3 3 chunks +12 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/triggerC.test View 1 2 3 12 chunks +87 lines, -45 lines 0 comments Download
M third_party/sqlite/src/test/triggerD.test View 1 2 3 2 chunks +45 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/triggerE.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/tt3_index.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/types3.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/unique.test View 1 2 3 7 chunks +15 lines, -7 lines 0 comments Download
A + third_party/sqlite/src/test/unique2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/unixexcl.test View 1 2 3 1 chunk +45 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/unordered.test View 1 2 3 1 chunk +20 lines, -15 lines 0 comments Download
M third_party/sqlite/src/test/update.test View 1 2 3 4 chunks +17 lines, -3 lines 0 comments Download
A + third_party/sqlite/src/test/uri.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/userauth01.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/vacuum.test View 1 2 3 5 chunks +23 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/vacuum2.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/vacuum3.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/veryquick.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/view.test View 1 2 3 2 chunks +49 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/vtab1.test View 1 2 3 14 chunks +238 lines, -22 lines 0 comments Download
M third_party/sqlite/src/test/vtab3.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/vtab6.test View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/vtab7.test View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/vtabC.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/vtabD.test View 1 2 3 1 chunk +4 lines, -6 lines 0 comments Download
A + third_party/sqlite/src/test/vtabF.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/vtab_shared.test View 1 2 3 4 chunks +66 lines, -18 lines 0 comments Download
M third_party/sqlite/src/test/wal.test View 1 2 3 43 chunks +85 lines, -58 lines 0 comments Download
M third_party/sqlite/src/test/wal2.test View 1 2 3 26 chunks +85 lines, -47 lines 0 comments Download
M third_party/sqlite/src/test/wal3.test View 1 2 3 13 chunks +15 lines, -15 lines 0 comments Download
M third_party/sqlite/src/test/wal4.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/wal5.test View 1 2 3 5 chunks +29 lines, -21 lines 0 comments Download
M third_party/sqlite/src/test/wal6.test View 1 2 3 2 chunks +142 lines, -35 lines 0 comments Download
A + third_party/sqlite/src/test/wal64k.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/wal7.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/wal8.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/wal9.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/walbak.test View 1 2 3 5 chunks +81 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/walbig.test View 1 2 3 2 chunks +6 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/walcksum.test View 1 2 3 10 chunks +15 lines, -16 lines 0 comments Download
M third_party/sqlite/src/test/walcrash.test View 1 2 3 9 chunks +18 lines, -19 lines 0 comments Download
M third_party/sqlite/src/test/walcrash2.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
A + third_party/sqlite/src/test/walcrash3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/walfault.test View 1 2 3 4 chunks +43 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/walmode.test View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/walnoshm.test View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
A + third_party/sqlite/src/test/walpersist.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/walro.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/test/walshared.test View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/walslow.test View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/walthread.test View 1 2 3 3 chunks +7 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/where.test View 1 2 3 13 chunks +118 lines, -42 lines 0 comments Download
M third_party/sqlite/src/test/where2.test View 1 2 3 11 chunks +152 lines, -43 lines 0 comments Download
M third_party/sqlite/src/test/where3.test View 1 2 3 8 chunks +180 lines, -35 lines 0 comments Download
M third_party/sqlite/src/test/where4.test View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/where7.test View 1 2 3 3 chunks +5 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/where8.test View 1 2 3 8 chunks +49 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/where9.test View 1 2 3 12 chunks +223 lines, -21 lines 0 comments Download
M third_party/sqlite/src/test/whereA.test View 1 2 3 1 chunk +6 lines, -0 lines 0 comments Download
A + third_party/sqlite/src/test/whereC.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/whereD.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/whereE.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/whereF.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/whereG.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/whereH.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/whereI.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/whereJ.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/wild001.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/win32heap.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/win32lock.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/win32longpath.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/with1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/with2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/withM.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/without_rowid1.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/without_rowid2.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/without_rowid3.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/without_rowid4.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/without_rowid5.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/wordcount.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/test/zerodamage.test View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/build-all-msvc.bat View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/build-shell.sh View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/checkSpacing.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/extract.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/fast_vacuum.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/getlock.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/lemon.c View 1 2 3 75 chunks +277 lines, -165 lines 0 comments Download
A + third_party/sqlite/src/tool/logest.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/mkautoconfamal.sh View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/mkkeywordhash.c View 1 2 3 4 chunks +10 lines, -2 lines 0 comments Download
A + third_party/sqlite/src/tool/mkpragmatab.tcl View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/mksqlite3c.tcl View 1 2 3 11 chunks +34 lines, -8 lines 0 comments Download
A + third_party/sqlite/src/tool/mksqlite3c-noext.tcl View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/mksqlite3h.tcl View 1 2 3 1 chunk +10 lines, -2 lines 0 comments Download
M third_party/sqlite/src/tool/mksqlite3internalh.tcl View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
A + third_party/sqlite/src/tool/mkvsix.tcl View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/offsets.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/omittest.tcl View 1 2 3 12 chunks +40 lines, -27 lines 0 comments Download
A + third_party/sqlite/src/tool/pagesig.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
D third_party/sqlite/src/tool/shell1.test View 1 2 3 1 chunk +0 lines, -714 lines 0 comments Download
D third_party/sqlite/src/tool/shell2.test View 1 2 3 1 chunk +0 lines, -222 lines 0 comments Download
D third_party/sqlite/src/tool/shell3.test View 1 2 3 1 chunk +0 lines, -124 lines 0 comments Download
D third_party/sqlite/src/tool/shell4.test View 1 2 3 1 chunk +0 lines, -129 lines 0 comments Download
D third_party/sqlite/src/tool/shell5.test View 1 2 3 1 chunk +0 lines, -243 lines 0 comments Download
M third_party/sqlite/src/tool/showdb.c View 1 2 3 22 chunks +543 lines, -39 lines 0 comments Download
M third_party/sqlite/src/tool/showjournal.c View 1 2 3 6 chunks +9 lines, -10 lines 0 comments Download
A + third_party/sqlite/src/tool/showstat4.c View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/showwal.c View 1 2 3 11 chunks +277 lines, -36 lines 0 comments Download
M third_party/sqlite/src/tool/spaceanal.tcl View 1 2 3 22 chunks +246 lines, -91 lines 0 comments Download
A + third_party/sqlite/src/tool/stack_usage.tcl View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/symbols.sh View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/symbols-mingw.sh View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/tostr.awk View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M third_party/sqlite/src/tool/vdbe-compress.tcl View 1 2 3 4 chunks +19 lines, -1 line 0 comments Download
A + third_party/sqlite/src/tool/vdbe_profile.tcl View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/warnings.sh View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/warnings-clang.sh View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/sqlite/src/tool/win/sqlite.vsix View 1 2 3 Binary file 0 comments Download

Messages

Total messages: 13 (1 generated)
Scott Hess - ex-Googler
Update patches, README, and sqlite3.c generator.
5 years, 10 months ago (2015-02-04 22:10:35 UTC) #1
Scott Hess - ex-Googler
Apply patches to SQLite.
5 years, 10 months ago (2015-02-04 22:17:40 UTC) #2
Scott Hess - ex-Googler
Chromium changes to support SQLite 3.8.7.4.
5 years, 10 months ago (2015-02-04 22:24:51 UTC) #3
Scott Hess - ex-Googler
Sigh, this CL sucks. In my brain the vendor copy would cause things in src/ ...
5 years, 10 months ago (2015-02-04 22:28:48 UTC) #5
Scott Hess - ex-Googler
On 2015/02/04 22:28:48, Scott Hess wrote: > Sigh, this CL sucks. Ping! As before, I'm ...
5 years, 10 months ago (2015-02-09 20:13:30 UTC) #6
michaeln
https://codereview.chromium.org/901033002/diff/30001/third_party/sqlite/src/src/os_unix.c File third_party/sqlite/src/src/os_unix.c (right): https://codereview.chromium.org/901033002/diff/30001/third_party/sqlite/src/src/os_unix.c#newcode1326 third_party/sqlite/src/src/os_unix.c:1326: ** running in the sandbox. Does this have any ...
5 years, 10 months ago (2015-02-09 20:35:51 UTC) #7
Scott Hess - ex-Googler
https://codereview.chromium.org/901033002/diff/30001/third_party/sqlite/src/src/os_unix.c File third_party/sqlite/src/src/os_unix.c (right): https://codereview.chromium.org/901033002/diff/30001/third_party/sqlite/src/src/os_unix.c#newcode1326 third_party/sqlite/src/src/os_unix.c:1326: ** running in the sandbox. On 2015/02/09 20:35:51, michaeln ...
5 years, 10 months ago (2015-02-09 21:36:27 UTC) #8
michaeln
i think this lgtm > Long-term, I don't have any story on how to fix ...
5 years, 10 months ago (2015-02-09 22:53:40 UTC) #9
michaeln
https://codereview.chromium.org/901033002/diff/30001/third_party/sqlite/src/src/os_unix.c File third_party/sqlite/src/src/os_unix.c (right): https://codereview.chromium.org/901033002/diff/30001/third_party/sqlite/src/src/os_unix.c#newcode3824 third_party/sqlite/src/src/os_unix.c:3824: *(int*)pArg = fileHasMoved(pFile); does this one only result in ...
5 years, 10 months ago (2015-02-09 22:55:35 UTC) #10
Scott Hess - ex-Googler
On 2015/02/09 22:53:40, michaeln wrote: > > Long-term, I don't have any story on how ...
5 years, 10 months ago (2015-02-10 21:14:23 UTC) #11
commit-bot: I haz the power
Patchset 4 (id:??) landed as https://crrev.com/dcf12048055030a2b5858ceca5ce26294a82a6e4 Cr-Commit-Position: refs/heads/master@{#315646}
5 years, 10 months ago (2015-02-10 21:37:46 UTC) #12
Scott Hess - ex-Googler
5 years, 10 months ago (2015-02-10 21:39:45 UTC) #13
Message was sent while issue was closed.
Committed patchset #4 (id:30001) manually as
dcf12048055030a2b5858ceca5ce26294a82a6e4 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698