Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108397855
102.heraldcleanup.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Apr 16, 13:01
Size
833 B
Mime Type
text/x-php
Expires
Fri, Apr 18, 13:01 (2 d)
Engine
blob
Format
Raw Data
Handle
25567704
Attached To
rPH Phabricator
102.heraldcleanup.php
View Options
<?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
"
\n
Done.
\n
"
;
Event Timeline
Log In to Comment