Browse Source

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

Andrew Dolgov 8 years ago
parent
commit
410c0ce6d5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      update.php

+ 2 - 2
update.php

@@ -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;