sqlitedbservice,indexer: Add runWalCheckpoint() and call it after indexing

This commit is contained in:
Albert S. 2024-05-23 18:16:41 +02:00
parent d85c0bd2a5
commit fc510b4376
2 changed files with 7 additions and 0 deletions

View File

@ -163,6 +163,7 @@ void Indexer::processFinishedWorker()
--this->runningWorkers;
if(!isRunning())
{
this->db->runWalCheckpoint();
emit finished();
}
}

View File

@ -276,6 +276,12 @@ bool SqliteDbService::insertOutline(QSqlDatabase &db, int fileid, const QVector<
return true;
}
bool SqliteDbService::runWalCheckpoint()
{
auto query = QSqlQuery(dbFactory->forCurrentThread());
return query.exec("PRAGMA wal_checkpoint(TRUNCATE);");
}
QSqlQuery SqliteDbService::exec(QString querystr, std::initializer_list<QVariant> args)
{
auto query = QSqlQuery(dbFactory->forCurrentThread());