summaryrefslogtreecommitdiffstats
path: root/store/sqlstore/file_info_store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/sqlstore/file_info_store.go')
-rw-r--r--store/sqlstore/file_info_store.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/sqlstore/file_info_store.go b/store/sqlstore/file_info_store.go
index 18e3a2a1c..165770962 100644
--- a/store/sqlstore/file_info_store.go
+++ b/store/sqlstore/file_info_store.go
@@ -219,7 +219,7 @@ func (fs SqlFileInfoStore) PermanentDelete(fileId string) store.StoreChannel {
func (s SqlFileInfoStore) PermanentDeleteBatch(endTime int64, limit int64) store.StoreChannel {
return store.Do(func(result *store.StoreResult) {
var query string
- if *utils.Cfg.SqlSettings.DriverName == "postgres" {
+ if s.DriverName() == "postgres" {
query = "DELETE from FileInfo WHERE Id = any (array (SELECT Id FROM FileInfo WHERE CreateAt < :EndTime LIMIT :Limit))"
} else {
query = "DELETE from FileInfo WHERE CreateAt < :EndTime LIMIT :Limit"