Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Paste
P1878
comment_snippet.sql
Active
Public
Actions
Authored by
epriestley
on Oct 28 2015, 1:57 PM.
Edit Paste
Archive Paste
View Raw File
Subscribe
Mute Notifications
Award Token
Flag For Later
Tags
None
Referenced Files
F916881: comment_snippet.sql
Oct 28 2015, 1:57 PM
2015-10-28 13:57:43 (UTC+0)
Subscribers
None
SELECT
u
.
username
author
,
FROM_UNIXTIME
(
x
.
dateCreated
)
created
,
IF
(
c
.
changesetID
,
CONCAT
(
h
.
filename
,
':'
,
c
.
lineNumber
),
null
)
locus
,
c
.
content
comment
FROM
differential_revision
r
JOIN
differential_transaction
x
ON
x
.
objectPHID
=
r
.
phid
JOIN
differential_transaction_comment
c
ON
x
.
commentPHID
=
c
.
phid
JOIN
phabricator_user
.
user
u
ON
x
.
authorPHID
=
u
.
phid
LEFT
JOIN
differential_changeset
h
ON
c
.
changesetID
=
h
.
id
WHERE
r
.
id
=
<
ID
>
ORDER
BY
x
.
id
ASC
;
Event Timeline
epriestley
edited the content of this paste.
(Show Details)
Oct 28 2015, 1:57 PM
2015-10-28 13:57:43 (UTC+0)
epriestley
changed the title of this paste from untitled to
comment_snippet.sql
.
epriestley
updated the paste's language from
autodetect
to
autodetect
.
Log In to Comment