Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111394219
20171101.diff.02.populate.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
Thu, May 1, 07:52
Size
571 B
Mime Type
text/x-php
Expires
Sat, May 3, 07:52 (2 d)
Engine
blob
Format
Raw Data
Handle
25898379
Attached To
rPH Phabricator
20171101.diff.02.populate.php
View Options
<?php
$table
=
new
DifferentialRevision
();
$conn
=
$table
->
establishConnection
(
'w'
);
$diff_table
=
new
DifferentialDiff
();
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$revision
)
{
$revision_id
=
$revision
->
getID
();
$diff_row
=
queryfx_one
(
$conn
,
'SELECT phid FROM %T WHERE revisionID = %d ORDER BY id DESC LIMIT 1'
,
$diff_table
->
getTableName
(),
$revision_id
);
if
(
$diff_row
)
{
queryfx
(
$conn
,
'UPDATE %T SET activeDiffPHID = %s WHERE id = %d'
,
$table
->
getTableName
(),
$diff_row
[
'phid'
],
$revision_id
);
}
}
Event Timeline
Log In to Comment