From 2bf8c1965d2e992a292345114a977038ec247628 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 25 Aug 2022 06:27:42 +0530 Subject: [PATCH] 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) --- src/calibre/db/backend.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/calibre/db/backend.py b/src/calibre/db/backend.py index 4115740583..957b11de2e 100644 --- a/src/calibre/db/backend.py +++ b/src/calibre/db/backend.py @@ -2207,5 +2207,4 @@ class DB: while not b.done: with suppress(apsw.BusyError): b.step(128) - dest_db.cursor().execute('VACUUM;') # }}}