Sign in
flutter
/
third_party
/
perfetto
/
8320e6d2b742e5ecde2c60ca535a1d3c8f4c0bdb
/
.
/
test
/
trace_processor
/
counters_where_cpu.sql
blob: e12fa4c5ed3dd0982169a19291fd81ec31c16f73 [
file
] [
log
] [
blame
]
SELECT
ts
,
lead
(
ts
,
1
,
ts
)
OVER
(
PARTITION
BY
name
ORDER
BY
ts
)
-
ts
AS
dur
,
value
FROM
counters
WHERE
ref
=
1
;