X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=m_librarian%2Finp.py;h=863523fe2cbbf0f95637656e702f6b364873a5c5;hb=421fbeb2ed59676362f698a47f4ee03121d3f314;hp=e16df6c5d91496d9f652e966084429737ce21a5e;hpb=51aa2c71d5bebc4be0c98f00c97d2f47fcde4d3a;p=m_librarian.git diff --git a/m_librarian/inp.py b/m_librarian/inp.py index e16df6c..863523f 100644 --- a/m_librarian/inp.py +++ b/m_librarian/inp.py @@ -90,6 +90,8 @@ def import_inpx(path): sqlhub.doInTransaction(import_inp, archive + '.zip', inp) inp.close() connection = sqlhub.processConnection - if connection.dbName in ('postgres', 'sqlite'): + if connection.dbName == 'postgres': for table in Author, Book, Extension, Genre, Language: connection.query("VACUUM %s" % table.sqlmeta.table) + elif connection.dbName == 'sqlite': + connection.query("VACUUM")