Sign in
flutter
/
third_party
/
perfetto
/
f29aafbd0b9924f4b59d152aaf8b08a2099e960f
/
.
/
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
;