]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
In the VACUUM command, set the cache_size of the transient vacuum_db database
authordrh <drh@noemail.net>
Mon, 25 Jul 2016 22:40:12 +0000 (22:40 +0000)
committerdrh <drh@noemail.net>
Mon, 25 Jul 2016 22:40:12 +0000 (22:40 +0000)
to be the same as the database being vacuumed.

FossilOrigin-Name: b78d99548ac53ac10dcc38368cc4b29c8cbcb09b

manifest
manifest.uuid
src/vacuum.c

index e46a5f07621f94f44b8c09fc18df5ed5fce3aae1..e225d5909f0c68b69ccb03902629177d8f57ddc3 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sa\stest\scase\sin\sFTS5\sto\smake\sit\scompatible\swith\sTcl\s8.5.
-D 2016-07-25T21:11:53.996
+C In\sthe\sVACUUM\scommand,\sset\sthe\scache_size\sof\sthe\stransient\svacuum_db\sdatabase\nto\sbe\sthe\ssame\sas\sthe\sdatabase\sbeing\svacuumed.
+D 2016-07-25T22:40:12.561
 F Makefile.in 6c20d44f72d4564f11652b26291a214c8367e5db
 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
 F Makefile.msc d66d0395c38571aab3804f8db0fa20707ae4609a
@@ -448,7 +448,7 @@ F src/trigger.c e14840ee0c3e549e758ec9bf3e4146e166002280
 F src/update.c 4f05ea8cddfa367d045e03589756c02199e8f9bd
 F src/utf.c 699001c79f28e48e9bcdf8a463da029ea660540c
 F src/util.c 810ec3f22e2d1b62e66c30fe3621ebdedd23584d
-F src/vacuum.c 544ec90a66a4b0460b7c1baeadbc21b45e6ca0b6
+F src/vacuum.c 7949183a9ce2270fc76503384b1159fcb1e39723
 F src/vdbe.c ea260b61e73b11a71e70b28a8e25866e2899e5da
 F src/vdbe.h 67bc551f7faf04c33493892e4b378aada823ed10
 F src/vdbeInt.h c59381049af5c7751a83456c39b80d1a6fde1f9d
@@ -1507,7 +1507,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 8dcb9d506b5eef3a21d97877217e0df69966a915
-R 39b75cd52198f904a29885025a5d8665
+P a495f8e77e14241150f79e746c7303284f04621a
+R 8704dbefb85fb183a067d36d9af66cac
 U drh
-Z ed1d5b465897ee96bacfa15f366335db
+Z 422685421478fa78357b95bed0587f82
index 9a340b022c44262b41f10fb2c51b3bd7b9b27301..3c7462248cff2d0cd504cc5ccfd5c197b5701393 100644 (file)
@@ -1 +1 @@
-a495f8e77e14241150f79e746c7303284f04621a
\ No newline at end of file
+b78d99548ac53ac10dcc38368cc4b29c8cbcb09b
\ No newline at end of file
index 9ab7f766eeb32bbbab47f82135e1bd4c56d1020f..16c4be01c0a49df0c74844b3d39a17617d9fe76d 100644 (file)
@@ -197,6 +197,7 @@ int sqlite3RunVacuum(char **pzErrMsg, sqlite3 *db){
   }
 #endif
 
+  sqlite3BtreeSetCacheSize(pTemp, db->aDb[0].pSchema->cache_size);
   rc = execSql(db, pzErrMsg, "PRAGMA vacuum_db.synchronous=OFF");
   if( rc!=SQLITE_OK ) goto end_of_vacuum;