Sign in
flutter
/
third_party
/
perfetto
/
0c2a0d0a169256990c11edeaf23c477693472df4
/
.
/
test
/
trace_processor
/
dynamic
/
ancestor_slice.sql
blob: 44ff97245c6b33cb25c7b12ee6bc391b572b4d76 [
file
] [
log
] [
blame
]
SELECT
slice
.
name
AS
currentSliceName
,
ancestor
.
name
AS
ancestorSliceName
FROM
slice
LEFT
JOIN
ancestor_slice
(
slice
.
id
)
AS
ancestor
ORDER
BY
slice
.
ts
ASC
,
ancestor
.
ts
ASC
,
slice
.
name
ASC
,
ancestor
.
name
ASC
;