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