]>
git.ipfire.org Git - thirdparty/sqlite.git/log
dan [Tue, 11 May 2021 11:25:06 +0000 (11:25 +0000)]
Fixes for cksmvfs and rbu so that they work together.
FossilOrigin-Name:
ce8b589e4c7b14ae5f84d47da91931bae109f027490f4b23e0837fde3b037127
drh [Mon, 19 Apr 2021 18:32:05 +0000 (18:32 +0000)]
drh [Mon, 19 Apr 2021 12:05:54 +0000 (12:05 +0000)]
dan [Sun, 18 Apr 2021 06:03:58 +0000 (06:03 +0000)]
Ensure that all records are updated by setting the OPFLAG_SAVEPOSITION flag when updating records as part of ALTER TABLE DROP COLUMN. Fix for [
c88f3036a2 ].
FossilOrigin-Name:
11c368f20ab1806b6b2dbeb77dd70e9c190dccbe700f0a601d49e94c328ddba7
dan [Sun, 18 Apr 2021 05:52:57 +0000 (05:52 +0000)]
Modify the drop column code to handle WITHOUT ROWID tables for which a single column appears more than once in the primary key.
FossilOrigin-Name:
cfa8912a94fc5cfed32ea9aac92ba97a61a6017c474ccb5e909b3f02e7b77382
drh [Tue, 13 Apr 2021 18:39:32 +0000 (18:39 +0000)]
Fix a problem with handling expressions like "(col IS NULL AND <expr1>) OR col == NULL" in WHERE clauses. Reported at [https://sqlite.org/forum/forumpost/
1c4f2fdcc4 ].
FossilOrigin-Name:
e8c7bd34d0cb8c595d58b6b24621fdd3cc02f05ac7dc59f450fa08c0e394a4b4
dan [Fri, 2 Apr 2021 15:20:15 +0000 (15:20 +0000)]
drh [Fri, 2 Apr 2021 11:59:23 +0000 (11:59 +0000)]
Fix incorrect RETURNING test cases in wherelimit.test
FossilOrigin-Name:
64b0eb7e1171611436031b8d2923ce947c37addbd8a776a7ded461fc486c3640
drh [Thu, 1 Apr 2021 11:30:23 +0000 (11:30 +0000)]
When resolving names in the RETURNING clause, do not accept trigger names
even within subquires.
FossilOrigin-Name:
8541c71b35fd529ee3addd51fd51279bc1fb35dd6b6ceee3ed22c06df0e3d02e
drh [Wed, 31 Mar 2021 17:49:52 +0000 (17:49 +0000)]
When resolving column names in the RETURNING clause, do not ignore an
incorrect table name qualifier. Raise an error instead.
FossilOrigin-Name:
3b916924cef383f3d395e1f10aed6584d22d39a26f3b3c9919bd1afc0db635aa
drh [Wed, 31 Mar 2021 13:51:07 +0000 (13:51 +0000)]
Defer deletion of expressions that are optimized out by the AND optimizer
in the sqlite3ExprAnd() routine until the corresponding Parse object is
deleted. This avoids a dangling pointer in AggInfo if sqlite3ExprAnd()
is invoked by the push-down optimization. The dangling pointer appears
to be harmless in release builds, only showing up in debug builds.
Problem found by dbsqlfuzz.
FossilOrigin-Name:
77a30f3f7a4094cf43d24f062f6fd5c5981268899f809ba068bb28287fc87839
drh [Wed, 31 Mar 2021 13:41:10 +0000 (13:41 +0000)]
Ensure that negative numbers may not be used in frame offset clauses even if they are initially text value. e.g. (RANGE BETWEEN '-1' PRECEDING ...).
FossilOrigin-Name:
2d179f58bfe21454bc1b11d5a9ae4e86148180f714076047824e145add5ca522
drh [Tue, 30 Mar 2021 01:57:51 +0000 (01:57 +0000)]
Raise an error if a term of the form "TABLE.*" appears in the RETURNING clause,
as SQLite does not (yet) know how to handle that.
Ticket [
132994c8b1063bfb ].
FossilOrigin-Name:
257e16f7b34e6b6f00811562adc2bb74968cedd418dc568cec30d9f7d18c5a80
drh [Mon, 29 Mar 2021 21:59:06 +0000 (21:59 +0000)]
dan [Mon, 29 Mar 2021 21:16:32 +0000 (21:16 +0000)]
Do not do the EXISTS-to-IN transformation if the sub-select has LIMIT clause.
FossilOrigin-Name:
3bf8a35716899c9c8046e8aefc5be1dc480eec9481a2fa8767db9e27978e6d84
drh [Fri, 26 Mar 2021 12:12:52 +0000 (12:12 +0000)]
drh [Mon, 22 Mar 2021 16:47:30 +0000 (16:47 +0000)]
This branch for any further patches on 3.35. We anticipate 3.35.3 in a few
days. Hopefully there will never be a need for 3.35.4.
FossilOrigin-Name:
8de4cb984a4b019f0823018072120ec100d0223605257a85b16c03557a8cabc8
drh [Sun, 21 Mar 2021 18:23:48 +0000 (18:23 +0000)]
Fix an assert() that in preupdate-hook logic (not normally built) that
can be false when running VACUUM on a corrupt database file under
PRAGMA writable_schema=ON.
FossilOrigin-Name:
6bb2134027a12801de8e0c73482d94682f902024800a7e426614f65a2fe4f64c
drh [Sun, 21 Mar 2021 17:52:47 +0000 (17:52 +0000)]
Add a better comment and an assert() on the code inside sqlite3CreateIndex()
that REPLACE indexes come at the end of the index list.
[forum:/forumpost/
ceb51d83f7 |forum post
ceb51d83f7 ]
FossilOrigin-Name:
71e4da136bd1b5b75a699d69fbaaaec0f9dd1a87e2a9d049a55154892b06647b
drh [Sat, 20 Mar 2021 23:15:52 +0000 (23:15 +0000)]
Fix the "box" output mode in the shell when statement returns zero-column
rows (for example from "PRAGMA incremental_vacuum").
FossilOrigin-Name:
34439fe3aeea7cbbc817245d39c345a7f5df7a82ac15ee4d71bb9a4d818198ed
drh [Sat, 20 Mar 2021 01:00:26 +0000 (01:00 +0000)]
drh [Fri, 19 Mar 2021 17:54:43 +0000 (17:54 +0000)]
In the wholenumber virtual table, increase the cost penalty for running
open-loop. This appears to fix the problem reported by
[https://sqlite.org/forum/forumpost/
b52a020ce4 |forum post
b52a020ce4 ].
FossilOrigin-Name:
f12b54042e27b2fe99f23f97c103ee4371f8d4df3b049d9bb5d64891db56eee5
drh [Fri, 19 Mar 2021 16:29:40 +0000 (16:29 +0000)]
Dbsqlfuzz found a new way to make that branch in codeVectorCompare
reachable.
FossilOrigin-Name:
959272c27555e39f180d46257afe45d41da1f5df38ea269196c06741ff6a278e
larrybr [Fri, 19 Mar 2021 15:02:59 +0000 (15:02 +0000)]
Fix tokenizer's classification of EBCDIC newline.
FossilOrigin-Name:
8680f6a8fb34b9c0ea9b4286888b4df5df427d2df10c782d198bc3f2fdcd0704
drh [Fri, 19 Mar 2021 14:51:15 +0000 (14:51 +0000)]
Restore the NEVER() that was taken out by [
f481636f1a0333c6 ] because that
case is no longer reachable after the previous check-in.
FossilOrigin-Name:
e3a78b2a237a2e101faf01dde913f63641da8854720a9daa4b45a9c5dfe30b1b
dan [Fri, 19 Mar 2021 14:26:24 +0000 (14:26 +0000)]
Fix a crash that could occur when an INSERT has more than one ON CONFLICT clause, at least one of which contains an unresolvable symbol.
FossilOrigin-Name:
74208386508012326a0e88ec5b4a995d1b99607720bb05785a01c2d89ea03543
drh [Fri, 19 Mar 2021 13:53:34 +0000 (13:53 +0000)]
Correlated CTEs should not generate a materialization subroutine. If they
need to be materialized, each use case must be materialized separately.
dbsqlfuzz
01b8355086998f0a452cb31208e80b9d29ca739a .
FossilOrigin-Name:
d72d865d3e8503a545603038eb26044bee42e4e8725522be678059ce6517fc8d
drh [Thu, 18 Mar 2021 20:04:46 +0000 (20:04 +0000)]
Add a NEVER() on a branch that was made unreachable by the
"circular reference" fix.
FossilOrigin-Name:
114d9780aecdd9f03f235fc1f2ab81ef89cb00b3bafa61cff612e939595ff5f0
drh [Thu, 18 Mar 2021 18:27:37 +0000 (18:27 +0000)]
Disable a test case requiring generate_series when virtual tables are not
available.
FossilOrigin-Name:
ee86e2f4c5999a090a5d2fe8251107cf55e621a6b988f315eb82f462cc1e377d
dan [Thu, 18 Mar 2021 18:25:43 +0000 (18:25 +0000)]
Fix a problem causing spurious "<cte>: circular reference" errors to be reported when there is actually a different error in the SQL statement.
FossilOrigin-Name:
9981223618782bf867dfc8988d0c634a42f569228880c5c5e00aa4ae762cfff2
drh [Thu, 18 Mar 2021 16:52:06 +0000 (16:52 +0000)]
drh [Thu, 18 Mar 2021 16:47:24 +0000 (16:47 +0000)]
Fix the OP_OpenDup opcode so that it is able to duplicate a cursor that
was itself opened by OP_OpenDup. Add additional verification of
ephemeral tables. Fix for ticket [
bb8a9fd4a9b7fce5 ].
FossilOrigin-Name:
bcbe5308f3a3b94f965b0f5627cb29cce2e09343b86d757e2de889f7773576e7
drh [Thu, 18 Mar 2021 16:36:31 +0000 (16:36 +0000)]
Remove unnecessary code from sqlite3BtreeClose() and add test cases.
FossilOrigin-Name:
edbfdcaefae1e9a42c046c058341bf5b0f533c0b0cbd39543fcaa2a83d67561d
drh [Thu, 18 Mar 2021 15:42:59 +0000 (15:42 +0000)]
Further sanity checking of the OpenDup cursors.
FossilOrigin-Name:
0ec71cf16983697f68ab8d921d80a5f39611e4cb5e6e19cbc4a9ad6d49bfc835
drh [Thu, 18 Mar 2021 14:36:19 +0000 (14:36 +0000)]
Fix the dbsqlfuzz-derived authorizer in fuzzcheck to avoid creating junk
files when running rogue tests.
FossilOrigin-Name:
eca21a620630b0c8d21a91ad6a8760a6c87270ab2a45cafa18bd31b305c53dba
dan [Thu, 18 Mar 2021 14:31:37 +0000 (14:31 +0000)]
Automatically close ephemeral b-trees when their last cursor is closed.
FossilOrigin-Name:
39b5af18c0580c8e92516d410f8c465bfec31b2d0be9df1cfd6a1d1a19b4fc14
drh [Thu, 18 Mar 2021 13:55:25 +0000 (13:55 +0000)]
Fix a problem with the filename normalizer in unix, discovered by dbsqlfuzz.
FossilOrigin-Name:
ff1eca7fcdcbc550a5f23db9d85281e5373500912699a7c7ae54bc0df0547e26
dan [Thu, 18 Mar 2021 13:42:53 +0000 (13:42 +0000)]
Allow instruction OP_OpenDup to duplicate cursors created by OP_OpenDup, as well as by OP_OpenEphemeral.
FossilOrigin-Name:
b8de980b2fb78088ef74e053cb987bb84319d13dc96ce1e89baaaa3fe8cf1efc
drh [Thu, 18 Mar 2021 13:19:41 +0000 (13:19 +0000)]
New assert statements associated with Ephemeral cursors in the bytecode engine.
FossilOrigin-Name:
a8ce73e2573b271d5d45838802ed1905ce5e18d5fafe0078700e79fab85457e2
drh [Thu, 18 Mar 2021 12:36:09 +0000 (12:36 +0000)]
Change the name of the iDataVersion field of Btree to iBDataVersion to make
it distinct from Pager.iDataVersion.
FossilOrigin-Name:
e4c44c0bca317c03f8e6d3aa7cc88e5f96159a3d91c07257d408f7db028fd151
drh [Wed, 17 Mar 2021 19:07:21 +0000 (19:07 +0000)]
drh [Wed, 17 Mar 2021 19:05:59 +0000 (19:05 +0000)]
Fix a harmless compiler warning in the appendvfs.c extension.
FossilOrigin-Name:
0ed7eb9115510511f13dca715bb2b178580648517d8d30436a992d70a2e85ac1
dan [Wed, 17 Mar 2021 14:29:37 +0000 (14:29 +0000)]
If there are already 500 or more simple SELECTs in a query, do not add more by flattening UNION ALL sub-queries into parent join queries.
FossilOrigin-Name:
9520bed2bd87dc56543ee58123323d293e960ecd84707b77f15f41669a2c9c3d
dan [Wed, 17 Mar 2021 11:25:42 +0000 (11:25 +0000)]
Fix a problem in sqldiff virtual table hanlding to do with tab and other non-space whitespace characters in the CREATE VIRTUAL TABLE statement.
FossilOrigin-Name:
1737e4fdfc9a3628415b234338a68a64cbbaadb23598517761e571ab7ed7ad14
drh [Tue, 16 Mar 2021 18:41:20 +0000 (18:41 +0000)]
Date/time functions with no arguments (ex: date() or time()) should be
non-deterministic. Fix for ticket [
2c6c8689fb5f3d2f ].
FossilOrigin-Name:
1734c332e7f609769fc30f82cf7af097c2964e08900ee3e297f6a25e6df60555
drh [Tue, 16 Mar 2021 14:43:26 +0000 (14:43 +0000)]
drh [Tue, 16 Mar 2021 14:26:56 +0000 (14:26 +0000)]
Fix recent breakage of the appendvfs extension.
FossilOrigin-Name:
7dbbe5b34eea31ea54a5804035d4d0dfeb09c42cd9ab337e1e64c1296decbef3
drh [Tue, 16 Mar 2021 14:12:26 +0000 (14:12 +0000)]
Comment and stylistic changes to the appendvfs.c implementation.
FossilOrigin-Name:
25c3186aa143328157fb506a29802e87099cd14be4fa218230484a3212f20621
dan [Tue, 16 Mar 2021 11:11:07 +0000 (11:11 +0000)]
Fix a problem with ALTER TABLE RENAME COLUMN when used on a schema that features generated columns.
FossilOrigin-Name:
0e255b26872b50581d470952dd98e21dd82d081885006f58d49daa4b4576b35d
larrybr [Tue, 16 Mar 2021 07:06:29 +0000 (07:06 +0000)]
larrybr [Tue, 16 Mar 2021 06:50:39 +0000 (06:50 +0000)]
larrybr [Tue, 16 Mar 2021 06:41:51 +0000 (06:41 +0000)]
Fix appendvfs bug exposed with bigger files, and add tests for such conditions.
FossilOrigin-Name:
19b1f53a1c0a14440ae8ac71660a2595d37a4a5b201055c19366c7dca75d6660
larrybr [Tue, 16 Mar 2021 04:03:59 +0000 (04:03 +0000)]
drh [Mon, 15 Mar 2021 16:53:57 +0000 (16:53 +0000)]
drh [Mon, 15 Mar 2021 15:12:10 +0000 (15:12 +0000)]
Improvements to the built-in ".dump" documentation in the CLI.
FossilOrigin-Name:
0915f969f429a8d0b594e937e0128d5476774d9bbe4a24081dbc60273cb5bb9a
drh [Mon, 15 Mar 2021 15:02:38 +0000 (15:02 +0000)]
drh [Mon, 15 Mar 2021 14:58:12 +0000 (14:58 +0000)]
Improved detection of conflicting indexes when doing DROP COLUMN on a column
whose name is quoted in the index definition.
Fix for ticket [
1c24a659e6d7f3a1 ].
FossilOrigin-Name:
c450d0ad6b39db4bf93015d629e25f7af0d7a9779f7a987e2fc38a5ef064a182
larrybr [Mon, 15 Mar 2021 12:56:00 +0000 (12:56 +0000)]
Make shell's .help output for .dump more accurate as to what can be dumped.
FossilOrigin-Name:
f91d8c09a02f7a7ab354c49cd193d422074daa5eb908f17d1907a8c2b38f96a5
larrybr [Mon, 15 Mar 2021 12:32:35 +0000 (12:32 +0000)]
drh [Sun, 14 Mar 2021 20:17:06 +0000 (20:17 +0000)]
drh [Sun, 14 Mar 2021 19:55:40 +0000 (19:55 +0000)]
larrybr [Fri, 12 Mar 2021 23:15:08 +0000 (23:15 +0000)]
Update generated autoconf/Makefile.msc to reflect its source.
FossilOrigin-Name:
d9f8f488ff9d47fe7bb8838e683bae4fea038f7278ef885ecf292143a0dd88ed
drh [Fri, 12 Mar 2021 15:10:09 +0000 (15:10 +0000)]
drh [Fri, 12 Mar 2021 13:49:09 +0000 (13:49 +0000)]
drh [Fri, 12 Mar 2021 01:49:08 +0000 (01:49 +0000)]
Fix the ".read" command in the CLI so that SQLITE_OMIT_POPEN disables
reading from a pipeline.
FossilOrigin-Name:
cea34f3cc35ad6dc67691799a219a30739f2296945d624d232bf76150c598ec0
larrybr [Fri, 12 Mar 2021 00:44:10 +0000 (00:44 +0000)]
Conform description of sqlite3changeset_op() arguments to implemented behavior, some reformatting.
This is a comment-only change; no code is affected.
FossilOrigin-Name:
9d6e544c47b9a5d97bd02a658db5cd202bd1952f8ba3bc50e8cf47d7206041c0
dan [Thu, 11 Mar 2021 15:57:25 +0000 (15:57 +0000)]
drh [Thu, 11 Mar 2021 13:43:29 +0000 (13:43 +0000)]
Bug fix in appendvfs.c: Adjust the size parameter for
SQLITE_FCNTL_SIZE_HINT to account for the prefix.
FossilOrigin-Name:
41df3bbefd63151f2ddb920066777eab8e07ecfc0edb0f71f9493debe0a4a2c4
dan [Thu, 11 Mar 2021 08:49:52 +0000 (08:49 +0000)]
Have the Tcl tests support environment variable SQLITE_TEST_PATTERN_LIST, so that if it is set it is interpreted as a list of patterns that are matched against tests file names. Only test files that match at least one pattern are run.
FossilOrigin-Name:
b7c92e1d08f213865f026d8dbdc4e805fb5c119b7f206506ed06e83a878de657
dan [Wed, 10 Mar 2021 20:04:21 +0000 (20:04 +0000)]
dan [Wed, 10 Mar 2021 19:32:47 +0000 (19:32 +0000)]
Fix further sanitizer complaints in the fts5 code.
FossilOrigin-Name:
4cb00b9d4020a51f690720c6f51009c5be8c22ef8c70807ead1d953d19784f26
drh [Wed, 10 Mar 2021 18:21:18 +0000 (18:21 +0000)]
Improved testcase() related the SQLITE_MAX_ATTACHED vs. SQLITE_MAX_DB problem.
FossilOrigin-Name:
27d3c00efef66ad48ed94228474dbea3ad81ea5c19425028c42cf4220920a645
drh [Wed, 10 Mar 2021 17:52:59 +0000 (17:52 +0000)]
Improvement to the ATTACH-abuse authorizer logic in fuzzcheck.
FossilOrigin-Name:
88132f698a7a9b7d41dd1dd393592cbda130d2bf1a9fd18c509503e1891b9655
dan [Wed, 10 Mar 2021 17:43:18 +0000 (17:43 +0000)]
Do not run avfs.test when testing SQLITE_OMIT_VIRTUALTABLE builds.
FossilOrigin-Name:
2ab6957a2238a2ab713a50d21dbd9921c944e8141197275bbfe7dae303fee7d0
drh [Wed, 10 Mar 2021 16:35:37 +0000 (16:35 +0000)]
Do not confuse the constant SQLITE_MAX_ATTACHED with the maximum number of
schemas. Add the new SQLITE_MAX_DB constant for the maximum number of
schemas. [forum:/forumpost/
a006d86f72 |Forum post
a006d86f72 ].
FossilOrigin-Name:
7b65fb9f7bd616f834633afd64b3448bf9ca2b6e4cc6d6c01e75d1d877c88a79
dan [Wed, 10 Mar 2021 15:10:20 +0000 (15:10 +0000)]
Fix test file avfs.test so that it works with SQLITE_DEFAULT_AUTOVACUUM builds. Do not run avfs.test under test permutation "journaltest".
FossilOrigin-Name:
2c6078ebe797dd2cb6045b5f13e6d92a6b49393ecf96f9fd7222412f5a3eefd5
dan [Wed, 10 Mar 2021 14:57:10 +0000 (14:57 +0000)]
dan [Wed, 10 Mar 2021 10:43:17 +0000 (10:43 +0000)]
Fix a problem preventing wapptest from setting SQLITE_ENABLE_LOCKING_STYLE for OSX tests. Also modify the "Sanitize" configuration in releasetest_data.tcl to subsume test item 6g.
FossilOrigin-Name:
f762d7df2a41a88560a4251d744e0887f42812f8160af4f0129d22a71c0fa48b
larrybr [Wed, 10 Mar 2021 06:06:16 +0000 (06:06 +0000)]
When shell has no .ar, fake its effect w.r.t. page_size and table creation/filling.
FossilOrigin-Name:
959f5c65ea14f4716df61e250e9d5a0d69d602a2a973ad22a364e640162c2983
drh [Tue, 9 Mar 2021 23:38:27 +0000 (23:38 +0000)]
dan [Tue, 9 Mar 2021 21:20:12 +0000 (21:20 +0000)]
drh [Tue, 9 Mar 2021 20:58:21 +0000 (20:58 +0000)]
Fix a bad comment (copy-paste error) in the byte code engine. No code changes.
FossilOrigin-Name:
1c01745734c7b62a8c792f743aae08dfbb9e047dc92fef8da067fec152b20fd5
drh [Tue, 9 Mar 2021 19:52:15 +0000 (19:52 +0000)]
Improved comments on the NOT NULL strength reduction optimization.
FossilOrigin-Name:
a85d72293914b48edbb39171fd591d37ffb09570d8103140a052203ec71d49ee
drh [Tue, 9 Mar 2021 19:32:37 +0000 (19:32 +0000)]
Extra comments and testcase() macros associated with the new
sqlite3ParserAddCleanup() mechanism. No changes to release builds.
FossilOrigin-Name:
c3c8691121e6cb7bfc326212cc81a7472c0e6f22e655ab024bd4bd885e1cd878
drh [Tue, 9 Mar 2021 17:09:00 +0000 (17:09 +0000)]
Add --enable-math to the amalgamation autoconf. On be default. Improved
logging of the amalgamation autoconf.
FossilOrigin-Name:
85d28b52250e1817b722dc10da3b7b73abf7539cbe7aa913b5960ae4da40d5f8
drh [Tue, 9 Mar 2021 16:35:14 +0000 (16:35 +0000)]
Math functions are enabled by default in the main configure script.
FossilOrigin-Name:
b7456e0715c63308b7b3acf49eb66ecd947481400d4688ae459e2e1499447bcd
drh [Tue, 9 Mar 2021 13:53:39 +0000 (13:53 +0000)]
Improvements to the configure script. Math functions are enabled
by --enable-all.
FossilOrigin-Name:
c79c6d18dee608e54ae31388b240cc521218309094502d8815111bb4ddf7d9ef
drh [Tue, 9 Mar 2021 13:12:58 +0000 (13:12 +0000)]
Update the authorizer in fuzzcheck to align with dbsqlfuzz.
FossilOrigin-Name:
f86d8fae3b29de014d8bfcae38a15bdb15ddceabfcfff7829f3145cfd69dff2a
larrybr [Mon, 8 Mar 2021 20:13:43 +0000 (20:13 +0000)]
Add tests for too-tiny appended DBs, clarify align macro.
FossilOrigin-Name:
eb40a8dea6afe6890ddda989de83f3d4ae03b112bf78bfc818dfbd57cc5b5b2a
dan [Mon, 8 Mar 2021 17:22:01 +0000 (17:22 +0000)]
drh [Mon, 8 Mar 2021 17:17:38 +0000 (17:17 +0000)]
drh [Mon, 8 Mar 2021 16:29:06 +0000 (16:29 +0000)]
Fix a harmless compiler warning in appendvfs.c
FossilOrigin-Name:
f538961a8058cc327d64c8ec317f1b4f8bbb604f90261160c6c27f26f4800682
drh [Mon, 8 Mar 2021 16:13:52 +0000 (16:13 +0000)]
larrybr [Mon, 8 Mar 2021 14:32:26 +0000 (14:32 +0000)]
Added test/avfs.test (missing from branch merge for some reason.)
FossilOrigin-Name:
08fa67053c20d223c9b5334fe2e85adc95588b91046c100d7fe8e8e2535e485f
larrybr [Mon, 8 Mar 2021 14:26:22 +0000 (14:26 +0000)]
drh [Mon, 8 Mar 2021 13:45:08 +0000 (13:45 +0000)]
Require that the appendvfs suffix mark indicate that the appended database
begins at an offset that is a muliple of 512 and that the appended database
contains at least 512 bytes.
FossilOrigin-Name:
aeb87cc70495dd172e170eff31fd754331d4b979c0b649ab239f8c5c0c76e695
drh [Mon, 8 Mar 2021 13:30:29 +0000 (13:30 +0000)]
Correct the precendence order for rules that determine how a database is
opened by appendvfs when a database is appended to another database.
FossilOrigin-Name:
92989fc56f2e81ac13f8106ec83c930f43d10715269b988ee47c9bfa53621995
drh [Mon, 8 Mar 2021 12:59:16 +0000 (12:59 +0000)]
larrybr [Mon, 8 Mar 2021 01:31:53 +0000 (01:31 +0000)]
Add tests for sqlite3 shell with -append flag.
FossilOrigin-Name:
d1790288729441d53603709df02aa5fb5f04714e2da86ce128ca81840b0b545f
larrybr [Sun, 7 Mar 2021 18:55:25 +0000 (18:55 +0000)]
Add grow/shrink tests. Fix truncate bug. Make appendvfs.c easier to inspect.
FossilOrigin-Name:
c9521fa55620d0cb3cec20db7b42bc5f18876b42dca07811d1cd0f4b2907eab2