mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 18:55:55 +00:00
gen-search-idx: show how many entries are left
This commit is contained in:
@@ -335,10 +335,10 @@
|
|||||||
if (isset($options["gen-search-idx"])) {
|
if (isset($options["gen-search-idx"])) {
|
||||||
echo "Generating search index (stemming set to English)...\n";
|
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");
|
$count = db_fetch_result($result, 0, "count");
|
||||||
|
|
||||||
print "Total entries: $count.\n";
|
print "Entries to process: $count.\n";
|
||||||
|
|
||||||
$offset = 0;
|
$offset = 0;
|
||||||
$limit = 1000;
|
$limit = 1000;
|
||||||
|
|||||||
Reference in New Issue
Block a user