๐ AIๆ็ดข & ไปฃ็
๐
ไธป้กต
Sign in
chromium
/
external
/
github.com
/
sqlite
/
sqlite
/
refs/heads/branch-3.33
20abffe
Fix a buffer overread found by OSSFuzz that could occur if a WITHOUT ROWID table with many columns was NATURAL JOINed against itself.
by dan
ยท 5 years ago
branch-3.33
4b63f7e
Do not invoke usleep() for more than 999999 microseconds.
by dan
ยท 5 years ago
512784b
Fix a tsan error that could occur when using shared-cache mode.
by dan
ยท 5 years ago
49c462f
Fix another (harmless in practice) tsan error in shared-cache mode.
by dan
ยท 5 years ago
f82adf2
Apply the same fix for ticket [9eda2697f5cc1aba] to text-to-integer
by dan
ยท 5 years ago
5d6de15
Correctly handle expressions like "x IS (not) true/false" within the rhs of IN() expressions. Fix for [f3ff1472].
by dan
ยท 5 years ago
f051c96
Fix a crash that could occur in SQLITE_MAX_EXPR_DEPTH=0 builds when processing SQL containing syntax errors.
by dan
ยท 5 years ago
9568c5f
Do not skip over TK_IF_NULL_ROW operators when bypassing TK_COLLATE operators.
by dan
ยท 5 years ago
ef215fb
Version 3.33.0
by drh
ยท 5 years ago
version-3.33.0
96e337d
Fix "make test" handling of environment variable QUICKTEST_OMIT so that it can be used to exclude test files in other than the main test directory.
by dan
ยท 5 years ago
a3e6495
Improvement on the previous fix.
by drh
ยท 5 years ago
b6a74ca
Fix an assertion() fault in ALTER TABLE found by OSSFuzz. Test case in TH3.
by drh
ยท 5 years ago
c08716a
Fix harmless USAN warnings from gcc9.
by drh
ยท 5 years ago
4dfdb86
New test cases for the use of the ieee754 and decimal extensions in the CLI.
by drh
ยท 5 years ago
91faeec
Modify a test for corruption within the wal checkpoint code to account for the pending-byte page. And for the fact that test configurations might move the pending-byte page.
by dan
ยท 5 years ago
8c1fbe8
Minor comment fixes. No changes to code.
by drh
ยท 5 years ago
24c2275
Remove an unused #define from sqliteInt.h.
by drh
ยท 5 years ago
47eb561
Simplify #ifdefs associated with Parse.eParseMode. Fix an #ifdef error
by drh
ยท 5 years ago
9f567eb
Fix a problem causing test failures in corruptL.test for some permutations.
by dan
ยท 5 years ago
26c48d2
Fix a problem building fts3 separately from the amalgamation.
by dan
ยท 5 years ago
12a4c41
Fix a shell tool build error caused by some combinations of options.
by dan
ยท 5 years ago
08b9208
Fix harmless compiler warnings that surface in newer versions of GCC.
by drh
ยท 5 years ago
ed0af52
Fix another test script problem in walvfs.test.
by dan
ยท 5 years ago
80aff08
Fix minor test script problems.
by dan
ยท 5 years ago
14d093f
Fix a harmless compiler warning.
by drh
ยท 5 years ago
8afc09d
Fix the check-in at [41474548ef3f7454] so that it computes the pointer in
by drh
ยท 5 years ago
07066d9
Fix test script busy2.test so that it works with the inmemory-journal permutation.
by dan
ยท 5 years ago
47d38e2
Changes to busy2.test, corruptL.test and fkey5.test so that new test cases pass with all test permutations.
by dan
ยท 5 years ago
35a37c2
Fix a test script problem causing an error for SQLITE_ENABLE_OVERSIZE_CELL_CHECK builds in corruptL.test.
by dan
ยท 5 years ago
c664355
Move a pointer computation until after OOM checks to avoid a nuisance USAN
by drh
ยท 5 years ago
a6c13b2
Change the name of sqlite3SelectTrace to sqlite3_unsupported_selecttrace.
by dan
ยท 5 years ago
d43c0cb
Update requirement marks due to wording improvements in the documentation.
by drh
ยท 5 years ago
7033ce4
Reorder declarations in the decimal extension for C89.
by drh
ยท 5 years ago
799443b
Do the oversize-WAL corruption test before the size hint is issued.
by drh
ยท 5 years ago
26b9540
Fix a file-descriptor leak in test script corruptL.test.
by dan
ยท 5 years ago
88819d5
Return an SQLITE_CORRUPT error if the final expected size of the database when checkpointing is not reasonable - where reasonable is defined (basically) as the sum of the sizes of the database and wal files.
by dan
ยท 5 years ago
b194934
Add the --checkpoint option to speedtest1.
by drh
ยท 5 years ago
2c40b8f
Fix compilation issues with MSVC.
by drh
ยท 5 years ago
f82ce38
Fix the columnar output modes in the CLI so that they work with parameters.
by drh
ยท 5 years ago
cec5f1d
Fix compilation issues with MSVC.
by mistachkin
ยท 5 years ago
msvcWarn
53218e2
Back out a NEVER() that turns out to be reachable.
by drh
ยท 5 years ago
41af5b3
Remove an ALWAYS() that turns out to be reachable.
by drh
ยท 5 years ago
1991888
Test for schema corruption is reachable after all.
by drh
ยท 5 years ago
e592c18
Provide an alternative "guaranteed-safe" method for overwriting the WAL index
by drh
ยท 5 years ago
013e7bb
Fix compiler warnings in MSVC.
by drh
ยท 5 years ago
91d028f
Allow for page numbers as large as 4294967294 (0xfffffffe) which means
by drh
ยท 5 years ago
48bf2d7
Fix unreachable branches.
by drh
ยท 5 years ago
larger-databases
8deae5a
Fix signed/unsigned compiler warnings.
by drh
ยท 5 years ago
1024822
Earlier detection of out-of-range page numbers in the btree layer.
by drh
ยท 5 years ago
6528bcd
Merge enhancements from trunk.
by drh
ยท 5 years ago
9044361
If a writer crashes in WAL mode and leave the SHM file in an inconsistent state,
by drh
ยท 5 years ago
e7f3edc
Add an sqlite3FaultSim() to make an OOM case more accessible and remove
by drh
ยท 5 years ago
unlocked-recovery
f31230a
On recovery, always overwrite the old with the new, even if they are the same.
by drh
ยท 5 years ago
cddfc39
Fix a couple of test scripts to match the new wal recovery behaviour on this branch.
by dan
ยท 5 years ago
8caebb2
Improved error reporting if walLockExclusive() fails.
by drh
ยท 5 years ago
d3e38b7
Allow a wal mode recovery to proceed even if there are readers.
by dan
ยท 5 years ago
25a78fd
Merge recent changes from trunk.
by drh
ยท 5 years ago
8adc8f1
Remove a surplus space from a comment
by drh
ยท 5 years ago
0c52f5a
Fix other potentiall pointer aliasing problems associated with subclassing
by drh
ยท 5 years ago
d9059bd
Fix pointer aliasing problem in the in-memory journal code.
by drh
ยท 5 years ago
38f0ccc
Add the OMIT_ZLIB compile-time option to sessionfuzz.c. (Originally
by drh
ยท 5 years ago
b140347
Fix a typo in an error message.
by drh
ยท 5 years ago
a92eae9
Merge fixes from trunk.
by drh
ยท 5 years ago
2add24c
An ORDER BY clause can slip into an SRT_Upfrom query via the query
by drh
ยท 5 years ago
9d44327
Fix another case where a corrupt record could cause an assert() to fail in fts3.
by dan
ยท 5 years ago
ed109c0
Merge support for partial integrity checks.
by drh
ยท 5 years ago
17d2d59
Add the ability to do a PRAGMA integrity_check (or quick_check) on a single
by drh
ยท 5 years ago
134599e
Detect out-of-bounds rootpage values in the schema.
by drh
ยท 5 years ago
ca439a4
Disable rootpage bounds checking when the SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS
by drh
ยท 5 years ago
rootpage-bounds-check
69306bf
Improvements to rootpage bounds checking during schema parse.
by drh
ยท 5 years ago
3b3ddba
When parsing the schema, detect out-of-bounds rootpage values and throw an
by drh
ยท 5 years ago
584e8b7
All TCL tests now passing.
by drh
๏ฟฝ๏ฟฝ 5 years ago
bb39ac7
Most test cases now passing.
by drh
ยท 5 years ago
abc3815
Continuing work toward supporting unsigned 32-bit page numbers.
by drh
ยท 5 years ago
55550b7
Enhance showdb to be 32-bit clean.
by drh
ยท 5 years ago
a7982ea
Merge fixes from trunk.
by drh
ยท 5 years ago
2f04583
Work-around for [https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96270|GCC bug 96270].
by drh
ยท 5 years ago
82b0f10
Add the sqlite3Int64ToText() routine and use it to convert integers to text,
by drh
ยท 5 years ago
bbd620e
Fix the ".read" command so that it gives an error when its argument is
by drh
ยท 5 years ago
09cf569
Fix a corner-case error in the new UPDATE FROM logic helpfully discovered
by drh
ยท 5 years ago
4e6861d
Add the "enlargedb" utility program used to construct very large database
by drh
ยท 5 years ago
a192807
Faster column name lookup in the columnIndex() routine using hashing.
by drh
ยท 5 years ago
e9261db
Initial changes to allow database up to 281TB in size.
by drh
ยท 5 years ago
51da8da
Fix test case result on a DELETE with an INDEXED BY clause due to
by drh
ยท 5 years ago
a7c7400
More harmless compiler warning fixes.
by drh
ยท 5 years ago
aec7dc6
Fix a harmless compiler warning.
by drh
ยท 5 years ago
d9674b3
Add UPDATE FROM compatible with postgresql.
by drh
ยท 5 years ago
387af48
Add ALWAYS() around a conditional that is always true.
by drh
ยท 5 years ago
update-from
4c0086d
Use #ifdef to omit code that is only reachable when the
by drh
ยท 5 years ago
07ca7d6
Make it an error to repeat the target object/alias of an UPDATE statement in its FROM clause.
by dan
ยท 5 years ago
7e1d951
Add a couple of "#ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT" blocks missing from new code on this branch.
by dan
ยท 5 years ago
b1c993f
Relax pointless restrictions on allowing tables in the FROM clause from
by drh
ยท 5 years ago
9a23d26
Modifications to test code so that the sqlite3MemdebugHastype() assert() statements are enabled for Tcl tests.
by dan
ยท 5 years ago
369e758
Small performance improvement and size reduction in sqlite3DbStrNDup().
by drh
ยท 5 years ago
01b2344
Add OOM test for UPDATE...FROM statements inside triggers.
by dan
ยท 5 years ago
b866a65
Fix a double-free of the FROM clause of an UPDATE inside of triggers.
by drh
ยท 5 years ago
6265c47
Separate VdbeCoverage() macro for different jumps.
by drh
ยท 5 years ago
525326e
Fix a problem in UPDATE FROM in which it tries to free using sqlite3_free()
by drh
ยท 5 years ago
ac45b74
Support a FROM clause in UPDATE statements, as postgres does.
by dan
ยท 5 years ago
e7cf8fd
Add tests for UPDATE...FROM and foreign keys.
by dan
ยท 5 years ago
Next »