Skip to content

Commit

Permalink
Merge "Fix package association corner cases in android_task_names" in…
Browse files Browse the repository at this point in the history
…to main
  • Loading branch information
ilkos authored and Gerrit Code Review committed Aug 30, 2023
2 parents 4d82576 + 5b1aca0 commit 5ccf587
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ threads_by_upid AS (
upid_packages AS (
SELECT
upid,
RepeatedField(package_list.package_name) AS packages
RepeatedField(package_name) AS packages
FROM process
JOIN package_list ON process.android_appid = package_list.uid
JOIN android_process_metadata USING (upid)
WHERE package_name IS NOT NULL
GROUP BY 1
)
SELECT AndroidTaskNames(
Expand Down

0 comments on commit 5ccf587

Please sign in to comment.