update previous to only affect mysql

This commit is contained in:
Andrew Dolgov 2017-12-05 22:46:18 +03:00
parent f76f773a16
commit 8e1450aa15
1 changed files with 6 additions and 1 deletions

View File

@ -903,9 +903,14 @@ class Article extends Handler_Protected {
// purge orphaned posts in main content table
if (DB_TYPE == "mysql")
$limit_qpart = "LIMIT 5000";
else
$limit_qpart = "";
$pdo = Db::pdo();
$res = $pdo->query("DELETE FROM ttrss_entries WHERE
NOT EXISTS (SELECT ref_id FROM ttrss_user_entries WHERE ref_id = id) LIMIT 5000");
NOT EXISTS (SELECT ref_id FROM ttrss_user_entries WHERE ref_id = id) $limit_qpart");
if ($do_output) {
$rows = $res->rowCount();