fix(sqlite): apply options (#10049)

@calmh it seems `sqlite.Open` forgets to apply options supplied to it
(currently only the delete retention interval).
This commit is contained in:
Tommy van der Vorst
2025-04-09 06:29:46 +02:00
committed by GitHub
parent cbded11c43
commit e0c1abc5fe

View File

@@ -65,6 +65,10 @@ func Open(path string, opts ...Option) (*DB, error) {
folderDBOpener: openFolderDB,
}
for _, opt := range opts {
opt(db)
}
return db, nil
}