1SELECT 2 id, 3 depth, 4 name, 5 count, 6 cumulative_count, 7 size, 8 cumulative_size, 9 parent_id 10FROM experimental_flamegraph 11where upid = (select max(upid) from heap_graph_object) 12 and profile_type = 'graph' 13 and ts = (select max(graph_sample_ts) from heap_graph_object) 14 and focus_str = 'left' 15LIMIT 10 16