Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117238524
20161213.diff.01.hunks.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, Jun 12, 11:28
Size
950 B
Mime Type
text/x-php
Expires
Sat, Jun 14, 11:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26706511
Attached To
rPH Phabricator
20161213.diff.01.hunks.php
View Options
<?php
$conn
=
id
(
new
DifferentialRevision
())->
establishConnection
(
'w'
);
$src_table
=
'differential_hunk'
;
$dst_table
=
'differential_hunk_modern'
;
echo
tsprintf
(
"%s
\n
"
,
pht
(
'Migrating old hunks...'
));
foreach
(
new
LiskRawMigrationIterator
(
$conn
,
$src_table
)
as
$row
)
{
queryfx
(
$conn
,
'INSERT INTO %T
(changesetID, oldOffset, oldLen, newOffset, newLen,
dataType, dataEncoding, dataFormat, data,
dateCreated, dateModified)
VALUES
(%d, %d, %d, %d, %d,
%s, %s, %s, %s,
%d, %d)'
,
$dst_table
,
$row
[
'changesetID'
],
$row
[
'oldOffset'
],
$row
[
'oldLen'
],
$row
[
'newOffset'
],
$row
[
'newLen'
],
DifferentialModernHunk
::
DATATYPE_TEXT
,
'utf8'
,
DifferentialModernHunk
::
DATAFORMAT_RAW
,
// In rare cases, this could be NULL. See T12090.
(
string
)
$row
[
'changes'
],
$row
[
'dateCreated'
],
$row
[
'dateModified'
]);
}
echo
tsprintf
(
"%s
\n
"
,
pht
(
'Done.'
));
Event Timeline
Log In to Comment