mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
0a62f13464
Summary: Ran `arc lint --apply-patches --everything` over rP, mainly to change double quotes to single quotes where appropriate. These changes also validate that the `ArcanistXHPASTLinter::LINT_DOUBLE_QUOTE` rule is working as expected. Test Plan: Eyeballed it. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9431
39 lines
833 B
PHP
39 lines
833 B
PHP
<?php
|
|
|
|
echo "Cleaning up old Herald rule applied rows...\n";
|
|
$table = new HeraldRule();
|
|
$table->openTransaction();
|
|
$table->beginReadLocking();
|
|
|
|
$rules = $table->loadAll();
|
|
foreach ($rules as $key => $rule) {
|
|
$first_policy = HeraldRepetitionPolicyConfig::toInt(
|
|
HeraldRepetitionPolicyConfig::FIRST);
|
|
if ($rule->getRepetitionPolicy() != $first_policy) {
|
|
unset($rules[$key]);
|
|
}
|
|
}
|
|
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
$clause = '';
|
|
if ($rules) {
|
|
$clause = qsprintf(
|
|
$conn_w,
|
|
'WHERE ruleID NOT IN (%Ld)',
|
|
mpull($rules, 'getID'));
|
|
}
|
|
|
|
echo 'This may take a moment';
|
|
do {
|
|
queryfx(
|
|
$conn_w,
|
|
'DELETE FROM %T %Q LIMIT 1000',
|
|
HeraldRule::TABLE_RULE_APPLIED,
|
|
$clause);
|
|
echo '.';
|
|
} while ($conn_w->getAffectedRows());
|
|
|
|
$table->endReadLocking();
|
|
$table->saveTransaction();
|
|
echo "\nDone.\n";
|