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

Issue 6990047: Import SQLite 3.7.6.3. (Closed)

Created:
9 years, 7 months ago by Scott Hess - ex-Googler
Modified:
9 years, 6 months ago
Reviewers:
cpu_(ooo_6.6-7.5)
CC:
chromium-reviews, jshin+watch_chromium.org
Visibility:
Public.

Description

Import SQLite 3.7.6.3. Ran through the import script in third_party/sqlite/README.Chromium, including the SQLite test suite. A few minor errors under oserror-1.1.[123], I suspect my Linux reference machine is becoming outdated. SQLite changes are going to be hard/impossible to review. It's a year and a half of changes, might as well be a new package. Removed patches which are no longer necessary: icu-regepx.patch is already present safe-tolower.patch is already present attach-integer.patch no longer relevant For attach-integer.patch, the code has been refactored. The failure in http://crbug.com/38745 no longer occurs (ATTACH 12345 as db; attaches the SQLite database "12345" rather than crashing). Tweak test.patch for modern era. Adjusted webdb.patch for new flag. Clean up fts3.patch. fts3 has been substantially refactored, so much of the patch no longer applies. Reviewed fts3_write.c and many of the patches are now handled appropriately. I found one issue in fts3.c, and I'm still reviewing it. This will be ongoing. Disabled WAL (Write Ahead Log) and fts4 support for now as unknown unknowns. BUG=71731 TEST=*EVERYTHING* continues to work. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=86616

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+107485 lines, -27843 lines) Patch
M third_party/sqlite/README.chromium View 2 chunks +6 lines, -4 lines 0 comments Download
M third_party/sqlite/amalgamation/sqlite3.h View 162 chunks +2450 lines, -1745 lines 0 comments Download
D third_party/sqlite/attach-integer.patch View 1 chunk +0 lines, -15 lines 0 comments Download
M third_party/sqlite/fts3.patch View 4 chunks +44 lines, -1902 lines 0 comments Download
D third_party/sqlite/icu-regexp.patch View 1 chunk +0 lines, -14 lines 0 comments Download
D third_party/sqlite/safe-tolower.patch View 1 chunk +0 lines, -120 lines 0 comments Download
M third_party/sqlite/src/Makefile.arm-wince-mingw32ce-gcc View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/Makefile.in View 19 chunks +257 lines, -142 lines 0 comments Download
M third_party/sqlite/src/Makefile.linux-gcc View 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/sqlite/src/Makefile.vxworks View 5 chunks +8 lines, -6 lines 0 comments Download
M third_party/sqlite/src/VERSION View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/addopcodes.awk View 2 chunks +3 lines, -0 lines 0 comments Download
A third_party/sqlite/src/art/2005osaward.gif View Binary file 0 comments Download
A third_party/sqlite/src/art/SQLite.eps View Binary file 0 comments Download
A third_party/sqlite/src/art/SQLite.gif View Binary file 0 comments Download
A third_party/sqlite/src/art/SQLiteLogo3.tiff View Binary file 0 comments Download
A third_party/sqlite/src/art/SQLite_big.gif View Binary file 0 comments Download
A third_party/sqlite/src/art/nocopy.gif View Binary file 0 comments Download
A third_party/sqlite/src/art/powered_by_sqlite.gif View Binary file 0 comments Download
A third_party/sqlite/src/art/sqlite370.eps View Binary file 0 comments Download
A third_party/sqlite/src/art/sqlite370.ico View Binary file 0 comments Download
A third_party/sqlite/src/art/sqlite370.jpg View Binary file 0 comments Download
A third_party/sqlite/src/art/src_logo.gif View Binary file 0 comments Download
M third_party/sqlite/src/configure View 21 chunks +24 lines, -54 lines 0 comments Download
M third_party/sqlite/src/configure.ac View 2 chunks +1 line, -19 lines 0 comments Download
A third_party/sqlite/src/contrib/sqlitecon.tcl View Binary file 0 comments Download
A third_party/sqlite/src/doc/lemon.html View 1 chunk +892 lines, -0 lines 0 comments Download
A third_party/sqlite/src/doc/pager-invariants.txt View 1 chunk +76 lines, -0 lines 0 comments Download
A third_party/sqlite/src/doc/vfs-shm.txt View 1 chunk +130 lines, -0 lines 0 comments Download
M third_party/sqlite/src/ext/async/sqlite3async.c View 7 chunks +24 lines, -10 lines 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2.c View 2 chunks +3 lines, -5 lines 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2_porter.c View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c View 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3.c View 9 chunks +2937 lines, -6650 lines 0 comments Download
A third_party/sqlite/src/ext/fts3/fts3Int.h View 1 chunk +388 lines, -0 lines 0 comments Download
A third_party/sqlite/src/ext/fts3/fts3_aux.c View 1 chunk +470 lines, -0 lines 0 comments Download
D third_party/sqlite/src/ext/fts3/fts3_expr.h View 1 chunk +0 lines, -96 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_expr.c View 23 chunks +96 lines, -58 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_hash.h View 4 chunks +19 lines, -17 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_hash.c View 12 chunks +47 lines, -37 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_porter.c View 10 chunks +20 lines, -15 lines 0 comments Download
A third_party/sqlite/src/ext/fts3/fts3_snippet.c View 1 chunk +1625 lines, -0 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_tokenizer.h View 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_tokenizer.c View 9 chunks +140 lines, -18 lines 0 comments Download
M third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c View 6 chunks +10 lines, -8 lines 0 comments Download
A third_party/sqlite/src/ext/fts3/fts3_write.c View 1 chunk +2727 lines, -0 lines 0 comments Download
A third_party/sqlite/src/ext/fts3/fts3speed.tcl View Binary file 0 comments Download
M third_party/sqlite/src/ext/icu/README.txt View 2 chunks +1 line, -2 lines 0 comments Download
M third_party/sqlite/src/ext/icu/icu.c View 2 chunks +3 lines, -1 line 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree.c View 64 chunks +658 lines, -281 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree1.test View 2 chunks +18 lines, -3 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree2.test View 2 chunks +2 lines, -4 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree3.test View 2 chunks +194 lines, -31 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree4.test View 11 chunks +11 lines, -13 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree5.test View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/rtree6.test View 2 chunks +83 lines, -38 lines 0 comments Download
A third_party/sqlite/src/ext/rtree/rtree7.test View 1 chunk +58 lines, -0 lines 0 comments Download
A third_party/sqlite/src/ext/rtree/rtree8.test View 1 chunk +171 lines, -0 lines 0 comments Download
A third_party/sqlite/src/ext/rtree/rtree9.test View 1 chunk +125 lines, -0 lines 0 comments Download
A third_party/sqlite/src/ext/rtree/rtreeA.test View 1 chunk +220 lines, -0 lines 0 comments Download
A third_party/sqlite/src/ext/rtree/rtreeB.test View 1 chunk +34 lines, -0 lines 0 comments Download
third_party/sqlite/src/ext/rtree/rtree_perf.tcl View 1 chunk +0 lines, -2 lines 0 comments Download
third_party/sqlite/src/ext/rtree/rtree_util.tcl View 2 chunks +0 lines, -3 lines 0 comments Download
A third_party/sqlite/src/ext/rtree/sqlite3rtree.h View 1 chunk +56 lines, -0 lines 0 comments Download
M third_party/sqlite/src/ext/rtree/tkt3363.test View 2 chunks +1 line, -5 lines 0 comments Download
third_party/sqlite/src/ext/rtree/viewrtree.tcl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/main.mk View 17 chunks +94 lines, -32 lines 0 comments Download
M third_party/sqlite/src/manifest View 15 chunks +533 lines, -363 lines 0 comments Download
M third_party/sqlite/src/manifest.uuid View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/mkopcodeh.awk View 6 chunks +19 lines, -15 lines 0 comments Download
M third_party/sqlite/src/publish.sh View 2 chunks +15 lines, -13 lines 0 comments Download
M third_party/sqlite/src/src/alter.c View 17 chunks +191 lines, -24 lines 0 comments Download
M third_party/sqlite/src/src/analyze.c View 26 chunks +136 lines, -70 lines 0 comments Download
M third_party/sqlite/src/src/attach.c View 13 chunks +29 lines, -29 lines 0 comments Download
M third_party/sqlite/src/src/auth.c View 4 chunks +34 lines, -18 lines 0 comments Download
M third_party/sqlite/src/src/backup.c View 16 chunks +114 lines, -43 lines 0 comments Download
M third_party/sqlite/src/src/bitvec.c View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/sqlite/src/src/btmutex.c View 5 chunks +42 lines, -115 lines 0 comments Download
M third_party/sqlite/src/src/btree.h View 8 chunks +28 lines, -30 lines 0 comments Download
M third_party/sqlite/src/src/btree.c View 125 chunks +612 lines, -276 lines 0 comments Download
M third_party/sqlite/src/src/btreeInt.h View 9 chunks +23 lines, -20 lines 0 comments Download
M third_party/sqlite/src/src/build.c View 53 chunks +212 lines, -116 lines 0 comments Download
M third_party/sqlite/src/src/callback.c View 6 chunks +18 lines, -11 lines 0 comments Download
M third_party/sqlite/src/src/complete.c View 9 chunks +35 lines, -29 lines 0 comments Download
A third_party/sqlite/src/src/ctime.c View 1 chunk +393 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/date.c View 10 chunks +17 lines, -32 lines 0 comments Download
M third_party/sqlite/src/src/delete.c View 11 chunks +52 lines, -31 lines 0 comments Download
M third_party/sqlite/src/src/expr.c View 63 chunks +657 lines, -443 lines 0 comments Download
M third_party/sqlite/src/src/fault.c View 1 chunk +0 lines, -4 lines 0 comments Download
A third_party/sqlite/src/src/fkey.c View 1 chunk +1189 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/func.c View 26 chunks +150 lines, -48 lines 0 comments Download
M third_party/sqlite/src/src/global.c View 8 chunks +46 lines, -19 lines 0 comments Download
M third_party/sqlite/src/src/hash.h View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/hash.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/hwtime.h View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/insert.c View 23 chunks +90 lines, -67 lines 0 comments Download
M third_party/sqlite/src/src/journal.c View 3 chunks +6 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/legacy.c View 2 chunks +1 line, -2 lines 0 comments Download
M third_party/sqlite/src/src/lempar.c View 4 chunks +16 lines, -10 lines 0 comments Download
M third_party/sqlite/src/src/loadext.c View 5 chunks +47 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/main.c View 47 chunks +506 lines, -124 lines 0 comments Download
M third_party/sqlite/src/src/malloc.c View 19 chunks +242 lines, -181 lines 0 comments Download
M third_party/sqlite/src/src/mem0.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/mem1.c View 4 chunks +21 lines, -16 lines 0 comments Download
M third_party/sqlite/src/src/mem2.c View 9 chunks +92 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/mem3.c View 2 chunks +1 line, -2 lines 0 comments Download
M third_party/sqlite/src/src/mem5.c View 5 chunks +9 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/memjournal.c View 6 chunks +12 lines, -12 lines 0 comments Download
M third_party/sqlite/src/src/mutex.h View 2 chunks +3 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/mutex.c View 3 chunks +19 lines, -19 lines 0 comments Download
M third_party/sqlite/src/src/mutex_noop.c View 8 chunks +55 lines, -35 lines 0 comments Download
M third_party/sqlite/src/src/mutex_os2.c View 9 chunks +83 lines, -82 lines 0 comments Download
M third_party/sqlite/src/src/mutex_unix.c View 9 chunks +32 lines, -10 lines 0 comments Download
M third_party/sqlite/src/src/mutex_w32.c View 11 chunks +63 lines, -15 lines 0 comments Download
M third_party/sqlite/src/src/notify.c View 3 chunks +2 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/os.h View 4 chunks +10 lines, -4 lines 0 comments Download
M third_party/sqlite/src/src/os.c View 6 chunks +41 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/os_common.h View 2 chunks +2 lines, -18 lines 0 comments Download
M third_party/sqlite/src/src/os_os2.c View 41 chunks +1043 lines, -246 lines 0 comments Download
M third_party/sqlite/src/src/os_unix.c View 151 chunks +2619 lines, -1297 lines 0 comments Download
M third_party/sqlite/src/src/os_win.c View 36 chunks +1088 lines, -194 lines 0 comments Download
M third_party/sqlite/src/src/pager.h View 7 chunks +22 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/pager.c View 150 chunks +2829 lines, -1341 lines 0 comments Download
M third_party/sqlite/src/src/parse.y View 11 chunks +76 lines, -35 lines 0 comments Download
M third_party/sqlite/src/src/pcache.h View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/pcache.c View 6 chunks +18 lines, -7 lines 0 comments Download
M third_party/sqlite/src/src/pcache1.c View 33 chunks +325 lines, -149 lines 0 comments Download
M third_party/sqlite/src/src/pragma.c View 29 chunks +211 lines, -107 lines 0 comments Download
M third_party/sqlite/src/src/prepare.c View 30 chunks +39 lines, -51 lines 0 comments Download
M third_party/sqlite/src/src/printf.c View 13 chunks +96 lines, -25 lines 0 comments Download
M third_party/sqlite/src/src/random.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/resolve.c View 9 chunks +55 lines, -19 lines 0 comments Download
M third_party/sqlite/src/src/rowset.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/select.c View 62 chunks +369 lines, -146 lines 0 comments Download
M third_party/sqlite/src/src/shell.c View 67 chunks +793 lines, -1070 lines 0 comments Download
M third_party/sqlite/src/src/sqlite.h.in View 161 chunks +2391 lines, -1742 lines 0 comments Download
M third_party/sqlite/src/src/sqlite3ext.h View 3 chunks +42 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/sqliteInt.h View 73 chunks +385 lines, -172 lines 0 comments Download
M third_party/sqlite/src/src/sqliteLimit.h View 4 chunks +25 lines, -18 lines 0 comments Download
M third_party/sqlite/src/src/status.c View 4 chunks +112 lines, -7 lines 0 comments Download
M third_party/sqlite/src/src/table.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/tclsqlite.c View 36 chunks +1226 lines, -464 lines 0 comments Download
M third_party/sqlite/src/src/test1.c View 36 chunks +684 lines, -56 lines 0 comments Download
M third_party/sqlite/src/src/test2.c View 4 chunks +4 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/test3.c View 5 chunks +7 lines, -8 lines 0 comments Download
M third_party/sqlite/src/src/test4.c View 3 chunks +3 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/test5.c View 2 chunks +1 line, -3 lines 0 comments Download
M third_party/sqlite/src/src/test6.c View 6 chunks +33 lines, -7 lines 0 comments Download
M third_party/sqlite/src/src/test7.c View 4 chunks +3 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/test8.c View 2 chunks +1 line, -3 lines 0 comments Download
M third_party/sqlite/src/src/test9.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_async.c View 3 chunks +2 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/test_autoext.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_backup.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/src/test_btree.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_config.c View 9 chunks +37 lines, -10 lines 0 comments Download
A third_party/sqlite/src/src/test_demovfs.c View 1 chunk +680 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/test_devsym.c View 8 chunks +48 lines, -7 lines 0 comments Download
M third_party/sqlite/src/src/test_func.c View 5 chunks +114 lines, -4 lines 0 comments Download
A third_party/sqlite/src/src/test_fuzzer.c View 1 chunk +944 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/test_hexio.c View 3 chunks +48 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_init.c View 1 chunk +0 lines, -1 line 0 comments Download
A third_party/sqlite/src/src/test_intarray.h View 1 chunk +114 lines, -0 lines 0 comments Download
A third_party/sqlite/src/src/test_intarray.c View 1 chunk +381 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/test_journal.c View 8 chunks +27 lines, -6 lines 0 comments Download
M third_party/sqlite/src/src/test_loadext.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_malloc.c View 12 chunks +41 lines, -11 lines 0 comments Download
D third_party/sqlite/src/src/test_md5.c View 1 chunk +0 lines, -395 lines 0 comments Download
A third_party/sqlite/src/src/test_multiplex.h View 1 chunk +91 lines, -0 lines 0 comments Download
A third_party/sqlite/src/src/test_multiplex.c View 1 chunk +1179 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/test_mutex.c View 2 chunks +2 lines, -3 lines 0 comments Download
M third_party/sqlite/src/src/test_onefile.c View 4 chunks +12 lines, -5 lines 0 comments Download
M third_party/sqlite/src/src/test_osinst.c View 8 chunks +858 lines, -716 lines 0 comments Download
M third_party/sqlite/src/src/test_pcache.c View 1 chunk +0 lines, -2 lines 0 comments Download
A third_party/sqlite/src/src/test_quota.c View 1 chunk +952 lines, -0 lines 0 comments Download
A third_party/sqlite/src/src/test_rtree.c View 1 chunk +294 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/test_schema.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_server.c View 4 chunks +2 lines, -5 lines 0 comments Download
A third_party/sqlite/src/src/test_stat.c View 1 chunk +607 lines, -0 lines 0 comments Download
A third_party/sqlite/src/src/test_superlock.c View 1 chunk +356 lines, -0 lines 0 comments Download
A third_party/sqlite/src/src/test_syscall.c View 1 chunk +674 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/test_tclvar.c View 2 chunks +9 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/test_thread.c View 7 chunks +8 lines, -6 lines 0 comments Download
A third_party/sqlite/src/src/test_vfs.c View 1 chunk +1410 lines, -0 lines 0 comments Download
A third_party/sqlite/src/src/test_vfstrace.c View 1 chunk +773 lines, -0 lines 0 comments Download
A third_party/sqlite/src/src/test_wholenumber.c View 1 chunk +311 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/test_wsd.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/tokenize.c View 8 chunks +9 lines, -17 lines 0 comments Download
M third_party/sqlite/src/src/trigger.c View 19 chunks +148 lines, -76 lines 0 comments Download
M third_party/sqlite/src/src/update.c View 15 chunks +106 lines, -50 lines 0 comments Download
M third_party/sqlite/src/src/utf.c View 11 chunks +21 lines, -29 lines 0 comments Download
M third_party/sqlite/src/src/util.c View 21 chunks +294 lines, -238 lines 0 comments Download
M third_party/sqlite/src/src/vacuum.c View 10 chunks +77 lines, -31 lines 0 comments Download
M third_party/sqlite/src/src/vdbe.h View 7 chunks +15 lines, -9 lines 0 comments Download
M third_party/sqlite/src/src/vdbe.c View 175 chunks +941 lines, -579 lines 0 comments Download
M third_party/sqlite/src/src/vdbeInt.h View 12 chunks +87 lines, -74 lines 0 comments Download
M third_party/sqlite/src/src/vdbeapi.c View 22 chunks +190 lines, -69 lines 0 comments Download
M third_party/sqlite/src/src/vdbeaux.c View 64 chunks +463 lines, -235 lines 0 comments Download
M third_party/sqlite/src/src/vdbeblob.c View 10 chunks +182 lines, -90 lines 0 comments Download
M third_party/sqlite/src/src/vdbemem.c View 18 chunks +101 lines, -45 lines 0 comments Download
A third_party/sqlite/src/src/vdbetrace.c View 1 chunk +154 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/vtab.c View 16 chunks +25 lines, -47 lines 0 comments Download
A third_party/sqlite/src/src/wal.h View 1 chunk +118 lines, -0 lines 0 comments Download
A third_party/sqlite/src/src/wal.c View 1 chunk +2901 lines, -0 lines 0 comments Download
M third_party/sqlite/src/src/walker.c View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/sqlite/src/src/where.c View 107 chunks +1351 lines, -314 lines 0 comments Download
M third_party/sqlite/src/test/all.test View 1 chunk +27 lines, -121 lines 0 comments Download
M third_party/sqlite/src/test/alter.test View 5 chunks +42 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/alter2.test View 3 chunks +20 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/alter3.test View 3 chunks +3 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/alter4.test View 6 chunks +0 lines, -65 lines 0 comments Download
M third_party/sqlite/src/test/analyze.test View 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/analyze2.test View 21 chunks +157 lines, -106 lines 0 comments Download
A third_party/sqlite/src/test/analyze3.test View 1 chunk +615 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/analyze4.test View 1 chunk +111 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/analyze5.test View 1 chunk +241 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/analyze6.test View 1 chunk +122 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/analyze7.test View 1 chunk +111 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/async.test View 4 chunks +18 lines, -15 lines 0 comments Download
M third_party/sqlite/src/test/async4.test View 2 chunks +6 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/attach.test View 3 chunks +68 lines, -16 lines 0 comments Download
A third_party/sqlite/src/test/attach4.test View 1 chunk +116 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/attachmalloc.test View 2 chunks +15 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/auth.test View 4 chunks +19 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/auth2.test View 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/autoinc.test View 1 chunk +103 lines, -76 lines 0 comments Download
A third_party/sqlite/src/test/autoindex1.test View 1 chunk +251 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/autovacuum.test View 1 chunk +8 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/avtrans.test View 6 chunks +9 lines, -4 lines 0 comments Download
A third_party/sqlite/src/test/backcompat.test View 1 chunk +445 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/backup.test View 5 chunks +66 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/backup2.test View 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/backup_malloc.test View 1 chunk +2 lines, -1 line 0 comments Download
A third_party/sqlite/src/test/badutf2.test View 1 chunk +121 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/bigfile.test View 4 chunks +8 lines, -0 lines 0 comments Download
third_party/sqlite/src/test/boundary4.tcl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/sqlite/src/test/boundary4.test View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/sqlite/src/test/cache.test View 2 chunks +82 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/capi2.test View 1 chunk +13 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/capi3.test View 6 chunks +12 lines, -7 lines 0 comments Download
M third_party/sqlite/src/test/capi3b.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/capi3c.test View 6 chunks +10 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/capi3d.test View 2 chunks +25 lines, -2 lines 0 comments Download
A third_party/sqlite/src/test/capi3e.test View 1 chunk +122 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/check.test View 1 chunk +7 lines, -7 lines 0 comments Download
A third_party/sqlite/src/test/coalesce.test View 1 chunk +84 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/collate4.test View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/conflict.test View 2 chunks +23 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/corrupt.test View 3 chunks +97 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/corrupt2.test View 26 chunks +54 lines, -31 lines 0 comments Download
M third_party/sqlite/src/test/corrupt3.test View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/corrupt4.test View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/corrupt6.test View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/corrupt7.test View 2 chunks +6 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/corrupt8.test View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/corrupt9.test View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/corruptA.test View 2 chunks +8 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/corruptB.test View 2 chunks +6 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/corruptC.test View 3 chunks +17 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/corruptD.test View 1 chunk +5 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/corruptE.test View 1 chunk +183 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/crash8.test View 2 chunks +59 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/ctime.test View 1 chunk +227 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/date.test View 3 chunks +32 lines, -25 lines 0 comments Download
A third_party/sqlite/src/test/dbstatus.test View 1 chunk +349 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/descidx1.test View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/descidx2.test View 1 chunk +6 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/descidx3.test View 1 chunk +5 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_createtable.test View 1 chunk +1930 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_delete.test View 1 chunk +470 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_droptrigger.test View 1 chunk +218 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_dropview.test View 1 chunk +192 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_expr.test View 1 chunk +1848 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_fkey.test View 1 chunk +3014 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_fts3.test View 1 chunk +706 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_insert.test View 1 chunk +406 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_reindex.test View 1 chunk +294 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_resolve.test View 1 chunk +135 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_select.test View 1 chunk +2162 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_select2.test View 1 chunk +580 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_update.test View 1 chunk +608 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/e_vacuum.test View 1 chunk +303 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/enc4.test View 1 chunk +139 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/eqp.test View 1 chunk +578 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/exclusive.test View 5 chunks +45 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/exclusive2.test View 6 chunks +28 lines, -15 lines 0 comments Download
A third_party/sqlite/src/test/exists.test View 1 chunk +198 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/expr.test View 4 chunks +141 lines, -5 lines 0 comments Download
A third_party/sqlite/src/test/fallocate.test View 1 chunk +146 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/filectrl.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/filefmt.test View 2 chunks +101 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fkey1.test View 3 chunks +7 lines, -7 lines 0 comments Download
A third_party/sqlite/src/test/fkey2.test View 1 chunk +1991 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fkey3.test View 1 chunk +80 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fkey4.test View 1 chunk +55 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fkey_malloc.test View 1 chunk +132 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts2.test View 3 chunks +3 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/fts3.test View 1 chunk +4 lines, -53 lines 0 comments Download
A third_party/sqlite/src/test/fts3_common.tcl View Binary file 0 comments Download
M third_party/sqlite/src/test/fts3aa.test View 2 chunks +25 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3ab.test View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3ac.test View 3 chunks +35 lines, -29 lines 0 comments Download
M third_party/sqlite/src/test/fts3ad.test View 1 chunk +41 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3ae.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3ag.test View 1 chunk +2 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3ah.test View 3 chunks +16 lines, -21 lines 0 comments Download
M third_party/sqlite/src/test/fts3al.test View 2 chunks +5 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/fts3an.test View 2 chunks +30 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/fts3ao.test View 2 chunks +51 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3aux1.test View 1 chunk +462 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3b.test View 1 chunk +15 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/fts3c.test View 2 chunks +7 lines, -109 lines 0 comments Download
A third_party/sqlite/src/test/fts3comp1.test View 1 chunk +115 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3corrupt.test View 1 chunk +162 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3corrupt2.test View 1 chunk +110 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3cov.test View 1 chunk +432 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3d.test View 3 chunks +8 lines, -47 lines 0 comments Download
A third_party/sqlite/src/test/fts3defer.test View 1 chunk +446 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3defer2.test View 1 chunk +143 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3expr.test View 1 chunk +14 lines, -14 lines 0 comments Download
A third_party/sqlite/src/test/fts3fault.test View 1 chunk +233 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3fault2.test View 1 chunk +85 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3malloc.test View 1 chunk +303 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3matchinfo.test View 1 chunk +384 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fts3near.test View 3 chunks +13 lines, -1 line 0 comments Download
A third_party/sqlite/src/test/fts3query.test View 1 chunk +213 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3rnd.test View 1 chunk +434 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3shared.test View 1 chunk +72 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts3snippet.test View 1 chunk +463 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/fts4aa.test View 1 chunk +1636 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/func.test View 1 chunk +79 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/func2.test View 1 chunk +511 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/func3.test View 1 chunk +71 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fuzz.test View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/fuzz2.test View 2 chunks +6 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/fuzz_malloc.test View 1 chunk +2 lines, -2 lines 0 comments Download
A third_party/sqlite/src/test/fuzzer1.test View 1 chunk +1382 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/hook.test View 1 chunk +27 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/icu.test View 2 chunks +21 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/in.test View 1 chunk +33 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/incrblob.test View 5 chunks +115 lines, -82 lines 0 comments Download
A third_party/sqlite/src/test/incrblob3.test View 1 chunk +272 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/incrblobfault.test View 1 chunk +70 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/incrvacuum.test View 2 chunks +12 lines, -10 lines 0 comments Download
M third_party/sqlite/src/test/incrvacuum2.test View 2 chunks +76 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/index.test View 2 chunks +13 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/index3.test View 1 chunk +2 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/indexedby.test View 5 chunks +98 lines, -75 lines 0 comments Download
M third_party/sqlite/src/test/init.test View 2 chunks +4 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/insert4.test View 1 chunk +24 lines, -1 line 0 comments Download
A third_party/sqlite/src/test/intarray.test View 1 chunk +109 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/io.test View 2 chunks +13 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/ioerr.test View 1 chunk +6 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/ioerr5.test View 3 chunks +13 lines, -18 lines 0 comments Download
M third_party/sqlite/src/test/join.test View 1 chunk +65 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/join6.test View 1 chunk +158 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/journal2.test View 1 chunk +234 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/journal3.test View 1 chunk +60 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/jrnlmode.test View 6 chunks +59 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/jrnlmode2.test View 4 chunks +29 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/jrnlmode3.test View 4 chunks +5 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/like.test View 5 chunks +226 lines, -92 lines 0 comments Download
M third_party/sqlite/src/test/lock.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/lock2.test View 6 chunks +8 lines, -69 lines 0 comments Download
M third_party/sqlite/src/test/lock4.test View 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/lock5.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/lock6.test View 2 chunks +5 lines, -6 lines 0 comments Download
A third_party/sqlite/src/test/lock_common.tcl View Binary file 0 comments Download
M third_party/sqlite/src/test/lookaside.test View 3 chunks +32 lines, -10 lines 0 comments Download
M third_party/sqlite/src/test/main.test View 2 chunks +35 lines, -14 lines 0 comments Download
M third_party/sqlite/src/test/malloc.test View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/malloc3.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/mallocAll.test View 2 chunks +2 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/mallocC.test View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/mallocI.test View 1 chunk +1 line, -0 lines 0 comments Download
third_party/sqlite/src/test/malloc_common.tcl View 3 chunks +497 lines, -4 lines 0 comments Download
A third_party/sqlite/src/test/mem5.test View 1 chunk +66 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/memdb.test View 1 chunk +4 lines, -10 lines 0 comments Download
M third_party/sqlite/src/test/memleak.test View 1 chunk +2 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/memsubsys1.test View 6 chunks +22 lines, -22 lines 0 comments Download
M third_party/sqlite/src/test/minmax3.test View 4 chunks +79 lines, -8 lines 0 comments Download
M third_party/sqlite/src/test/misc1.test View 1 chunk +6 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/misc4.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/misc5.test View 1 chunk +13 lines, -11 lines 0 comments Download
M third_party/sqlite/src/test/misc7.test View 1 chunk +16 lines, -18 lines 0 comments Download
A third_party/sqlite/src/test/multiplex.test View 1 chunk +571 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/mutex1.test View 2 chunks +11 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/nan.test View 6 chunks +17 lines, -12 lines 0 comments Download
A third_party/sqlite/src/test/notify3.test View 1 chunk +153 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/oserror.test View 1 chunk +122 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/pager1.test View 1 chunk +2414 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/pager2.test View 1 chunk +151 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/pager3.test View 1 chunk +33 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/pagerfault.test View 1 chunk +1245 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/pagerfault2.test View 1 chunk +99 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/pagerfault3.test View 1 chunk +64 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/pageropt.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/pagesize.test View 1 chunk +26 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/pcache.test View 1 chunk +12 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/permutations.test View 23 chunks +396 lines, -298 lines 0 comments Download
M third_party/sqlite/src/test/pragma.test View 5 chunks +27 lines, -19 lines 0 comments Download
M third_party/sqlite/src/test/printf.test View 1 chunk +37 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/quick.test View 1 chunk +3 lines, -142 lines 0 comments Download
A third_party/sqlite/src/test/quota.test View 1 chunk +396 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/rdonly.test View 4 chunks +9 lines, -3 lines 0 comments Download
A third_party/sqlite/src/test/releasetest.tcl View Binary file 0 comments Download
M third_party/sqlite/src/test/rollback.test View 2 chunks +3 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/rowhash.test View 2 chunks +4 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/rtree.test View 2 chunks +5 lines, -27 lines 0 comments Download
D third_party/sqlite/src/test/safety.test View 1 chunk +0 lines, -93 lines 0 comments Download
M third_party/sqlite/src/test/savepoint.test View 17 chunks +372 lines, -191 lines 0 comments Download
M third_party/sqlite/src/test/savepoint2.test View 4 chunks +6 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/savepoint6.test View 5 chunks +12 lines, -3 lines 0 comments Download
M third_party/sqlite/src/test/schema.test View 1 chunk +24 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/schema3.test View 1 chunk +97 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/schema4.test View 1 chunk +175 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/securedel.test View 1 chunk +73 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/select2.test View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/select6.test View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/sqlite/src/test/select7.test View 1 chunk +43 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/select9.test View 2 chunks +1 line, -3 lines 0 comments Download
M third_party/sqlite/src/test/selectC.test View 1 chunk +81 lines, -12 lines 0 comments Download
M third_party/sqlite/src/test/shared.test View 1 chunk +38 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/shared2.test View 2 chunks +11 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/shared3.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/soak.test View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/softheap1.test View 1 chunk +1 line, -2 lines 0 comments Download
A third_party/sqlite/src/test/stat.test View 1 chunk +159 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/stmt.test View 1 chunk +97 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/superlock.test View 1 chunk +249 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/syscall.test View 1 chunk +276 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/sysfault.test View 1 chunk +247 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/table.test View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/sqlite/src/test/tableapi.test View 2 chunks +8 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/tclsqlite.test View 3 chunks +5 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/tempdb.test View 2 chunks +3 lines, -5 lines 0 comments Download
third_party/sqlite/src/test/tester.tcl View 15 chunks +647 lines, -174 lines 0 comments Download
M third_party/sqlite/src/test/thread1.test View 1 chunk +1 line, -4 lines 0 comments Download
M third_party/sqlite/src/test/thread2.test View 3 chunks +1 line, -121 lines 0 comments Download
third_party/sqlite/src/test/thread_common.tcl View 3 chunks +6 lines, -9 lines 0 comments Download
A third_party/sqlite/src/test/threadtest3.c View 1 chunk +1461 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-02a8e81d44.test View 1 chunk +31 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-26ff0c2d1e.test View 1 chunk +33 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-2d1a5c67d.test View 1 chunk +73 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-31338dca7e.test View 1 chunk +77 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-313723c356.test View 1 chunk +57 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-38cb5df375.test View 1 chunk +321 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-3998683a16.test View 1 chunk +46 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-3fe897352e.test View 1 chunk +60 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-4a03edc4c8.test View 1 chunk +46 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-5d863f876e.test View 1 chunk +53 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-5e10420e8d.test View 1 chunk +50 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-5ee23731f.test View 1 chunk +42 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-752e1646fc.test View 1 chunk +30 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-78e04e52ea.test View 1 chunk +68 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-80ba201079.test View 1 chunk +191 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-80e031a00f.test View 1 chunk +206 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-8454a207b9.test View 1 chunk +67 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-94c04eaadb.test View 1 chunk +73 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-9d68c883.test View 1 chunk +53 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-b351d95f9.test View 1 chunk +47 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-b72787b1.test View 1 chunk +77 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-cbd054fa6b.test View 1 chunk +87 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-d11f09d36e.test View 1 chunk +62 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-d82e3f3721.test View 1 chunk +80 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-f3e5abed55.test View 1 chunk +117 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-f777251dc7a.test View 1 chunk +99 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-f7b4edec.test View 1 chunk +74 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-f973c7ac31.test View 1 chunk +87 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tkt-fc62af4523.test View 1 chunk +84 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tkt1667.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt3201.test View 1 chunk +25 lines, -23 lines 0 comments Download
M third_party/sqlite/src/test/tkt3442.test View 2 chunks +3 lines, -3 lines 0 comments Download
D third_party/sqlite/src/test/tkt3472.test View 1 chunk +0 lines, -39 lines 0 comments Download
M third_party/sqlite/src/test/tkt3757.test View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/tkt3810.test View 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tkt3824.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/tkt3832.test View 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tkt3838.test View 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tkt3929.test View 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/tkt3992.test View 1 chunk +31 lines, -27 lines 0 comments Download
M third_party/sqlite/src/test/trace.test View 5 chunks +82 lines, -8 lines 0 comments Download
A third_party/sqlite/src/test/trace2.test View 1 chunk +152 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/trans.test View 11 chunks +15 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/trigger3.test View 6 chunks +30 lines, -30 lines 0 comments Download
M third_party/sqlite/src/test/trigger7.test View 1 chunk +2 lines, -4 lines 0 comments Download
M third_party/sqlite/src/test/triggerA.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/triggerC.test View 4 chunks +197 lines, -8 lines 0 comments Download
A third_party/sqlite/src/test/triggerD.test View 1 chunk +174 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/tt3_checkpoint.c View 1 chunk +150 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/types.test View 1 chunk +1 line, -1 line 0 comments Download
A third_party/sqlite/src/test/unixexcl.test View 1 chunk +83 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/unordered.test View 1 chunk +65 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/vacuum.test View 2 chunks +37 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/vacuum2.test View 2 chunks +46 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/vacuum4.test View 1 chunk +67 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/veryquick.test View 1 chunk +6 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/vtab1.test View 1 chunk +23 lines, -6 lines 0 comments Download
M third_party/sqlite/src/test/vtab5.test View 1 chunk +7 lines, -5 lines 0 comments Download
M third_party/sqlite/src/test/vtabA.test View 1 chunk +19 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/vtabE.test View 1 chunk +48 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/vtab_alter.test View 1 chunk +1 line, -1 line 0 comments Download
M third_party/sqlite/src/test/vtab_shared.test View 1 chunk +13 lines, -11 lines 0 comments Download
A third_party/sqlite/src/test/wal.test View 1 chunk +1563 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/wal2.test View 1 chunk +1284 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/wal3.test View 1 chunk +787 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/wal4.test View 1 chunk +64 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/wal5.test View 1 chunk +346 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/wal6.test View 1 chunk +90 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/wal_common.tcl View Binary file 0 comments Download
A third_party/sqlite/src/test/walbak.test View 1 chunk +279 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walbig.test View 1 chunk +73 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walcksum.test View 1 chunk +393 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walcrash.test View 1 chunk +296 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walcrash2.test View 1 chunk +99 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walfault.test View 1 chunk +551 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walhook.test View 1 chunk +109 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walmode.test View 1 chunk +387 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walnoshm.test View 1 chunk +184 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walshared.test View 1 chunk +63 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walslow.test View 1 chunk +73 lines, -0 lines 0 comments Download
A third_party/sqlite/src/test/walthread.test View 1 chunk +527 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/where2.test View 1 chunk +31 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/where3.test View 1 chunk +131 lines, -2 lines 0 comments Download
M third_party/sqlite/src/test/where6.test View 1 chunk +24 lines, -0 lines 0 comments Download
M third_party/sqlite/src/test/where7.test View 3 chunks +48 lines, -10 lines 0 comments Download
M third_party/sqlite/src/test/where8.test View 3 chunks +15 lines, -1 line 0 comments Download
M third_party/sqlite/src/test/where9.test View 2 chunks +35 lines, -59 lines 0 comments Download
M third_party/sqlite/src/test/whereA.test View 1 chunk +30 lines, -0 lines 0 comments Download
M third_party/sqlite/src/tool/genfkey.test View 1 chunk +60 lines, -0 lines 0 comments Download
M third_party/sqlite/src/tool/lemon.c View 128 chunks +542 lines, -503 lines 0 comments Download
M third_party/sqlite/src/tool/lempar.c View 4 chunks +16 lines, -8 lines 0 comments Download
M third_party/sqlite/src/tool/mkkeywordhash.c View 6 chunks +8 lines, -1 line 0 comments Download
third_party/sqlite/src/tool/mksqlite3c.tcl View 9 chunks +11 lines, -5 lines 0 comments Download
third_party/sqlite/src/tool/mksqlite3h.tcl View 2 chunks +32 lines, -25 lines 0 comments Download
third_party/sqlite/src/tool/omittest.tcl View 7 chunks +149 lines, -79 lines 0 comments Download
A third_party/sqlite/src/tool/restore_jrnl.tcl View Binary file 0 comments Download
A third_party/sqlite/src/tool/rollback-test.c View 1 chunk +155 lines, -0 lines 0 comments Download
A third_party/sqlite/src/tool/shell1.test View 1 chunk +714 lines, -0 lines 0 comments Download
A third_party/sqlite/src/tool/shell2.test View 1 chunk +222 lines, -0 lines 0 comments Download
A third_party/sqlite/src/tool/shell3.test View 1 chunk +124 lines, -0 lines 0 comments Download
A third_party/sqlite/src/tool/shell4.test View 1 chunk +129 lines, -0 lines 0 comments Download
A third_party/sqlite/src/tool/shell5.test View 1 chunk +243 lines, -0 lines 0 comments Download
M third_party/sqlite/src/tool/showdb.c View 3 chunks +487 lines, -16 lines 0 comments Download
M third_party/sqlite/src/tool/showjournal.c View 1 chunk +108 lines, -45 lines 0 comments Download
A third_party/sqlite/src/tool/showwal.c View 1 chunk +355 lines, -0 lines 0 comments Download
third_party/sqlite/src/tool/spaceanal.tcl View 5 chunks +90 lines, -327 lines 0 comments Download
A third_party/sqlite/src/tool/split-sqlite3c.tcl View Binary file 0 comments Download
M third_party/sqlite/test.patch View 2 chunks +20 lines, -20 lines 0 comments Download
M third_party/sqlite/webdb.patch View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 2 (0 generated)
Scott Hess - ex-Googler
Apologies. I ran things through the trybots earlier, on CL at http://codereview.chromium.org/7042020/ . When I ...
9 years, 7 months ago (2011-05-23 22:22:41 UTC) #1
cpu_(ooo_6.6-7.5)
9 years, 7 months ago (2011-05-24 17:55:39 UTC) #2
RSLGTM

Let me craft an email to the secteam as a heads up.

On 2011/05/23 22:22:41, shess wrote:
> Apologies.
> 
> I ran things through the trybots earlier, on CL at
> http://codereview.chromium.org/7042020/ .  When I went to re-upload, it ...
> didn't work, or something, lots of odd stuff was going on with completely
> unrelated files.  So I spun off a new CL.  So it's possible I won't be able to
> easily upload changes (though I'll keep my git repo static for now).
> 
> The 3.7.6.2 CL had only a small WAL fix added for 3.7.6.3, so it shouldn't
> impact the eventual results of the current try jobs.
> 
> For future reference, http://codereview.chromium.org/7064005/ is a NULL CL to
> double-check whether this CL breaks anything additional or not.

Powered by Google App Engine
This is Rietveld 408576698