SearchWorker: sync with easyindex new schema

This commit is contained in:
Albert S. 2018-08-09 22:53:32 +02:00
parent a4bbd21a30
commit 7a82cdd31b
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ SearchWorker::SearchWorker(const QString &dbpath)
queryContent = new QSqlQuery(db);
queryFile = new QSqlQuery(db);
queryFile->prepare("SELECT path FROM file WHERE path LIKE ? ORDER BY mtime DESC");
queryContent->prepare("SELECT file.path FROM file INNER JOIN file_fts ON file.id = file_fts.ROWID WHERE file_fts.content MATCH ? ORDER By file.mtime DESC");
queryContent->prepare("SELECT DISTINCT file.path FROM file INNER JOIN content ON file.id = content.fileid INNER JOIN content_fts ON content.id = content_fts.ROWID WHERE content_fts.content MATCH ? ORDER By file.mtime DESC");
}
void SearchWorker::searchForFile(const QString &query)