Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1318975
20141106.uniqdrafts.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
832 B
Referenced Files
None
Subscribers
None
20141106.uniqdrafts.php
View Options
<?php
// Destroy duplicate drafts before storage adjustment adds a unique key to this
// table. See T1191. We retain the newest draft.
// (We can't easily do this in a single SQL statement because MySQL won't let us
// modify a table that's joined in a subquery.)
$table
=
new
DifferentialDraft
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
$duplicates
=
queryfx_all
(
$conn_w
,
'SELECT DISTINCT u.id id FROM %T u
JOIN %T v
ON u.objectPHID = v.objectPHID
AND u.authorPHID = v.authorPHID
AND u.draftKey = v.draftKey
AND u.id < v.id'
,
$table
->
getTableName
(),
$table
->
getTableName
());
$duplicates
=
ipull
(
$duplicates
,
'id'
);
foreach
(
PhabricatorLiskDAO
::
chunkSQL
(
$duplicates
)
as
$chunk
)
{
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE id IN (%Q)'
,
$table
->
getTableName
(),
$chunk
);
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Jul 5, 5:53 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
313944
Default Alt Text
20141106.uniqdrafts.php (832 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment