Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93595558
131.migraterevisionquery.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
Sat, Nov 30, 00:57
Size
823 B
Mime Type
text/x-php
Expires
Mon, Dec 2, 00:57 (2 d)
Engine
blob
Format
Raw Data
Handle
22670509
Attached To
rPH Phabricator
131.migraterevisionquery.php
View Options
<?php
$table
=
new
DifferentialRevision
();
$table
->
openTransaction
();
$table
->
beginReadLocking
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
echo
pht
(
'Migrating revisions'
).
"
\n
"
;
do
{
$revisions
=
$table
->
loadAllWhere
(
'branchName IS NULL LIMIT 1000'
);
foreach
(
$revisions
as
$revision
)
{
echo
'.'
;
$diff
=
$revision
->
loadActiveDiff
();
if
(!
$diff
)
{
continue
;
}
$branch_name
=
$diff
->
getBranch
();
$arc_project_phid
=
$diff
->
getArcanistProjectPHID
();
queryfx
(
$conn_w
,
'UPDATE %T SET branchName = %s, arcanistProjectPHID = %s WHERE id = %d'
,
$table
->
getTableName
(),
$branch_name
,
$arc_project_phid
,
$revision
->
getID
());
}
}
while
(
count
(
$revisions
)
==
1000
);
$table
->
endReadLocking
();
$table
->
saveTransaction
();
echo
"
\n
"
.
pht
(
'Done.'
).
"
\n
"
;
Event Timeline
Log In to Comment