Do not VACUUM FTS db when exporting library as it can be very slow. Fixes #1987557 [Export Library Hangs if there is a full-text-search.db file in library](https://bugs.launchpad.net/calibre/+bug/1987557)

This commit is contained in:
Kovid Goyal 2022-08-25 06:27:42 +05:30
parent 0225cd4acc
commit 2bf8c1965d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -2207,5 +2207,4 @@ class DB:
while not b.done:
with suppress(apsw.BusyError):
b.step(128)
dest_db.cursor().execute('VACUUM;')
# }}}