mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 22:50:13 +01:00
🐛 After changing the History Retention Days, the file history cannot be displayed https://github.com/siyuan-note/siyuan/issues/11935
This commit is contained in:
parent
f566ef4abc
commit
e4541c9d5f
3 changed files with 6 additions and 6 deletions
|
|
@ -446,7 +446,7 @@ func buildSearchHistoryQueryFilter(query, op, box, table string, typ int) (stmt
|
||||||
}
|
}
|
||||||
|
|
||||||
ago := time.Now().Add(-24 * time.Hour * time.Duration(Conf.Editor.HistoryRetentionDays))
|
ago := time.Now().Add(-24 * time.Hour * time.Duration(Conf.Editor.HistoryRetentionDays))
|
||||||
stmt += " AND created > '" + fmt.Sprintf("%d", ago.Unix()) + "'"
|
stmt += " AND CAST(created AS INTEGER) > " + fmt.Sprintf("%d", ago.Unix()) + ""
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -619,7 +619,7 @@ func clearOutdatedHistoryDir(historyDir string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// 清理历史库
|
// 清理历史库
|
||||||
sql.DeleteOutdatedHistories(fmt.Sprintf("%d", ago))
|
sql.DeleteOutdatedHistories(ago)
|
||||||
}
|
}
|
||||||
|
|
||||||
var boxLatestHistoryTime = map[string]time.Time{}
|
var boxLatestHistoryTime = map[string]time.Time{}
|
||||||
|
|
|
||||||
|
|
@ -104,8 +104,8 @@ func queryHistory(query string, args ...interface{}) (*sql.Rows, error) {
|
||||||
return historyDB.Query(query, args...)
|
return historyDB.Query(query, args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
func deleteOutdatedHistories(tx *sql.Tx, before string, context map[string]interface{}) (err error) {
|
func deleteOutdatedHistories(tx *sql.Tx, before int64, context map[string]interface{}) (err error) {
|
||||||
stmt := "DELETE FROM histories_fts_case_insensitive WHERE created < ?"
|
stmt := "DELETE FROM histories_fts_case_insensitive WHERE CAST(created AS INTEGER) < ?"
|
||||||
if err = execStmtTx(tx, stmt, before); nil != err {
|
if err = execStmtTx(tx, stmt, before); nil != err {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ type historyDBQueueOperation struct {
|
||||||
action string // index/deleteOutdated
|
action string // index/deleteOutdated
|
||||||
|
|
||||||
histories []*History // index
|
histories []*History // index
|
||||||
before string // deleteOutdated
|
before int64 // deleteOutdated
|
||||||
}
|
}
|
||||||
|
|
||||||
func FlushHistoryTxJob() {
|
func FlushHistoryTxJob() {
|
||||||
|
|
@ -121,7 +121,7 @@ func execHistoryOp(op *historyDBQueueOperation, tx *sql.Tx, context map[string]i
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func DeleteOutdatedHistories(before string) {
|
func DeleteOutdatedHistories(before int64) {
|
||||||
historyDBQueueLock.Lock()
|
historyDBQueueLock.Lock()
|
||||||
defer historyDBQueueLock.Unlock()
|
defer historyDBQueueLock.Unlock()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue