aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.go b/main.go
index d9d20c4..53306d7 100644
--- a/main.go
+++ b/main.go
@@ -2700,6 +2700,9 @@ func main() {
// Note that the database object has a closing finalizer,
// we just additionally print any errors coming from there.
if db != nil {
+ if _, err := db.Exec(`PRAGMA optimize`); err != nil {
+ log.Println(err)
+ }
if err := db.Close(); err != nil {
log.Println(err)
}