mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
11f3a8cfca
Summary: Fixes T12090. In obscure situations lost to the mists of time, the `changes` column could be `null`. Force a string cast so the migration finishes, even though these changesets are likely meaningless. Test Plan: I did a force-reapply as a sanity check: ``` $ ./bin/storage upgrade -f --apply phabricator:20161213.diff.01.hunks.php ``` That went cleanly; it would only have caught dramatic errors, but I didn't completely butcher things. Reviewers: chad Reviewed By: chad Maniphest Tasks: T12090 Differential Revision: https://secure.phabricator.com/D17168
39 lines
950 B
PHP
39 lines
950 B
PHP
<?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.'));
|