1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-26 11:59:02 +02:00

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

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;