Skip to content

Instantly share code, notes, and snippets.

@darmie
Last active February 17, 2026 22:09
Show Gist options
  • Select an option

  • Save darmie/327c1fcc3120ad61452e64c4abfb674c to your computer and use it in GitHub Desktop.

Select an option

Save darmie/327c1fcc3120ad61452e64c4abfb674c to your computer and use it in GitHub Desktop.
Flamegraph comparison: Q26 pushdown OFF vs ON (DataFusion #20324)
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="614" onload="init(evt)" viewBox="0 0 1200 614" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
known_font_width = get_monospace_width(frames);
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg:orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
var to_update_text = [];
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
to_update_text.push(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
}
update_text_for_elements(el);
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="614" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="597.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="597.00"> </text><svg id="frames" x="10" width="1180" total_samples="453"><g><title>madvise (5 samples, 1.10%)</title><rect x="0.0000%" y="453" width="1.1038%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="5"/><text x="0.2500%" y="463.50"></text></g><g><title>dyld4::LibSystemHelpers::exit(int) const (7 samples, 1.55%)</title><rect x="0.0000%" y="533" width="1.5453%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="7"/><text x="0.2500%" y="543.50"></text></g><g><title>exit (7 samples, 1.55%)</title><rect x="0.0000%" y="517" width="1.5453%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="7"/><text x="0.2500%" y="527.50"></text></g><g><title>__cxa_finalize_ranges (7 samples, 1.55%)</title><rect x="0.0000%" y="501" width="1.5453%" height="15" fill="rgb(248,212,6)" fg:x="0" fg:w="7"/><text x="0.2500%" y="511.50"></text></g><g><title>mi_process_done (7 samples, 1.55%)</title><rect x="0.0000%" y="485" width="1.5453%" height="15" fill="rgb(208,68,35)" fg:x="0" fg:w="7"/><text x="0.2500%" y="495.50"></text></g><g><title>mi_heap_collect_ex (7 samples, 1.55%)</title><rect x="0.0000%" y="469" width="1.5453%" height="15" fill="rgb(232,128,0)" fg:x="0" fg:w="7"/><text x="0.2500%" y="479.50"></text></g><g><title>mi_segment_try_purge (2 samples, 0.44%)</title><rect x="1.1038%" y="453" width="0.4415%" height="15" fill="rgb(207,160,47)" fg:x="5" fg:w="2"/><text x="1.3538%" y="463.50"></text></g><g><title>mi_segment_purge (2 samples, 0.44%)</title><rect x="1.1038%" y="437" width="0.4415%" height="15" fill="rgb(228,23,34)" fg:x="5" fg:w="2"/><text x="1.3538%" y="447.50"></text></g><g><title>_mi_os_purge_ex (2 samples, 0.44%)</title><rect x="1.1038%" y="421" width="0.4415%" height="15" fill="rgb(218,30,26)" fg:x="5" fg:w="2"/><text x="1.3538%" y="431.50"></text></g><g><title>madvise (2 samples, 0.44%)</title><rect x="1.1038%" y="405" width="0.4415%" height="15" fill="rgb(220,122,19)" fg:x="5" fg:w="2"/><text x="1.3538%" y="415.50"></text></g><g><title>__kdebug_trace64 (1 samples, 0.22%)</title><rect x="1.5453%" y="517" width="0.2208%" height="15" fill="rgb(250,228,42)" fg:x="7" fg:w="1"/><text x="1.7953%" y="527.50"></text></g><g><title>dyld4::Loader::applyFixupsGeneric(Diagnostics&amp;, dyld4::RuntimeState&amp;, unsigned long long, dyld3::Array&lt;void const*&gt; const&amp;, dyld3::Array&lt;void const*&gt; const&amp;, bool, dyld3::Array&lt;dyld4::Loader::MissingFlatLazySymbol&gt; const&amp;) const (2 samples, 0.44%)</title><rect x="1.7660%" y="501" width="0.4415%" height="15" fill="rgb(240,193,28)" fg:x="8" fg:w="2"/><text x="2.0160%" y="511.50"></text></g><g><title>dyld3::MachOAnalyzer::forEachRebaseLocation_Opcodes(Diagnostics&amp;, void (unsigned long long, bool&amp;) block_pointer) const (2 samples, 0.44%)</title><rect x="1.7660%" y="485" width="0.4415%" height="15" fill="rgb(216,20,37)" fg:x="8" fg:w="2"/><text x="2.0160%" y="495.50"></text></g><g><title>dyld3::MachOAnalyzer::forEachRebase_Opcodes(Diagnostics&amp;, dyld3::MachOLoaded::LinkEditInfo const&amp;, dyld3::MachOFile::SegmentInfo const*, void (char const*, dyld3::MachOLoaded::LinkEditInfo const&amp;, dyld3::MachOFile::SegmentInfo const*, bool, unsigned int, unsigned char, unsigned long long, dyld3::MachOAnalyzer::Rebase, bool&amp;) block_pointer) const (2 samples, 0.44%)</title><rect x="1.7660%" y="469" width="0.4415%" height="15" fill="rgb(206,188,39)" fg:x="8" fg:w="2"/><text x="2.0160%" y="479.50"></text></g><g><title>invocation function for block in dyld4::Loader::applyFixupsGeneric(Diagnostics&amp;, dyld4::RuntimeState&amp;, unsigned long long, dyld3::Array&lt;void const*&gt; const&amp;, dyld3::Array&lt;void const*&gt; const&amp;, bool, dyld3::Array&lt;dyld4::Loader::MissingFlatLazySymbol&gt; const&amp;) const (2 samples, 0.44%)</title><rect x="1.7660%" y="453" width="0.4415%" height="15" fill="rgb(217,207,13)" fg:x="8" fg:w="2"/><text x="2.0160%" y="463.50"></text></g><g><title>dyld4::JustInTimeLoader::applyFixups(Diagnostics&amp;, dyld4::RuntimeState&amp;, dyld4::DyldCacheDataConstLazyScopedWriter&amp;, bool) const (3 samples, 0.66%)</title><rect x="1.7660%" y="517" width="0.6623%" height="15" fill="rgb(231,73,38)" fg:x="8" fg:w="3"/><text x="2.0160%" y="527.50"></text></g><g><title>dyld4::Loader::forEachBindTarget(Diagnostics&amp;, dyld4::RuntimeState&amp;, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&amp;) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer) const (1 samples, 0.22%)</title><rect x="2.2075%" y="501" width="0.2208%" height="15" fill="rgb(225,20,46)" fg:x="10" fg:w="1"/><text x="2.4575%" y="511.50"></text></g><g><title>dyld3::MachOAnalyzer::withVMLayout(Diagnostics&amp;, void (mach_o::Layout const&amp;) block_pointer) const (1 samples, 0.22%)</title><rect x="2.2075%" y="485" width="0.2208%" height="15" fill="rgb(210,31,41)" fg:x="10" fg:w="1"/><text x="2.4575%" y="495.50"></text></g><g><title>invocation function for block in dyld4::Loader::forEachBindTarget(Diagnostics&amp;, dyld4::RuntimeState&amp;, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&amp;) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer) const (1 samples, 0.22%)</title><rect x="2.2075%" y="469" width="0.2208%" height="15" fill="rgb(221,200,47)" fg:x="10" fg:w="1"/><text x="2.4575%" y="479.50"></text></g><g><title>mach_o::Fixups::forEachBindTarget_Opcodes(Diagnostics&amp;, bool, void (mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer, void (mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer) const (1 samples, 0.22%)</title><rect x="2.2075%" y="453" width="0.2208%" height="15" fill="rgb(226,26,5)" fg:x="10" fg:w="1"/><text x="2.4575%" y="463.50"></text></g><g><title>mach_o::Fixups::forEachBindUnified_Opcodes(Diagnostics&amp;, bool, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer, void (unsigned long long, unsigned int, mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer) const (1 samples, 0.22%)</title><rect x="2.2075%" y="437" width="0.2208%" height="15" fill="rgb(249,33,26)" fg:x="10" fg:w="1"/><text x="2.4575%" y="447.50"></text></g><g><title>mach_o::Fixups::forEachBind_OpcodesLazy(Diagnostics&amp;, void (char const*, bool, bool, unsigned int, int, unsigned int, unsigned int, unsigned long long, unsigned char, char const*, bool, bool, unsigned long long, bool, bool&amp;) block_pointer) const (1 samples, 0.22%)</title><rect x="2.2075%" y="421" width="0.2208%" height="15" fill="rgb(235,183,28)" fg:x="10" fg:w="1"/><text x="2.4575%" y="431.50"></text></g><g><title>invocation function for block in mach_o::Fixups::forEachBindTarget_Opcodes(Diagnostics&amp;, bool, void (mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer, void (mach_o::Fixups::BindTargetInfo const&amp;, bool&amp;) block_pointer) const (1 samples, 0.22%)</title><rect x="2.2075%" y="405" width="0.2208%" height="15" fill="rgb(221,5,38)" fg:x="10" fg:w="1"/><text x="2.4575%" y="415.50"></text></g><g><title>invocation function for block in dyld4::Loader::forEachBindTarget(Diagnostics&amp;, dyld4::RuntimeState&amp;, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&amp;) block_pointer, bool, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer, void (dyld4::Loader::ResolvedSymbol const&amp;, bool&amp;) block_pointer) const (1 samples, 0.22%)</title><rect x="2.2075%" y="389" width="0.2208%" height="15" fill="rgb(247,18,42)" fg:x="10" fg:w="1"/><text x="2.4575%" y="399.50"></text></g><g><title>dyld4::Loader::resolveSymbol(Diagnostics&amp;, dyld4::RuntimeState&amp;, int, char const*, bool, bool, void (unsigned int, unsigned int, dyld4::Loader::ResolvedSymbol const&amp;) block_pointer, bool) const (1 samples, 0.22%)</title><rect x="2.2075%" y="373" width="0.2208%" height="15" fill="rgb(241,131,45)" fg:x="10" fg:w="1"/><text x="2.4575%" y="383.50"></text></g><g><title>dyld4::Loader::hasExportedSymbol(Diagnostics&amp;, dyld4::RuntimeState&amp;, char const*, dyld4::Loader::ExportedSymbolMode, dyld4::Loader::ResolverMode, dyld4::Loader::ResolvedSymbol*, dyld3::Array&lt;dyld4::Loader const*&gt;*) const (1 samples, 0.22%)</title><rect x="2.2075%" y="357" width="0.2208%" height="15" fill="rgb(249,31,29)" fg:x="10" fg:w="1"/><text x="2.4575%" y="367.50"></text></g><g><title>dyld4::Loader::hasExportedSymbol(Diagnostics&amp;, dyld4::RuntimeState&amp;, char const*, dyld4::Loader::ExportedSymbolMode, dyld4::Loader::ResolverMode, dyld4::Loader::ResolvedSymbol*, dyld3::Array&lt;dyld4::Loader const*&gt;*) const (1 samples, 0.22%)</title><rect x="2.2075%" y="341" width="0.2208%" height="15" fill="rgb(225,111,53)" fg:x="10" fg:w="1"/><text x="2.4575%" y="351.50"></text></g><g><title>dyld3::MachOFile::trieWalk(Diagnostics&amp;, unsigned char const*, unsigned char const*, char const*) (1 samples, 0.22%)</title><rect x="2.2075%" y="325" width="0.2208%" height="15" fill="rgb(238,160,17)" fg:x="10" fg:w="1"/><text x="2.4575%" y="335.50"></text></g><g><title>dyld4::prepare(dyld4::APIs&amp;, dyld3::MachOAnalyzer const*) (5 samples, 1.10%)</title><rect x="1.5453%" y="533" width="1.1038%" height="15" fill="rgb(214,148,48)" fg:x="7" fg:w="5"/><text x="1.7953%" y="543.50"></text></g><g><title>dyld4::RuntimeState::notifyDebuggerLoad(std::__1::span&lt;dyld4::Loader const*, 18446744073709551615ul&gt; const&amp;) (1 samples, 0.22%)</title><rect x="2.4283%" y="517" width="0.2208%" height="15" fill="rgb(232,36,49)" fg:x="11" fg:w="1"/><text x="2.6783%" y="527.50"></text></g><g><title>dyld4::ExternallyViewableState::addImages(lsl::Allocator&amp;, lsl::Allocator&amp;, std::__1::span&lt;dyld4::ExternallyViewableState::ImageInfo, 18446744073709551615ul&gt; const&amp;) (1 samples, 0.22%)</title><rect x="2.4283%" y="501" width="0.2208%" height="15" fill="rgb(209,103,24)" fg:x="11" fg:w="1"/><text x="2.6783%" y="511.50"></text></g><g><title>dyld4::ExternallyViewableState::ensureSnapshot(lsl::Allocator&amp;) (1 samples, 0.22%)</title><rect x="2.4283%" y="485" width="0.2208%" height="15" fill="rgb(229,88,8)" fg:x="11" fg:w="1"/><text x="2.6783%" y="495.50"></text></g><g><title>lsl::UniquePtr&lt;dyld4::Atlas::ProcessSnapshot&gt; lsl::Allocator::makeUnique&lt;dyld4::Atlas::ProcessSnapshot, lsl::Allocator&amp;, dyld4::FileManager&amp;, bool, std::__1::span&lt;std::byte, 18446744073709551615ul&gt; const&amp;&gt;(lsl::Allocator&amp;, dyld4::FileManager&amp;, bool&amp;&amp;, std::__1::span&lt;std::byte, 18446744073709551615ul&gt; const&amp;) (1 samples, 0.22%)</title><rect x="2.4283%" y="469" width="0.2208%" height="15" fill="rgb(213,181,19)" fg:x="11" fg:w="1"/><text x="2.6783%" y="479.50"></text></g><g><title>dyld4::Atlas::ProcessSnapshot::ProcessSnapshot(lsl::Allocator&amp;, dyld4::FileManager&amp;, bool, std::__1::span&lt;std::byte, 18446744073709551615ul&gt;) (1 samples, 0.22%)</title><rect x="2.4283%" y="453" width="0.2208%" height="15" fill="rgb(254,191,54)" fg:x="11" fg:w="1"/><text x="2.6783%" y="463.50"></text></g><g><title>dyld4::Atlas::ProcessSnapshot::Serializer::deserialize(std::__1::span&lt;std::byte, 18446744073709551615ul&gt;) (1 samples, 0.22%)</title><rect x="2.4283%" y="437" width="0.2208%" height="15" fill="rgb(241,83,37)" fg:x="11" fg:w="1"/><text x="2.6783%" y="447.50"></text></g><g><title>dyld4::Atlas::ProcessSnapshot::Serializer::readMappedFileInfo(std::__1::span&lt;std::byte, 18446744073709551615ul&gt;&amp;, unsigned long long&amp;, lsl::UUID&amp;, dyld4::FileRecord&amp;) (1 samples, 0.22%)</title><rect x="2.4283%" y="421" width="0.2208%" height="15" fill="rgb(233,36,39)" fg:x="11" fg:w="1"/><text x="2.6783%" y="431.50"></text></g><g><title>dyld4::FileManager::fileRecordForPath(lsl::Allocator&amp;, char const*) (1 samples, 0.22%)</title><rect x="2.4283%" y="405" width="0.2208%" height="15" fill="rgb(226,3,54)" fg:x="11" fg:w="1"/><text x="2.6783%" y="415.50"></text></g><g><title>lsl::Allocator::strdup(char const*) (1 samples, 0.22%)</title><rect x="2.4283%" y="389" width="0.2208%" height="15" fill="rgb(245,192,40)" fg:x="11" fg:w="1"/><text x="2.6783%" y="399.50"></text></g><g><title>strlen (1 samples, 0.22%)</title><rect x="2.4283%" y="373" width="0.2208%" height="15" fill="rgb(238,167,29)" fg:x="11" fg:w="1"/><text x="2.6783%" y="383.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_blocking_inner (1 samples, 0.22%)</title><rect x="2.6490%" y="501" width="0.2208%" height="15" fill="rgb(232,182,51)" fg:x="12" fg:w="1"/><text x="2.8990%" y="511.50"></text></g><g><title>std::sys::thread::unix::Thread::new (1 samples, 0.22%)</title><rect x="2.6490%" y="485" width="0.2208%" height="15" fill="rgb(231,60,39)" fg:x="12" fg:w="1"/><text x="2.8990%" y="495.50"></text></g><g><title>__bsdthread_create (1 samples, 0.22%)</title><rect x="2.6490%" y="469" width="0.2208%" height="15" fill="rgb(208,69,12)" fg:x="12" fg:w="1"/><text x="2.8990%" y="479.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.22%)</title><rect x="2.8698%" y="469" width="0.2208%" height="15" fill="rgb(235,93,37)" fg:x="13" fg:w="1"/><text x="3.1198%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::UnsafeCell&lt;datafusion::execution::session_state::SessionState&gt;&gt; (1 samples, 0.22%)</title><rect x="2.8698%" y="453" width="0.2208%" height="15" fill="rgb(213,116,39)" fg:x="13" fg:w="1"/><text x="3.1198%" y="463.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.22%)</title><rect x="2.8698%" y="437" width="0.2208%" height="15" fill="rgb(222,207,29)" fg:x="13" fg:w="1"/><text x="3.1198%" y="447.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.22%)</title><rect x="2.8698%" y="421" width="0.2208%" height="15" fill="rgb(206,96,30)" fg:x="13" fg:w="1"/><text x="3.1198%" y="431.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.22%)</title><rect x="2.8698%" y="405" width="0.2208%" height="15" fill="rgb(218,138,4)" fg:x="13" fg:w="1"/><text x="3.1198%" y="415.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.22%)</title><rect x="2.8698%" y="389" width="0.2208%" height="15" fill="rgb(250,191,14)" fg:x="13" fg:w="1"/><text x="3.1198%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;dyn datafusion_physical_plan::streaming::PartitionStream&gt; (1 samples, 0.22%)</title><rect x="2.8698%" y="373" width="0.2208%" height="15" fill="rgb(239,60,40)" fg:x="13" fg:w="1"/><text x="3.1198%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;(object_store::path::Path,(alloc::sync::Arc&lt;lock_api::mutex::Mutex&lt;parking_lot::raw_mutex::RawMutex,datafusion_execution::cache::lru_queue::LruNode&lt;object_store::path::Path&gt;&gt;&gt;,datafusion_execution::cache::cache_manager::CachedFileMetadataEntry))&gt; (1 samples, 0.22%)</title><rect x="2.8698%" y="357" width="0.2208%" height="15" fill="rgb(206,27,48)" fg:x="13" fg:w="1"/><text x="3.1198%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;dyn core::ops::function::Fn&lt;()&gt;+Output = aws_smithy_types::body::Inner+core::marker::Sync+core::marker::Send&gt; (1 samples, 0.22%)</title><rect x="2.8698%" y="341" width="0.2208%" height="15" fill="rgb(225,35,8)" fg:x="13" fg:w="1"/><text x="3.1198%" y="351.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (1 samples, 0.22%)</title><rect x="2.8698%" y="325" width="0.2208%" height="15" fill="rgb(250,213,24)" fg:x="13" fg:w="1"/><text x="3.1198%" y="335.50"></text></g><g><title>core::ptr::drop_in_place&lt;[parquet::file::metadata::RowGroupMetaData]&gt; (1 samples, 0.22%)</title><rect x="2.8698%" y="309" width="0.2208%" height="15" fill="rgb(247,123,22)" fg:x="13" fg:w="1"/><text x="3.1198%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;[parquet::file::metadata::ColumnChunkMetaData]&gt; (1 samples, 0.22%)</title><rect x="2.8698%" y="293" width="0.2208%" height="15" fill="rgb(231,138,38)" fg:x="13" fg:w="1"/><text x="3.1198%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;parquet::file::metadata::ColumnChunkMetaData&gt; (1 samples, 0.22%)</title><rect x="2.8698%" y="277" width="0.2208%" height="15" fill="rgb(231,145,46)" fg:x="13" fg:w="1"/><text x="3.1198%" y="287.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.22%)</title><rect x="2.8698%" y="261" width="0.2208%" height="15" fill="rgb(251,118,11)" fg:x="13" fg:w="1"/><text x="3.1198%" y="271.50"></text></g><g><title>datafusion::execution::context::SessionContext::new_with_config_rt (2 samples, 0.44%)</title><rect x="3.0905%" y="469" width="0.4415%" height="15" fill="rgb(217,147,25)" fg:x="14" fg:w="2"/><text x="3.3405%" y="479.50"></text></g><g><title>std::sync::once::Once::call_once_force (2 samples, 0.44%)</title><rect x="3.0905%" y="453" width="0.4415%" height="15" fill="rgb(247,81,37)" fg:x="14" fg:w="2"/><text x="3.3405%" y="463.50"></text></g><g><title>std::sys::sync::once::queue::Once::call (2 samples, 0.44%)</title><rect x="3.0905%" y="437" width="0.4415%" height="15" fill="rgb(209,12,38)" fg:x="14" fg:w="2"/><text x="3.3405%" y="447.50"></text></g><g><title>core::ops::function::FnOnce::call_once (2 samples, 0.44%)</title><rect x="3.0905%" y="421" width="0.4415%" height="15" fill="rgb(227,1,9)" fg:x="14" fg:w="2"/><text x="3.3405%" y="431.50"></text></g><g><title>core::ops::function::FnOnce::call_once (2 samples, 0.44%)</title><rect x="3.0905%" y="405" width="0.4415%" height="15" fill="rgb(248,47,43)" fg:x="14" fg:w="2"/><text x="3.3405%" y="415.50"></text></g><g><title>&lt;datafusion::physical_planner::DefaultPhysicalPlanner as datafusion::physical_planner::PhysicalPlanner&gt;::create_physical_plan::_{{closure}} (1 samples, 0.22%)</title><rect x="3.5320%" y="389" width="0.2208%" height="15" fill="rgb(221,10,30)" fg:x="16" fg:w="1"/><text x="3.7820%" y="399.50"></text></g><g><title>datafusion::physical_planner::DefaultPhysicalPlanner::task_helper::_{{closure}} (1 samples, 0.22%)</title><rect x="3.5320%" y="373" width="0.2208%" height="15" fill="rgb(210,229,1)" fg:x="16" fg:w="1"/><text x="3.7820%" y="383.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (1 samples, 0.22%)</title><rect x="3.5320%" y="357" width="0.2208%" height="15" fill="rgb(222,148,37)" fg:x="16" fg:w="1"/><text x="3.7820%" y="367.50"></text></g><g><title>datafusion_catalog_listing::table::get_files_with_limit::_{{closure}} (1 samples, 0.22%)</title><rect x="3.5320%" y="341" width="0.2208%" height="15" fill="rgb(234,67,33)" fg:x="16" fg:w="1"/><text x="3.7820%" y="351.50"></text></g><g><title>datafusion_catalog_listing::table::ListingTable::do_collect_statistics_and_ordering::_{{closure}} (1 samples, 0.22%)</title><rect x="3.5320%" y="325" width="0.2208%" height="15" fill="rgb(247,98,35)" fg:x="16" fg:w="1"/><text x="3.7820%" y="335.50"></text></g><g><title>dashmap::DashMap&lt;K,V,S&gt;::get (1 samples, 0.22%)</title><rect x="3.5320%" y="309" width="0.2208%" height="15" fill="rgb(247,138,52)" fg:x="16" fg:w="1"/><text x="3.7820%" y="319.50"></text></g><g><title>&lt;dashmap::DashMap&lt;K,V,S&gt; as dashmap::t::Map&lt;K,V,S&gt;&gt;::_get (1 samples, 0.22%)</title><rect x="3.5320%" y="293" width="0.2208%" height="15" fill="rgb(213,79,30)" fg:x="16" fg:w="1"/><text x="3.7820%" y="303.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write_str (1 samples, 0.22%)</title><rect x="3.5320%" y="277" width="0.2208%" height="15" fill="rgb(246,177,23)" fg:x="16" fg:w="1"/><text x="3.7820%" y="287.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (1 samples, 0.22%)</title><rect x="3.5320%" y="261" width="0.2208%" height="15" fill="rgb(230,62,27)" fg:x="16" fg:w="1"/><text x="3.7820%" y="271.50"></text></g><g><title>datafusion::physical_planner::OptimizationInvariantChecker::check (1 samples, 0.22%)</title><rect x="3.7528%" y="373" width="0.2208%" height="15" fill="rgb(216,154,8)" fg:x="17" fg:w="1"/><text x="4.0028%" y="383.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::as_ref (1 samples, 0.22%)</title><rect x="3.7528%" y="357" width="0.2208%" height="15" fill="rgb(244,35,45)" fg:x="17" fg:w="1"/><text x="4.0028%" y="367.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (3 samples, 0.66%)</title><rect x="3.5320%" y="405" width="0.6623%" height="15" fill="rgb(251,115,12)" fg:x="16" fg:w="3"/><text x="3.7820%" y="415.50"></text></g><g><title>datafusion::physical_planner::DefaultPhysicalPlanner::optimize_physical_plan (2 samples, 0.44%)</title><rect x="3.7528%" y="389" width="0.4415%" height="15" fill="rgb(240,54,50)" fg:x="17" fg:w="2"/><text x="4.0028%" y="399.50"></text></g><g><title>datafusion_common::tree_node::TreeNode::transform_up (1 samples, 0.22%)</title><rect x="3.9735%" y="373" width="0.2208%" height="15" fill="rgb(233,84,52)" fg:x="18" fg:w="1"/><text x="4.2235%" y="383.50"></text></g><g><title>core::ops::function::FnMut::call_mut (1 samples, 0.22%)</title><rect x="3.9735%" y="357" width="0.2208%" height="15" fill="rgb(207,117,47)" fg:x="18" fg:w="1"/><text x="4.2235%" y="367.50"></text></g><g><title>datafusion_physical_optimizer::enforce_sorting::ensure_sorting (1 samples, 0.22%)</title><rect x="3.9735%" y="341" width="0.2208%" height="15" fill="rgb(249,43,39)" fg:x="18" fg:w="1"/><text x="4.2235%" y="351.50"></text></g><g><title>datafusion_physical_optimizer::enforce_sorting::update_sort_ctx_children_data (1 samples, 0.22%)</title><rect x="3.9735%" y="325" width="0.2208%" height="15" fill="rgb(209,38,44)" fg:x="18" fg:w="1"/><text x="4.2235%" y="335.50"></text></g><g><title>datafusion_physical_plan::execution_plan::ExecutionPlan::maintains_input_order (1 samples, 0.22%)</title><rect x="3.9735%" y="309" width="0.2208%" height="15" fill="rgb(236,212,23)" fg:x="18" fg:w="1"/><text x="4.2235%" y="319.50"></text></g><g><title>&lt;alloc::string::String as core::cmp::PartialEq&gt;::eq (1 samples, 0.22%)</title><rect x="4.1943%" y="277" width="0.2208%" height="15" fill="rgb(242,79,21)" fg:x="19" fg:w="1"/><text x="4.4443%" y="287.50"></text></g><g><title>arrow_schema::schema::Schema::try_merge::_{{closure}} (2 samples, 0.44%)</title><rect x="4.1943%" y="293" width="0.4415%" height="15" fill="rgb(211,96,35)" fg:x="19" fg:w="2"/><text x="4.4443%" y="303.50"></text></g><g><title>&lt;core::slice::iter::IterMut&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::find (1 samples, 0.22%)</title><rect x="4.4150%" y="277" width="0.2208%" height="15" fill="rgb(253,215,40)" fg:x="20" fg:w="1"/><text x="4.6650%" y="287.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (1 samples, 0.22%)</title><rect x="4.6358%" y="277" width="0.2208%" height="15" fill="rgb(211,81,21)" fg:x="21" fg:w="1"/><text x="4.8858%" y="287.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (1 samples, 0.22%)</title><rect x="4.6358%" y="261" width="0.2208%" height="15" fill="rgb(208,190,38)" fg:x="21" fg:w="1"/><text x="4.8858%" y="271.50"></text></g><g><title>object_store::ObjectStore::get_range::_{{closure}} (1 samples, 0.22%)</title><rect x="4.6358%" y="245" width="0.2208%" height="15" fill="rgb(235,213,38)" fg:x="21" fg:w="1"/><text x="4.8858%" y="255.50"></text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_blocking_inner (1 samples, 0.22%)</title><rect x="4.6358%" y="229" width="0.2208%" height="15" fill="rgb(237,122,38)" fg:x="21" fg:w="1"/><text x="4.8858%" y="239.50"></text></g><g><title>std::sys::thread::unix::Thread::new (1 samples, 0.22%)</title><rect x="4.6358%" y="213" width="0.2208%" height="15" fill="rgb(244,218,35)" fg:x="21" fg:w="1"/><text x="4.8858%" y="223.50"></text></g><g><title>_pthread_create (1 samples, 0.22%)</title><rect x="4.6358%" y="197" width="0.2208%" height="15" fill="rgb(240,68,47)" fg:x="21" fg:w="1"/><text x="4.8858%" y="207.50"></text></g><g><title>_kernelrpc_mach_vm_map_trap (1 samples, 0.22%)</title><rect x="4.6358%" y="181" width="0.2208%" height="15" fill="rgb(210,16,53)" fg:x="21" fg:w="1"/><text x="4.8858%" y="191.50"></text></g><g><title>&lt;bytes::bytes::Bytes as core::clone::Clone&gt;::clone (1 samples, 0.22%)</title><rect x="4.8565%" y="261" width="0.2208%" height="15" fill="rgb(235,124,12)" fg:x="22" fg:w="1"/><text x="5.1065%" y="271.50"></text></g><g><title>bytes::bytes::promotable_even_clone (1 samples, 0.22%)</title><rect x="4.8565%" y="245" width="0.2208%" height="15" fill="rgb(224,169,11)" fg:x="22" fg:w="1"/><text x="5.1065%" y="255.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.22%)</title><rect x="5.0773%" y="229" width="0.2208%" height="15" fill="rgb(250,166,2)" fg:x="23" fg:w="1"/><text x="5.3273%" y="239.50"></text></g><g><title>mi_heap_malloc_zero_aligned_at_generic (1 samples, 0.22%)</title><rect x="5.0773%" y="213" width="0.2208%" height="15" fill="rgb(242,216,29)" fg:x="23" fg:w="1"/><text x="5.3273%" y="223.50"></text></g><g><title>_mi_malloc_generic (1 samples, 0.22%)</title><rect x="5.0773%" y="197" width="0.2208%" height="15" fill="rgb(230,116,27)" fg:x="23" fg:w="1"/><text x="5.3273%" y="207.50"></text></g><g><title>mi_find_page (1 samples, 0.22%)</title><rect x="5.0773%" y="181" width="0.2208%" height="15" fill="rgb(228,99,48)" fg:x="23" fg:w="1"/><text x="5.3273%" y="191.50"></text></g><g><title>mi_page_free_list_extend (1 samples, 0.22%)</title><rect x="5.0773%" y="165" width="0.2208%" height="15" fill="rgb(253,11,6)" fg:x="23" fg:w="1"/><text x="5.3273%" y="175.50"></text></g><g><title>_platform_memmove (3 samples, 0.66%)</title><rect x="5.2980%" y="229" width="0.6623%" height="15" fill="rgb(247,143,39)" fg:x="24" fg:w="3"/><text x="5.5480%" y="239.50"></text></g><g><title>core::slice::_&lt;impl [T]&gt;::first (1 samples, 0.22%)</title><rect x="5.9603%" y="229" width="0.2208%" height="15" fill="rgb(236,97,10)" fg:x="27" fg:w="1"/><text x="6.2103%" y="239.50"></text></g><g><title>parquet::file::metadata::thrift::parquet_metadata_from_bytes (1 samples, 0.22%)</title><rect x="6.1810%" y="229" width="0.2208%" height="15" fill="rgb(233,208,19)" fg:x="28" fg:w="1"/><text x="6.4310%" y="239.50"></text></g><g><title>parquet::schema::types::SchemaDescriptor::new (1 samples, 0.22%)</title><rect x="6.1810%" y="213" width="0.2208%" height="15" fill="rgb(216,164,2)" fg:x="28" fg:w="1"/><text x="6.4310%" y="223.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve (1 samples, 0.22%)</title><rect x="6.1810%" y="197" width="0.2208%" height="15" fill="rgb(220,129,5)" fg:x="28" fg:w="1"/><text x="6.4310%" y="207.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.22%)</title><rect x="6.1810%" y="181" width="0.2208%" height="15" fill="rgb(242,17,10)" fg:x="28" fg:w="1"/><text x="6.4310%" y="191.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.22%)</title><rect x="6.1810%" y="165" width="0.2208%" height="15" fill="rgb(242,107,0)" fg:x="28" fg:w="1"/><text x="6.4310%" y="175.50"></text></g><g><title>mi_heap_malloc_zero_aligned_at_generic (1 samples, 0.22%)</title><rect x="6.1810%" y="149" width="0.2208%" height="15" fill="rgb(251,28,31)" fg:x="28" fg:w="1"/><text x="6.4310%" y="159.50"></text></g><g><title>_mi_malloc_generic (1 samples, 0.22%)</title><rect x="6.1810%" y="133" width="0.2208%" height="15" fill="rgb(233,223,10)" fg:x="28" fg:w="1"/><text x="6.4310%" y="143.50"></text></g><g><title>mi_find_page (1 samples, 0.22%)</title><rect x="6.1810%" y="117" width="0.2208%" height="15" fill="rgb(215,21,27)" fg:x="28" fg:w="1"/><text x="6.4310%" y="127.50"></text></g><g><title>mi_page_fresh_alloc (1 samples, 0.22%)</title><rect x="6.1810%" y="101" width="0.2208%" height="15" fill="rgb(232,23,21)" fg:x="28" fg:w="1"/><text x="6.4310%" y="111.50"></text></g><g><title>mi_page_free_list_extend (1 samples, 0.22%)</title><rect x="6.1810%" y="85" width="0.2208%" height="15" fill="rgb(244,5,23)" fg:x="28" fg:w="1"/><text x="6.4310%" y="95.50"></text></g><g><title>&lt;parquet::basic::EncodingMask as parquet::parquet_thrift::ReadThrift&lt;R&gt;&gt;::read_thrift (1 samples, 0.22%)</title><rect x="6.4018%" y="213" width="0.2208%" height="15" fill="rgb(226,81,46)" fg:x="29" fg:w="1"/><text x="6.6518%" y="223.50"></text></g><g><title>&lt;parquet::parquet_thrift::ElementType as core::convert::TryFrom&lt;u8&gt;&gt;::try_from (1 samples, 0.22%)</title><rect x="6.4018%" y="197" width="0.2208%" height="15" fill="rgb(247,70,30)" fg:x="29" fg:w="1"/><text x="6.6518%" y="207.50"></text></g><g><title>&lt;parquet::parquet_thrift::ThriftSliceInputProtocol as parquet::parquet_thrift::ThriftCompactInputProtocol&gt;::read_byte (1 samples, 0.22%)</title><rect x="6.6225%" y="213" width="0.2208%" height="15" fill="rgb(212,68,19)" fg:x="30" fg:w="1"/><text x="6.8725%" y="223.50"></text></g><g><title>parquet::file::metadata::thrift::read_column_metadata (1 samples, 0.22%)</title><rect x="6.8433%" y="213" width="0.2208%" height="15" fill="rgb(240,187,13)" fg:x="31" fg:w="1"/><text x="7.0933%" y="223.50"></text></g><g><title>&lt;parquet::parquet_thrift::ThriftSliceInputProtocol as parquet::parquet_thrift::ThriftCompactInputProtocol&gt;::read_byte (1 samples, 0.22%)</title><rect x="7.0640%" y="197" width="0.2208%" height="15" fill="rgb(223,113,26)" fg:x="32" fg:w="1"/><text x="7.3140%" y="207.50"></text></g><g><title>&lt;datafusion::datasource::listing_table_factory::ListingTableFactory as datafusion_catalog::table::TableProviderFactory&gt;::create::_{{closure}} (15 samples, 3.31%)</title><rect x="4.1943%" y="325" width="3.3113%" height="15" fill="rgb(206,192,2)" fg:x="19" fg:w="15"/><text x="4.4443%" y="335.50">&lt;da..</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (15 samples, 3.31%)</title><rect x="4.1943%" y="309" width="3.3113%" height="15" fill="rgb(241,108,4)" fg:x="19" fg:w="15"/><text x="4.4443%" y="319.50">&lt;co..</text></g><g><title>datafusion_datasource_parquet::metadata::DFParquetMetadata::fetch_schema::_{{closure}} (13 samples, 2.87%)</title><rect x="4.6358%" y="293" width="2.8698%" height="15" fill="rgb(247,173,49)" fg:x="21" fg:w="13"/><text x="4.8858%" y="303.50">da..</text></g><g><title>parquet::file::metadata::reader::ParquetMetaDataReader::load_metadata::_{{closure}} (12 samples, 2.65%)</title><rect x="4.8565%" y="277" width="2.6490%" height="15" fill="rgb(224,114,35)" fg:x="22" fg:w="12"/><text x="5.1065%" y="287.50">pa..</text></g><g><title>parquet::file::metadata::reader::ParquetMetaDataReader::decode_footer_metadata (11 samples, 2.43%)</title><rect x="5.0773%" y="261" width="2.4283%" height="15" fill="rgb(245,159,27)" fg:x="23" fg:w="11"/><text x="5.3273%" y="271.50">pa..</text></g><g><title>parquet::file::metadata::parser::decode_metadata (11 samples, 2.43%)</title><rect x="5.0773%" y="245" width="2.4283%" height="15" fill="rgb(245,172,44)" fg:x="23" fg:w="11"/><text x="5.3273%" y="255.50">pa..</text></g><g><title>parquet::file::metadata::thrift::read_column_chunk (5 samples, 1.10%)</title><rect x="6.4018%" y="229" width="1.1038%" height="15" fill="rgb(236,23,11)" fg:x="29" fg:w="5"/><text x="6.6518%" y="239.50"></text></g><g><title>parquet::parquet_thrift::read_thrift_vec (2 samples, 0.44%)</title><rect x="7.0640%" y="213" width="0.4415%" height="15" fill="rgb(205,117,38)" fg:x="32" fg:w="2"/><text x="7.3140%" y="223.50"></text></g><g><title>parquet::parquet_thrift::ThriftCompactInputProtocol::read_field_begin (1 samples, 0.22%)</title><rect x="7.2848%" y="197" width="0.2208%" height="15" fill="rgb(237,72,25)" fg:x="33" fg:w="1"/><text x="7.5348%" y="207.50"></text></g><g><title>arrow_data::data::ArrayDataBuilder::build_unchecked (1 samples, 0.22%)</title><rect x="7.5055%" y="261" width="0.2208%" height="15" fill="rgb(244,70,9)" fg:x="34" fg:w="1"/><text x="7.7555%" y="271.50"></text></g><g><title>arrow_data::data::ArrayDataBuilder::build (1 samples, 0.22%)</title><rect x="7.5055%" y="245" width="0.2208%" height="15" fill="rgb(217,125,39)" fg:x="34" fg:w="1"/><text x="7.7555%" y="255.50"></text></g><g><title>&lt;arrow_array::array::boolean_array::BooleanArray as core::iter::traits::collect::FromIterator&lt;Ptr&gt;&gt;::from_iter (2 samples, 0.44%)</title><rect x="7.5055%" y="277" width="0.4415%" height="15" fill="rgb(235,36,10)" fg:x="34" fg:w="2"/><text x="7.7555%" y="287.50"></text></g><g><title>arrow_data::data::ArrayDataBuilder::nulls (1 samples, 0.22%)</title><rect x="7.7263%" y="261" width="0.2208%" height="15" fill="rgb(251,123,47)" fg:x="35" fg:w="1"/><text x="7.9763%" y="271.50"></text></g><g><title>arrow_array::array::boolean_array::BooleanArray::from_trusted_len_iter (1 samples, 0.22%)</title><rect x="7.9470%" y="261" width="0.2208%" height="15" fill="rgb(221,13,13)" fg:x="36" fg:w="1"/><text x="8.1970%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;arrow_data::data::ArrayData&gt; (1 samples, 0.22%)</title><rect x="7.9470%" y="245" width="0.2208%" height="15" fill="rgb(238,131,9)" fg:x="36" fg:w="1"/><text x="8.1970%" y="255.50"></text></g><g><title>&lt;arrow_array::builder::boolean_builder::BooleanBuilder as core::iter::traits::collect::Extend&lt;core::option::Option&lt;bool&gt;&gt;&gt;::extend (2 samples, 0.44%)</title><rect x="7.9470%" y="277" width="0.4415%" height="15" fill="rgb(211,50,8)" fg:x="36" fg:w="2"/><text x="8.1970%" y="287.50"></text></g><g><title>arrow_data::data::ArrayData::new_unchecked (1 samples, 0.22%)</title><rect x="8.1678%" y="261" width="0.2208%" height="15" fill="rgb(245,182,24)" fg:x="37" fg:w="1"/><text x="8.4178%" y="271.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.22%)</title><rect x="8.1678%" y="245" width="0.2208%" height="15" fill="rgb(242,14,37)" fg:x="37" fg:w="1"/><text x="8.4178%" y="255.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::dealloc (1 samples, 0.22%)</title><rect x="8.1678%" y="229" width="0.2208%" height="15" fill="rgb(246,228,12)" fg:x="37" fg:w="1"/><text x="8.4178%" y="239.50"></text></g><g><title>mi_free (1 samples, 0.22%)</title><rect x="8.1678%" y="213" width="0.2208%" height="15" fill="rgb(213,55,15)" fg:x="37" fg:w="1"/><text x="8.4178%" y="223.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.22%)</title><rect x="8.3885%" y="277" width="0.2208%" height="15" fill="rgb(209,9,3)" fg:x="38" fg:w="1"/><text x="8.6385%" y="287.50"></text></g><g><title>mi_heap_malloc_zero_aligned_at_generic (1 samples, 0.22%)</title><rect x="8.3885%" y="261" width="0.2208%" height="15" fill="rgb(230,59,30)" fg:x="38" fg:w="1"/><text x="8.6385%" y="271.50"></text></g><g><title>_mi_malloc_generic (1 samples, 0.22%)</title><rect x="8.3885%" y="245" width="0.2208%" height="15" fill="rgb(209,121,21)" fg:x="38" fg:w="1"/><text x="8.6385%" y="255.50"></text></g><g><title>mi_find_page (1 samples, 0.22%)</title><rect x="8.3885%" y="229" width="0.2208%" height="15" fill="rgb(220,109,13)" fg:x="38" fg:w="1"/><text x="8.6385%" y="239.50"></text></g><g><title>mi_page_free_list_extend (1 samples, 0.22%)</title><rect x="8.3885%" y="213" width="0.2208%" height="15" fill="rgb(232,18,1)" fg:x="38" fg:w="1"/><text x="8.6385%" y="223.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (1 samples, 0.22%)</title><rect x="8.6093%" y="261" width="0.2208%" height="15" fill="rgb(215,41,42)" fg:x="39" fg:w="1"/><text x="8.8593%" y="271.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold::enumerate::_{{closure}} (1 samples, 0.22%)</title><rect x="8.8300%" y="261" width="0.2208%" height="15" fill="rgb(224,123,36)" fg:x="40" fg:w="1"/><text x="9.0800%" y="271.50"></text></g><g><title>&lt;core::ptr::non_null::NonNull&lt;T&gt; as core::cmp::PartialEq&gt;::eq (1 samples, 0.22%)</title><rect x="9.0508%" y="261" width="0.2208%" height="15" fill="rgb(240,125,3)" fg:x="41" fg:w="1"/><text x="9.3008%" y="271.50"></text></g><g><title>datafusion_datasource_parquet::metadata::DFParquetMetadata::statistics_from_parquet_metadata::_{{closure}} (4 samples, 0.88%)</title><rect x="8.6093%" y="277" width="0.8830%" height="15" fill="rgb(205,98,50)" fg:x="39" fg:w="4"/><text x="8.8593%" y="287.50"></text></g><g><title>_platform_memcmp (1 samples, 0.22%)</title><rect x="9.2715%" y="261" width="0.2208%" height="15" fill="rgb(205,185,37)" fg:x="42" fg:w="1"/><text x="9.5215%" y="271.50"></text></g><g><title>datafusion_datasource_parquet::metadata::summarize_min_max_null_counts (1 samples, 0.22%)</title><rect x="9.4923%" y="277" width="0.2208%" height="15" fill="rgb(238,207,15)" fg:x="43" fg:w="1"/><text x="9.7423%" y="287.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold::enumerate::_{{closure}} (1 samples, 0.22%)</title><rect x="9.4923%" y="261" width="0.2208%" height="15" fill="rgb(213,199,42)" fg:x="43" fg:w="1"/><text x="9.7423%" y="271.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.22%)</title><rect x="9.7130%" y="261" width="0.2208%" height="15" fill="rgb(235,201,11)" fg:x="44" fg:w="1"/><text x="9.9630%" y="271.50"></text></g><g><title>tlv_get_addr (1 samples, 0.22%)</title><rect x="9.7130%" y="245" width="0.2208%" height="15" fill="rgb(207,46,11)" fg:x="44" fg:w="1"/><text x="9.9630%" y="255.50"></text></g><g><title>arrow_array::builder::generic_bytes_view_builder::GenericByteViewBuilder&lt;T&gt;::append_value (1 samples, 0.22%)</title><rect x="9.9338%" y="261" width="0.2208%" height="15" fill="rgb(241,35,35)" fg:x="45" fg:w="1"/><text x="10.1838%" y="271.50"></text></g><g><title>arrow_array::builder::generic_bytes_view_builder::GenericByteViewBuilder&lt;T&gt;::try_append_value (1 samples, 0.22%)</title><rect x="9.9338%" y="245" width="0.2208%" height="15" fill="rgb(243,32,47)" fg:x="45" fg:w="1"/><text x="10.1838%" y="255.50"></text></g><g><title>parquet::arrow::arrow_reader::statistics::StatisticsConverter::row_group_maxes (3 samples, 0.66%)</title><rect x="9.7130%" y="277" width="0.6623%" height="15" fill="rgb(247,202,23)" fg:x="44" fg:w="3"/><text x="9.9630%" y="287.50"></text></g><g><title>arrow_data::data::ArrayData::new_unchecked (1 samples, 0.22%)</title><rect x="10.1545%" y="261" width="0.2208%" height="15" fill="rgb(219,102,11)" fg:x="46" fg:w="1"/><text x="10.4045%" y="271.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.22%)</title><rect x="10.1545%" y="245" width="0.2208%" height="15" fill="rgb(243,110,44)" fg:x="46" fg:w="1"/><text x="10.4045%" y="255.50"></text></g><g><title>&lt;arrow_buffer::bytes::Bytes as core::ops::drop::Drop&gt;::drop (1 samples, 0.22%)</title><rect x="10.1545%" y="229" width="0.2208%" height="15" fill="rgb(222,74,54)" fg:x="46" fg:w="1"/><text x="10.4045%" y="239.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (29 samples, 6.40%)</title><rect x="4.1943%" y="389" width="6.4018%" height="15" fill="rgb(216,99,12)" fg:x="19" fg:w="29"/><text x="4.4443%" y="399.50">&lt;core::p..</text></g><g><title>datafusion::execution::context::SessionContext::create_external_table::_{{closure}} (29 samples, 6.40%)</title><rect x="4.1943%" y="373" width="6.4018%" height="15" fill="rgb(226,22,26)" fg:x="19" fg:w="29"/><text x="4.4443%" y="383.50">datafusi..</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (29 samples, 6.40%)</title><rect x="4.1943%" y="357" width="6.4018%" height="15" fill="rgb(217,163,10)" fg:x="19" fg:w="29"/><text x="4.4443%" y="367.50">&lt;core::p..</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (29 samples, 6.40%)</title><rect x="4.1943%" y="341" width="6.4018%" height="15" fill="rgb(213,25,53)" fg:x="19" fg:w="29"/><text x="4.4443%" y="351.50">&lt;core::p..</text></g><g><title>datafusion_catalog_listing::table::get_files_with_limit::_{{closure}} (14 samples, 3.09%)</title><rect x="7.5055%" y="325" width="3.0905%" height="15" fill="rgb(252,105,26)" fg:x="34" fg:w="14"/><text x="7.7555%" y="335.50">dat..</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (14 samples, 3.09%)</title><rect x="7.5055%" y="309" width="3.0905%" height="15" fill="rgb(220,39,43)" fg:x="34" fg:w="14"/><text x="7.7555%" y="319.50">&lt;co..</text></g><g><title>&lt;datafusion_datasource_parquet::file_format::ParquetFormat as datafusion_datasource::file_format::FileFormat&gt;::infer_stats_and_ordering::_{{closure}} (14 samples, 3.09%)</title><rect x="7.5055%" y="293" width="3.0905%" height="15" fill="rgb(229,68,48)" fg:x="34" fg:w="14"/><text x="7.7555%" y="303.50">&lt;da..</text></g><g><title>parquet::arrow::schema::parquet_to_arrow_schema_by_columns (1 samples, 0.22%)</title><rect x="10.3753%" y="277" width="0.2208%" height="15" fill="rgb(252,8,32)" fg:x="47" fg:w="1"/><text x="10.6253%" y="287.50"></text></g><g><title>parquet::arrow::schema::parquet_to_arrow_schema_and_fields (1 samples, 0.22%)</title><rect x="10.3753%" y="261" width="0.2208%" height="15" fill="rgb(223,20,43)" fg:x="47" fg:w="1"/><text x="10.6253%" y="271.50"></text></g><g><title>parquet::arrow::schema::parquet_to_arrow_field_levels_with_virtual (1 samples, 0.22%)</title><rect x="10.3753%" y="245" width="0.2208%" height="15" fill="rgb(229,81,49)" fg:x="47" fg:w="1"/><text x="10.6253%" y="255.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (33 samples, 7.28%)</title><rect x="3.5320%" y="421" width="7.2848%" height="15" fill="rgb(236,28,36)" fg:x="16" fg:w="33"/><text x="3.7820%" y="431.50">&lt;core::pin..</text></g><g><title>&lt;datafusion::execution::context::SessionContext as datafusion_cli::cli_context::CliSessionContext&gt;::execute_logical_plan::_{{closure}} (30 samples, 6.62%)</title><rect x="4.1943%" y="405" width="6.6225%" height="15" fill="rgb(249,185,26)" fg:x="19" fg:w="30"/><text x="4.4443%" y="415.50">&lt;datafusi..</text></g><g><title>datafusion::execution::context::SessionContext::execute_logical_plan::_{{closure}} (1 samples, 0.22%)</title><rect x="10.5960%" y="389" width="0.2208%" height="15" fill="rgb(249,174,33)" fg:x="48" fg:w="1"/><text x="10.8460%" y="399.50"></text></g><g><title>datafusion::execution::context::SessionContext::return_empty_dataframe (1 samples, 0.22%)</title><rect x="10.5960%" y="373" width="0.2208%" height="15" fill="rgb(233,201,37)" fg:x="48" fg:w="1"/><text x="10.8460%" y="383.50"></text></g><g><title>datafusion_expr::execution_props::ExecutionProps::mark_start_execution (1 samples, 0.22%)</title><rect x="10.5960%" y="357" width="0.2208%" height="15" fill="rgb(221,78,26)" fg:x="48" fg:w="1"/><text x="10.8460%" y="367.50"></text></g><g><title>std::sys::pal::unix::time::SystemTime::now (1 samples, 0.22%)</title><rect x="10.5960%" y="341" width="0.2208%" height="15" fill="rgb(250,127,30)" fg:x="48" fg:w="1"/><text x="10.8460%" y="351.50"></text></g><g><title>std::sys::pal::unix::time::Timespec::now (1 samples, 0.22%)</title><rect x="10.5960%" y="325" width="0.2208%" height="15" fill="rgb(230,49,44)" fg:x="48" fg:w="1"/><text x="10.8460%" y="335.50"></text></g><g><title>clock_gettime (1 samples, 0.22%)</title><rect x="10.5960%" y="309" width="0.2208%" height="15" fill="rgb(229,67,23)" fg:x="48" fg:w="1"/><text x="10.8460%" y="319.50"></text></g><g><title>gettimeofday (1 samples, 0.22%)</title><rect x="10.5960%" y="293" width="0.2208%" height="15" fill="rgb(249,83,47)" fg:x="48" fg:w="1"/><text x="10.8460%" y="303.50"></text></g><g><title>mach_absolute_time (1 samples, 0.22%)</title><rect x="10.5960%" y="277" width="0.2208%" height="15" fill="rgb(215,43,3)" fg:x="48" fg:w="1"/><text x="10.8460%" y="287.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (1 samples, 0.22%)</title><rect x="10.8168%" y="325" width="0.2208%" height="15" fill="rgb(238,154,13)" fg:x="49" fg:w="1"/><text x="11.0668%" y="335.50"></text></g><g><title>arrow_cast::cast::cast (1 samples, 0.22%)</title><rect x="10.8168%" y="309" width="0.2208%" height="15" fill="rgb(219,56,2)" fg:x="49" fg:w="1"/><text x="11.0668%" y="319.50"></text></g><g><title>arrow_cast::cast::cast_with_options (1 samples, 0.22%)</title><rect x="10.8168%" y="293" width="0.2208%" height="15" fill="rgb(233,0,4)" fg:x="49" fg:w="1"/><text x="11.0668%" y="303.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.22%)</title><rect x="10.8168%" y="277" width="0.2208%" height="15" fill="rgb(235,30,7)" fg:x="49" fg:w="1"/><text x="11.0668%" y="287.50"></text></g><g><title>arrow_array::array::primitive_array::_&lt;impl core::convert::From&lt;arrow_array::array::primitive_array::PrimitiveArray&lt;T&gt;&gt; for arrow_data::data::ArrayData&gt;::from (1 samples, 0.22%)</title><rect x="10.8168%" y="261" width="0.2208%" height="15" fill="rgb(250,79,13)" fg:x="49" fg:w="1"/><text x="11.0668%" y="271.50"></text></g><g><title>datafusion_datasource_parquet::opener::EarlyStoppingStream&lt;S&gt;::check_prune (1 samples, 0.22%)</title><rect x="11.0375%" y="309" width="0.2208%" height="15" fill="rgb(211,146,34)" fg:x="50" fg:w="1"/><text x="11.2875%" y="319.50"></text></g><g><title>datafusion_pruning::file_pruner::FilePruner::should_prune (1 samples, 0.22%)</title><rect x="11.0375%" y="293" width="0.2208%" height="15" fill="rgb(228,22,38)" fg:x="50" fg:w="1"/><text x="11.2875%" y="303.50"></text></g><g><title>datafusion_pruning::pruning_predicate::build_pruning_predicate (1 samples, 0.22%)</title><rect x="11.0375%" y="277" width="0.2208%" height="15" fill="rgb(235,168,5)" fg:x="50" fg:w="1"/><text x="11.2875%" y="287.50"></text></g><g><title>datafusion_pruning::pruning_predicate::PruningPredicate::try_new (1 samples, 0.22%)</title><rect x="11.0375%" y="261" width="0.2208%" height="15" fill="rgb(221,155,16)" fg:x="50" fg:w="1"/><text x="11.2875%" y="271.50"></text></g><g><title>datafusion_pruning::pruning_predicate::build_predicate_expression (1 samples, 0.22%)</title><rect x="11.0375%" y="245" width="0.2208%" height="15" fill="rgb(215,215,53)" fg:x="50" fg:w="1"/><text x="11.2875%" y="255.50"></text></g><g><title>datafusion_pruning::pruning_predicate::build_predicate_expression (1 samples, 0.22%)</title><rect x="11.0375%" y="229" width="0.2208%" height="15" fill="rgb(223,4,10)" fg:x="50" fg:w="1"/><text x="11.2875%" y="239.50"></text></g><g><title>datafusion_pruning::pruning_predicate::RequiredColumns::row_count_column_expr (1 samples, 0.22%)</title><rect x="11.0375%" y="213" width="0.2208%" height="15" fill="rgb(234,103,6)" fg:x="50" fg:w="1"/><text x="11.2875%" y="223.50"></text></g><g><title>datafusion_common::tree_node::TreeNode::transform_up (1 samples, 0.22%)</title><rect x="11.0375%" y="197" width="0.2208%" height="15" fill="rgb(227,97,0)" fg:x="50" fg:w="1"/><text x="11.2875%" y="207.50"></text></g><g><title>datafusion_common::tree_node::TreeNode::transform_up::transform_up_impl::_{{closure}} (1 samples, 0.22%)</title><rect x="11.0375%" y="181" width="0.2208%" height="15" fill="rgb(234,150,53)" fg:x="50" fg:w="1"/><text x="11.2875%" y="191.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::len (1 samples, 0.22%)</title><rect x="11.0375%" y="165" width="0.2208%" height="15" fill="rgb(228,201,54)" fg:x="50" fg:w="1"/><text x="11.2875%" y="175.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (1 samples, 0.22%)</title><rect x="11.2583%" y="293" width="0.2208%" height="15" fill="rgb(222,22,37)" fg:x="51" fg:w="1"/><text x="11.5083%" y="303.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (1 samples, 0.22%)</title><rect x="11.2583%" y="277" width="0.2208%" height="15" fill="rgb(237,53,32)" fg:x="51" fg:w="1"/><text x="11.5083%" y="287.50"></text></g><g><title>&lt;futures_util::future::try_future::MapErr&lt;Fut,F&gt; as core::future::future::Future&gt;::poll (1 samples, 0.22%)</title><rect x="11.2583%" y="261" width="0.2208%" height="15" fill="rgb(233,25,53)" fg:x="51" fg:w="1"/><text x="11.5083%" y="271.50"></text></g><g><title>&lt;parquet::arrow::array_reader::primitive_array::PrimitiveArrayReader&lt;T&gt; as parquet::arrow::array_reader::ArrayReader&gt;::consume_batch (1 samples, 0.22%)</title><rect x="11.4790%" y="245" width="0.2208%" height="15" fill="rgb(210,40,34)" fg:x="52" fg:w="1"/><text x="11.7290%" y="255.50"></text></g><g><title>arrow_array::array::primitive_array::PrimitiveArray&lt;T&gt;::is_compatible (1 samples, 0.22%)</title><rect x="11.4790%" y="229" width="0.2208%" height="15" fill="rgb(241,220,44)" fg:x="52" fg:w="1"/><text x="11.7290%" y="239.50"></text></g><g><title>&lt;parquet::arrow::array_reader::struct_array::StructArrayReader as parquet::arrow::array_reader::ArrayReader&gt;::consume_batch::_{{closure}} (2 samples, 0.44%)</title><rect x="11.4790%" y="261" width="0.4415%" height="15" fill="rgb(235,28,35)" fg:x="52" fg:w="2"/><text x="11.7290%" y="271.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.22%)</title><rect x="11.6998%" y="245" width="0.2208%" height="15" fill="rgb(210,56,17)" fg:x="53" fg:w="1"/><text x="11.9498%" y="255.50"></text></g><g><title>&lt;core::ptr::non_null::NonNull&lt;T&gt; as core::cmp::PartialEq&gt;::eq (10 samples, 2.21%)</title><rect x="11.9205%" y="245" width="2.2075%" height="15" fill="rgb(224,130,29)" fg:x="54" fg:w="10"/><text x="12.1705%" y="255.50">&lt;..</text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::fold (4 samples, 0.88%)</title><rect x="14.1280%" y="229" width="0.8830%" height="15" fill="rgb(235,212,8)" fg:x="64" fg:w="4"/><text x="14.3780%" y="239.50"></text></g><g><title>_platform_memmove (1 samples, 0.22%)</title><rect x="15.2318%" y="197" width="0.2208%" height="15" fill="rgb(223,33,50)" fg:x="69" fg:w="1"/><text x="15.4818%" y="207.50"></text></g><g><title>core::result::Result&lt;&amp;T,E&gt;::copied (1 samples, 0.22%)</title><rect x="15.4525%" y="197" width="0.2208%" height="15" fill="rgb(219,149,13)" fg:x="70" fg:w="1"/><text x="15.7025%" y="207.50"></text></g><g><title>parquet::util::bit_pack::unpack32 (2 samples, 0.44%)</title><rect x="15.6733%" y="197" width="0.4415%" height="15" fill="rgb(250,156,29)" fg:x="71" fg:w="2"/><text x="15.9233%" y="207.50"></text></g><g><title>&lt;parquet::column::reader::decoder::ColumnValueDecoderImpl&lt;T&gt; as parquet::column::reader::decoder::ColumnValueDecoder&gt;::read (10 samples, 2.21%)</title><rect x="14.1280%" y="245" width="2.2075%" height="15" fill="rgb(216,193,19)" fg:x="64" fg:w="10"/><text x="14.3780%" y="255.50">&lt;..</text></g><g><title>parquet::encodings::rle::RleDecoder::get_batch_with_dict (6 samples, 1.32%)</title><rect x="15.0110%" y="229" width="1.3245%" height="15" fill="rgb(216,135,14)" fg:x="68" fg:w="6"/><text x="15.2610%" y="239.50"></text></g><g><title>parquet::util::bit_util::BitReader::get_batch (6 samples, 1.32%)</title><rect x="15.0110%" y="213" width="1.3245%" height="15" fill="rgb(241,47,5)" fg:x="68" fg:w="6"/><text x="15.2610%" y="223.50"></text></g><g><title>parquet::util::bit_pack::unpack32::unpack (1 samples, 0.22%)</title><rect x="16.1148%" y="197" width="0.2208%" height="15" fill="rgb(233,42,35)" fg:x="73" fg:w="1"/><text x="16.3648%" y="207.50"></text></g><g><title>&lt;usize as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get (1 samples, 0.22%)</title><rect x="16.3355%" y="245" width="0.2208%" height="15" fill="rgb(231,13,6)" fg:x="74" fg:w="1"/><text x="16.5855%" y="255.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::capacity (2 samples, 0.44%)</title><rect x="16.5563%" y="245" width="0.4415%" height="15" fill="rgb(207,181,40)" fg:x="75" fg:w="2"/><text x="16.8063%" y="255.50"></text></g><g><title>_platform_memmove (1 samples, 0.22%)</title><rect x="17.6600%" y="197" width="0.2208%" height="15" fill="rgb(254,173,49)" fg:x="80" fg:w="1"/><text x="17.9100%" y="207.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push_mut (5 samples, 1.10%)</title><rect x="16.9978%" y="245" width="1.1038%" height="15" fill="rgb(221,1,38)" fg:x="77" fg:w="5"/><text x="17.2478%" y="255.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (2 samples, 0.44%)</title><rect x="17.6600%" y="229" width="0.4415%" height="15" fill="rgb(206,124,46)" fg:x="80" fg:w="2"/><text x="17.9100%" y="239.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::realloc (2 samples, 0.44%)</title><rect x="17.6600%" y="213" width="0.4415%" height="15" fill="rgb(249,21,11)" fg:x="80" fg:w="2"/><text x="17.9100%" y="223.50"></text></g><g><title>mi_heap_realloc_zero_aligned_at (1 samples, 0.22%)</title><rect x="17.8808%" y="197" width="0.2208%" height="15" fill="rgb(222,201,40)" fg:x="81" fg:w="1"/><text x="18.1308%" y="207.50"></text></g><g><title>mi_heap_malloc_zero_aligned_at_generic (1 samples, 0.22%)</title><rect x="17.8808%" y="181" width="0.2208%" height="15" fill="rgb(235,61,29)" fg:x="81" fg:w="1"/><text x="18.1308%" y="191.50"></text></g><g><title>_mi_malloc_generic (1 samples, 0.22%)</title><rect x="17.8808%" y="165" width="0.2208%" height="15" fill="rgb(219,207,3)" fg:x="81" fg:w="1"/><text x="18.1308%" y="175.50"></text></g><g><title>mi_heap_collect_ex (1 samples, 0.22%)</title><rect x="17.8808%" y="149" width="0.2208%" height="15" fill="rgb(222,56,46)" fg:x="81" fg:w="1"/><text x="18.1308%" y="159.50"></text></g><g><title>arrow_data::byte_view::ByteView::as_u128 (4 samples, 0.88%)</title><rect x="18.1015%" y="245" width="0.8830%" height="15" fill="rgb(239,76,54)" fg:x="82" fg:w="4"/><text x="18.3515%" y="255.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::capacity (1 samples, 0.22%)</title><rect x="18.9845%" y="229" width="0.2208%" height="15" fill="rgb(231,124,27)" fg:x="86" fg:w="1"/><text x="19.2345%" y="239.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve (1 samples, 0.22%)</title><rect x="19.2053%" y="229" width="0.2208%" height="15" fill="rgb(249,195,6)" fg:x="87" fg:w="1"/><text x="19.4553%" y="239.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.22%)</title><rect x="19.2053%" y="213" width="0.2208%" height="15" fill="rgb(237,174,47)" fg:x="87" fg:w="1"/><text x="19.4553%" y="223.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.22%)</title><rect x="19.2053%" y="197" width="0.2208%" height="15" fill="rgb(206,201,31)" fg:x="87" fg:w="1"/><text x="19.4553%" y="207.50"></text></g><g><title>mi_heap_malloc_zero_aligned_at_generic (1 samples, 0.22%)</title><rect x="19.2053%" y="181" width="0.2208%" height="15" fill="rgb(231,57,52)" fg:x="87" fg:w="1"/><text x="19.4553%" y="191.50"></text></g><g><title>_mi_malloc_generic (1 samples, 0.22%)</title><rect x="19.2053%" y="165" width="0.2208%" height="15" fill="rgb(248,177,22)" fg:x="87" fg:w="1"/><text x="19.4553%" y="175.50"></text></g><g><title>mi_large_huge_page_alloc (1 samples, 0.22%)</title><rect x="19.2053%" y="149" width="0.2208%" height="15" fill="rgb(215,211,37)" fg:x="87" fg:w="1"/><text x="19.4553%" y="159.50"></text></g><g><title>mi_page_fresh_alloc (1 samples, 0.22%)</title><rect x="19.2053%" y="133" width="0.2208%" height="15" fill="rgb(241,128,51)" fg:x="87" fg:w="1"/><text x="19.4553%" y="143.50"></text></g><g><title>mi_segments_page_alloc (1 samples, 0.22%)</title><rect x="19.2053%" y="117" width="0.2208%" height="15" fill="rgb(227,165,31)" fg:x="87" fg:w="1"/><text x="19.4553%" y="127.50"></text></g><g><title>mi_segment_try_purge (1 samples, 0.22%)</title><rect x="19.2053%" y="101" width="0.2208%" height="15" fill="rgb(228,167,24)" fg:x="87" fg:w="1"/><text x="19.4553%" y="111.50"></text></g><g><title>clock_gettime (1 samples, 0.22%)</title><rect x="19.2053%" y="85" width="0.2208%" height="15" fill="rgb(228,143,12)" fg:x="87" fg:w="1"/><text x="19.4553%" y="95.50"></text></g><g><title>_mach_boottime_usec (1 samples, 0.22%)</title><rect x="19.2053%" y="69" width="0.2208%" height="15" fill="rgb(249,149,8)" fg:x="87" fg:w="1"/><text x="19.4553%" y="79.50"></text></g><g><title>gettimeofday (1 samples, 0.22%)</title><rect x="19.2053%" y="53" width="0.2208%" height="15" fill="rgb(243,35,44)" fg:x="87" fg:w="1"/><text x="19.4553%" y="63.50"></text></g><g><title>mach_absolute_time (1 samples, 0.22%)</title><rect x="19.2053%" y="37" width="0.2208%" height="15" fill="rgb(246,89,9)" fg:x="87" fg:w="1"/><text x="19.4553%" y="47.50"></text></g><g><title>arrow_buffer::buffer::immutable::Buffer::as_ptr (2 samples, 0.44%)</title><rect x="19.4260%" y="229" width="0.4415%" height="15" fill="rgb(233,213,13)" fg:x="88" fg:w="2"/><text x="19.6760%" y="239.50"></text></g><g><title>core::result::Result&lt;&amp;T,E&gt;::copied (2 samples, 0.44%)</title><rect x="19.8675%" y="229" width="0.4415%" height="15" fill="rgb(233,141,41)" fg:x="90" fg:w="2"/><text x="20.1175%" y="239.50"></text></g><g><title>parquet::arrow::array_reader::byte_view_array::ByteViewArrayDecoderPlain::read (3 samples, 0.66%)</title><rect x="20.3091%" y="229" width="0.6623%" height="15" fill="rgb(239,167,4)" fg:x="92" fg:w="3"/><text x="20.5591%" y="239.50"></text></g><g><title>arrow_array::builder::generic_bytes_view_builder::make_view (5 samples, 1.10%)</title><rect x="20.9713%" y="213" width="1.1038%" height="15" fill="rgb(209,217,16)" fg:x="95" fg:w="5"/><text x="21.2213%" y="223.50"></text></g><g><title>parquet::arrow::array_reader::byte_view_array::ByteViewArrayDecoder::read (16 samples, 3.53%)</title><rect x="18.9845%" y="245" width="3.5320%" height="15" fill="rgb(219,88,35)" fg:x="86" fg:w="16"/><text x="19.2345%" y="255.50">par..</text></g><g><title>parquet::arrow::buffer::view_buffer::ViewBuffer::append_view_unchecked (7 samples, 1.55%)</title><rect x="20.9713%" y="229" width="1.5453%" height="15" fill="rgb(220,193,23)" fg:x="95" fg:w="7"/><text x="21.2213%" y="239.50"></text></g><g><title>core::result::Result&lt;&amp;T,E&gt;::copied (2 samples, 0.44%)</title><rect x="22.0751%" y="213" width="0.4415%" height="15" fill="rgb(230,90,52)" fg:x="100" fg:w="2"/><text x="22.3251%" y="223.50"></text></g><g><title>parquet::arrow::array_reader::byte_view_array::ByteViewArrayDecoderDictionary::read::_{{closure}} (3 samples, 0.66%)</title><rect x="22.5166%" y="245" width="0.6623%" height="15" fill="rgb(252,106,19)" fg:x="102" fg:w="3"/><text x="22.7666%" y="255.50"></text></g><g><title>&lt;core::slice::iter::IterMut&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.44%)</title><rect x="23.1788%" y="229" width="0.4415%" height="15" fill="rgb(206,74,20)" fg:x="105" fg:w="2"/><text x="23.4288%" y="239.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_mut (1 samples, 0.22%)</title><rect x="23.6203%" y="229" width="0.2208%" height="15" fill="rgb(230,138,44)" fg:x="107" fg:w="1"/><text x="23.8703%" y="239.50"></text></g><g><title>parquet::arrow::decoder::dictionary_index::DictIndexDecoder::read (5 samples, 1.10%)</title><rect x="23.1788%" y="245" width="1.1038%" height="15" fill="rgb(235,182,43)" fg:x="105" fg:w="5"/><text x="23.4288%" y="255.50"></text></g><g><title>parquet::encodings::rle::RleDecoder::get_batch (2 samples, 0.44%)</title><rect x="23.8411%" y="229" width="0.4415%" height="15" fill="rgb(242,16,51)" fg:x="108" fg:w="2"/><text x="24.0911%" y="239.50"></text></g><g><title>parquet::util::bit_util::BitReader::get_batch (1 samples, 0.22%)</title><rect x="24.0618%" y="213" width="0.2208%" height="15" fill="rgb(248,9,4)" fg:x="109" fg:w="1"/><text x="24.3118%" y="223.50"></text></g><g><title>parquet::util::bit_util::BitReader::get_value (1 samples, 0.22%)</title><rect x="24.0618%" y="197" width="0.2208%" height="15" fill="rgb(210,31,22)" fg:x="109" fg:w="1"/><text x="24.3118%" y="207.50"></text></g><g><title>parquet::arrow::array_reader::byte_view_array::ByteViewArrayDecoderPlain::read (1 samples, 0.22%)</title><rect x="24.2826%" y="197" width="0.2208%" height="15" fill="rgb(239,54,39)" fg:x="110" fg:w="1"/><text x="24.5326%" y="207.50"></text></g><g><title>&lt;parquet::arrow::array_reader::byte_view_array::ByteViewArrayColumnValueDecoder as parquet::column::reader::decoder::ColumnValueDecoder&gt;::set_dict (2 samples, 0.44%)</title><rect x="24.2826%" y="213" width="0.4415%" height="15" fill="rgb(230,99,41)" fg:x="110" fg:w="2"/><text x="24.5326%" y="223.50"></text></g><g><title>parquet::arrow::buffer::view_buffer::ViewBuffer::append_view_unchecked (1 samples, 0.22%)</title><rect x="24.5033%" y="197" width="0.2208%" height="15" fill="rgb(253,106,12)" fg:x="111" fg:w="1"/><text x="24.7533%" y="207.50"></text></g><g><title>arrow_array::builder::generic_bytes_view_builder::make_view (1 samples, 0.22%)</title><rect x="24.5033%" y="181" width="0.2208%" height="15" fill="rgb(213,46,41)" fg:x="111" fg:w="1"/><text x="24.7533%" y="191.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::alloc (2 samples, 0.44%)</title><rect x="24.7241%" y="197" width="0.4415%" height="15" fill="rgb(215,133,35)" fg:x="112" fg:w="2"/><text x="24.9741%" y="207.50"></text></g><g><title>mi_heap_malloc_zero_aligned_at_generic (2 samples, 0.44%)</title><rect x="24.7241%" y="181" width="0.4415%" height="15" fill="rgb(213,28,5)" fg:x="112" fg:w="2"/><text x="24.9741%" y="191.50"></text></g><g><title>_mi_malloc_generic (2 samples, 0.44%)</title><rect x="24.7241%" y="165" width="0.4415%" height="15" fill="rgb(215,77,49)" fg:x="112" fg:w="2"/><text x="24.9741%" y="175.50"></text></g><g><title>mi_large_huge_page_alloc (2 samples, 0.44%)</title><rect x="24.7241%" y="149" width="0.4415%" height="15" fill="rgb(248,100,22)" fg:x="112" fg:w="2"/><text x="24.9741%" y="159.50"></text></g><g><title>mi_page_fresh_alloc (2 samples, 0.44%)</title><rect x="24.7241%" y="133" width="0.4415%" height="15" fill="rgb(208,67,9)" fg:x="112" fg:w="2"/><text x="24.9741%" y="143.50"></text></g><g><title>mi_segments_page_alloc (2 samples, 0.44%)</title><rect x="24.7241%" y="117" width="0.4415%" height="15" fill="rgb(219,133,21)" fg:x="112" fg:w="2"/><text x="24.9741%" y="127.50"></text></g><g><title>mi_segment_try_purge (1 samples, 0.22%)</title><rect x="24.9448%" y="101" width="0.2208%" height="15" fill="rgb(246,46,29)" fg:x="113" fg:w="1"/><text x="25.1948%" y="111.50"></text></g><g><title>clock_gettime (1 samples, 0.22%)</title><rect x="24.9448%" y="85" width="0.2208%" height="15" fill="rgb(246,185,52)" fg:x="113" fg:w="1"/><text x="25.1948%" y="95.50"></text></g><g><title>_mach_boottime_usec (1 samples, 0.22%)</title><rect x="24.9448%" y="69" width="0.2208%" height="15" fill="rgb(252,136,11)" fg:x="113" fg:w="1"/><text x="25.1948%" y="79.50"></text></g><g><title>gettimeofday (1 samples, 0.22%)</title><rect x="24.9448%" y="53" width="0.2208%" height="15" fill="rgb(219,138,53)" fg:x="113" fg:w="1"/><text x="25.1948%" y="63.50"></text></g><g><title>mach_absolute_time (1 samples, 0.22%)</title><rect x="24.9448%" y="37" width="0.2208%" height="15" fill="rgb(211,51,23)" fg:x="113" fg:w="1"/><text x="25.1948%" y="47.50"></text></g><g><title>core::ptr::copy_nonoverlapping (21 samples, 4.64%)</title><rect x="25.1656%" y="165" width="4.6358%" height="15" fill="rgb(247,221,28)" fg:x="114" fg:w="21"/><text x="25.4156%" y="175.50">core:..</text></g><g><title>core::ptr::mut_ptr::_&lt;impl *mut T&gt;::add (1 samples, 0.22%)</title><rect x="29.8013%" y="165" width="0.2208%" height="15" fill="rgb(251,222,45)" fg:x="135" fg:w="1"/><text x="30.0513%" y="175.50"></text></g><g><title>snap::decompress::Decompress::decompress (71 samples, 15.67%)</title><rect x="30.0221%" y="165" width="15.6733%" height="15" fill="rgb(217,162,53)" fg:x="136" fg:w="71"/><text x="30.2721%" y="175.50">snap::decompress::Decomp..</text></g><g><title>snap::decompress::Decompress::read_copy (45 samples, 9.93%)</title><rect x="45.6954%" y="165" width="9.9338%" height="15" fill="rgb(229,93,14)" fg:x="207" fg:w="45"/><text x="45.9454%" y="175.50">snap::decompre..</text></g><g><title>snap::decompress::Decompress::read_literal (5 samples, 1.10%)</title><rect x="55.6291%" y="165" width="1.1038%" height="15" fill="rgb(209,67,49)" fg:x="252" fg:w="5"/><text x="55.8791%" y="175.50"></text></g><g><title>snap::decompress::TagEntry::num_tag_bytes (1 samples, 0.22%)</title><rect x="56.7329%" y="165" width="0.2208%" height="15" fill="rgb(213,87,29)" fg:x="257" fg:w="1"/><text x="56.9829%" y="175.50"></text></g><g><title>snap::decompress::TagEntry::offset (14 samples, 3.09%)</title><rect x="56.9536%" y="165" width="3.0905%" height="15" fill="rgb(205,151,52)" fg:x="258" fg:w="14"/><text x="57.2036%" y="175.50">sna..</text></g><g><title>&lt;parquet::compression::snappy_codec::SnappyCodec as parquet::compression::Codec&gt;::decompress (177 samples, 39.07%)</title><rect x="25.1656%" y="181" width="39.0728%" height="15" fill="rgb(253,215,39)" fg:x="114" fg:w="177"/><text x="25.4156%" y="191.50">&lt;parquet::compression::snappy_codec::SnappyCodec as parquet::com..</text></g><g><title>snap::decompress::TagLookupTable::entry (19 samples, 4.19%)</title><rect x="60.0442%" y="165" width="4.1943%" height="15" fill="rgb(221,220,41)" fg:x="272" fg:w="19"/><text x="60.2942%" y="175.50">snap:..</text></g><g><title>&lt;parquet::file::serialized_reader::SerializedPageReader&lt;R&gt; as parquet::column::page::PageReader&gt;::get_next_page (184 samples, 40.62%)</title><rect x="24.7241%" y="213" width="40.6181%" height="15" fill="rgb(218,133,21)" fg:x="112" fg:w="184"/><text x="24.9741%" y="223.50">&lt;parquet::file::serialized_reader::SerializedPageReader&lt;R&gt; as parq..</text></g><g><title>parquet::file::serialized_reader::decode_page (182 samples, 40.18%)</title><rect x="25.1656%" y="197" width="40.1766%" height="15" fill="rgb(221,193,43)" fg:x="114" fg:w="182"/><text x="25.4156%" y="207.50">parquet::file::serialized_reader::decode_page</text></g><g><title>__bzero (5 samples, 1.10%)</title><rect x="64.2384%" y="181" width="1.1038%" height="15" fill="rgb(240,128,52)" fg:x="291" fg:w="5"/><text x="64.4884%" y="191.50"></text></g><g><title>__bzero (1 samples, 0.22%)</title><rect x="65.3422%" y="213" width="0.2208%" height="15" fill="rgb(253,114,12)" fg:x="296" fg:w="1"/><text x="65.5922%" y="223.50"></text></g><g><title>alloc::boxed::iter::_&lt;impl core::iter::traits::iterator::Iterator for alloc::boxed::Box&lt;I,A&gt;&gt;::next (246 samples, 54.30%)</title><rect x="11.4790%" y="293" width="54.3046%" height="15" fill="rgb(215,223,47)" fg:x="52" fg:w="246"/><text x="11.7290%" y="303.50">alloc::boxed::iter::_&lt;impl core::iter::traits::iterator::Iterator for alloc::boxed::Box&lt;I,..</text></g><g><title>parquet::arrow::arrow_reader::ParquetRecordBatchReader::next_inner (246 samples, 54.30%)</title><rect x="11.4790%" y="277" width="54.3046%" height="15" fill="rgb(248,225,23)" fg:x="52" fg:w="246"/><text x="11.7290%" y="287.50">parquet::arrow::arrow_reader::ParquetRecordBatchReader::next_inner</text></g><g><title>&lt;parquet::arrow::array_reader::struct_array::StructArrayReader as parquet::arrow::array_reader::ArrayReader&gt;::read_records (244 samples, 53.86%)</title><rect x="11.9205%" y="261" width="53.8631%" height="15" fill="rgb(250,108,0)" fg:x="54" fg:w="244"/><text x="12.1705%" y="271.50">&lt;parquet::arrow::array_reader::struct_array::StructArrayReader as parquet::arrow::array_r..</text></g><g><title>parquet::column::reader::GenericColumnReader&lt;R,D,V&gt;::has_next (188 samples, 41.50%)</title><rect x="24.2826%" y="245" width="41.5011%" height="15" fill="rgb(228,208,7)" fg:x="110" fg:w="188"/><text x="24.5326%" y="255.50">parquet::column::reader::GenericColumnReader&lt;R,D,V&gt;::has_next</text></g><g><title>parquet::column::reader::GenericColumnReader&lt;R,D,V&gt;::read_new_page (188 samples, 41.50%)</title><rect x="24.2826%" y="229" width="41.5011%" height="15" fill="rgb(244,45,10)" fg:x="110" fg:w="188"/><text x="24.5326%" y="239.50">parquet::column::reader::GenericColumnReader&lt;R,D,V&gt;::read_new_page</text></g><g><title>parquet::encodings::decoding::DictDecoder&lt;T&gt;::set_dict (1 samples, 0.22%)</title><rect x="65.5629%" y="213" width="0.2208%" height="15" fill="rgb(207,125,25)" fg:x="297" fg:w="1"/><text x="65.8129%" y="223.50"></text></g><g><title>_platform_memmove (1 samples, 0.22%)</title><rect x="65.5629%" y="197" width="0.2208%" height="15" fill="rgb(210,195,18)" fg:x="297" fg:w="1"/><text x="65.8129%" y="207.50"></text></g><g><title>core::ptr::drop_in_place&lt;arrow_array::record_batch::RecordBatch&gt; (1 samples, 0.22%)</title><rect x="65.7837%" y="293" width="0.2208%" height="15" fill="rgb(249,80,12)" fg:x="298" fg:w="1"/><text x="66.0337%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;alloc::sync::Arc&lt;dyn arrow_array::array::Array&gt;&gt;&gt; (1 samples, 0.22%)</title><rect x="65.7837%" y="277" width="0.2208%" height="15" fill="rgb(221,65,9)" fg:x="298" fg:w="1"/><text x="66.0337%" y="287.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next (250 samples, 55.19%)</title><rect x="11.0375%" y="325" width="55.1876%" height="15" fill="rgb(235,49,36)" fg:x="50" fg:w="250"/><text x="11.2875%" y="335.50">&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next</text></g><g><title>futures_util::stream::stream::StreamExt::poll_next_unpin (249 samples, 54.97%)</title><rect x="11.2583%" y="309" width="54.9669%" height="15" fill="rgb(225,32,20)" fg:x="51" fg:w="249"/><text x="11.5083%" y="319.50">futures_util::stream::stream::StreamExt::poll_next_unpin</text></g><g><title>parquet::arrow::push_decoder::ParquetDecoderState::try_next_batch (1 samples, 0.22%)</title><rect x="66.0044%" y="293" width="0.2208%" height="15" fill="rgb(215,141,46)" fg:x="299" fg:w="1"/><text x="66.2544%" y="303.50"></text></g><g><title>core::ptr::drop_in_place&lt;parquet::arrow::in_memory_row_group::InMemoryRowGroup&gt; (1 samples, 0.22%)</title><rect x="66.0044%" y="277" width="0.2208%" height="15" fill="rgb(250,160,47)" fg:x="299" fg:w="1"/><text x="66.2544%" y="287.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;core::option::Option&lt;alloc::sync::Arc&lt;parquet::arrow::in_memory_row_group::ColumnChunkData&gt;&gt;&gt;&gt; (1 samples, 0.22%)</title><rect x="66.0044%" y="261" width="0.2208%" height="15" fill="rgb(216,222,40)" fg:x="299" fg:w="1"/><text x="66.2544%" y="271.50"></text></g><g><title>datafusion_pruning::file_pruner::FilePruner::should_prune (1 samples, 0.22%)</title><rect x="66.2252%" y="293" width="0.2208%" height="15" fill="rgb(234,217,39)" fg:x="300" fg:w="1"/><text x="66.4752%" y="303.50"></text></g><g><title>datafusion_pruning::pruning_predicate::build_pruning_predicate (1 samples, 0.22%)</title><rect x="66.2252%" y="277" width="0.2208%" height="15" fill="rgb(207,178,40)" fg:x="300" fg:w="1"/><text x="66.4752%" y="287.50"></text></g><g><title>datafusion_common::tree_node::TreeNode::transform_up (1 samples, 0.22%)</title><rect x="66.2252%" y="261" width="0.2208%" height="15" fill="rgb(221,136,13)" fg:x="300" fg:w="1"/><text x="66.4752%" y="271.50"></text></g><g><title>datafusion_common::tree_node::TreeNode::transform_up::transform_up_impl::_{{closure}} (1 samples, 0.22%)</title><rect x="66.2252%" y="245" width="0.2208%" height="15" fill="rgb(249,199,10)" fg:x="300" fg:w="1"/><text x="66.4752%" y="255.50"></text></g><g><title>datafusion_common::tree_node::TreeNode::transform_up::transform_up_impl::_{{closure}}::_{{closure}} (1 samples, 0.22%)</title><rect x="66.2252%" y="229" width="0.2208%" height="15" fill="rgb(249,222,13)" fg:x="300" fg:w="1"/><text x="66.4752%" y="239.50"></text></g><g><title>datafusion_common::tree_node::TreeNode::transform_up::transform_up_impl::_{{closure}} (1 samples, 0.22%)</title><rect x="66.2252%" y="213" width="0.2208%" height="15" fill="rgb(244,185,38)" fg:x="300" fg:w="1"/><text x="66.4752%" y="223.50"></text></g><g><title>datafusion_common::tree_node::TreeNode::transform_up::transform_up_impl::_{{closure}}::_{{closure}} (1 samples, 0.22%)</title><rect x="66.2252%" y="197" width="0.2208%" height="15" fill="rgb(236,202,9)" fg:x="300" fg:w="1"/><text x="66.4752%" y="207.50"></text></g><g><title>stacker::STACK_LIMIT::_{{constant}}::_{{closure}} (1 samples, 0.22%)</title><rect x="66.2252%" y="181" width="0.2208%" height="15" fill="rgb(250,229,37)" fg:x="300" fg:w="1"/><text x="66.4752%" y="191.50"></text></g><g><title>tlv_get_addr (1 samples, 0.22%)</title><rect x="66.2252%" y="165" width="0.2208%" height="15" fill="rgb(206,174,23)" fg:x="300" fg:w="1"/><text x="66.4752%" y="175.50"></text></g><g><title>datafusion_datasource::file_stream::FileStream::poll_inner (2 samples, 0.44%)</title><rect x="66.2252%" y="325" width="0.4415%" height="15" fill="rgb(211,33,43)" fg:x="300" fg:w="2"/><text x="66.4752%" y="335.50"></text></g><g><title>&lt;datafusion_datasource_parquet::opener::ParquetOpener as datafusion_datasource::file_stream::FileOpener&gt;::open::_{{closure}} (2 samples, 0.44%)</title><rect x="66.2252%" y="309" width="0.4415%" height="15" fill="rgb(245,58,50)" fg:x="300" fg:w="2"/><text x="66.4752%" y="319.50"></text></g><g><title>datafusion_pruning::pruning_predicate::PruningPredicate::prune (1 samples, 0.22%)</title><rect x="66.4459%" y="293" width="0.2208%" height="15" fill="rgb(244,68,36)" fg:x="301" fg:w="1"/><text x="66.6959%" y="303.50"></text></g><g><title>&lt;datafusion_physical_expr::expressions::binary::BinaryExpr as datafusion_physical_expr_common::physical_expr::PhysicalExpr&gt;::evaluate (1 samples, 0.22%)</title><rect x="66.4459%" y="277" width="0.2208%" height="15" fill="rgb(232,229,15)" fg:x="301" fg:w="1"/><text x="66.6959%" y="287.50"></text></g><g><title>datafusion_expr_common::type_coercion::binary::BinaryTypeCoercer::get_result_type (1 samples, 0.22%)</title><rect x="66.4459%" y="261" width="0.2208%" height="15" fill="rgb(254,30,23)" fg:x="301" fg:w="1"/><text x="66.6959%" y="271.50"></text></g><g><title>datafusion_expr_common::type_coercion::binary::BinaryTypeCoercer::signature_inner (1 samples, 0.22%)</title><rect x="66.4459%" y="245" width="0.2208%" height="15" fill="rgb(235,160,14)" fg:x="301" fg:w="1"/><text x="66.6959%" y="255.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next (254 samples, 56.07%)</title><rect x="10.8168%" y="357" width="56.0706%" height="15" fill="rgb(212,155,44)" fg:x="49" fg:w="254"/><text x="11.0668%" y="367.50">&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next</text></g><g><title>datafusion_physical_plan::stream::BatchSplitStream::poll_upstream (254 samples, 56.07%)</title><rect x="10.8168%" y="341" width="56.0706%" height="15" fill="rgb(226,2,50)" fg:x="49" fg:w="254"/><text x="11.0668%" y="351.50">datafusion_physical_plan::stream::BatchSplitStream::poll_upstream</text></g><g><title>datafusion_datasource::file_stream::FileStream::start_next_file (1 samples, 0.22%)</title><rect x="66.6667%" y="325" width="0.2208%" height="15" fill="rgb(234,177,6)" fg:x="302" fg:w="1"/><text x="66.9167%" y="335.50"></text></g><g><title>&lt;datafusion_datasource_parquet::opener::ParquetOpener as datafusion_datasource::file_stream::FileOpener&gt;::open (1 samples, 0.22%)</title><rect x="66.6667%" y="309" width="0.2208%" height="15" fill="rgb(217,24,9)" fg:x="302" fg:w="1"/><text x="66.9167%" y="319.50"></text></g><g><title>&lt;datafusion_datasource_parquet::reader::CachedParquetFileReaderFactory as datafusion_datasource_parquet::reader::ParquetFileReaderFactory&gt;::create_reader (1 samples, 0.22%)</title><rect x="66.6667%" y="293" width="0.2208%" height="15" fill="rgb(220,13,46)" fg:x="302" fg:w="1"/><text x="66.9167%" y="303.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push_mut (1 samples, 0.22%)</title><rect x="66.6667%" y="277" width="0.2208%" height="15" fill="rgb(239,221,27)" fg:x="302" fg:w="1"/><text x="66.9167%" y="287.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.22%)</title><rect x="66.6667%" y="261" width="0.2208%" height="15" fill="rgb(222,198,25)" fg:x="302" fg:w="1"/><text x="66.9167%" y="271.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.22%)</title><rect x="66.6667%" y="245" width="0.2208%" height="15" fill="rgb(211,99,13)" fg:x="302" fg:w="1"/><text x="66.9167%" y="255.50"></text></g><g><title>arrow_select::filter::filter_byte_view (4 samples, 0.88%)</title><rect x="66.8874%" y="309" width="0.8830%" height="15" fill="rgb(232,111,31)" fg:x="303" fg:w="4"/><text x="67.1374%" y="319.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4 samples, 0.88%)</title><rect x="66.8874%" y="293" width="0.8830%" height="15" fill="rgb(245,82,37)" fg:x="303" fg:w="4"/><text x="67.1374%" y="303.50"></text></g><g><title>alloc::vec::set_len_on_drop::SetLenOnDrop::increment_len (1 samples, 0.22%)</title><rect x="67.7704%" y="293" width="0.2208%" height="15" fill="rgb(227,149,46)" fg:x="307" fg:w="1"/><text x="68.0204%" y="303.50"></text></g><g><title>arrow_select::filter::FilterPredicate::filter_record_batch::_{{closure}} (6 samples, 1.32%)</title><rect x="66.8874%" y="341" width="1.3245%" height="15" fill="rgb(218,36,50)" fg:x="303" fg:w="6"/><text x="67.1374%" y="351.50"></text></g><g><title>arrow_select::filter::filter_array (6 samples, 1.32%)</title><rect x="66.8874%" y="325" width="1.3245%" height="15" fill="rgb(226,80,48)" fg:x="303" fg:w="6"/><text x="67.1374%" y="335.50"></text></g><g><title>arrow_select::filter::filter_primitive (2 samples, 0.44%)</title><rect x="67.7704%" y="309" width="0.4415%" height="15" fill="rgb(238,224,15)" fg:x="307" fg:w="2"/><text x="68.0204%" y="319.50"></text></g><g><title>core::ptr::write (1 samples, 0.22%)</title><rect x="67.9912%" y="293" width="0.2208%" height="15" fill="rgb(241,136,10)" fg:x="308" fg:w="1"/><text x="68.2412%" y="303.50"></text></g><g><title>&lt;arrow_buffer::util::bit_iterator::BitIndexIterator as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.22%)</title><rect x="68.2119%" y="325" width="0.2208%" height="15" fill="rgb(208,32,45)" fg:x="309" fg:w="1"/><text x="68.4619%" y="335.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (5 samples, 1.10%)</title><rect x="68.4327%" y="325" width="1.1038%" height="15" fill="rgb(207,135,9)" fg:x="310" fg:w="5"/><text x="68.6827%" y="335.50"></text></g><g><title>arrow_select::filter::filter_record_batch (9 samples, 1.99%)</title><rect x="68.2119%" y="341" width="1.9868%" height="15" fill="rgb(206,86,44)" fg:x="309" fg:w="9"/><text x="68.4619%" y="351.50">a..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::set_len (3 samples, 0.66%)</title><rect x="69.5364%" y="325" width="0.6623%" height="15" fill="rgb(245,177,15)" fg:x="315" fg:w="3"/><text x="69.7864%" y="335.50"></text></g><g><title>_platform_memmove (12 samples, 2.65%)</title><rect x="70.1987%" y="277" width="2.6490%" height="15" fill="rgb(206,64,50)" fg:x="318" fg:w="12"/><text x="70.4487%" y="287.50">_p..</text></g><g><title>&lt;arrow_select::coalesce::byte_view::InProgressByteViewArray&lt;B&gt; as arrow_select::coalesce::InProgressArray&gt;::copy_rows (13 samples, 2.87%)</title><rect x="70.1987%" y="309" width="2.8698%" height="15" fill="rgb(234,36,40)" fg:x="318" fg:w="13"/><text x="70.4487%" y="319.50">&lt;a..</text></g><g><title>arrow_select::coalesce::byte_view::InProgressByteViewArray&lt;B&gt;::append_views_and_copy_strings (13 samples, 2.87%)</title><rect x="70.1987%" y="293" width="2.8698%" height="15" fill="rgb(213,64,8)" fg:x="318" fg:w="13"/><text x="70.4487%" y="303.50">ar..</text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::capacity (1 samples, 0.22%)</title><rect x="72.8477%" y="277" width="0.2208%" height="15" fill="rgb(210,75,36)" fg:x="330" fg:w="1"/><text x="73.0977%" y="287.50"></text></g><g><title>_platform_memmove (2 samples, 0.44%)</title><rect x="73.0684%" y="309" width="0.4415%" height="15" fill="rgb(229,88,21)" fg:x="331" fg:w="2"/><text x="73.3184%" y="319.50"></text></g><g><title>&lt;datafusion_physical_plan::filter::FilterExecStream as futures_core::stream::Stream&gt;::poll_next::_{{closure}} (31 samples, 6.84%)</title><rect x="66.8874%" y="357" width="6.8433%" height="15" fill="rgb(252,204,47)" fg:x="303" fg:w="31"/><text x="67.1374%" y="367.50">&lt;datafusi..</text></g><g><title>datafusion_physical_plan::coalesce::LimitedBatchCoalescer::push_batch (16 samples, 3.53%)</title><rect x="70.1987%" y="341" width="3.5320%" height="15" fill="rgb(208,77,27)" fg:x="318" fg:w="16"/><text x="70.4487%" y="351.50">dat..</text></g><g><title>arrow_select::coalesce::BatchCoalescer::push_batch (16 samples, 3.53%)</title><rect x="70.1987%" y="325" width="3.5320%" height="15" fill="rgb(221,76,26)" fg:x="318" fg:w="16"/><text x="70.4487%" y="335.50">arr..</text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::reserve (1 samples, 0.22%)</title><rect x="73.5099%" y="309" width="0.2208%" height="15" fill="rgb(225,139,18)" fg:x="333" fg:w="1"/><text x="73.7599%" y="319.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::grow_amortized (1 samples, 0.22%)</title><rect x="73.5099%" y="293" width="0.2208%" height="15" fill="rgb(230,137,11)" fg:x="333" fg:w="1"/><text x="73.7599%" y="303.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::realloc (1 samples, 0.22%)</title><rect x="73.5099%" y="277" width="0.2208%" height="15" fill="rgb(212,28,1)" fg:x="333" fg:w="1"/><text x="73.7599%" y="287.50"></text></g><g><title>_platform_memmove (1 samples, 0.22%)</title><rect x="73.5099%" y="261" width="0.2208%" height="15" fill="rgb(248,164,17)" fg:x="333" fg:w="1"/><text x="73.7599%" y="271.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::clone::Clone&gt;::clone (1 samples, 0.22%)</title><rect x="73.7307%" y="325" width="0.2208%" height="15" fill="rgb(222,171,42)" fg:x="334" fg:w="1"/><text x="73.9807%" y="335.50"></text></g><g><title>core::ptr::copy_nonoverlapping (1 samples, 0.22%)</title><rect x="73.7307%" y="309" width="0.2208%" height="15" fill="rgb(243,84,45)" fg:x="334" fg:w="1"/><text x="73.9807%" y="319.50"></text></g><g><title>DYLD-STUB$$memcpy (1 samples, 0.22%)</title><rect x="73.7307%" y="293" width="0.2208%" height="15" fill="rgb(252,49,23)" fg:x="334" fg:w="1"/><text x="73.9807%" y="303.50"></text></g><g><title>&lt;&amp;arrow_array::array::byte_view_array::GenericByteViewArray&lt;T&gt; as arrow_ord::cmp::ArrayOrd&gt;::is_eq (2 samples, 0.44%)</title><rect x="73.9514%" y="277" width="0.4415%" height="15" fill="rgb(215,19,7)" fg:x="335" fg:w="2"/><text x="74.2014%" y="287.50"></text></g><g><title>&lt;datafusion_physical_plan::filter::FilterExecStream as futures_core::stream::Stream&gt;::poll_next (6 samples, 1.32%)</title><rect x="73.7307%" y="357" width="1.3245%" height="15" fill="rgb(238,81,41)" fg:x="334" fg:w="6"/><text x="73.9807%" y="367.50"></text></g><g><title>&lt;datafusion_physical_expr::expressions::binary::BinaryExpr as datafusion_physical_expr_common::physical_expr::PhysicalExpr&gt;::evaluate (6 samples, 1.32%)</title><rect x="73.7307%" y="341" width="1.3245%" height="15" fill="rgb(210,199,37)" fg:x="334" fg:w="6"/><text x="73.9807%" y="351.50"></text></g><g><title>datafusion_physical_expr_common::datum::apply_cmp::_{{closure}} (5 samples, 1.10%)</title><rect x="73.9514%" y="325" width="1.1038%" height="15" fill="rgb(244,192,49)" fg:x="335" fg:w="5"/><text x="74.2014%" y="335.50"></text></g><g><title>arrow_ord::cmp::compare_op (5 samples, 1.10%)</title><rect x="73.9514%" y="309" width="1.1038%" height="15" fill="rgb(226,211,11)" fg:x="335" fg:w="5"/><text x="74.2014%" y="319.50"></text></g><g><title>arrow_ord::cmp::apply (5 samples, 1.10%)</title><rect x="73.9514%" y="293" width="1.1038%" height="15" fill="rgb(236,162,54)" fg:x="335" fg:w="5"/><text x="74.2014%" y="303.50"></text></g><g><title>arrow_ord::cmp::collect_bool::_{{closure}} (3 samples, 0.66%)</title><rect x="74.3929%" y="277" width="0.6623%" height="15" fill="rgb(220,229,9)" fg:x="337" fg:w="3"/><text x="74.6429%" y="287.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next (292 samples, 64.46%)</title><rect x="10.8168%" y="389" width="64.4592%" height="15" fill="rgb(250,87,22)" fg:x="49" fg:w="292"/><text x="11.0668%" y="399.50">&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next (292 samples, 64.46%)</title><rect x="10.8168%" y="373" width="64.4592%" height="15" fill="rgb(239,43,17)" fg:x="49" fg:w="292"/><text x="11.0668%" y="383.50">&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next</text></g><g><title>&lt;dyn core::any::Any&gt;::is (1 samples, 0.22%)</title><rect x="75.0552%" y="357" width="0.2208%" height="15" fill="rgb(231,177,25)" fg:x="340" fg:w="1"/><text x="75.3052%" y="367.50"></text></g><g><title>core::any::TypeId::of (1 samples, 0.22%)</title><rect x="75.0552%" y="341" width="0.2208%" height="15" fill="rgb(219,179,1)" fg:x="340" fg:w="1"/><text x="75.3052%" y="351.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next (293 samples, 64.68%)</title><rect x="10.8168%" y="421" width="64.6799%" height="15" fill="rgb(238,219,53)" fg:x="49" fg:w="293"/><text x="11.0668%" y="431.50">&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next (293 samples, 64.68%)</title><rect x="10.8168%" y="405" width="64.6799%" height="15" fill="rgb(232,167,36)" fg:x="49" fg:w="293"/><text x="11.0668%" y="415.50">&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next</text></g><g><title>datafusion_physical_plan::topk::TopK::insert_batch (1 samples, 0.22%)</title><rect x="75.2759%" y="389" width="0.2208%" height="15" fill="rgb(244,19,51)" fg:x="341" fg:w="1"/><text x="75.5259%" y="399.50"></text></g><g><title>__bzero (1 samples, 0.22%)</title><rect x="75.2759%" y="373" width="0.2208%" height="15" fill="rgb(224,6,22)" fg:x="341" fg:w="1"/><text x="75.5259%" y="383.50"></text></g><g><title>datafusion::execution::session_state::SessionState::optimize (1 samples, 0.22%)</title><rect x="75.4967%" y="405" width="0.2208%" height="15" fill="rgb(224,145,5)" fg:x="342" fg:w="1"/><text x="75.7467%" y="415.50"></text></g><g><title>datafusion_optimizer::analyzer::Analyzer::execute_and_check (1 samples, 0.22%)</title><rect x="75.7174%" y="405" width="0.2208%" height="15" fill="rgb(234,130,49)" fg:x="343" fg:w="1"/><text x="75.9674%" y="415.50"></text></g><g><title>&lt;datafusion_optimizer::analyzer::type_coercion::TypeCoercion as datafusion_optimizer::analyzer::AnalyzerRule&gt;::analyze (1 samples, 0.22%)</title><rect x="75.7174%" y="389" width="0.2208%" height="15" fill="rgb(254,6,2)" fg:x="343" fg:w="1"/><text x="75.9674%" y="399.50"></text></g><g><title>datafusion_expr::logical_plan::tree_node::_&lt;impl datafusion_expr::logical_plan::plan::LogicalPlan&gt;::transform_up_with_subqueries (1 samples, 0.22%)</title><rect x="75.9382%" y="389" width="0.2208%" height="15" fill="rgb(208,96,46)" fg:x="344" fg:w="1"/><text x="76.1882%" y="399.50"></text></g><g><title>stacker::maybe_grow (1 samples, 0.22%)</title><rect x="75.9382%" y="373" width="0.2208%" height="15" fill="rgb(239,3,39)" fg:x="344" fg:w="1"/><text x="76.1882%" y="383.50"></text></g><g><title>datafusion_expr::logical_plan::tree_node::_&lt;impl datafusion_common::tree_node::TreeNode for datafusion_expr::logical_plan::plan::LogicalPlan&gt;::map_children (1 samples, 0.22%)</title><rect x="75.9382%" y="357" width="0.2208%" height="15" fill="rgb(233,210,1)" fg:x="344" fg:w="1"/><text x="76.1882%" y="367.50"></text></g><g><title>datafusion_expr::logical_plan::tree_node::_&lt;impl datafusion_expr::logical_plan::plan::LogicalPlan&gt;::transform_up_with_subqueries::transform_up_with_subqueries_impl::_{{closure}}::_{{closure}}::_{{closure}} (1 samples, 0.22%)</title><rect x="75.9382%" y="341" width="0.2208%" height="15" fill="rgb(244,137,37)" fg:x="344" fg:w="1"/><text x="76.1882%" y="351.50"></text></g><g><title>stacker::maybe_grow (1 samples, 0.22%)</title><rect x="75.9382%" y="325" width="0.2208%" height="15" fill="rgb(240,136,2)" fg:x="344" fg:w="1"/><text x="76.1882%" y="335.50"></text></g><g><title>datafusion_expr::logical_plan::tree_node::_&lt;impl datafusion_common::tree_node::TreeNode for datafusion_expr::logical_plan::plan::LogicalPlan&gt;::map_children (1 samples, 0.22%)</title><rect x="75.9382%" y="309" width="0.2208%" height="15" fill="rgb(239,18,37)" fg:x="344" fg:w="1"/><text x="76.1882%" y="319.50"></text></g><g><title>datafusion_expr::logical_plan::tree_node::_&lt;impl datafusion_expr::logical_plan::plan::LogicalPlan&gt;::transform_up_with_subqueries::transform_up_with_subqueries_impl::_{{closure}}::_{{closure}}::_{{closure}} (1 samples, 0.22%)</title><rect x="75.9382%" y="293" width="0.2208%" height="15" fill="rgb(218,185,22)" fg:x="344" fg:w="1"/><text x="76.1882%" y="303.50"></text></g><g><title>stacker::maybe_grow (1 samples, 0.22%)</title><rect x="75.9382%" y="277" width="0.2208%" height="15" fill="rgb(225,218,4)" fg:x="344" fg:w="1"/><text x="76.1882%" y="287.50"></text></g><g><title>datafusion_expr::logical_plan::tree_node::_&lt;impl datafusion_common::tree_node::TreeNode for datafusion_expr::logical_plan::plan::LogicalPlan&gt;::map_children (1 samples, 0.22%)</title><rect x="75.9382%" y="261" width="0.2208%" height="15" fill="rgb(230,182,32)" fg:x="344" fg:w="1"/><text x="76.1882%" y="271.50"></text></g><g><title>datafusion_expr::logical_plan::tree_node::_&lt;impl datafusion_expr::logical_plan::plan::LogicalPlan&gt;::transform_up_with_subqueries::transform_up_with_subqueries_impl::_{{closure}}::_{{closure}}::_{{closure}} (1 samples, 0.22%)</title><rect x="75.9382%" y="245" width="0.2208%" height="15" fill="rgb(242,56,43)" fg:x="344" fg:w="1"/><text x="76.1882%" y="255.50"></text></g><g><title>stacker::maybe_grow (1 samples, 0.22%)</title><rect x="75.9382%" y="229" width="0.2208%" height="15" fill="rgb(233,99,24)" fg:x="344" fg:w="1"/><text x="76.1882%" y="239.50"></text></g><g><title>datafusion_expr::logical_plan::tree_node::_&lt;impl datafusion_common::tree_node::TreeNode for datafusion_expr::logical_plan::plan::LogicalPlan&gt;::map_children (1 samples, 0.22%)</title><rect x="75.9382%" y="213" width="0.2208%" height="15" fill="rgb(234,209,42)" fg:x="344" fg:w="1"/><text x="76.1882%" y="223.50"></text></g><g><title>datafusion_expr::logical_plan::tree_node::_&lt;impl datafusion_expr::logical_plan::plan::LogicalPlan&gt;::transform_up_with_subqueries::transform_up_with_subqueries_impl::_{{closure}}::_{{closure}}::_{{closure}} (1 samples, 0.22%)</title><rect x="75.9382%" y="197" width="0.2208%" height="15" fill="rgb(227,7,12)" fg:x="344" fg:w="1"/><text x="76.1882%" y="207.50"></text></g><g><title>stacker::maybe_grow (1 samples, 0.22%)</title><rect x="75.9382%" y="181" width="0.2208%" height="15" fill="rgb(245,203,43)" fg:x="344" fg:w="1"/><text x="76.1882%" y="191.50"></text></g><g><title>datafusion_common::tree_node::TreeNode::transform_up (1 samples, 0.22%)</title><rect x="75.9382%" y="165" width="0.2208%" height="15" fill="rgb(238,205,33)" fg:x="344" fg:w="1"/><text x="76.1882%" y="175.50"></text></g><g><title>datafusion_common::tree_node::TreeNode::transform_up::transform_up_impl::_{{closure}} (1 samples, 0.22%)</title><rect x="75.9382%" y="149" width="0.2208%" height="15" fill="rgb(231,56,7)" fg:x="344" fg:w="1"/><text x="76.1882%" y="159.50"></text></g><g><title>datafusion_expr::tree_node::_&lt;impl datafusion_common::tree_node::TreeNode for datafusion_expr::expr::Expr&gt;::map_children (1 samples, 0.22%)</title><rect x="75.9382%" y="133" width="0.2208%" height="15" fill="rgb(244,186,29)" fg:x="344" fg:w="1"/><text x="76.1882%" y="143.50"></text></g><g><title>&lt;(C0,C1) as datafusion_common::tree_node::TreeNodeContainer&lt;T&gt;&gt;::map_elements (1 samples, 0.22%)</title><rect x="75.9382%" y="117" width="0.2208%" height="15" fill="rgb(234,111,31)" fg:x="344" fg:w="1"/><text x="76.1882%" y="127.50"></text></g><g><title>&lt;datafusion_optimizer::optimizer::Rewriter as datafusion_common::tree_node::TreeNodeRewriter&gt;::f_down (1 samples, 0.22%)</title><rect x="76.1589%" y="373" width="0.2208%" height="15" fill="rgb(241,149,10)" fg:x="345" fg:w="1"/><text x="76.4089%" y="383.50"></text></g><g><title>&lt;datafusion_optimizer::decorrelate_lateral_join::DecorrelateLateralJoin as datafusion_optimizer::optimizer::OptimizerRule&gt;::rewrite (1 samples, 0.22%)</title><rect x="76.1589%" y="357" width="0.2208%" height="15" fill="rgb(249,206,44)" fg:x="345" fg:w="1"/><text x="76.4089%" y="367.50"></text></g><g><title>&lt;datafusion_optimizer::optimizer::Rewriter as datafusion_common::tree_node::TreeNodeRewriter&gt;::f_up (1 samples, 0.22%)</title><rect x="76.3797%" y="373" width="0.2208%" height="15" fill="rgb(251,153,30)" fg:x="346" fg:w="1"/><text x="76.6297%" y="383.50"></text></g><g><title>datafusion_optimizer::simplify_expressions::simplify_exprs::SimplifyExpressions::optimize_internal (1 samples, 0.22%)</title><rect x="76.3797%" y="357" width="0.2208%" height="15" fill="rgb(239,152,38)" fg:x="346" fg:w="1"/><text x="76.6297%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;datafusion_optimizer::simplify_expressions::expr_simplifier::ExprSimplifier&gt; (1 samples, 0.22%)</title><rect x="76.3797%" y="341" width="0.2208%" height="15" fill="rgb(249,139,47)" fg:x="346" fg:w="1"/><text x="76.6297%" y="351.50"></text></g><g><title>datafusion::execution::session_state::SessionState::create_physical_plan::_{{closure}} (6 samples, 1.32%)</title><rect x="75.4967%" y="421" width="1.3245%" height="15" fill="rgb(244,64,35)" fg:x="342" fg:w="6"/><text x="75.7467%" y="431.50"></text></g><g><title>datafusion_optimizer::optimizer::Optimizer::optimize (4 samples, 0.88%)</title><rect x="75.9382%" y="405" width="0.8830%" height="15" fill="rgb(216,46,15)" fg:x="344" fg:w="4"/><text x="76.1882%" y="415.50"></text></g><g><title>stacker::maybe_grow (3 samples, 0.66%)</title><rect x="76.1589%" y="389" width="0.6623%" height="15" fill="rgb(250,74,19)" fg:x="345" fg:w="3"/><text x="76.4089%" y="399.50"></text></g><g><title>datafusion_optimizer::common_subexpr_eliminate::CommonSubexprEliminate::try_optimize_proj (1 samples, 0.22%)</title><rect x="76.6004%" y="373" width="0.2208%" height="15" fill="rgb(249,42,33)" fg:x="347" fg:w="1"/><text x="76.8504%" y="383.50"></text></g><g><title>datafusion_optimizer::common_subexpr_eliminate::CommonSubexprEliminate::try_unary_plan (1 samples, 0.22%)</title><rect x="76.6004%" y="357" width="0.2208%" height="15" fill="rgb(242,149,17)" fg:x="347" fg:w="1"/><text x="76.8504%" y="367.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.22%)</title><rect x="76.6004%" y="341" width="0.2208%" height="15" fill="rgb(244,29,21)" fg:x="347" fg:w="1"/><text x="76.8504%" y="351.50"></text></g><g><title>&lt;core::iter::adapters::GenericShunt&lt;I,R&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.22%)</title><rect x="76.6004%" y="325" width="0.2208%" height="15" fill="rgb(220,130,37)" fg:x="347" fg:w="1"/><text x="76.8504%" y="335.50"></text></g><g><title>datafusion_sql::query::_&lt;impl datafusion_sql::planner::SqlToRel&lt;S&gt;&gt;::query_to_plan (1 samples, 0.22%)</title><rect x="76.8212%" y="357" width="0.2208%" height="15" fill="rgb(211,67,2)" fg:x="348" fg:w="1"/><text x="77.0712%" y="367.50"></text></g><g><title>datafusion_sql::select::_&lt;impl datafusion_sql::planner::SqlToRel&lt;S&gt;&gt;::select_to_plan (1 samples, 0.22%)</title><rect x="76.8212%" y="341" width="0.2208%" height="15" fill="rgb(235,68,52)" fg:x="348" fg:w="1"/><text x="77.0712%" y="351.50"></text></g><g><title>datafusion_expr::logical_plan::builder::project_with_validation (1 samples, 0.22%)</title><rect x="76.8212%" y="325" width="0.2208%" height="15" fill="rgb(246,142,3)" fg:x="348" fg:w="1"/><text x="77.0712%" y="335.50"></text></g><g><title>datafusion_expr::logical_plan::plan::calc_func_dependencies_for_project (1 samples, 0.22%)</title><rect x="76.8212%" y="309" width="0.2208%" height="15" fill="rgb(241,25,7)" fg:x="348" fg:w="1"/><text x="77.0712%" y="319.50"></text></g><g><title>datafusion_common::dfschema::DFSchema::field_names (1 samples, 0.22%)</title><rect x="76.8212%" y="293" width="0.2208%" height="15" fill="rgb(242,119,39)" fg:x="348" fg:w="1"/><text x="77.0712%" y="303.50"></text></g><g><title>datafusion_cli::exec::StatementExecutor::create_and_execute_logical_plan::_{{closure}} (2 samples, 0.44%)</title><rect x="76.8212%" y="421" width="0.4415%" height="15" fill="rgb(241,98,45)" fg:x="348" fg:w="2"/><text x="77.0712%" y="431.50"></text></g><g><title>datafusion::execution::session_state::SessionState::statement_to_plan::_{{closure}} (2 samples, 0.44%)</title><rect x="76.8212%" y="405" width="0.4415%" height="15" fill="rgb(254,28,30)" fg:x="348" fg:w="2"/><text x="77.0712%" y="415.50"></text></g><g><title>datafusion_sql::statement::_&lt;impl datafusion_sql::planner::SqlToRel&lt;S&gt;&gt;::sql_statement_to_plan (2 samples, 0.44%)</title><rect x="76.8212%" y="389" width="0.4415%" height="15" fill="rgb(241,142,54)" fg:x="348" fg:w="2"/><text x="77.0712%" y="399.50"></text></g><g><title>datafusion_sql::statement::_&lt;impl datafusion_sql::planner::SqlToRel&lt;S&gt;&gt;::sql_statement_to_plan_with_context_impl (2 samples, 0.44%)</title><rect x="76.8212%" y="373" width="0.4415%" height="15" fill="rgb(222,85,15)" fg:x="348" fg:w="2"/><text x="77.0712%" y="383.50"></text></g><g><title>datafusion_sql::statement::_&lt;impl datafusion_sql::planner::SqlToRel&lt;S&gt;&gt;::set_statement_to_plan (1 samples, 0.22%)</title><rect x="77.0419%" y="357" width="0.2208%" height="15" fill="rgb(210,85,47)" fg:x="349" fg:w="1"/><text x="77.2919%" y="367.50"></text></g><g><title>datafusion_sql::utils::value_to_string (1 samples, 0.22%)</title><rect x="77.0419%" y="341" width="0.2208%" height="15" fill="rgb(224,206,25)" fg:x="349" fg:w="1"/><text x="77.2919%" y="351.50"></text></g><g><title>datafusion_cli::exec::StatementExecutor::execute::_{{closure}} (1 samples, 0.22%)</title><rect x="77.2627%" y="421" width="0.2208%" height="15" fill="rgb(243,201,19)" fg:x="350" fg:w="1"/><text x="77.5127%" y="431.50"></text></g><g><title>datafusion_cli::print_format::format_batches_with_maxrows (1 samples, 0.22%)</title><rect x="77.2627%" y="405" width="0.2208%" height="15" fill="rgb(236,59,4)" fg:x="350" fg:w="1"/><text x="77.5127%" y="415.50"></text></g><g><title>std::io::default_write_fmt (1 samples, 0.22%)</title><rect x="77.2627%" y="389" width="0.2208%" height="15" fill="rgb(254,179,45)" fg:x="350" fg:w="1"/><text x="77.5127%" y="399.50"></text></g><g><title>core::fmt::rt::Argument::fmt (1 samples, 0.22%)</title><rect x="77.2627%" y="373" width="0.2208%" height="15" fill="rgb(226,14,10)" fg:x="350" fg:w="1"/><text x="77.5127%" y="383.50"></text></g><g><title>comfy_table::table::Table::lines (1 samples, 0.22%)</title><rect x="77.2627%" y="357" width="0.2208%" height="15" fill="rgb(244,27,41)" fg:x="350" fg:w="1"/><text x="77.5127%" y="367.50"></text></g><g><title>comfy_table::utils::arrangement::arrange_content (1 samples, 0.22%)</title><rect x="77.2627%" y="341" width="0.2208%" height="15" fill="rgb(235,35,32)" fg:x="350" fg:w="1"/><text x="77.5127%" y="351.50"></text></g><g><title>comfy_table::utils::arrangement::disabled::arrange (1 samples, 0.22%)</title><rect x="77.2627%" y="325" width="0.2208%" height="15" fill="rgb(218,68,31)" fg:x="350" fg:w="1"/><text x="77.5127%" y="335.50"></text></g><g><title>datafusion_cli::exec::exec_from_files::_{{closure}} (336 samples, 74.17%)</title><rect x="3.5320%" y="453" width="74.1722%" height="15" fill="rgb(207,120,37)" fg:x="16" fg:w="336"/><text x="3.7820%" y="463.50">datafusion_cli::exec::exec_from_files::_{{closure}}</text></g><g><title>datafusion_cli::exec::exec_from_lines::_{{closure}} (336 samples, 74.17%)</title><rect x="3.5320%" y="437" width="74.1722%" height="15" fill="rgb(227,98,0)" fg:x="16" fg:w="336"/><text x="3.7820%" y="447.50">datafusion_cli::exec::exec_from_lines::_{{closure}}</text></g><g><title>datafusion_cli::exec::exec_and_print::_{{closure}} (1 samples, 0.22%)</title><rect x="77.4834%" y="421" width="0.2208%" height="15" fill="rgb(207,7,3)" fg:x="351" fg:w="1"/><text x="77.7334%" y="431.50"></text></g><g><title>datafusion_sql::parser::DFParser::parse_sql_with_dialect (1 samples, 0.22%)</title><rect x="77.4834%" y="405" width="0.2208%" height="15" fill="rgb(206,98,19)" fg:x="351" fg:w="1"/><text x="77.7334%" y="415.50"></text></g><g><title>datafusion_sql::parser::DFParser::parse_statements (1 samples, 0.22%)</title><rect x="77.4834%" y="389" width="0.2208%" height="15" fill="rgb(217,5,26)" fg:x="351" fg:w="1"/><text x="77.7334%" y="399.50"></text></g><g><title>datafusion_sql::parser::DFParser::parse_statement (1 samples, 0.22%)</title><rect x="77.4834%" y="373" width="0.2208%" height="15" fill="rgb(235,190,38)" fg:x="351" fg:w="1"/><text x="77.7334%" y="383.50"></text></g><g><title>datafusion_sql::parser::DFParser::parse_and_handle_statement (1 samples, 0.22%)</title><rect x="77.4834%" y="357" width="0.2208%" height="15" fill="rgb(247,86,24)" fg:x="351" fg:w="1"/><text x="77.7334%" y="367.50"></text></g><g><title>sqlparser::parser::Parser::parse_statement (1 samples, 0.22%)</title><rect x="77.4834%" y="341" width="0.2208%" height="15" fill="rgb(205,101,16)" fg:x="351" fg:w="1"/><text x="77.7334%" y="351.50"></text></g><g><title>datafusion_cli::main_inner::_{{closure}} (337 samples, 74.39%)</title><rect x="3.5320%" y="469" width="74.3929%" height="15" fill="rgb(246,168,33)" fg:x="16" fg:w="337"/><text x="3.7820%" y="479.50">datafusion_cli::main_inner::_{{closure}}</text></g><g><title>std::fs::metadata (1 samples, 0.22%)</title><rect x="77.7042%" y="453" width="0.2208%" height="15" fill="rgb(231,114,1)" fg:x="352" fg:w="1"/><text x="77.9542%" y="463.50"></text></g><g><title>stat (1 samples, 0.22%)</title><rect x="77.7042%" y="437" width="0.2208%" height="15" fill="rgb(207,184,53)" fg:x="352" fg:w="1"/><text x="77.9542%" y="447.50"></text></g><g><title>datafusion_common::config::ConfigOptions::from_env (1 samples, 0.22%)</title><rect x="77.9249%" y="469" width="0.2208%" height="15" fill="rgb(224,95,51)" fg:x="353" fg:w="1"/><text x="78.1749%" y="479.50"></text></g><g><title>&lt;datafusion_common::config::ConfigOptions as datafusion_common::config::ConfigField&gt;::visit (1 samples, 0.22%)</title><rect x="77.9249%" y="453" width="0.2208%" height="15" fill="rgb(212,188,45)" fg:x="353" fg:w="1"/><text x="78.1749%" y="463.50"></text></g><g><title>tokio::runtime::park::CachedParkThread::block_on::_{{closure}} (342 samples, 75.50%)</title><rect x="2.8698%" y="501" width="75.4967%" height="15" fill="rgb(223,154,38)" fg:x="13" fg:w="342"/><text x="3.1198%" y="511.50">tokio::runtime::park::CachedParkThread::block_on::_{{closure}}</text></g><g><title>datafusion_cli::main::_{{closure}} (342 samples, 75.50%)</title><rect x="2.8698%" y="485" width="75.4967%" height="15" fill="rgb(251,22,52)" fg:x="13" fg:w="342"/><text x="3.1198%" y="495.50">datafusion_cli::main::_{{closure}}</text></g><g><title>datafusion_execution::config::SessionConfig::with_information_schema (1 samples, 0.22%)</title><rect x="78.1457%" y="469" width="0.2208%" height="15" fill="rgb(229,209,22)" fg:x="354" fg:w="1"/><text x="78.3957%" y="479.50"></text></g><g><title>datafusion_execution::config::SessionConfig::options_mut (1 samples, 0.22%)</title><rect x="78.1457%" y="453" width="0.2208%" height="15" fill="rgb(234,138,34)" fg:x="354" fg:w="1"/><text x="78.3957%" y="463.50"></text></g><g><title>start (356 samples, 78.59%)</title><rect x="0.0000%" y="549" width="78.5872%" height="15" fill="rgb(212,95,11)" fg:x="0" fg:w="356"/><text x="0.2500%" y="559.50">start</text></g><g><title>main (344 samples, 75.94%)</title><rect x="2.6490%" y="533" width="75.9382%" height="15" fill="rgb(240,179,47)" fg:x="12" fg:w="344"/><text x="2.8990%" y="543.50">main</text></g><g><title>core::ops::function::FnOnce::call_once (344 samples, 75.94%)</title><rect x="2.6490%" y="517" width="75.9382%" height="15" fill="rgb(240,163,11)" fg:x="12" fg:w="344"/><text x="2.8990%" y="527.50">core::ops::function::FnOnce::call_once</text></g><g><title>tokio::runtime::park::CachedParkThread::park::_{{closure}} (1 samples, 0.22%)</title><rect x="78.3664%" y="501" width="0.2208%" height="15" fill="rgb(236,37,12)" fg:x="355" fg:w="1"/><text x="78.6164%" y="511.50"></text></g><g><title>parking_lot::condvar::Condvar::wait (1 samples, 0.22%)</title><rect x="78.3664%" y="485" width="0.2208%" height="15" fill="rgb(232,164,16)" fg:x="355" fg:w="1"/><text x="78.6164%" y="495.50"></text></g><g><title>&lt;parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT&gt;::park (1 samples, 0.22%)</title><rect x="78.3664%" y="469" width="0.2208%" height="15" fill="rgb(244,205,15)" fg:x="355" fg:w="1"/><text x="78.6164%" y="479.50"></text></g><g><title>__psynch_cvwait (1 samples, 0.22%)</title><rect x="78.3664%" y="453" width="0.2208%" height="15" fill="rgb(223,117,47)" fg:x="355" fg:w="1"/><text x="78.6164%" y="463.50"></text></g><g><title>&lt;parking_lot::raw_mutex::RawMutex as lock_api::mutex::RawMutex&gt;::unlock (1 samples, 0.22%)</title><rect x="78.5872%" y="485" width="0.2208%" height="15" fill="rgb(244,107,35)" fg:x="356" fg:w="1"/><text x="78.8372%" y="495.50"></text></g><g><title>&lt;parking_lot_core::thread_parker::imp::UnparkHandle as parking_lot_core::thread_parker::UnparkHandleT&gt;::unpark (1 samples, 0.22%)</title><rect x="78.5872%" y="469" width="0.2208%" height="15" fill="rgb(205,140,8)" fg:x="356" fg:w="1"/><text x="78.8372%" y="479.50"></text></g><g><title>__psynch_cvsignal (1 samples, 0.22%)</title><rect x="78.5872%" y="453" width="0.2208%" height="15" fill="rgb(228,84,46)" fg:x="356" fg:w="1"/><text x="78.8372%" y="463.50"></text></g><g><title>&lt;parking_lot::raw_mutex::RawMutex as lock_api::mutex::RawMutex&gt;::lock (1 samples, 0.22%)</title><rect x="78.8079%" y="469" width="0.2208%" height="15" fill="rgb(254,188,9)" fg:x="357" fg:w="1"/><text x="79.0579%" y="479.50"></text></g><g><title>&lt;parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT&gt;::park (1 samples, 0.22%)</title><rect x="78.8079%" y="453" width="0.2208%" height="15" fill="rgb(206,112,54)" fg:x="357" fg:w="1"/><text x="79.0579%" y="463.50"></text></g><g><title>__psynch_cvwait (1 samples, 0.22%)</title><rect x="78.8079%" y="437" width="0.2208%" height="15" fill="rgb(216,84,49)" fg:x="357" fg:w="1"/><text x="79.0579%" y="447.50"></text></g><g><title>parking_lot::condvar::Condvar::wait_for (2 samples, 0.44%)</title><rect x="78.8079%" y="485" width="0.4415%" height="15" fill="rgb(214,194,35)" fg:x="357" fg:w="2"/><text x="79.0579%" y="495.50"></text></g><g><title>&lt;parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT&gt;::park_until (1 samples, 0.22%)</title><rect x="79.0287%" y="469" width="0.2208%" height="15" fill="rgb(249,28,3)" fg:x="358" fg:w="1"/><text x="79.2787%" y="479.50"></text></g><g><title>__psynch_cvwait (1 samples, 0.22%)</title><rect x="79.0287%" y="453" width="0.2208%" height="15" fill="rgb(222,56,52)" fg:x="358" fg:w="1"/><text x="79.2787%" y="463.50"></text></g><g><title>&lt;core::iter::adapters::flatten::FlatMap&lt;I,U,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.22%)</title><rect x="79.2494%" y="469" width="0.2208%" height="15" fill="rgb(245,217,50)" fg:x="359" fg:w="1"/><text x="79.4994%" y="479.50"></text></g><g><title>object_store::local::LocalFileSystem::list_with_maybe_offset::_{{closure}} (1 samples, 0.22%)</title><rect x="79.2494%" y="453" width="0.2208%" height="15" fill="rgb(213,201,24)" fg:x="359" fg:w="1"/><text x="79.4994%" y="463.50"></text></g><g><title>std::fs::symlink_metadata (1 samples, 0.22%)</title><rect x="79.2494%" y="437" width="0.2208%" height="15" fill="rgb(248,116,28)" fg:x="359" fg:w="1"/><text x="79.4994%" y="447.50"></text></g><g><title>lstat (1 samples, 0.22%)</title><rect x="79.2494%" y="421" width="0.2208%" height="15" fill="rgb(219,72,43)" fg:x="359" fg:w="1"/><text x="79.4994%" y="431.50"></text></g><g><title>&lt;mimalloc::MiMalloc as core::alloc::global::GlobalAlloc&gt;::alloc (1 samples, 0.22%)</title><rect x="79.4702%" y="453" width="0.2208%" height="15" fill="rgb(209,138,14)" fg:x="360" fg:w="1"/><text x="79.7202%" y="463.50"></text></g><g><title>mi_heap_malloc_zero_aligned_at_generic (1 samples, 0.22%)</title><rect x="79.4702%" y="437" width="0.2208%" height="15" fill="rgb(222,18,33)" fg:x="360" fg:w="1"/><text x="79.7202%" y="447.50"></text></g><g><title>_mi_malloc_generic (1 samples, 0.22%)</title><rect x="79.4702%" y="421" width="0.2208%" height="15" fill="rgb(213,199,7)" fg:x="360" fg:w="1"/><text x="79.7202%" y="431.50"></text></g><g><title>mi_large_huge_page_alloc (1 samples, 0.22%)</title><rect x="79.4702%" y="405" width="0.2208%" height="15" fill="rgb(250,110,10)" fg:x="360" fg:w="1"/><text x="79.7202%" y="415.50"></text></g><g><title>mi_page_fresh_alloc (1 samples, 0.22%)</title><rect x="79.4702%" y="389" width="0.2208%" height="15" fill="rgb(248,123,6)" fg:x="360" fg:w="1"/><text x="79.7202%" y="399.50"></text></g><g><title>mi_segments_page_alloc (1 samples, 0.22%)</title><rect x="79.4702%" y="373" width="0.2208%" height="15" fill="rgb(206,91,31)" fg:x="360" fg:w="1"/><text x="79.7202%" y="383.50"></text></g><g><title>mi_segment_span_allocate (1 samples, 0.22%)</title><rect x="79.4702%" y="357" width="0.2208%" height="15" fill="rgb(211,154,13)" fg:x="360" fg:w="1"/><text x="79.7202%" y="367.50"></text></g><g><title>fstat (2 samples, 0.44%)</title><rect x="79.6909%" y="437" width="0.4415%" height="15" fill="rgb(225,148,7)" fg:x="361" fg:w="2"/><text x="79.9409%" y="447.50"></text></g><g><title>&lt;object_store::local::LocalFileSystem as object_store::ObjectStore&gt;::get_opts::_{{closure}}::_{{closure}} (17 samples, 3.75%)</title><rect x="79.6909%" y="453" width="3.7528%" height="15" fill="rgb(220,160,43)" fg:x="361" fg:w="17"/><text x="79.9409%" y="463.50">&lt;obj..</text></g><g><title>std::fs::OpenOptions::open (15 samples, 3.31%)</title><rect x="80.1325%" y="437" width="3.3113%" height="15" fill="rgb(213,52,39)" fg:x="363" fg:w="15"/><text x="80.3825%" y="447.50">std..</text></g><g><title>std::sys::fs::unix::File::open::_{{closure}} (15 samples, 3.31%)</title><rect x="80.1325%" y="421" width="3.3113%" height="15" fill="rgb(243,137,7)" fg:x="363" fg:w="15"/><text x="80.3825%" y="431.50">std..</text></g><g><title>std::sys::fs::unix::File::open_c::_{{closure}} (15 samples, 3.31%)</title><rect x="80.1325%" y="405" width="3.3113%" height="15" fill="rgb(230,79,13)" fg:x="363" fg:w="15"/><text x="80.3825%" y="415.50">std..</text></g><g><title>__open (15 samples, 3.31%)</title><rect x="80.1325%" y="389" width="3.3113%" height="15" fill="rgb(247,105,23)" fg:x="363" fg:w="15"/><text x="80.3825%" y="399.50">__o..</text></g><g><title>read (66 samples, 14.57%)</title><rect x="83.4437%" y="453" width="14.5695%" height="15" fill="rgb(223,179,41)" fg:x="378" fg:w="66"/><text x="83.6937%" y="463.50">read</text></g><g><title>ccrng (1 samples, 0.22%)</title><rect x="98.0132%" y="405" width="0.2208%" height="15" fill="rgb(218,9,34)" fg:x="444" fg:w="1"/><text x="98.2632%" y="415.50"></text></g><g><title>ccrng_prng (1 samples, 0.22%)</title><rect x="98.0132%" y="389" width="0.2208%" height="15" fill="rgb(222,106,8)" fg:x="444" fg:w="1"/><text x="98.2632%" y="399.50"></text></g><g><title>&lt;tokio::runtime::blocking::task::BlockingTask&lt;T&gt; as core::future::future::Future&gt;::poll (86 samples, 18.98%)</title><rect x="79.4702%" y="469" width="18.9845%" height="15" fill="rgb(211,220,0)" fg:x="360" fg:w="86"/><text x="79.7202%" y="479.50">&lt;tokio::runtime::blocking::tas..</text></g><g><title>std::hash::random::RandomState::new::KEYS::__rust_std_internal_init_fn (2 samples, 0.44%)</title><rect x="98.0132%" y="453" width="0.4415%" height="15" fill="rgb(229,52,16)" fg:x="444" fg:w="2"/><text x="98.2632%" y="463.50"></text></g><g><title>std::sys::random::apple::fill_bytes (2 samples, 0.44%)</title><rect x="98.0132%" y="437" width="0.4415%" height="15" fill="rgb(212,155,18)" fg:x="444" fg:w="2"/><text x="98.2632%" y="447.50"></text></g><g><title>CCRandomGenerateBytes (2 samples, 0.44%)</title><rect x="98.0132%" y="421" width="0.4415%" height="15" fill="rgb(242,21,14)" fg:x="444" fg:w="2"/><text x="98.2632%" y="431.50"></text></g><g><title>generate (1 samples, 0.22%)</title><rect x="98.2340%" y="405" width="0.2208%" height="15" fill="rgb(222,19,48)" fg:x="445" fg:w="1"/><text x="98.4840%" y="415.50"></text></g><g><title>ccrng_crypto_generate (1 samples, 0.22%)</title><rect x="98.2340%" y="389" width="0.2208%" height="15" fill="rgb(232,45,27)" fg:x="445" fg:w="1"/><text x="98.4840%" y="399.50"></text></g><g><title>ccdrbg_generate (1 samples, 0.22%)</title><rect x="98.2340%" y="373" width="0.2208%" height="15" fill="rgb(249,103,42)" fg:x="445" fg:w="1"/><text x="98.4840%" y="383.50"></text></g><g><title>generate (1 samples, 0.22%)</title><rect x="98.2340%" y="357" width="0.2208%" height="15" fill="rgb(246,81,33)" fg:x="445" fg:w="1"/><text x="98.4840%" y="367.50"></text></g><g><title>ccctr_update (1 samples, 0.22%)</title><rect x="98.2340%" y="341" width="0.2208%" height="15" fill="rgb(252,33,42)" fg:x="445" fg:w="1"/><text x="98.4840%" y="351.50"></text></g><g><title>ccaes_vng_ctr_crypt (1 samples, 0.22%)</title><rect x="98.2340%" y="325" width="0.2208%" height="15" fill="rgb(209,212,41)" fg:x="445" fg:w="1"/><text x="98.4840%" y="335.50"></text></g><g><title>Decrypt_Main_Loop_End (1 samples, 0.22%)</title><rect x="98.2340%" y="309" width="0.2208%" height="15" fill="rgb(207,154,6)" fg:x="445" fg:w="1"/><text x="98.4840%" y="319.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (91 samples, 20.09%)</title><rect x="78.5872%" y="517" width="20.0883%" height="15" fill="rgb(223,64,47)" fg:x="356" fg:w="91"/><text x="78.8372%" y="527.50">&lt;alloc::boxed::Box&lt;F,A&gt; as core:..</text></g><g><title>std::thread::Builder::spawn_unchecked_::_{{closure}}::_{{closure}} (91 samples, 20.09%)</title><rect x="78.5872%" y="501" width="20.0883%" height="15" fill="rgb(211,161,38)" fg:x="356" fg:w="91"/><text x="78.8372%" y="511.50">std::thread::Builder::spawn_unch..</text></g><g><title>tokio::runtime::task::raw::RawTask::poll (88 samples, 19.43%)</title><rect x="79.2494%" y="485" width="19.4260%" height="15" fill="rgb(219,138,40)" fg:x="359" fg:w="88"/><text x="79.4994%" y="495.50">tokio::runtime::task::raw::Raw..</text></g><g><title>core::option::Option&lt;T&gt;::expect (1 samples, 0.22%)</title><rect x="98.4547%" y="469" width="0.2208%" height="15" fill="rgb(241,228,46)" fg:x="446" fg:w="1"/><text x="98.7047%" y="479.50"></text></g><g><title>_platform_memset (1 samples, 0.22%)</title><rect x="98.6755%" y="501" width="0.2208%" height="15" fill="rgb(223,209,38)" fg:x="447" fg:w="1"/><text x="98.9255%" y="511.50"></text></g><g><title>_pthread_exit (4 samples, 0.88%)</title><rect x="98.6755%" y="517" width="0.8830%" height="15" fill="rgb(236,164,45)" fg:x="447" fg:w="4"/><text x="98.9255%" y="527.50"></text></g><g><title>_pthread_tsd_cleanup (3 samples, 0.66%)</title><rect x="98.8962%" y="501" width="0.6623%" height="15" fill="rgb(231,15,5)" fg:x="448" fg:w="3"/><text x="99.1462%" y="511.50"></text></g><g><title>_mi_thread_done (3 samples, 0.66%)</title><rect x="98.8962%" y="485" width="0.6623%" height="15" fill="rgb(252,35,15)" fg:x="448" fg:w="3"/><text x="99.1462%" y="495.50"></text></g><g><title>mi_heap_collect_ex (3 samples, 0.66%)</title><rect x="98.8962%" y="469" width="0.6623%" height="15" fill="rgb(248,181,18)" fg:x="448" fg:w="3"/><text x="99.1462%" y="479.50"></text></g><g><title>std::sys::pal::unix::stack_overflow::imp::get_stack (1 samples, 0.22%)</title><rect x="99.5585%" y="501" width="0.2208%" height="15" fill="rgb(233,39,42)" fg:x="451" fg:w="1"/><text x="99.8085%" y="511.50"></text></g><g><title>__mmap (1 samples, 0.22%)</title><rect x="99.5585%" y="485" width="0.2208%" height="15" fill="rgb(238,110,33)" fg:x="451" fg:w="1"/><text x="99.8085%" y="495.50"></text></g><g><title>all (453 samples, 100%)</title><rect x="0.0000%" y="565" width="100.0000%" height="15" fill="rgb(233,195,10)" fg:x="0" fg:w="453"/><text x="0.2500%" y="575.50"></text></g><g><title>thread_start (97 samples, 21.41%)</title><rect x="78.5872%" y="549" width="21.4128%" height="15" fill="rgb(254,105,3)" fg:x="356" fg:w="97"/><text x="78.8372%" y="559.50">thread_start</text></g><g><title>_pthread_start (97 samples, 21.41%)</title><rect x="78.5872%" y="533" width="21.4128%" height="15" fill="rgb(221,225,9)" fg:x="356" fg:w="97"/><text x="78.8372%" y="543.50">_pthread_start</text></g><g><title>std::sys::pal::unix::stack_overflow::Handler::new (2 samples, 0.44%)</title><rect x="99.5585%" y="517" width="0.4415%" height="15" fill="rgb(224,227,45)" fg:x="451" fg:w="2"/><text x="99.8085%" y="527.50"></text></g><g><title>std::sys::pal::unix::stack_overflow::imp::make_handler (1 samples, 0.22%)</title><rect x="99.7792%" y="501" width="0.2208%" height="15" fill="rgb(229,198,43)" fg:x="452" fg:w="1"/><text x="100.0292%" y="511.50"></text></g><g><title>std::sys::pal::unix::sync::mutex::Mutex::lock (1 samples, 0.22%)</title><rect x="99.7792%" y="485" width="0.2208%" height="15" fill="rgb(206,209,35)" fg:x="452" fg:w="1"/><text x="100.0292%" y="495.50"></text></g><g><title>_pthread_mutex_firstfit_lock_slow (1 samples, 0.22%)</title><rect x="99.7792%" y="469" width="0.2208%" height="15" fill="rgb(245,195,53)" fg:x="452" fg:w="1"/><text x="100.0292%" y="479.50"></text></g><g><title>__psynch_mutexwait (1 samples, 0.22%)</title><rect x="99.7792%" y="453" width="0.2208%" height="15" fill="rgb(240,92,26)" fg:x="452" fg:w="1"/><text x="100.0292%" y="463.50"></text></g></svg></svg>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment