update previous to only affect mysql

master
Andrew Dolgov 7 years ago
parent f76f773a16
commit 8e1450aa15

@ -903,9 +903,14 @@ class Article extends Handler_Protected {
// purge orphaned posts in main content table // purge orphaned posts in main content table
if (DB_TYPE == "mysql")
$limit_qpart = "LIMIT 5000";
else
$limit_qpart = "";
$pdo = Db::pdo(); $pdo = Db::pdo();
$res = $pdo->query("DELETE FROM ttrss_entries WHERE $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) { if ($do_output) {
$rows = $res->rowCount(); $rows = $res->rowCount();

Loading…
Cancel
Save