Commit 46e7d479 authored by Mikhail Khokhlov's avatar Mikhail Khokhlov Committed by Commit Bot

[tools/perf] Fix numJankyUpdates computation in a jank metric

Change-Id: I007c0d8224522346d252f7703e78b6487a679d6b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2096961Reviewed-by: default avatarStephen Nusko <nuskos@chromium.org>
Commit-Queue: Mikhail Khokhlov <khokhlov@google.com>
Cr-Commit-Position: refs/heads/master@{#749245}
parent a9209b53
...@@ -289,7 +289,7 @@ CREATE TABLE janky_time_per_scroll_processing_time AS ...@@ -289,7 +289,7 @@ CREATE TABLE janky_time_per_scroll_processing_time AS
COALESCE(totalProcessingNanos, 0) / 1000000 COALESCE(totalProcessingNanos, 0) / 1000000
FROM JankyNanosPerScrollNanosMaybeNull) AS processingMillis, FROM JankyNanosPerScrollNanosMaybeNull) AS processingMillis,
(SELECT (SELECT
COALESCE(numJankyUpdates, 0) / 1000000 COALESCE(numJankyUpdates, 0)
FROM JankyNanosPerScrollNanosMaybeNull) AS numJankyUpdates; FROM JankyNanosPerScrollNanosMaybeNull) AS numJankyUpdates;
-- Specify how to fill the metrics proto properly. -- Specify how to fill the metrics proto properly.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment