| commit | 906b2eab1ea3ce4747f07fc3149be2b36e26d5c1 | [log] [tgz] |
|---|---|---|
| author | Florian Mayer <fmayer@google.com> | Wed Jan 08 12:00:39 2020 +0000 |
| committer | Florian Mayer <fmayer@google.com> | Wed Jan 08 12:00:39 2020 +0000 |
| tree | 65a87f3b82c3d0a9f05f0c3c849818dee3732d2b | |
| parent | 30bf2ef2116a48bfd6f9bbe4e3a84409793ef684 [diff] |
Fix join for traces without symbols. Change-Id: I63de941b3560e7c18fb9433358d576bcb2ae333e
diff --git a/ui/src/controller/heap_profile_controller.ts b/ui/src/controller/heap_profile_controller.ts index a556b92..973a92f 100644 --- a/ui/src/controller/heap_profile_controller.ts +++ b/ui/src/controller/heap_profile_controller.ts
@@ -256,7 +256,7 @@ from stack_profile_callsite cs join stack_profile_frame fr on cs.frame_id = fr.id join stack_profile_mapping map on fr.mapping = map.id - inner join ( + left join ( select symbol_set_id, FIRST_VALUE(name) OVER(PARTITION BY symbol_set_id) as name from stack_profile_symbol GROUP BY symbol_set_id