gen-search-idx: show how many entries are left

This commit is contained in:
Andrew Dolgov 2015-08-04 14:31:42 +03:00
parent 8f135ce3b6
commit 410c0ce6d5
1 changed files with 2 additions and 2 deletions

View File

@ -335,10 +335,10 @@
if (isset($options["gen-search-idx"])) {
echo "Generating search index (stemming set to English)...\n";
$result = db_query("SELECT COUNT(id) AS count FROM ttrss_entries");
$result = db_query("SELECT COUNT(id) AS count FROM ttrss_entries WHERE tsvector_combined IS NULL");
$count = db_fetch_result($result, 0, "count");
print "Total entries: $count.\n";
print "Entries to process: $count.\n";
$offset = 0;
$limit = 1000;