From: dan Date: Fri, 2 Sep 2016 17:18:20 +0000 (+0000) Subject: Within a backup operation, ensure that a read-transaction is opened on the source... X-Git-Tag: version-3.14.2~8^2~1^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=033564cca9d64f67ce6cb0df1b1ddf53d4a74f49;p=thirdparty%2Fsqlite.git Within a backup operation, ensure that a read-transaction is opened on the source database before its page size is read. This ensures the page-size used to write to the backup database is the same as its actual page-size, which is important for ZipVFS databases. FossilOrigin-Name: 7908fc604991d81140c182b97981fd724ad126ae --- diff --git a/manifest b/manifest index ed5afd047d..f6d9f3788a 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Have\s"sqldiff\s--rbu"\signore\srows\swith\sNULL\svalues\sin\sprimary\skey\sfields.\sRBU\scan't\shandle\ssuch\srows\sand\sthe\sdocumentation\salready\ssays\ssqldiff\signores\sthem.\sBecause\sthe\scode\snow\suses\s"="\sinstead\sof\s"IS"\sto\sfilter\son\sprimary\skey\scolumns,\sdiffs\son\svirtual\stables\sare\sfaster\snow\stoo. -D 2016-09-01T14:03:28.041 +C Within\sa\sbackup\soperation,\sensure\sthat\sa\sread-transaction\sis\sopened\son\sthe\ssource\sdatabase\sbefore\sits\spage\ssize\sis\sread.\sThis\sensures\sthe\spage-size\sused\sto\swrite\sto\sthe\sbackup\sdatabase\sis\sthe\ssame\sas\sits\sactual\spage-size,\swhich\sis\simportant\sfor\sZipVFS\sdatabases. +D 2016-09-02T17:18:20.100 F Makefile.in cfd8fb987cd7a6af046daa87daa146d5aad0e088 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.msc 5017381e4853b1472e01d5bb926be1268eba429c @@ -325,7 +325,7 @@ F src/alter.c 299117695b1f21ac62dfc5b608588810ba22ed0d F src/analyze.c 8b62b2cf4da85451534ac0af82cafc418d837f68 F src/attach.c 4711ff365df4072b8c3dcd55db5d12dcf8ffa0c6 F src/auth.c 930b376a9c56998557367e6f7f8aaeac82a2a792 -F src/backup.c 17cd25a36d49330df2bacd2cadf2a61f3b525976 +F src/backup.c 7d986927896b70c29a313b9954ab36576aff113d F src/bitvec.c 3ee4c8b2c94ed3a7377256e18199e6ff5cf33f63 F src/btmutex.c bc87dd3b062cc26edfe79918de2200ccb8d41e73 F src/btree.c 2551bd3ecb8b8988fb8b23aabadfb214dbc38e46 @@ -1511,7 +1511,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0 -P 38d31e189e7c7899e14455f2c083aa676ce4d4c0 -R ca589e025240033a5748a5eba7e4950c +P f4ba894a86aa195bcbe2fa69e91cd870ec3fb577 +R 6268e0964e35cc05a56dd4669fe54aba U dan -Z 28ca6847fc75deee037b1b39928043e8 +Z 246b0cb12b0fcdaba66d59db5334a074 diff --git a/manifest.uuid b/manifest.uuid index 78d594bd6c..a145bb5aba 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -f4ba894a86aa195bcbe2fa69e91cd870ec3fb577 \ No newline at end of file +7908fc604991d81140c182b97981fd724ad126ae \ No newline at end of file diff --git a/src/backup.c b/src/backup.c index 19c3b2a647..0a236700b2 100644 --- a/src/backup.c +++ b/src/backup.c @@ -196,7 +196,6 @@ sqlite3_backup *sqlite3_backup_init( p->isAttached = 0; if( 0==p->pSrc || 0==p->pDest - || setDestPgsz(p)==SQLITE_NOMEM || checkReadTransaction(pDestDb, p->pDest)!=SQLITE_OK ){ /* One (or both) of the named databases did not exist or an OOM @@ -384,14 +383,6 @@ int sqlite3_backup_step(sqlite3_backup *p, int nPage){ rc = SQLITE_OK; } - /* Lock the destination database, if it is not locked already. */ - if( SQLITE_OK==rc && p->bDestLocked==0 - && SQLITE_OK==(rc = sqlite3BtreeBeginTrans(p->pDest, 2)) - ){ - p->bDestLocked = 1; - sqlite3BtreeGetMeta(p->pDest, BTREE_SCHEMA_VERSION, &p->iDestSchema); - } - /* If there is no open read-transaction on the source database, open ** one now. If a transaction is opened here, then it will be closed ** before this function exits. @@ -401,6 +392,22 @@ int sqlite3_backup_step(sqlite3_backup *p, int nPage){ bCloseTrans = 1; } + /* If the destination database has not yet been locked (i.e. if this + ** is the first call to backup_step() for the current backup operation), + ** try to set its page size to the same as the source database. This + ** is especially important on ZipVFS systems, as in that case it is + ** not possible to create a database file that uses one page size by + ** writing to it with another. */ + if( p->bDestLocked==0 ) setDestPgsz(p); + + /* Lock the destination database, if it is not locked already. */ + if( SQLITE_OK==rc && p->bDestLocked==0 + && SQLITE_OK==(rc = sqlite3BtreeBeginTrans(p->pDest, 2)) + ){ + p->bDestLocked = 1; + sqlite3BtreeGetMeta(p->pDest, BTREE_SCHEMA_VERSION, &p->iDestSchema); + } + /* Do not allow backup if the destination database is in WAL mode ** and the page sizes are different between source and destination */ pgszSrc = sqlite3BtreeGetPageSize(p->pSrc);