pgloader no longer has to run VACUUM after having loaded all the tables

This commit is contained in:
dim 2008-02-05 11:20:07 +00:00
parent f912b929cd
commit 60ffb4ba3f

View File

@ -528,13 +528,6 @@ def load_data():
except PGLoader_Error, e:
log.error("Can't print summary: %s" % e)
if VACUUM and not DRY_RUN:
log.info('vacuumdb... ')
try:
dbconn.vacuum()
except KeyboardInterrupt:
pass
return retcode
if __name__ == "__main__":