Skip to content

Commit

Permalink
Merge "Remove upid check for jank CUJ frame timeline table." into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Devarshi Bhatt authored and Gerrit Code Review committed Dec 19, 2024
2 parents 9d3926e + 1575837 commit aa002aa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/trace_processor/metrics/sql/android/jank/frames.sql
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ SELECT
MAX(timeline.layer_name) as frame_layer_name
FROM android_jank_cuj_vsync_boundary boundary
JOIN actual_timeline_with_vsync timeline
ON boundary.upid = timeline.upid
AND vsync >= vsync_min
AND vsync <= vsync_max
ON vsync >= vsync_min
AND vsync <= vsync_max
LEFT JOIN expected_frame_timeline_slice expected
ON expected.upid = timeline.upid AND expected.name = timeline.name
LEFT JOIN vsync_missed_callback missed_callback USING(vsync)
Expand Down

0 comments on commit aa002aa

Please sign in to comment.