datafusion-sqlparse/sqlparser_bench/img/flamegraph.svg

491 lines
No EOL
1.5 MiB

<?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="1686" onload="init(evt)" viewBox="0 0 1200 1686" 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="1686" 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="1669.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="1669.00"> </text><svg id="frames" x="10" width="1180" total_samples="47617"><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;plotters_svg::svg::SVGBackend&gt; (5 samples, 0.01%)</title><rect x="0.0105%" y="1445" width="0.0105%" height="15" fill="rgb(227,0,7)" fg:x="5" fg:w="5"/><text x="0.2605%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;plotters_svg::svg::SVGBackend as core::ops::drop::Drop&gt;::drop (5 samples, 0.01%)</title><rect x="0.0105%" y="1429" width="0.0105%" height="15" fill="rgb(217,0,24)" fg:x="5" fg:w="5"/><text x="0.2605%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::kde::sweep_and_estimate (13 samples, 0.03%)</title><rect x="0.0210%" y="1445" width="0.0273%" height="15" fill="rgb(221,193,54)" fg:x="10" fg:w="13"/><text x="0.2710%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;criterion::plot::plotters_backend::PlottersBackend as criterion::plot::Plotter&gt;::abs_distributions (26 samples, 0.05%)</title><rect x="0.0063%" y="1477" width="0.0546%" height="15" fill="rgb(248,212,6)" fg:x="3" fg:w="26"/><text x="0.2563%" y="1487.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::plot::plotters_backend::distributions::abs_distributions (25 samples, 0.05%)</title><rect x="0.0084%" y="1461" width="0.0525%" height="15" fill="rgb(208,68,35)" fg:x="4" fg:w="25"/><text x="0.2584%" y="1471.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;criterion::plot::plotters_backend::PlottersBackend as criterion::plot::Plotter&gt;::pdf (5 samples, 0.01%)</title><rect x="0.0609%" y="1477" width="0.0105%" height="15" fill="rgb(232,128,0)" fg:x="29" fg:w="5"/><text x="0.3109%" y="1487.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;criterion::html::Html as criterion::report::Report&gt;::measurement_complete (38 samples, 0.08%)</title><rect x="0.0063%" y="1493" width="0.0798%" height="15" fill="rgb(207,160,47)" fg:x="3" fg:w="38"/><text x="0.2563%" y="1503.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::estimate::build_estimates (6 samples, 0.01%)</title><rect x="0.0987%" y="1477" width="0.0126%" height="15" fill="rgb(228,23,34)" fg:x="47" fg:w="6"/><text x="0.3487%" y="1487.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates (7 samples, 0.01%)</title><rect x="0.0987%" y="1493" width="0.0147%" height="15" fill="rgb(218,30,26)" fg:x="47" fg:w="7"/><text x="0.3487%" y="1503.50"></text></g><g><title>libsystem_malloc.dylib`_free (6 samples, 0.01%)</title><rect x="0.1176%" y="1461" width="0.0126%" height="15" fill="rgb(220,122,19)" fg:x="56" fg:w="6"/><text x="0.3676%" y="1471.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="0.1302%" y="1461" width="0.0126%" height="15" fill="rgb(250,228,42)" fg:x="62" fg:w="6"/><text x="0.3802%" y="1471.50"></text></g><g><title>libsystem_malloc.dylib`_free (38 samples, 0.08%)</title><rect x="0.1701%" y="1445" width="0.0798%" height="15" fill="rgb(240,193,28)" fg:x="81" fg:w="38"/><text x="0.4201%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="0.2499%" y="1445" width="0.0105%" height="15" fill="rgb(216,20,37)" fg:x="119" fg:w="5"/><text x="0.4999%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (32 samples, 0.07%)</title><rect x="0.2604%" y="1445" width="0.0672%" height="15" fill="rgb(206,188,39)" fg:x="124" fg:w="32"/><text x="0.5104%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (13 samples, 0.03%)</title><rect x="0.3276%" y="1445" width="0.0273%" height="15" fill="rgb(217,207,13)" fg:x="156" fg:w="13"/><text x="0.5776%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (12 samples, 0.03%)</title><rect x="0.4032%" y="1429" width="0.0252%" height="15" fill="rgb(231,73,38)" fg:x="192" fg:w="12"/><text x="0.6532%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr (5 samples, 0.01%)</title><rect x="0.4368%" y="1429" width="0.0105%" height="15" fill="rgb(225,20,46)" fg:x="208" fg:w="5"/><text x="0.6868%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`free_small (55 samples, 0.12%)</title><rect x="0.3549%" y="1445" width="0.1155%" height="15" fill="rgb(210,31,41)" fg:x="169" fg:w="55"/><text x="0.6049%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (11 samples, 0.02%)</title><rect x="0.4473%" y="1429" width="0.0231%" height="15" fill="rgb(221,200,47)" fg:x="213" fg:w="11"/><text x="0.6973%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (17 samples, 0.04%)</title><rect x="0.4956%" y="1333" width="0.0357%" height="15" fill="rgb(226,26,5)" fg:x="236" fg:w="17"/><text x="0.7456%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::OrderByExpr as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="0.5313%" y="1333" width="0.0168%" height="15" fill="rgb(249,33,26)" fg:x="253" fg:w="8"/><text x="0.7813%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="0.5481%" y="1333" width="0.0168%" height="15" fill="rgb(235,183,28)" fg:x="261" fg:w="8"/><text x="0.7981%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (10 samples, 0.02%)</title><rect x="0.5649%" y="1333" width="0.0210%" height="15" fill="rgb(221,5,38)" fg:x="269" fg:w="10"/><text x="0.8149%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (25 samples, 0.05%)</title><rect x="0.7014%" y="1317" width="0.0525%" height="15" fill="rgb(247,18,42)" fg:x="334" fg:w="25"/><text x="0.9514%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (21 samples, 0.04%)</title><rect x="0.7539%" y="1317" width="0.0441%" height="15" fill="rgb(241,131,45)" fg:x="359" fg:w="21"/><text x="1.0039%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (56 samples, 0.12%)</title><rect x="0.8568%" y="1301" width="0.1176%" height="15" fill="rgb(249,31,29)" fg:x="408" fg:w="56"/><text x="1.1068%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (16 samples, 0.03%)</title><rect x="0.9744%" y="1301" width="0.0336%" height="15" fill="rgb(225,111,53)" fg:x="464" fg:w="16"/><text x="1.2244%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt (10 samples, 0.02%)</title><rect x="1.0080%" y="1301" width="0.0210%" height="15" fill="rgb(238,160,17)" fg:x="480" fg:w="10"/><text x="1.2580%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (10 samples, 0.02%)</title><rect x="1.0290%" y="1301" width="0.0210%" height="15" fill="rgb(214,148,48)" fg:x="490" fg:w="10"/><text x="1.2790%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (6 samples, 0.01%)</title><rect x="1.0500%" y="1301" width="0.0126%" height="15" fill="rgb(232,36,49)" fg:x="500" fg:w="6"/><text x="1.3000%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (7 samples, 0.01%)</title><rect x="1.1571%" y="1269" width="0.0147%" height="15" fill="rgb(209,103,24)" fg:x="551" fg:w="7"/><text x="1.4071%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (5 samples, 0.01%)</title><rect x="1.1719%" y="1269" width="0.0105%" height="15" fill="rgb(229,88,8)" fg:x="558" fg:w="5"/><text x="1.4219%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (11 samples, 0.02%)</title><rect x="1.1824%" y="1269" width="0.0231%" height="15" fill="rgb(213,181,19)" fg:x="563" fg:w="11"/><text x="1.4324%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (53 samples, 0.11%)</title><rect x="1.2916%" y="1253" width="0.1113%" height="15" fill="rgb(254,191,54)" fg:x="615" fg:w="53"/><text x="1.5416%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (13 samples, 0.03%)</title><rect x="1.4029%" y="1253" width="0.0273%" height="15" fill="rgb(241,83,37)" fg:x="668" fg:w="13"/><text x="1.6529%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (17 samples, 0.04%)</title><rect x="1.4302%" y="1253" width="0.0357%" height="15" fill="rgb(233,36,39)" fg:x="681" fg:w="17"/><text x="1.6802%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (164 samples, 0.34%)</title><rect x="1.1298%" y="1285" width="0.3444%" height="15" fill="rgb(226,3,54)" fg:x="538" fg:w="164"/><text x="1.3798%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (128 samples, 0.27%)</title><rect x="1.2055%" y="1269" width="0.2688%" height="15" fill="rgb(245,192,40)" fg:x="574" fg:w="128"/><text x="1.4555%" y="1279.50"></text></g><g><title>libdyld.dylib`tlv_get_addr (15 samples, 0.03%)</title><rect x="1.4743%" y="1269" width="0.0315%" height="15" fill="rgb(238,167,29)" fg:x="702" fg:w="15"/><text x="1.7243%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`psm::stack_pointer (8 samples, 0.02%)</title><rect x="1.5058%" y="1269" width="0.0168%" height="15" fill="rgb(232,182,51)" fg:x="717" fg:w="8"/><text x="1.7558%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rust_psm_stack_pointer (18 samples, 0.04%)</title><rect x="1.5226%" y="1269" width="0.0378%" height="15" fill="rgb(231,60,39)" fg:x="725" fg:w="18"/><text x="1.7726%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt (58 samples, 0.12%)</title><rect x="1.4743%" y="1285" width="0.1218%" height="15" fill="rgb(208,69,12)" fg:x="702" fg:w="58"/><text x="1.7243%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (17 samples, 0.04%)</title><rect x="1.5604%" y="1269" width="0.0357%" height="15" fill="rgb(235,93,37)" fg:x="743" fg:w="17"/><text x="1.8104%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_fmt (5 samples, 0.01%)</title><rect x="1.5961%" y="1285" width="0.0105%" height="15" fill="rgb(213,116,39)" fg:x="760" fg:w="5"/><text x="1.8461%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (19 samples, 0.04%)</title><rect x="1.6066%" y="1285" width="0.0399%" height="15" fill="rgb(222,207,29)" fg:x="765" fg:w="19"/><text x="1.8566%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_minimum_stack_size (14 samples, 0.03%)</title><rect x="1.6465%" y="1285" width="0.0294%" height="15" fill="rgb(206,96,30)" fg:x="784" fg:w="14"/><text x="1.8965%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_stack_allocation_size (7 samples, 0.01%)</title><rect x="1.6759%" y="1285" width="0.0147%" height="15" fill="rgb(218,138,4)" fg:x="798" fg:w="7"/><text x="1.9259%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::OrderByExpr as core::fmt::Display&gt;::fmt (435 samples, 0.91%)</title><rect x="0.7980%" y="1317" width="0.9135%" height="15" fill="rgb(250,191,14)" fg:x="380" fg:w="435"/><text x="1.0480%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (309 samples, 0.65%)</title><rect x="1.0626%" y="1301" width="0.6489%" height="15" fill="rgb(239,60,40)" fg:x="506" fg:w="309"/><text x="1.3126%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (10 samples, 0.02%)</title><rect x="1.6906%" y="1285" width="0.0210%" height="15" fill="rgb(206,27,48)" fg:x="805" fg:w="10"/><text x="1.9406%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (7 samples, 0.01%)</title><rect x="1.7116%" y="1317" width="0.0147%" height="15" fill="rgb(225,35,8)" fg:x="815" fg:w="7"/><text x="1.9616%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (14 samples, 0.03%)</title><rect x="1.7263%" y="1317" width="0.0294%" height="15" fill="rgb(250,213,24)" fg:x="822" fg:w="14"/><text x="1.9763%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (629 samples, 1.32%)</title><rect x="0.4788%" y="1349" width="1.3210%" height="15" fill="rgb(247,123,22)" fg:x="228" fg:w="629"/><text x="0.7288%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (578 samples, 1.21%)</title><rect x="0.5859%" y="1333" width="1.2139%" height="15" fill="rgb(231,138,38)" fg:x="279" fg:w="578"/><text x="0.8359%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (21 samples, 0.04%)</title><rect x="1.7557%" y="1317" width="0.0441%" height="15" fill="rgb(231,145,46)" fg:x="836" fg:w="21"/><text x="2.0057%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::OrderBy as core::fmt::Display&gt;::fmt (661 samples, 1.39%)</title><rect x="0.4788%" y="1381" width="1.3882%" height="15" fill="rgb(251,118,11)" fg:x="228" fg:w="661"/><text x="0.7288%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (661 samples, 1.39%)</title><rect x="0.4788%" y="1365" width="1.3882%" height="15" fill="rgb(217,147,25)" fg:x="228" fg:w="661"/><text x="0.7288%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (32 samples, 0.07%)</title><rect x="1.7998%" y="1349" width="0.0672%" height="15" fill="rgb(247,81,37)" fg:x="857" fg:w="32"/><text x="2.0498%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (20 samples, 0.04%)</title><rect x="1.8964%" y="1301" width="0.0420%" height="15" fill="rgb(209,12,38)" fg:x="903" fg:w="20"/><text x="2.1464%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (6 samples, 0.01%)</title><rect x="1.9384%" y="1301" width="0.0126%" height="15" fill="rgb(227,1,9)" fg:x="923" fg:w="6"/><text x="2.1884%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::SelectItem as core::fmt::Display&gt;::fmt (9 samples, 0.02%)</title><rect x="1.9510%" y="1301" width="0.0189%" height="15" fill="rgb(248,47,43)" fg:x="929" fg:w="9"/><text x="2.2010%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="1.9699%" y="1301" width="0.0105%" height="15" fill="rgb(221,10,30)" fg:x="938" fg:w="5"/><text x="2.2199%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (14 samples, 0.03%)</title><rect x="1.9804%" y="1301" width="0.0294%" height="15" fill="rgb(210,229,1)" fg:x="943" fg:w="14"/><text x="2.2304%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (20 samples, 0.04%)</title><rect x="2.1148%" y="1285" width="0.0420%" height="15" fill="rgb(222,148,37)" fg:x="1007" fg:w="20"/><text x="2.3648%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (9 samples, 0.02%)</title><rect x="2.1736%" y="1269" width="0.0189%" height="15" fill="rgb(234,67,33)" fg:x="1035" fg:w="9"/><text x="2.4236%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::Join as core::fmt::Display&gt;::fmt (12 samples, 0.03%)</title><rect x="2.1925%" y="1269" width="0.0252%" height="15" fill="rgb(247,98,35)" fg:x="1044" fg:w="12"/><text x="2.4425%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="2.3101%" y="1237" width="0.0105%" height="15" fill="rgb(247,138,52)" fg:x="1100" fg:w="5"/><text x="2.5601%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&lt;sqlparser::ast::query::Join as core::fmt::Display&gt;::fmt::suffix::Suffix as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="2.3206%" y="1237" width="0.0168%" height="15" fill="rgb(213,79,30)" fg:x="1105" fg:w="8"/><text x="2.5706%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (39 samples, 0.08%)</title><rect x="2.3374%" y="1237" width="0.0819%" height="15" fill="rgb(246,177,23)" fg:x="1113" fg:w="39"/><text x="2.5874%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::TableFactor as core::fmt::Display&gt;::fmt (20 samples, 0.04%)</title><rect x="2.4193%" y="1237" width="0.0420%" height="15" fill="rgb(230,62,27)" fg:x="1152" fg:w="20"/><text x="2.6693%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="2.4613%" y="1237" width="0.0105%" height="15" fill="rgb(216,154,8)" fg:x="1172" fg:w="5"/><text x="2.7113%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (7 samples, 0.01%)</title><rect x="2.4718%" y="1237" width="0.0147%" height="15" fill="rgb(244,35,45)" fg:x="1177" fg:w="7"/><text x="2.7218%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (77 samples, 0.16%)</title><rect x="2.6839%" y="1221" width="0.1617%" height="15" fill="rgb(251,115,12)" fg:x="1278" fg:w="77"/><text x="2.9339%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&lt;sqlparser::ast::query::Join as core::fmt::Display&gt;::fmt::suffix::Suffix as core::fmt::Display&gt;::fmt (26 samples, 0.05%)</title><rect x="2.8456%" y="1221" width="0.0546%" height="15" fill="rgb(240,54,50)" fg:x="1355" fg:w="26"/><text x="3.0956%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (32 samples, 0.07%)</title><rect x="2.9002%" y="1221" width="0.0672%" height="15" fill="rgb(233,84,52)" fg:x="1381" fg:w="32"/><text x="3.1502%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (10 samples, 0.02%)</title><rect x="3.0976%" y="1205" width="0.0210%" height="15" fill="rgb(207,117,47)" fg:x="1475" fg:w="10"/><text x="3.3476%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (14 samples, 0.03%)</title><rect x="3.2215%" y="1173" width="0.0294%" height="15" fill="rgb(249,43,39)" fg:x="1534" fg:w="14"/><text x="3.4715%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (6 samples, 0.01%)</title><rect x="3.3685%" y="1141" width="0.0126%" height="15" fill="rgb(209,38,44)" fg:x="1604" fg:w="6"/><text x="3.6185%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (14 samples, 0.03%)</title><rect x="3.3811%" y="1141" width="0.0294%" height="15" fill="rgb(236,212,23)" fg:x="1610" fg:w="14"/><text x="3.6311%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="3.4189%" y="1141" width="0.0105%" height="15" fill="rgb(242,79,21)" fg:x="1628" fg:w="5"/><text x="3.6689%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (23 samples, 0.05%)</title><rect x="3.4294%" y="1141" width="0.0483%" height="15" fill="rgb(211,96,35)" fg:x="1633" fg:w="23"/><text x="3.6794%" y="1151.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (39 samples, 0.08%)</title><rect x="3.6332%" y="1125" width="0.0819%" height="15" fill="rgb(253,215,40)" fg:x="1730" fg:w="39"/><text x="3.8832%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (22 samples, 0.05%)</title><rect x="3.7151%" y="1125" width="0.0462%" height="15" fill="rgb(211,81,21)" fg:x="1769" fg:w="22"/><text x="3.9651%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (27 samples, 0.06%)</title><rect x="3.7613%" y="1125" width="0.0567%" height="15" fill="rgb(208,190,38)" fg:x="1791" fg:w="27"/><text x="4.0113%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (6 samples, 0.01%)</title><rect x="3.8180%" y="1125" width="0.0126%" height="15" fill="rgb(235,213,38)" fg:x="1818" fg:w="6"/><text x="4.0680%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (5 samples, 0.01%)</title><rect x="3.8306%" y="1125" width="0.0105%" height="15" fill="rgb(237,122,38)" fg:x="1824" fg:w="5"/><text x="4.0806%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (16 samples, 0.03%)</title><rect x="3.8411%" y="1125" width="0.0336%" height="15" fill="rgb(244,218,35)" fg:x="1829" fg:w="16"/><text x="4.0911%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (267 samples, 0.56%)</title><rect x="3.3202%" y="1157" width="0.5607%" height="15" fill="rgb(240,68,47)" fg:x="1581" fg:w="267"/><text x="3.5702%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (192 samples, 0.40%)</title><rect x="3.4777%" y="1141" width="0.4032%" height="15" fill="rgb(210,16,53)" fg:x="1656" fg:w="192"/><text x="3.7277%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (347 samples, 0.73%)</title><rect x="3.1963%" y="1189" width="0.7287%" height="15" fill="rgb(235,124,12)" fg:x="1522" fg:w="347"/><text x="3.4463%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (321 samples, 0.67%)</title><rect x="3.2509%" y="1173" width="0.6741%" height="15" fill="rgb(224,169,11)" fg:x="1548" fg:w="321"/><text x="3.5009%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (21 samples, 0.04%)</title><rect x="3.8810%" y="1157" width="0.0441%" height="15" fill="rgb(250,166,2)" fg:x="1848" fg:w="21"/><text x="4.1310%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::TableFactor as core::fmt::Display&gt;::fmt (473 samples, 0.99%)</title><rect x="2.9674%" y="1221" width="0.9933%" height="15" fill="rgb(242,216,29)" fg:x="1413" fg:w="473"/><text x="3.2174%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (401 samples, 0.84%)</title><rect x="3.1186%" y="1205" width="0.8421%" height="15" fill="rgb(230,116,27)" fg:x="1485" fg:w="401"/><text x="3.3686%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (17 samples, 0.04%)</title><rect x="3.9251%" y="1189" width="0.0357%" height="15" fill="rgb(228,99,48)" fg:x="1869" fg:w="17"/><text x="4.1751%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (6 samples, 0.01%)</title><rect x="3.9608%" y="1221" width="0.0126%" height="15" fill="rgb(253,11,6)" fg:x="1886" fg:w="6"/><text x="4.2108%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (8 samples, 0.02%)</title><rect x="3.9734%" y="1221" width="0.0168%" height="15" fill="rgb(247,143,39)" fg:x="1892" fg:w="8"/><text x="4.2234%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (20 samples, 0.04%)</title><rect x="3.9902%" y="1221" width="0.0420%" height="15" fill="rgb(236,97,10)" fg:x="1900" fg:w="20"/><text x="4.2402%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::Join as core::fmt::Display&gt;::fmt (859 samples, 1.80%)</title><rect x="2.2639%" y="1253" width="1.8040%" height="15" fill="rgb(233,208,19)" fg:x="1078" fg:w="859"/><text x="2.5139%" y="1263.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (753 samples, 1.58%)</title><rect x="2.4865%" y="1237" width="1.5814%" height="15" fill="rgb(216,164,2)" fg:x="1184" fg:w="753"/><text x="2.7365%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (17 samples, 0.04%)</title><rect x="4.0322%" y="1221" width="0.0357%" height="15" fill="rgb(220,129,5)" fg:x="1920" fg:w="17"/><text x="4.2822%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (931 samples, 1.96%)</title><rect x="2.1568%" y="1285" width="1.9552%" height="15" fill="rgb(242,17,10)" fg:x="1027" fg:w="931"/><text x="2.4068%" y="1295.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (902 samples, 1.89%)</title><rect x="2.2177%" y="1269" width="1.8943%" height="15" fill="rgb(242,107,0)" fg:x="1056" fg:w="902"/><text x="2.4677%" y="1279.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (21 samples, 0.04%)</title><rect x="4.0679%" y="1253" width="0.0441%" height="15" fill="rgb(251,28,31)" fg:x="1937" fg:w="21"/><text x="4.3179%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (15 samples, 0.03%)</title><rect x="4.1120%" y="1285" width="0.0315%" height="15" fill="rgb(233,223,10)" fg:x="1958" fg:w="15"/><text x="4.3620%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (14 samples, 0.03%)</title><rect x="4.1792%" y="1269" width="0.0294%" height="15" fill="rgb(215,21,27)" fg:x="1990" fg:w="14"/><text x="4.4292%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (11 samples, 0.02%)</title><rect x="4.2086%" y="1269" width="0.0231%" height="15" fill="rgb(232,23,21)" fg:x="2004" fg:w="11"/><text x="4.4586%" y="1279.50"></text></g><g><title>libdyld.dylib`tlv_get_addr (14 samples, 0.03%)</title><rect x="4.2968%" y="1237" width="0.0294%" height="15" fill="rgb(244,5,23)" fg:x="2046" fg:w="14"/><text x="4.5468%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`psm::stack_pointer (6 samples, 0.01%)</title><rect x="4.3262%" y="1237" width="0.0126%" height="15" fill="rgb(226,81,46)" fg:x="2060" fg:w="6"/><text x="4.5762%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rust_psm_stack_pointer (12 samples, 0.03%)</title><rect x="4.3388%" y="1237" width="0.0252%" height="15" fill="rgb(247,70,30)" fg:x="2066" fg:w="12"/><text x="4.5888%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (53 samples, 0.11%)</title><rect x="4.2884%" y="1253" width="0.1113%" height="15" fill="rgb(212,68,19)" fg:x="2042" fg:w="53"/><text x="4.5384%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (17 samples, 0.04%)</title><rect x="4.3640%" y="1237" width="0.0357%" height="15" fill="rgb(240,187,13)" fg:x="2078" fg:w="17"/><text x="4.6140%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (14 samples, 0.03%)</title><rect x="4.4249%" y="1237" width="0.0294%" height="15" fill="rgb(223,113,26)" fg:x="2107" fg:w="14"/><text x="4.6749%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Function as core::fmt::Display&gt;::fmt (24 samples, 0.05%)</title><rect x="4.4543%" y="1237" width="0.0504%" height="15" fill="rgb(206,192,2)" fg:x="2121" fg:w="24"/><text x="4.7043%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArguments as core::fmt::Display&gt;::fmt (41 samples, 0.09%)</title><rect x="4.6349%" y="1205" width="0.0861%" height="15" fill="rgb(241,108,4)" fg:x="2207" fg:w="41"/><text x="4.8849%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::ObjectName as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="4.7210%" y="1205" width="0.0168%" height="15" fill="rgb(247,173,49)" fg:x="2248" fg:w="8"/><text x="4.9710%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (28 samples, 0.06%)</title><rect x="4.8953%" y="1173" width="0.0588%" height="15" fill="rgb(224,114,35)" fg:x="2331" fg:w="28"/><text x="5.1453%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArgumentList as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="4.9541%" y="1173" width="0.0168%" height="15" fill="rgb(245,159,27)" fg:x="2359" fg:w="8"/><text x="5.2041%" y="1183.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (35 samples, 0.07%)</title><rect x="5.1263%" y="1157" width="0.0735%" height="15" fill="rgb(245,172,44)" fg:x="2441" fg:w="35"/><text x="5.3763%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (26 samples, 0.05%)</title><rect x="5.1998%" y="1157" width="0.0546%" height="15" fill="rgb(236,23,11)" fg:x="2476" fg:w="26"/><text x="5.4498%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (18 samples, 0.04%)</title><rect x="5.2859%" y="1141" width="0.0378%" height="15" fill="rgb(205,117,38)" fg:x="2517" fg:w="18"/><text x="5.5359%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (13 samples, 0.03%)</title><rect x="5.4455%" y="1109" width="0.0273%" height="15" fill="rgb(237,72,25)" fg:x="2593" fg:w="13"/><text x="5.6955%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (7 samples, 0.01%)</title><rect x="5.4728%" y="1109" width="0.0147%" height="15" fill="rgb(244,70,9)" fg:x="2606" fg:w="7"/><text x="5.7228%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="5.4917%" y="1109" width="0.0168%" height="15" fill="rgb(217,125,39)" fg:x="2615" fg:w="8"/><text x="5.7417%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (9 samples, 0.02%)</title><rect x="5.5085%" y="1109" width="0.0189%" height="15" fill="rgb(235,36,10)" fg:x="2623" fg:w="9"/><text x="5.7585%" y="1119.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (15 samples, 0.03%)</title><rect x="5.6450%" y="1093" width="0.0315%" height="15" fill="rgb(251,123,47)" fg:x="2688" fg:w="15"/><text x="5.8950%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (12 samples, 0.03%)</title><rect x="5.6765%" y="1093" width="0.0252%" height="15" fill="rgb(221,13,13)" fg:x="2703" fg:w="12"/><text x="5.9265%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (9 samples, 0.02%)</title><rect x="5.7269%" y="1077" width="0.0189%" height="15" fill="rgb(238,131,9)" fg:x="2727" fg:w="9"/><text x="5.9769%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArgExpr as core::fmt::Display&gt;::fmt (7 samples, 0.01%)</title><rect x="5.7458%" y="1077" width="0.0147%" height="15" fill="rgb(211,50,8)" fg:x="2736" fg:w="7"/><text x="5.9958%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="5.8866%" y="1045" width="0.0168%" height="15" fill="rgb(245,182,24)" fg:x="2803" fg:w="8"/><text x="6.1366%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (10 samples, 0.02%)</title><rect x="5.9034%" y="1045" width="0.0210%" height="15" fill="rgb(242,14,37)" fg:x="2811" fg:w="10"/><text x="6.1534%" y="1055.50"></text></g><g><title>libdyld.dylib`tlv_get_addr (13 samples, 0.03%)</title><rect x="6.0441%" y="1013" width="0.0273%" height="15" fill="rgb(246,228,12)" fg:x="2878" fg:w="13"/><text x="6.2941%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`psm::stack_pointer (9 samples, 0.02%)</title><rect x="6.0714%" y="1013" width="0.0189%" height="15" fill="rgb(213,55,15)" fg:x="2891" fg:w="9"/><text x="6.3214%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rust_psm_stack_pointer (19 samples, 0.04%)</title><rect x="6.0903%" y="1013" width="0.0399%" height="15" fill="rgb(209,9,3)" fg:x="2900" fg:w="19"/><text x="6.3403%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (63 samples, 0.13%)</title><rect x="6.0357%" y="1029" width="0.1323%" height="15" fill="rgb(230,59,30)" fg:x="2874" fg:w="63"/><text x="6.2857%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (18 samples, 0.04%)</title><rect x="6.1302%" y="1013" width="0.0378%" height="15" fill="rgb(209,121,21)" fg:x="2919" fg:w="18"/><text x="6.3802%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="6.2268%" y="1013" width="0.0168%" height="15" fill="rgb(220,109,13)" fg:x="2965" fg:w="8"/><text x="6.4768%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (7 samples, 0.01%)</title><rect x="6.2436%" y="1013" width="0.0147%" height="15" fill="rgb(232,18,1)" fg:x="2973" fg:w="7"/><text x="6.4936%" y="1023.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (65 samples, 0.14%)</title><rect x="6.3822%" y="997" width="0.1365%" height="15" fill="rgb(215,41,42)" fg:x="3039" fg:w="65"/><text x="6.6322%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (16 samples, 0.03%)</title><rect x="6.5187%" y="997" width="0.0336%" height="15" fill="rgb(224,123,36)" fg:x="3104" fg:w="16"/><text x="6.7687%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (34 samples, 0.07%)</title><rect x="6.5523%" y="997" width="0.0714%" height="15" fill="rgb(240,125,3)" fg:x="3120" fg:w="34"/><text x="6.8023%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (231 samples, 0.49%)</title><rect x="6.1680%" y="1029" width="0.4851%" height="15" fill="rgb(205,98,50)" fg:x="2937" fg:w="231"/><text x="6.4180%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (188 samples, 0.39%)</title><rect x="6.2583%" y="1013" width="0.3948%" height="15" fill="rgb(205,185,37)" fg:x="2980" fg:w="188"/><text x="6.5083%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_str (11 samples, 0.02%)</title><rect x="6.6300%" y="997" width="0.0231%" height="15" fill="rgb(238,207,15)" fg:x="3157" fg:w="11"/><text x="6.8800%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_fmt (7 samples, 0.01%)</title><rect x="6.6531%" y="1029" width="0.0147%" height="15" fill="rgb(213,199,42)" fg:x="3168" fg:w="7"/><text x="6.9031%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (15 samples, 0.03%)</title><rect x="6.6678%" y="1029" width="0.0315%" height="15" fill="rgb(235,201,11)" fg:x="3175" fg:w="15"/><text x="6.9178%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_minimum_stack_size (19 samples, 0.04%)</title><rect x="6.6993%" y="1029" width="0.0399%" height="15" fill="rgb(207,46,11)" fg:x="3190" fg:w="19"/><text x="6.9493%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_stack_allocation_size (10 samples, 0.02%)</title><rect x="6.7392%" y="1029" width="0.0210%" height="15" fill="rgb(241,35,35)" fg:x="3209" fg:w="10"/><text x="6.9892%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArgExpr as core::fmt::Display&gt;::fmt (450 samples, 0.95%)</title><rect x="5.8362%" y="1061" width="0.9450%" height="15" fill="rgb(243,32,47)" fg:x="2779" fg:w="450"/><text x="6.0862%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (408 samples, 0.86%)</title><rect x="5.9244%" y="1045" width="0.8568%" height="15" fill="rgb(247,202,23)" fg:x="2821" fg:w="408"/><text x="6.1744%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (10 samples, 0.02%)</title><rect x="6.7602%" y="1029" width="0.0210%" height="15" fill="rgb(219,102,11)" fg:x="3219" fg:w="10"/><text x="7.0102%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArg as core::fmt::Display&gt;::fmt (528 samples, 1.11%)</title><rect x="5.7017%" y="1093" width="1.1088%" height="15" fill="rgb(243,110,44)" fg:x="2715" fg:w="528"/><text x="5.9517%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (500 samples, 1.05%)</title><rect x="5.7605%" y="1077" width="1.0500%" height="15" fill="rgb(222,74,54)" fg:x="2743" fg:w="500"/><text x="6.0105%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (14 samples, 0.03%)</title><rect x="6.7812%" y="1061" width="0.0294%" height="15" fill="rgb(216,99,12)" fg:x="3229" fg:w="14"/><text x="7.0312%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="6.8106%" y="1093" width="0.0105%" height="15" fill="rgb(226,22,26)" fg:x="3243" fg:w="5"/><text x="7.0606%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (8 samples, 0.02%)</title><rect x="6.8232%" y="1093" width="0.0168%" height="15" fill="rgb(217,163,10)" fg:x="3249" fg:w="8"/><text x="7.0732%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (711 samples, 1.49%)</title><rect x="5.3888%" y="1125" width="1.4932%" height="15" fill="rgb(213,25,53)" fg:x="2566" fg:w="711"/><text x="5.6388%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (645 samples, 1.35%)</title><rect x="5.5274%" y="1109" width="1.3546%" height="15" fill="rgb(252,105,26)" fg:x="2632" fg:w="645"/><text x="5.7774%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (20 samples, 0.04%)</title><rect x="6.8400%" y="1093" width="0.0420%" height="15" fill="rgb(220,39,43)" fg:x="3257" fg:w="20"/><text x="7.0900%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArgumentList as core::fmt::Display&gt;::fmt (805 samples, 1.69%)</title><rect x="5.2544%" y="1157" width="1.6906%" height="15" fill="rgb(229,68,48)" fg:x="2502" fg:w="805"/><text x="5.5044%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (772 samples, 1.62%)</title><rect x="5.3237%" y="1141" width="1.6213%" height="15" fill="rgb(252,8,32)" fg:x="2535" fg:w="772"/><text x="5.5737%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (30 samples, 0.06%)</title><rect x="6.8820%" y="1125" width="0.0630%" height="15" fill="rgb(223,20,43)" fg:x="3277" fg:w="30"/><text x="7.1320%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (9 samples, 0.02%)</title><rect x="6.9450%" y="1157" width="0.0189%" height="15" fill="rgb(229,81,49)" fg:x="3307" fg:w="9"/><text x="7.1950%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArguments as core::fmt::Display&gt;::fmt (1,024 samples, 2.15%)</title><rect x="4.8617%" y="1189" width="2.1505%" height="15" fill="rgb(236,28,36)" fg:x="2315" fg:w="1024"/><text x="5.1117%" y="1199.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (972 samples, 2.04%)</title><rect x="4.9709%" y="1173" width="2.0413%" height="15" fill="rgb(249,185,26)" fg:x="2367" fg:w="972"/><text x="5.2209%" y="1183.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (23 samples, 0.05%)</title><rect x="6.9639%" y="1157" width="0.0483%" height="15" fill="rgb(249,174,33)" fg:x="3316" fg:w="23"/><text x="7.2139%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (19 samples, 0.04%)</title><rect x="7.0458%" y="1173" width="0.0399%" height="15" fill="rgb(233,201,37)" fg:x="3355" fg:w="19"/><text x="7.2958%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (13 samples, 0.03%)</title><rect x="7.2201%" y="1141" width="0.0273%" height="15" fill="rgb(221,78,26)" fg:x="3438" fg:w="13"/><text x="7.4701%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (37 samples, 0.08%)</title><rect x="7.2474%" y="1141" width="0.0777%" height="15" fill="rgb(250,127,30)" fg:x="3451" fg:w="37"/><text x="7.4974%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="7.3251%" y="1141" width="0.0168%" height="15" fill="rgb(230,49,44)" fg:x="3488" fg:w="8"/><text x="7.5751%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="7.3419%" y="1141" width="0.0105%" height="15" fill="rgb(229,67,23)" fg:x="3496" fg:w="5"/><text x="7.5919%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (18 samples, 0.04%)</title><rect x="7.3524%" y="1141" width="0.0378%" height="15" fill="rgb(249,83,47)" fg:x="3501" fg:w="18"/><text x="7.6024%" y="1151.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (50 samples, 0.11%)</title><rect x="7.5330%" y="1125" width="0.1050%" height="15" fill="rgb(215,43,3)" fg:x="3587" fg:w="50"/><text x="7.7830%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`szone_realloc (5 samples, 0.01%)</title><rect x="7.6821%" y="1045" width="0.0105%" height="15" fill="rgb(238,154,13)" fg:x="3658" fg:w="5"/><text x="7.9321%" y="1055.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (6 samples, 0.01%)</title><rect x="7.6821%" y="1061" width="0.0126%" height="15" fill="rgb(219,56,2)" fg:x="3658" fg:w="6"/><text x="7.9321%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (29 samples, 0.06%)</title><rect x="7.6380%" y="1125" width="0.0609%" height="15" fill="rgb(233,0,4)" fg:x="3637" fg:w="29"/><text x="7.8880%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (9 samples, 0.02%)</title><rect x="7.6800%" y="1109" width="0.0189%" height="15" fill="rgb(235,30,7)" fg:x="3657" fg:w="9"/><text x="7.9300%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (8 samples, 0.02%)</title><rect x="7.6821%" y="1093" width="0.0168%" height="15" fill="rgb(250,79,13)" fg:x="3658" fg:w="8"/><text x="7.9321%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (8 samples, 0.02%)</title><rect x="7.6821%" y="1077" width="0.0168%" height="15" fill="rgb(211,146,34)" fg:x="3658" fg:w="8"/><text x="7.9321%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (40 samples, 0.08%)</title><rect x="7.6989%" y="1125" width="0.0840%" height="15" fill="rgb(228,22,38)" fg:x="3666" fg:w="40"/><text x="7.9489%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="7.7829%" y="1125" width="0.0105%" height="15" fill="rgb(235,168,5)" fg:x="3706" fg:w="5"/><text x="8.0329%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (12 samples, 0.03%)</title><rect x="7.7934%" y="1125" width="0.0252%" height="15" fill="rgb(221,155,16)" fg:x="3711" fg:w="12"/><text x="8.0434%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (7 samples, 0.01%)</title><rect x="7.8186%" y="1125" width="0.0147%" height="15" fill="rgb(215,215,53)" fg:x="3723" fg:w="7"/><text x="8.0686%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (321 samples, 0.67%)</title><rect x="7.1760%" y="1157" width="0.6741%" height="15" fill="rgb(223,4,10)" fg:x="3417" fg:w="321"/><text x="7.4260%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (219 samples, 0.46%)</title><rect x="7.3902%" y="1141" width="0.4599%" height="15" fill="rgb(234,103,6)" fg:x="3519" fg:w="219"/><text x="7.6402%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_str (8 samples, 0.02%)</title><rect x="7.8333%" y="1125" width="0.0168%" height="15" fill="rgb(227,97,0)" fg:x="3730" fg:w="8"/><text x="8.0833%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::ObjectName as core::fmt::Display&gt;::fmt (425 samples, 0.89%)</title><rect x="7.0122%" y="1189" width="0.8925%" height="15" fill="rgb(234,150,53)" fg:x="3339" fg:w="425"/><text x="7.2622%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (390 samples, 0.82%)</title><rect x="7.0857%" y="1173" width="0.8190%" height="15" fill="rgb(228,201,54)" fg:x="3374" fg:w="390"/><text x="7.3357%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (26 samples, 0.05%)</title><rect x="7.8501%" y="1157" width="0.0546%" height="15" fill="rgb(222,22,37)" fg:x="3738" fg:w="26"/><text x="8.1001%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Function as core::fmt::Display&gt;::fmt (1,627 samples, 3.42%)</title><rect x="4.5782%" y="1221" width="3.4168%" height="15" fill="rgb(237,53,32)" fg:x="2180" fg:w="1627"/><text x="4.8282%" y="1231.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,551 samples, 3.26%)</title><rect x="4.7378%" y="1205" width="3.2572%" height="15" fill="rgb(233,25,53)" fg:x="2256" fg:w="1551"/><text x="4.9878%" y="1215.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (43 samples, 0.09%)</title><rect x="7.9047%" y="1189" width="0.0903%" height="15" fill="rgb(210,40,34)" fg:x="3764" fg:w="43"/><text x="8.1547%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,728 samples, 3.63%)</title><rect x="4.3997%" y="1253" width="3.6290%" height="15" fill="rgb(241,220,44)" fg:x="2095" fg:w="1728"/><text x="4.6497%" y="1263.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,678 samples, 3.52%)</title><rect x="4.5047%" y="1237" width="3.5240%" height="15" fill="rgb(235,28,35)" fg:x="2145" fg:w="1678"/><text x="4.7547%" y="1247.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (16 samples, 0.03%)</title><rect x="7.9950%" y="1221" width="0.0336%" height="15" fill="rgb(210,56,17)" fg:x="3807" fg:w="16"/><text x="8.2450%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (21 samples, 0.04%)</title><rect x="8.0349%" y="1253" width="0.0441%" height="15" fill="rgb(224,130,29)" fg:x="3826" fg:w="21"/><text x="8.2849%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_minimum_stack_size (17 samples, 0.04%)</title><rect x="8.0790%" y="1253" width="0.0357%" height="15" fill="rgb(235,212,8)" fg:x="3847" fg:w="17"/><text x="8.3290%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_stack_allocation_size (9 samples, 0.02%)</title><rect x="8.1147%" y="1253" width="0.0189%" height="15" fill="rgb(223,33,50)" fg:x="3864" fg:w="9"/><text x="8.3647%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::SelectItem as core::fmt::Display&gt;::fmt (1,910 samples, 4.01%)</title><rect x="4.1435%" y="1285" width="4.0112%" height="15" fill="rgb(219,149,13)" fg:x="1973" fg:w="1910"/><text x="4.3935%" y="1295.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,868 samples, 3.92%)</title><rect x="4.2317%" y="1269" width="3.9230%" height="15" fill="rgb(250,156,29)" fg:x="2015" fg:w="1868"/><text x="4.4817%" y="1279.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (10 samples, 0.02%)</title><rect x="8.1336%" y="1253" width="0.0210%" height="15" fill="rgb(216,193,19)" fg:x="3873" fg:w="10"/><text x="8.3836%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (7 samples, 0.01%)</title><rect x="8.1547%" y="1285" width="0.0147%" height="15" fill="rgb(216,135,14)" fg:x="3883" fg:w="7"/><text x="8.4047%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (14 samples, 0.03%)</title><rect x="8.1694%" y="1285" width="0.0294%" height="15" fill="rgb(241,47,5)" fg:x="3890" fg:w="14"/><text x="8.4194%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (3,038 samples, 6.38%)</title><rect x="1.8733%" y="1317" width="6.3801%" height="15" fill="rgb(233,42,35)" fg:x="892" fg:w="3038"/><text x="2.1233%" y="1327.50">sqlparse..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (2,973 samples, 6.24%)</title><rect x="2.0098%" y="1301" width="6.2436%" height="15" fill="rgb(231,13,6)" fg:x="957" fg:w="2973"/><text x="2.2598%" y="1311.50">sqlparse..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (26 samples, 0.05%)</title><rect x="8.1988%" y="1285" width="0.0546%" height="15" fill="rgb(207,181,40)" fg:x="3904" fg:w="26"/><text x="8.4488%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (5 samples, 0.01%)</title><rect x="8.3374%" y="165" width="0.0105%" height="15" fill="rgb(254,173,49)" fg:x="3970" fg:w="5"/><text x="8.5874%" y="175.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (5 samples, 0.01%)</title><rect x="8.3374%" y="149" width="0.0105%" height="15" fill="rgb(221,1,38)" fg:x="3970" fg:w="5"/><text x="8.5874%" y="159.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (11 samples, 0.02%)</title><rect x="8.3269%" y="197" width="0.0231%" height="15" fill="rgb(206,124,46)" fg:x="3965" fg:w="11"/><text x="8.5769%" y="207.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (7 samples, 0.01%)</title><rect x="8.3353%" y="181" width="0.0147%" height="15" fill="rgb(249,21,11)" fg:x="3969" fg:w="7"/><text x="8.5853%" y="191.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (13 samples, 0.03%)</title><rect x="8.3248%" y="261" width="0.0273%" height="15" fill="rgb(222,201,40)" fg:x="3964" fg:w="13"/><text x="8.5748%" y="271.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (13 samples, 0.03%)</title><rect x="8.3248%" y="245" width="0.0273%" height="15" fill="rgb(235,61,29)" fg:x="3964" fg:w="13"/><text x="8.5748%" y="255.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (13 samples, 0.03%)</title><rect x="8.3248%" y="229" width="0.0273%" height="15" fill="rgb(219,207,3)" fg:x="3964" fg:w="13"/><text x="8.5748%" y="239.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (13 samples, 0.03%)</title><rect x="8.3248%" y="213" width="0.0273%" height="15" fill="rgb(222,56,46)" fg:x="3964" fg:w="13"/><text x="8.5748%" y="223.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (17 samples, 0.04%)</title><rect x="8.3185%" y="325" width="0.0357%" height="15" fill="rgb(239,76,54)" fg:x="3961" fg:w="17"/><text x="8.5685%" y="335.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (16 samples, 0.03%)</title><rect x="8.3206%" y="309" width="0.0336%" height="15" fill="rgb(231,124,27)" fg:x="3962" fg:w="16"/><text x="8.5706%" y="319.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (15 samples, 0.03%)</title><rect x="8.3227%" y="293" width="0.0315%" height="15" fill="rgb(249,195,6)" fg:x="3963" fg:w="15"/><text x="8.5727%" y="303.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (15 samples, 0.03%)</title><rect x="8.3227%" y="277" width="0.0315%" height="15" fill="rgb(237,174,47)" fg:x="3963" fg:w="15"/><text x="8.5727%" y="287.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (20 samples, 0.04%)</title><rect x="8.3164%" y="357" width="0.0420%" height="15" fill="rgb(206,201,31)" fg:x="3960" fg:w="20"/><text x="8.5664%" y="367.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (19 samples, 0.04%)</title><rect x="8.3185%" y="341" width="0.0399%" height="15" fill="rgb(231,57,52)" fg:x="3961" fg:w="19"/><text x="8.5685%" y="351.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (24 samples, 0.05%)</title><rect x="8.3101%" y="421" width="0.0504%" height="15" fill="rgb(248,177,22)" fg:x="3957" fg:w="24"/><text x="8.5601%" y="431.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (24 samples, 0.05%)</title><rect x="8.3101%" y="405" width="0.0504%" height="15" fill="rgb(215,211,37)" fg:x="3957" fg:w="24"/><text x="8.5601%" y="415.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (24 samples, 0.05%)</title><rect x="8.3101%" y="389" width="0.0504%" height="15" fill="rgb(241,128,51)" fg:x="3957" fg:w="24"/><text x="8.5601%" y="399.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (23 samples, 0.05%)</title><rect x="8.3122%" y="373" width="0.0483%" height="15" fill="rgb(227,165,31)" fg:x="3958" fg:w="23"/><text x="8.5622%" y="383.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (28 samples, 0.06%)</title><rect x="8.3080%" y="453" width="0.0588%" height="15" fill="rgb(228,167,24)" fg:x="3956" fg:w="28"/><text x="8.5580%" y="463.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (27 samples, 0.06%)</title><rect x="8.3101%" y="437" width="0.0567%" height="15" fill="rgb(228,143,12)" fg:x="3957" fg:w="27"/><text x="8.5601%" y="447.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (30 samples, 0.06%)</title><rect x="8.3080%" y="485" width="0.0630%" height="15" fill="rgb(249,149,8)" fg:x="3956" fg:w="30"/><text x="8.5580%" y="495.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (30 samples, 0.06%)</title><rect x="8.3080%" y="469" width="0.0630%" height="15" fill="rgb(243,35,44)" fg:x="3956" fg:w="30"/><text x="8.5580%" y="479.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (32 samples, 0.07%)</title><rect x="8.3059%" y="517" width="0.0672%" height="15" fill="rgb(246,89,9)" fg:x="3955" fg:w="32"/><text x="8.5559%" y="527.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (32 samples, 0.07%)</title><rect x="8.3059%" y="501" width="0.0672%" height="15" fill="rgb(233,213,13)" fg:x="3955" fg:w="32"/><text x="8.5559%" y="511.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (35 samples, 0.07%)</title><rect x="8.3038%" y="581" width="0.0735%" height="15" fill="rgb(233,141,41)" fg:x="3954" fg:w="35"/><text x="8.5538%" y="591.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (35 samples, 0.07%)</title><rect x="8.3038%" y="565" width="0.0735%" height="15" fill="rgb(239,167,4)" fg:x="3954" fg:w="35"/><text x="8.5538%" y="575.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (35 samples, 0.07%)</title><rect x="8.3038%" y="549" width="0.0735%" height="15" fill="rgb(209,217,16)" fg:x="3954" fg:w="35"/><text x="8.5538%" y="559.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (35 samples, 0.07%)</title><rect x="8.3038%" y="533" width="0.0735%" height="15" fill="rgb(219,88,35)" fg:x="3954" fg:w="35"/><text x="8.5538%" y="543.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (37 samples, 0.08%)</title><rect x="8.3038%" y="613" width="0.0777%" height="15" fill="rgb(220,193,23)" fg:x="3954" fg:w="37"/><text x="8.5538%" y="623.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (37 samples, 0.08%)</title><rect x="8.3038%" y="597" width="0.0777%" height="15" fill="rgb(230,90,52)" fg:x="3954" fg:w="37"/><text x="8.5538%" y="607.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (44 samples, 0.09%)</title><rect x="8.2912%" y="741" width="0.0924%" height="15" fill="rgb(252,106,19)" fg:x="3948" fg:w="44"/><text x="8.5412%" y="751.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (42 samples, 0.09%)</title><rect x="8.2954%" y="725" width="0.0882%" height="15" fill="rgb(206,74,20)" fg:x="3950" fg:w="42"/><text x="8.5454%" y="735.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (40 samples, 0.08%)</title><rect x="8.2996%" y="709" width="0.0840%" height="15" fill="rgb(230,138,44)" fg:x="3952" fg:w="40"/><text x="8.5496%" y="719.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (40 samples, 0.08%)</title><rect x="8.2996%" y="693" width="0.0840%" height="15" fill="rgb(235,182,43)" fg:x="3952" fg:w="40"/><text x="8.5496%" y="703.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (39 samples, 0.08%)</title><rect x="8.3017%" y="677" width="0.0819%" height="15" fill="rgb(242,16,51)" fg:x="3953" fg:w="39"/><text x="8.5517%" y="687.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (39 samples, 0.08%)</title><rect x="8.3017%" y="661" width="0.0819%" height="15" fill="rgb(248,9,4)" fg:x="3953" fg:w="39"/><text x="8.5517%" y="671.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (38 samples, 0.08%)</title><rect x="8.3038%" y="645" width="0.0798%" height="15" fill="rgb(210,31,22)" fg:x="3954" fg:w="38"/><text x="8.5538%" y="655.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (38 samples, 0.08%)</title><rect x="8.3038%" y="629" width="0.0798%" height="15" fill="rgb(239,54,39)" fg:x="3954" fg:w="38"/><text x="8.5538%" y="639.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (48 samples, 0.10%)</title><rect x="8.2870%" y="805" width="0.1008%" height="15" fill="rgb(230,99,41)" fg:x="3946" fg:w="48"/><text x="8.5370%" y="815.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (47 samples, 0.10%)</title><rect x="8.2891%" y="789" width="0.0987%" height="15" fill="rgb(253,106,12)" fg:x="3947" fg:w="47"/><text x="8.5391%" y="799.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (47 samples, 0.10%)</title><rect x="8.2891%" y="773" width="0.0987%" height="15" fill="rgb(213,46,41)" fg:x="3947" fg:w="47"/><text x="8.5391%" y="783.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (46 samples, 0.10%)</title><rect x="8.2912%" y="757" width="0.0966%" height="15" fill="rgb(215,133,35)" fg:x="3948" fg:w="46"/><text x="8.5412%" y="767.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (51 samples, 0.11%)</title><rect x="8.2828%" y="837" width="0.1071%" height="15" fill="rgb(213,28,5)" fg:x="3944" fg:w="51"/><text x="8.5328%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (51 samples, 0.11%)</title><rect x="8.2828%" y="821" width="0.1071%" height="15" fill="rgb(215,77,49)" fg:x="3944" fg:w="51"/><text x="8.5328%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (55 samples, 0.12%)</title><rect x="8.2786%" y="869" width="0.1155%" height="15" fill="rgb(248,100,22)" fg:x="3942" fg:w="55"/><text x="8.5286%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (54 samples, 0.11%)</title><rect x="8.2807%" y="853" width="0.1134%" height="15" fill="rgb(208,67,9)" fg:x="3943" fg:w="54"/><text x="8.5307%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (59 samples, 0.12%)</title><rect x="8.2744%" y="901" width="0.1239%" height="15" fill="rgb(219,133,21)" fg:x="3940" fg:w="59"/><text x="8.5244%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (59 samples, 0.12%)</title><rect x="8.2744%" y="885" width="0.1239%" height="15" fill="rgb(246,46,29)" fg:x="3940" fg:w="59"/><text x="8.5244%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (61 samples, 0.13%)</title><rect x="8.2744%" y="965" width="0.1281%" height="15" fill="rgb(246,185,52)" fg:x="3940" fg:w="61"/><text x="8.5244%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (61 samples, 0.13%)</title><rect x="8.2744%" y="949" width="0.1281%" height="15" fill="rgb(252,136,11)" fg:x="3940" fg:w="61"/><text x="8.5244%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (61 samples, 0.13%)</title><rect x="8.2744%" y="933" width="0.1281%" height="15" fill="rgb(219,138,53)" fg:x="3940" fg:w="61"/><text x="8.5244%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (61 samples, 0.13%)</title><rect x="8.2744%" y="917" width="0.1281%" height="15" fill="rgb(211,51,23)" fg:x="3940" fg:w="61"/><text x="8.5244%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (63 samples, 0.13%)</title><rect x="8.2723%" y="997" width="0.1323%" height="15" fill="rgb(247,221,28)" fg:x="3939" fg:w="63"/><text x="8.5223%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (62 samples, 0.13%)</title><rect x="8.2744%" y="981" width="0.1302%" height="15" fill="rgb(251,222,45)" fg:x="3940" fg:w="62"/><text x="8.5244%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (65 samples, 0.14%)</title><rect x="8.2723%" y="1029" width="0.1365%" height="15" fill="rgb(217,162,53)" fg:x="3939" fg:w="65"/><text x="8.5223%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (65 samples, 0.14%)</title><rect x="8.2723%" y="1013" width="0.1365%" height="15" fill="rgb(229,93,14)" fg:x="3939" fg:w="65"/><text x="8.5223%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (67 samples, 0.14%)</title><rect x="8.2702%" y="1061" width="0.1407%" height="15" fill="rgb(209,67,49)" fg:x="3938" fg:w="67"/><text x="8.5202%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (67 samples, 0.14%)</title><rect x="8.2702%" y="1045" width="0.1407%" height="15" fill="rgb(213,87,29)" fg:x="3938" fg:w="67"/><text x="8.5202%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (68 samples, 0.14%)</title><rect x="8.2702%" y="1093" width="0.1428%" height="15" fill="rgb(205,151,52)" fg:x="3938" fg:w="68"/><text x="8.5202%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (68 samples, 0.14%)</title><rect x="8.2702%" y="1077" width="0.1428%" height="15" fill="rgb(253,215,39)" fg:x="3938" fg:w="68"/><text x="8.5202%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (72 samples, 0.15%)</title><rect x="8.2681%" y="1125" width="0.1512%" height="15" fill="rgb(221,220,41)" fg:x="3937" fg:w="72"/><text x="8.5181%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (71 samples, 0.15%)</title><rect x="8.2702%" y="1109" width="0.1491%" height="15" fill="rgb(218,133,21)" fg:x="3938" fg:w="71"/><text x="8.5202%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (79 samples, 0.17%)</title><rect x="8.2555%" y="1253" width="0.1659%" height="15" fill="rgb(221,193,43)" fg:x="3931" fg:w="79"/><text x="8.5055%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (79 samples, 0.17%)</title><rect x="8.2555%" y="1237" width="0.1659%" height="15" fill="rgb(240,128,52)" fg:x="3931" fg:w="79"/><text x="8.5055%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (78 samples, 0.16%)</title><rect x="8.2576%" y="1221" width="0.1638%" height="15" fill="rgb(253,114,12)" fg:x="3932" fg:w="78"/><text x="8.5076%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (78 samples, 0.16%)</title><rect x="8.2576%" y="1205" width="0.1638%" height="15" fill="rgb(215,223,47)" fg:x="3932" fg:w="78"/><text x="8.5076%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (75 samples, 0.16%)</title><rect x="8.2639%" y="1189" width="0.1575%" height="15" fill="rgb(248,225,23)" fg:x="3935" fg:w="75"/><text x="8.5139%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (75 samples, 0.16%)</title><rect x="8.2639%" y="1173" width="0.1575%" height="15" fill="rgb(250,108,0)" fg:x="3935" fg:w="75"/><text x="8.5139%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (74 samples, 0.16%)</title><rect x="8.2660%" y="1157" width="0.1554%" height="15" fill="rgb(228,208,7)" fg:x="3936" fg:w="74"/><text x="8.5160%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (74 samples, 0.16%)</title><rect x="8.2660%" y="1141" width="0.1554%" height="15" fill="rgb(244,45,10)" fg:x="3936" fg:w="74"/><text x="8.5160%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (82 samples, 0.17%)</title><rect x="8.2534%" y="1317" width="0.1722%" height="15" fill="rgb(207,125,25)" fg:x="3930" fg:w="82"/><text x="8.5034%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (82 samples, 0.17%)</title><rect x="8.2534%" y="1301" width="0.1722%" height="15" fill="rgb(210,195,18)" fg:x="3930" fg:w="82"/><text x="8.5034%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (81 samples, 0.17%)</title><rect x="8.2555%" y="1285" width="0.1701%" height="15" fill="rgb(249,80,12)" fg:x="3931" fg:w="81"/><text x="8.5055%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (81 samples, 0.17%)</title><rect x="8.2555%" y="1269" width="0.1701%" height="15" fill="rgb(221,65,9)" fg:x="3931" fg:w="81"/><text x="8.5055%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::Query as core::fmt::Display&gt;::fmt (3,806 samples, 7.99%)</title><rect x="0.4788%" y="1413" width="7.9929%" height="15" fill="rgb(235,49,36)" fg:x="228" fg:w="3806"/><text x="0.7288%" y="1423.50">sqlparser_b..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (3,806 samples, 7.99%)</title><rect x="0.4788%" y="1397" width="7.9929%" height="15" fill="rgb(225,32,20)" fg:x="228" fg:w="3806"/><text x="0.7288%" y="1407.50">sqlparser_b..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::SetExpr as core::fmt::Display&gt;::fmt (3,145 samples, 6.60%)</title><rect x="1.8670%" y="1381" width="6.6048%" height="15" fill="rgb(215,141,46)" fg:x="889" fg:w="3145"/><text x="2.1170%" y="1391.50">sqlparser..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (3,145 samples, 6.60%)</title><rect x="1.8670%" y="1365" width="6.6048%" height="15" fill="rgb(250,160,47)" fg:x="889" fg:w="3145"/><text x="2.1170%" y="1375.50">sqlparser..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::Select as core::fmt::Display&gt;::fmt (3,144 samples, 6.60%)</title><rect x="1.8691%" y="1349" width="6.6027%" height="15" fill="rgb(216,222,40)" fg:x="890" fg:w="3144"/><text x="2.1191%" y="1359.50">sqlparser..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (3,143 samples, 6.60%)</title><rect x="1.8712%" y="1333" width="6.6006%" height="15" fill="rgb(234,217,39)" fg:x="891" fg:w="3143"/><text x="2.1212%" y="1343.50">sqlparser..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (22 samples, 0.05%)</title><rect x="8.4256%" y="1317" width="0.0462%" height="15" fill="rgb(207,178,40)" fg:x="4012" fg:w="22"/><text x="8.6756%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Statement as core::fmt::Display&gt;::fmt (3,809 samples, 8.00%)</title><rect x="0.4746%" y="1445" width="7.9992%" height="15" fill="rgb(221,136,13)" fg:x="226" fg:w="3809"/><text x="0.7246%" y="1455.50">sqlparser_b..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (3,808 samples, 8.00%)</title><rect x="0.4767%" y="1429" width="7.9971%" height="15" fill="rgb(249,199,10)" fg:x="227" fg:w="3808"/><text x="0.7267%" y="1439.50">sqlparser_b..</text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (32 samples, 0.07%)</title><rect x="8.4739%" y="1445" width="0.0672%" height="15" fill="rgb(249,222,13)" fg:x="4035" fg:w="32"/><text x="8.7239%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`_free (5 samples, 0.01%)</title><rect x="8.5474%" y="1429" width="0.0105%" height="15" fill="rgb(244,185,38)" fg:x="4070" fg:w="5"/><text x="8.7974%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="8.5579%" y="1429" width="0.0147%" height="15" fill="rgb(236,202,9)" fg:x="4075" fg:w="7"/><text x="8.8079%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`_free (19 samples, 0.04%)</title><rect x="8.5999%" y="1413" width="0.0399%" height="15" fill="rgb(250,229,37)" fg:x="4095" fg:w="19"/><text x="8.8499%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (17 samples, 0.04%)</title><rect x="8.6398%" y="1413" width="0.0357%" height="15" fill="rgb(206,174,23)" fg:x="4114" fg:w="17"/><text x="8.8898%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (12 samples, 0.03%)</title><rect x="8.6755%" y="1413" width="0.0252%" height="15" fill="rgb(211,33,43)" fg:x="4131" fg:w="12"/><text x="8.9255%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (18 samples, 0.04%)</title><rect x="8.7511%" y="1397" width="0.0378%" height="15" fill="rgb(245,58,50)" fg:x="4167" fg:w="18"/><text x="9.0011%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr (8 samples, 0.02%)</title><rect x="8.7973%" y="1397" width="0.0168%" height="15" fill="rgb(244,68,36)" fg:x="4189" fg:w="8"/><text x="9.0473%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`free_small (83 samples, 0.17%)</title><rect x="8.7007%" y="1413" width="0.1743%" height="15" fill="rgb(232,229,15)" fg:x="4143" fg:w="83"/><text x="8.9507%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (29 samples, 0.06%)</title><rect x="8.8141%" y="1397" width="0.0609%" height="15" fill="rgb(254,30,23)" fg:x="4197" fg:w="29"/><text x="9.0641%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (11 samples, 0.02%)</title><rect x="8.8813%" y="1413" width="0.0231%" height="15" fill="rgb(235,160,14)" fg:x="4229" fg:w="11"/><text x="9.1313%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="8.9128%" y="1397" width="0.0147%" height="15" fill="rgb(212,155,44)" fg:x="4244" fg:w="7"/><text x="9.1628%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_free (7 samples, 0.01%)</title><rect x="8.9443%" y="1381" width="0.0147%" height="15" fill="rgb(226,2,50)" fg:x="4259" fg:w="7"/><text x="9.1943%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`free_small (10 samples, 0.02%)</title><rect x="8.9632%" y="1381" width="0.0210%" height="15" fill="rgb(234,177,6)" fg:x="4268" fg:w="10"/><text x="9.2132%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (11 samples, 0.02%)</title><rect x="8.9968%" y="1365" width="0.0231%" height="15" fill="rgb(217,24,9)" fg:x="4284" fg:w="11"/><text x="9.2468%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`free_small (10 samples, 0.02%)</title><rect x="9.0283%" y="1365" width="0.0210%" height="15" fill="rgb(220,13,46)" fg:x="4299" fg:w="10"/><text x="9.2783%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (14 samples, 0.03%)</title><rect x="9.0514%" y="1365" width="0.0294%" height="15" fill="rgb(239,221,27)" fg:x="4310" fg:w="14"/><text x="9.3014%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::TableFactor&gt; (11 samples, 0.02%)</title><rect x="9.0577%" y="1349" width="0.0231%" height="15" fill="rgb(222,198,25)" fg:x="4313" fg:w="11"/><text x="9.3077%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (13 samples, 0.03%)</title><rect x="9.1102%" y="1333" width="0.0273%" height="15" fill="rgb(211,99,13)" fg:x="4338" fg:w="13"/><text x="9.3602%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`free_small (12 samples, 0.03%)</title><rect x="9.1501%" y="1317" width="0.0252%" height="15" fill="rgb(232,111,31)" fg:x="4357" fg:w="12"/><text x="9.4001%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (5 samples, 0.01%)</title><rect x="9.1648%" y="1301" width="0.0105%" height="15" fill="rgb(245,82,37)" fg:x="4364" fg:w="5"/><text x="9.4148%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::Cte&gt; (128 samples, 0.27%)</title><rect x="8.9107%" y="1413" width="0.2688%" height="15" fill="rgb(227,149,46)" fg:x="4243" fg:w="128"/><text x="9.1607%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::Query&gt; (112 samples, 0.24%)</title><rect x="8.9443%" y="1397" width="0.2352%" height="15" fill="rgb(218,36,50)" fg:x="4259" fg:w="112"/><text x="9.1943%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::SetExpr&gt; (91 samples, 0.19%)</title><rect x="8.9884%" y="1381" width="0.1911%" height="15" fill="rgb(226,80,48)" fg:x="4280" fg:w="91"/><text x="9.2384%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::SelectItem&gt; (46 samples, 0.10%)</title><rect x="9.0829%" y="1365" width="0.0966%" height="15" fill="rgb(238,224,15)" fg:x="4325" fg:w="46"/><text x="9.3329%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Function&gt; (40 samples, 0.08%)</title><rect x="9.0955%" y="1349" width="0.0840%" height="15" fill="rgb(241,136,10)" fg:x="4331" fg:w="40"/><text x="9.3455%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::FunctionArgumentList&gt; (17 samples, 0.04%)</title><rect x="9.1438%" y="1333" width="0.0357%" height="15" fill="rgb(208,32,45)" fg:x="4354" fg:w="17"/><text x="9.3938%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (12 samples, 0.03%)</title><rect x="9.1837%" y="1397" width="0.0252%" height="15" fill="rgb(207,135,9)" fg:x="4373" fg:w="12"/><text x="9.4337%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`free_medium (39 samples, 0.08%)</title><rect x="9.2089%" y="1397" width="0.0819%" height="15" fill="rgb(206,86,44)" fg:x="4385" fg:w="39"/><text x="9.4589%" y="1407.50"></text></g><g><title>libsystem_kernel.dylib`madvise (39 samples, 0.08%)</title><rect x="9.2089%" y="1381" width="0.0819%" height="15" fill="rgb(245,177,15)" fg:x="4385" fg:w="39"/><text x="9.4589%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::OrderBy&gt; (58 samples, 0.12%)</title><rect x="9.1795%" y="1413" width="0.1218%" height="15" fill="rgb(206,64,50)" fg:x="4371" fg:w="58"/><text x="9.4295%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block (5 samples, 0.01%)</title><rect x="9.2908%" y="1397" width="0.0105%" height="15" fill="rgb(234,36,40)" fg:x="4424" fg:w="5"/><text x="9.5408%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block_locked (5 samples, 0.01%)</title><rect x="9.2908%" y="1381" width="0.0105%" height="15" fill="rgb(213,64,8)" fg:x="4424" fg:w="5"/><text x="9.5408%" y="1391.50"></text></g><g><title>libsystem_kernel.dylib`madvise (5 samples, 0.01%)</title><rect x="9.2908%" y="1365" width="0.0105%" height="15" fill="rgb(210,75,36)" fg:x="4424" fg:w="5"/><text x="9.5408%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_free (16 samples, 0.03%)</title><rect x="9.3517%" y="1397" width="0.0336%" height="15" fill="rgb(229,88,21)" fg:x="4453" fg:w="16"/><text x="9.6017%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (16 samples, 0.03%)</title><rect x="9.3853%" y="1397" width="0.0336%" height="15" fill="rgb(252,204,47)" fg:x="4469" fg:w="16"/><text x="9.6353%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (12 samples, 0.03%)</title><rect x="9.4189%" y="1397" width="0.0252%" height="15" fill="rgb(208,77,27)" fg:x="4485" fg:w="12"/><text x="9.6689%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`free_medium (18 samples, 0.04%)</title><rect x="9.4441%" y="1397" width="0.0378%" height="15" fill="rgb(221,76,26)" fg:x="4497" fg:w="18"/><text x="9.6941%" y="1407.50"></text></g><g><title>libsystem_kernel.dylib`madvise (18 samples, 0.04%)</title><rect x="9.4441%" y="1381" width="0.0378%" height="15" fill="rgb(225,139,18)" fg:x="4497" fg:w="18"/><text x="9.6941%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (10 samples, 0.02%)</title><rect x="9.5260%" y="1381" width="0.0210%" height="15" fill="rgb(230,137,11)" fg:x="4536" fg:w="10"/><text x="9.7760%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_find_by_ptr (9 samples, 0.02%)</title><rect x="9.5470%" y="1381" width="0.0189%" height="15" fill="rgb(212,28,1)" fg:x="4546" fg:w="9"/><text x="9.7970%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`free_small (48 samples, 0.10%)</title><rect x="9.4819%" y="1397" width="0.1008%" height="15" fill="rgb(248,164,17)" fg:x="4515" fg:w="48"/><text x="9.7319%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (8 samples, 0.02%)</title><rect x="9.5659%" y="1381" width="0.0168%" height="15" fill="rgb(222,171,42)" fg:x="4555" fg:w="8"/><text x="9.8159%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (8 samples, 0.02%)</title><rect x="9.6373%" y="1365" width="0.0168%" height="15" fill="rgb(243,84,45)" fg:x="4589" fg:w="8"/><text x="9.8873%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (44 samples, 0.09%)</title><rect x="9.5827%" y="1397" width="0.0924%" height="15" fill="rgb(252,49,23)" fg:x="4563" fg:w="44"/><text x="9.8327%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (30 samples, 0.06%)</title><rect x="9.6121%" y="1381" width="0.0630%" height="15" fill="rgb(215,19,7)" fg:x="4577" fg:w="30"/><text x="9.8621%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (10 samples, 0.02%)</title><rect x="9.6541%" y="1365" width="0.0210%" height="15" fill="rgb(238,81,41)" fg:x="4597" fg:w="10"/><text x="9.9041%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_free (10 samples, 0.02%)</title><rect x="9.6940%" y="1381" width="0.0210%" height="15" fill="rgb(210,199,37)" fg:x="4616" fg:w="10"/><text x="9.9440%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (10 samples, 0.02%)</title><rect x="9.7150%" y="1381" width="0.0210%" height="15" fill="rgb(244,192,49)" fg:x="4626" fg:w="10"/><text x="9.9650%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (52 samples, 0.11%)</title><rect x="9.8032%" y="1365" width="0.1092%" height="15" fill="rgb(226,211,11)" fg:x="4668" fg:w="52"/><text x="10.0532%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block (13 samples, 0.03%)</title><rect x="9.9124%" y="1365" width="0.0273%" height="15" fill="rgb(236,162,54)" fg:x="4720" fg:w="13"/><text x="10.1624%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block_locked (13 samples, 0.03%)</title><rect x="9.9124%" y="1349" width="0.0273%" height="15" fill="rgb(220,229,9)" fg:x="4720" fg:w="13"/><text x="10.1624%" y="1359.50"></text></g><g><title>libsystem_kernel.dylib`madvise (12 samples, 0.03%)</title><rect x="9.9145%" y="1333" width="0.0252%" height="15" fill="rgb(250,87,22)" fg:x="4721" fg:w="12"/><text x="10.1645%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (131 samples, 0.28%)</title><rect x="9.6877%" y="1397" width="0.2751%" height="15" fill="rgb(239,43,17)" fg:x="4613" fg:w="131"/><text x="9.9377%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::TableFactor&gt; (96 samples, 0.20%)</title><rect x="9.7612%" y="1381" width="0.2016%" height="15" fill="rgb(231,177,25)" fg:x="4648" fg:w="96"/><text x="10.0112%" y="1391.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (11 samples, 0.02%)</title><rect x="9.9397%" y="1365" width="0.0231%" height="15" fill="rgb(219,179,1)" fg:x="4733" fg:w="11"/><text x="10.1897%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (10 samples, 0.02%)</title><rect x="9.9628%" y="1397" width="0.0210%" height="15" fill="rgb(238,219,53)" fg:x="4744" fg:w="10"/><text x="10.2128%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (7 samples, 0.01%)</title><rect x="9.9859%" y="1397" width="0.0147%" height="15" fill="rgb(232,167,36)" fg:x="4755" fg:w="7"/><text x="10.2359%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="9.9859%" y="1381" width="0.0147%" height="15" fill="rgb(244,19,51)" fg:x="4755" fg:w="7"/><text x="10.2359%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (5 samples, 0.01%)</title><rect x="10.0720%" y="1349" width="0.0105%" height="15" fill="rgb(224,6,22)" fg:x="4796" fg:w="5"/><text x="10.3220%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (28 samples, 0.06%)</title><rect x="10.0258%" y="1381" width="0.0588%" height="15" fill="rgb(224,145,5)" fg:x="4774" fg:w="28"/><text x="10.2758%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (16 samples, 0.03%)</title><rect x="10.0510%" y="1365" width="0.0336%" height="15" fill="rgb(234,130,49)" fg:x="4786" fg:w="16"/><text x="10.3010%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (8 samples, 0.02%)</title><rect x="10.1035%" y="1365" width="0.0168%" height="15" fill="rgb(254,6,2)" fg:x="4811" fg:w="8"/><text x="10.3535%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="1141" width="0.0126%" height="15" fill="rgb(208,96,46)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="1125" width="0.0126%" height="15" fill="rgb(239,3,39)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="1109" width="0.0126%" height="15" fill="rgb(233,210,1)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="1093" width="0.0126%" height="15" fill="rgb(244,137,37)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="1077" width="0.0126%" height="15" fill="rgb(240,136,2)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="1061" width="0.0126%" height="15" fill="rgb(239,18,37)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="1045" width="0.0126%" height="15" fill="rgb(218,185,22)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="1029" width="0.0126%" height="15" fill="rgb(225,218,4)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="1013" width="0.0126%" height="15" fill="rgb(230,182,32)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="997" width="0.0126%" height="15" fill="rgb(242,56,43)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="981" width="0.0126%" height="15" fill="rgb(233,99,24)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="965" width="0.0126%" height="15" fill="rgb(234,209,42)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="949" width="0.0126%" height="15" fill="rgb(227,7,12)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="933" width="0.0126%" height="15" fill="rgb(245,203,43)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="917" width="0.0126%" height="15" fill="rgb(238,205,33)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (6 samples, 0.01%)</title><rect x="10.1266%" y="901" width="0.0126%" height="15" fill="rgb(231,56,7)" fg:x="4822" fg:w="6"/><text x="10.3766%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (5 samples, 0.01%)</title><rect x="10.1287%" y="885" width="0.0105%" height="15" fill="rgb(244,186,29)" fg:x="4823" fg:w="5"/><text x="10.3787%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (5 samples, 0.01%)</title><rect x="10.1287%" y="869" width="0.0105%" height="15" fill="rgb(234,111,31)" fg:x="4823" fg:w="5"/><text x="10.3787%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (18 samples, 0.04%)</title><rect x="10.1035%" y="1381" width="0.0378%" height="15" fill="rgb(241,149,10)" fg:x="4811" fg:w="18"/><text x="10.3535%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (9 samples, 0.02%)</title><rect x="10.1224%" y="1365" width="0.0189%" height="15" fill="rgb(249,206,44)" fg:x="4820" fg:w="9"/><text x="10.3724%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1349" width="0.0147%" height="15" fill="rgb(251,153,30)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1333" width="0.0147%" height="15" fill="rgb(239,152,38)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1317" width="0.0147%" height="15" fill="rgb(249,139,47)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1301" width="0.0147%" height="15" fill="rgb(244,64,35)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1285" width="0.0147%" height="15" fill="rgb(216,46,15)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1269" width="0.0147%" height="15" fill="rgb(250,74,19)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1253" width="0.0147%" height="15" fill="rgb(249,42,33)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1237" width="0.0147%" height="15" fill="rgb(242,149,17)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1221" width="0.0147%" height="15" fill="rgb(244,29,21)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1205" width="0.0147%" height="15" fill="rgb(220,130,37)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1189" width="0.0147%" height="15" fill="rgb(211,67,2)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1173" width="0.0147%" height="15" fill="rgb(235,68,52)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (7 samples, 0.01%)</title><rect x="10.1266%" y="1157" width="0.0147%" height="15" fill="rgb(246,142,3)" fg:x="4822" fg:w="7"/><text x="10.3766%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (70 samples, 0.15%)</title><rect x="10.0006%" y="1397" width="0.1470%" height="15" fill="rgb(241,25,7)" fg:x="4762" fg:w="70"/><text x="10.2506%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_free (5 samples, 0.01%)</title><rect x="10.1623%" y="1381" width="0.0105%" height="15" fill="rgb(242,119,39)" fg:x="4839" fg:w="5"/><text x="10.4123%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (13 samples, 0.03%)</title><rect x="10.1728%" y="1381" width="0.0273%" height="15" fill="rgb(241,98,45)" fg:x="4844" fg:w="13"/><text x="10.4228%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block (6 samples, 0.01%)</title><rect x="10.2043%" y="1381" width="0.0126%" height="15" fill="rgb(254,28,30)" fg:x="4859" fg:w="6"/><text x="10.4543%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block_locked (6 samples, 0.01%)</title><rect x="10.2043%" y="1365" width="0.0126%" height="15" fill="rgb(241,142,54)" fg:x="4859" fg:w="6"/><text x="10.4543%" y="1375.50"></text></g><g><title>libsystem_kernel.dylib`madvise (6 samples, 0.01%)</title><rect x="10.2043%" y="1349" width="0.0126%" height="15" fill="rgb(222,85,15)" fg:x="4859" fg:w="6"/><text x="10.4543%" y="1359.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (5 samples, 0.01%)</title><rect x="10.2190%" y="1381" width="0.0105%" height="15" fill="rgb(210,85,47)" fg:x="4866" fg:w="5"/><text x="10.4690%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="10.2358%" y="1365" width="0.0147%" height="15" fill="rgb(224,206,25)" fg:x="4874" fg:w="7"/><text x="10.4858%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (12 samples, 0.03%)</title><rect x="10.2883%" y="1349" width="0.0252%" height="15" fill="rgb(243,201,19)" fg:x="4899" fg:w="12"/><text x="10.5383%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`free_small (38 samples, 0.08%)</title><rect x="10.2589%" y="1365" width="0.0798%" height="15" fill="rgb(236,59,4)" fg:x="4885" fg:w="38"/><text x="10.5089%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (11 samples, 0.02%)</title><rect x="10.3156%" y="1349" width="0.0231%" height="15" fill="rgb(254,179,45)" fg:x="4912" fg:w="11"/><text x="10.5656%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Function&gt; (95 samples, 0.20%)</title><rect x="10.1476%" y="1397" width="0.1995%" height="15" fill="rgb(226,14,10)" fg:x="4832" fg:w="95"/><text x="10.3976%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::FunctionArgumentList&gt; (54 samples, 0.11%)</title><rect x="10.2337%" y="1381" width="0.1134%" height="15" fill="rgb(244,27,41)" fg:x="4873" fg:w="54"/><text x="10.4837%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::SetExpr&gt; (510 samples, 1.07%)</title><rect x="9.3013%" y="1413" width="1.0710%" height="15" fill="rgb(235,35,32)" fg:x="4429" fg:w="510"/><text x="9.5513%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::query::Query&gt;&gt; (873 samples, 1.83%)</title><rect x="8.5453%" y="1445" width="1.8334%" height="15" fill="rgb(218,68,31)" fg:x="4069" fg:w="873"/><text x="8.7953%" y="1455.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::Query&gt; (854 samples, 1.79%)</title><rect x="8.5852%" y="1429" width="1.7935%" height="15" fill="rgb(207,120,37)" fg:x="4088" fg:w="854"/><text x="8.8352%" y="1439.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (175 samples, 0.37%)</title><rect x="10.3912%" y="1445" width="0.3675%" height="15" fill="rgb(227,98,0)" fg:x="4948" fg:w="175"/><text x="10.6412%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Whitespace&gt; (57 samples, 0.12%)</title><rect x="10.7588%" y="1445" width="0.1197%" height="15" fill="rgb(207,7,3)" fg:x="5123" fg:w="57"/><text x="11.0088%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (123 samples, 0.26%)</title><rect x="11.0423%" y="1429" width="0.2583%" height="15" fill="rgb(206,98,19)" fg:x="5258" fg:w="123"/><text x="11.2923%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`free_medium (62 samples, 0.13%)</title><rect x="11.3090%" y="1429" width="0.1302%" height="15" fill="rgb(217,5,26)" fg:x="5385" fg:w="62"/><text x="11.5590%" y="1439.50"></text></g><g><title>libsystem_kernel.dylib`madvise (62 samples, 0.13%)</title><rect x="11.3090%" y="1413" width="0.1302%" height="15" fill="rgb(235,190,38)" fg:x="5385" fg:w="62"/><text x="11.5590%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`free_small (5 samples, 0.01%)</title><rect x="11.4392%" y="1429" width="0.0105%" height="15" fill="rgb(247,86,24)" fg:x="5447" fg:w="5"/><text x="11.6892%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block (5 samples, 0.01%)</title><rect x="11.4497%" y="1429" width="0.0105%" height="15" fill="rgb(205,101,16)" fg:x="5452" fg:w="5"/><text x="11.6997%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block_locked (5 samples, 0.01%)</title><rect x="11.4497%" y="1413" width="0.0105%" height="15" fill="rgb(246,168,33)" fg:x="5452" fg:w="5"/><text x="11.6997%" y="1423.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (83 samples, 0.17%)</title><rect x="11.4707%" y="1429" width="0.1743%" height="15" fill="rgb(231,114,1)" fg:x="5462" fg:w="83"/><text x="11.7207%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="11.6534%" y="1429" width="0.0105%" height="15" fill="rgb(207,184,53)" fg:x="5549" fg:w="5"/><text x="11.9034%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="11.7332%" y="1413" width="0.0126%" height="15" fill="rgb(224,95,51)" fg:x="5587" fg:w="6"/><text x="11.9832%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="11.7689%" y="1397" width="0.0105%" height="15" fill="rgb(212,188,45)" fg:x="5604" fg:w="5"/><text x="12.0189%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="11.7689%" y="1381" width="0.0105%" height="15" fill="rgb(223,154,38)" fg:x="5604" fg:w="5"/><text x="12.0189%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (17 samples, 0.04%)</title><rect x="11.7500%" y="1413" width="0.0357%" height="15" fill="rgb(251,22,52)" fg:x="5595" fg:w="17"/><text x="12.0000%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="11.8109%" y="1397" width="0.0105%" height="15" fill="rgb(229,209,22)" fg:x="5624" fg:w="5"/><text x="12.0609%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (6 samples, 0.01%)</title><rect x="11.9075%" y="1333" width="0.0126%" height="15" fill="rgb(234,138,34)" fg:x="5670" fg:w="6"/><text x="12.1575%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (67 samples, 0.14%)</title><rect x="11.7920%" y="1413" width="0.1407%" height="15" fill="rgb(212,95,11)" fg:x="5615" fg:w="67"/><text x="12.0420%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (48 samples, 0.10%)</title><rect x="11.8319%" y="1397" width="0.1008%" height="15" fill="rgb(240,179,47)" fg:x="5634" fg:w="48"/><text x="12.0819%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (31 samples, 0.07%)</title><rect x="11.8676%" y="1381" width="0.0651%" height="15" fill="rgb(240,163,11)" fg:x="5651" fg:w="31"/><text x="12.1176%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (25 samples, 0.05%)</title><rect x="11.8802%" y="1365" width="0.0525%" height="15" fill="rgb(236,37,12)" fg:x="5657" fg:w="25"/><text x="12.1302%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (18 samples, 0.04%)</title><rect x="11.8949%" y="1349" width="0.0378%" height="15" fill="rgb(232,164,16)" fg:x="5664" fg:w="18"/><text x="12.1449%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (5 samples, 0.01%)</title><rect x="11.9327%" y="1413" width="0.0105%" height="15" fill="rgb(244,205,15)" fg:x="5682" fg:w="5"/><text x="12.1827%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="11.9789%" y="1397" width="0.0189%" height="15" fill="rgb(223,117,47)" fg:x="5704" fg:w="9"/><text x="12.2289%" y="1407.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (31 samples, 0.07%)</title><rect x="11.9978%" y="1397" width="0.0651%" height="15" fill="rgb(244,107,35)" fg:x="5713" fg:w="31"/><text x="12.2478%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="12.1007%" y="1381" width="0.0168%" height="15" fill="rgb(205,140,8)" fg:x="5762" fg:w="8"/><text x="12.3507%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (21 samples, 0.04%)</title><rect x="12.0755%" y="1397" width="0.0441%" height="15" fill="rgb(228,84,46)" fg:x="5750" fg:w="21"/><text x="12.3255%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (12 samples, 0.03%)</title><rect x="12.1280%" y="1397" width="0.0252%" height="15" fill="rgb(254,188,9)" fg:x="5775" fg:w="12"/><text x="12.3780%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (7 samples, 0.01%)</title><rect x="12.3128%" y="1381" width="0.0147%" height="15" fill="rgb(206,112,54)" fg:x="5863" fg:w="7"/><text x="12.5628%" y="1391.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (154 samples, 0.32%)</title><rect x="12.3380%" y="1381" width="0.3234%" height="15" fill="rgb(216,84,49)" fg:x="5875" fg:w="154"/><text x="12.5880%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="12.6635%" y="1381" width="0.0126%" height="15" fill="rgb(214,194,35)" fg:x="6030" fg:w="6"/><text x="12.9135%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (6 samples, 0.01%)</title><rect x="12.7727%" y="1317" width="0.0126%" height="15" fill="rgb(249,28,3)" fg:x="6082" fg:w="6"/><text x="13.0227%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::alloc::exchange_malloc (48 samples, 0.10%)</title><rect x="12.6971%" y="1381" width="0.1008%" height="15" fill="rgb(222,56,52)" fg:x="6046" fg:w="48"/><text x="12.9471%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (48 samples, 0.10%)</title><rect x="12.6971%" y="1365" width="0.1008%" height="15" fill="rgb(245,217,50)" fg:x="6046" fg:w="48"/><text x="12.9471%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (36 samples, 0.08%)</title><rect x="12.7223%" y="1349" width="0.0756%" height="15" fill="rgb(213,201,24)" fg:x="6058" fg:w="36"/><text x="12.9723%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (32 samples, 0.07%)</title><rect x="12.7307%" y="1333" width="0.0672%" height="15" fill="rgb(248,116,28)" fg:x="6062" fg:w="32"/><text x="12.9807%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (9 samples, 0.02%)</title><rect x="12.7980%" y="1381" width="0.0189%" height="15" fill="rgb(219,72,43)" fg:x="6094" fg:w="9"/><text x="13.0480%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (8 samples, 0.02%)</title><rect x="12.8001%" y="1365" width="0.0168%" height="15" fill="rgb(209,138,14)" fg:x="6095" fg:w="8"/><text x="13.0501%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (5 samples, 0.01%)</title><rect x="12.8064%" y="1349" width="0.0105%" height="15" fill="rgb(222,18,33)" fg:x="6098" fg:w="5"/><text x="13.0564%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (5 samples, 0.01%)</title><rect x="12.8169%" y="1381" width="0.0105%" height="15" fill="rgb(213,199,7)" fg:x="6103" fg:w="5"/><text x="13.0669%" y="1391.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (9 samples, 0.02%)</title><rect x="12.8673%" y="1365" width="0.0189%" height="15" fill="rgb(250,110,10)" fg:x="6127" fg:w="9"/><text x="13.1173%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::expect_token (9 samples, 0.02%)</title><rect x="12.8904%" y="1365" width="0.0189%" height="15" fill="rgb(248,123,6)" fg:x="6138" fg:w="9"/><text x="13.1404%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (13 samples, 0.03%)</title><rect x="12.9093%" y="1365" width="0.0273%" height="15" fill="rgb(206,91,31)" fg:x="6147" fg:w="13"/><text x="13.1593%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="12.9219%" y="1349" width="0.0147%" height="15" fill="rgb(211,154,13)" fg:x="6153" fg:w="7"/><text x="13.1719%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (7 samples, 0.01%)</title><rect x="12.9366%" y="1365" width="0.0147%" height="15" fill="rgb(225,148,7)" fg:x="6160" fg:w="7"/><text x="13.1866%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (23 samples, 0.05%)</title><rect x="13.0143%" y="1349" width="0.0483%" height="15" fill="rgb(220,160,43)" fg:x="6197" fg:w="23"/><text x="13.2643%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::alloc::exchange_malloc (11 samples, 0.02%)</title><rect x="13.0668%" y="1349" width="0.0231%" height="15" fill="rgb(213,52,39)" fg:x="6222" fg:w="11"/><text x="13.3168%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (11 samples, 0.02%)</title><rect x="13.0668%" y="1333" width="0.0231%" height="15" fill="rgb(243,137,7)" fg:x="6222" fg:w="11"/><text x="13.3168%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (8 samples, 0.02%)</title><rect x="13.0731%" y="1317" width="0.0168%" height="15" fill="rgb(230,79,13)" fg:x="6225" fg:w="8"/><text x="13.3231%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (7 samples, 0.01%)</title><rect x="13.0752%" y="1301" width="0.0147%" height="15" fill="rgb(247,105,23)" fg:x="6226" fg:w="7"/><text x="13.3252%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (5 samples, 0.01%)</title><rect x="13.1172%" y="1333" width="0.0105%" height="15" fill="rgb(223,179,41)" fg:x="6246" fg:w="5"/><text x="13.3672%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (16 samples, 0.03%)</title><rect x="13.1277%" y="1333" width="0.0336%" height="15" fill="rgb(218,9,34)" fg:x="6251" fg:w="16"/><text x="13.3777%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (23 samples, 0.05%)</title><rect x="13.2369%" y="1317" width="0.0483%" height="15" fill="rgb(222,106,8)" fg:x="6303" fg:w="23"/><text x="13.4869%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::expect_keyword (7 samples, 0.01%)</title><rect x="13.3020%" y="1317" width="0.0147%" height="15" fill="rgb(211,220,0)" fg:x="6334" fg:w="7"/><text x="13.5520%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_all_or_distinct (9 samples, 0.02%)</title><rect x="13.3230%" y="1317" width="0.0189%" height="15" fill="rgb(229,52,16)" fg:x="6344" fg:w="9"/><text x="13.5730%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (27 samples, 0.06%)</title><rect x="13.3587%" y="1301" width="0.0567%" height="15" fill="rgb(212,155,18)" fg:x="6361" fg:w="27"/><text x="13.6087%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (20 samples, 0.04%)</title><rect x="13.4175%" y="1301" width="0.0420%" height="15" fill="rgb(242,21,14)" fg:x="6389" fg:w="20"/><text x="13.6675%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (14 samples, 0.03%)</title><rect x="13.4301%" y="1285" width="0.0294%" height="15" fill="rgb(222,19,48)" fg:x="6395" fg:w="14"/><text x="13.6801%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (6 samples, 0.01%)</title><rect x="13.4469%" y="1269" width="0.0126%" height="15" fill="rgb(232,45,27)" fg:x="6403" fg:w="6"/><text x="13.6969%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_free (9 samples, 0.02%)</title><rect x="13.4784%" y="1285" width="0.0189%" height="15" fill="rgb(249,103,42)" fg:x="6418" fg:w="9"/><text x="13.7284%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="13.5540%" y="1269" width="0.0105%" height="15" fill="rgb(246,81,33)" fg:x="6454" fg:w="5"/><text x="13.8040%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (13 samples, 0.03%)</title><rect x="13.5792%" y="1253" width="0.0273%" height="15" fill="rgb(252,33,42)" fg:x="6466" fg:w="13"/><text x="13.8292%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (10 samples, 0.02%)</title><rect x="13.5855%" y="1237" width="0.0210%" height="15" fill="rgb(209,212,41)" fg:x="6469" fg:w="10"/><text x="13.8355%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (22 samples, 0.05%)</title><rect x="13.5645%" y="1269" width="0.0462%" height="15" fill="rgb(207,154,6)" fg:x="6459" fg:w="22"/><text x="13.8145%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_alias (41 samples, 0.09%)</title><rect x="13.5309%" y="1285" width="0.0861%" height="15" fill="rgb(223,64,47)" fg:x="6443" fg:w="41"/><text x="13.7809%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="13.6317%" y="1269" width="0.0105%" height="15" fill="rgb(211,161,38)" fg:x="6491" fg:w="5"/><text x="13.8817%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="13.6422%" y="1269" width="0.0168%" height="15" fill="rgb(219,138,40)" fg:x="6496" fg:w="8"/><text x="13.8922%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (8 samples, 0.02%)</title><rect x="13.6716%" y="1253" width="0.0168%" height="15" fill="rgb(241,228,46)" fg:x="6510" fg:w="8"/><text x="13.9216%" y="1263.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="13.6884%" y="1253" width="0.0147%" height="15" fill="rgb(223,209,38)" fg:x="6518" fg:w="7"/><text x="13.9384%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="13.7031%" y="1253" width="0.0147%" height="15" fill="rgb(236,164,45)" fg:x="6525" fg:w="7"/><text x="13.9531%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="13.7073%" y="1237" width="0.0105%" height="15" fill="rgb(231,15,5)" fg:x="6527" fg:w="5"/><text x="13.9573%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (28 samples, 0.06%)</title><rect x="13.6632%" y="1269" width="0.0588%" height="15" fill="rgb(252,35,15)" fg:x="6506" fg:w="28"/><text x="13.9132%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_free (5 samples, 0.01%)</title><rect x="13.7556%" y="1253" width="0.0105%" height="15" fill="rgb(248,181,18)" fg:x="6550" fg:w="5"/><text x="14.0056%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="13.7661%" y="1253" width="0.0189%" height="15" fill="rgb(233,39,42)" fg:x="6555" fg:w="9"/><text x="14.0161%" y="1263.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (26 samples, 0.05%)</title><rect x="13.7850%" y="1253" width="0.0546%" height="15" fill="rgb(238,110,33)" fg:x="6564" fg:w="26"/><text x="14.0350%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (5 samples, 0.01%)</title><rect x="13.8459%" y="1253" width="0.0105%" height="15" fill="rgb(233,195,10)" fg:x="6593" fg:w="5"/><text x="14.0959%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="13.8837%" y="1237" width="0.0126%" height="15" fill="rgb(254,105,3)" fg:x="6611" fg:w="6"/><text x="14.1337%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (26 samples, 0.05%)</title><rect x="13.8690%" y="1253" width="0.0546%" height="15" fill="rgb(221,225,9)" fg:x="6604" fg:w="26"/><text x="14.1190%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (12 samples, 0.03%)</title><rect x="13.8984%" y="1237" width="0.0252%" height="15" fill="rgb(224,227,45)" fg:x="6618" fg:w="12"/><text x="14.1484%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="13.9068%" y="1221" width="0.0168%" height="15" fill="rgb(229,198,43)" fg:x="6622" fg:w="8"/><text x="14.1568%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (6 samples, 0.01%)</title><rect x="13.9278%" y="1253" width="0.0126%" height="15" fill="rgb(206,209,35)" fg:x="6632" fg:w="6"/><text x="14.1778%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (9 samples, 0.02%)</title><rect x="13.9404%" y="1253" width="0.0189%" height="15" fill="rgb(245,195,53)" fg:x="6638" fg:w="9"/><text x="14.1904%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_free (5 samples, 0.01%)</title><rect x="14.0349%" y="1237" width="0.0105%" height="15" fill="rgb(240,92,26)" fg:x="6683" fg:w="5"/><text x="14.2849%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (11 samples, 0.02%)</title><rect x="14.0517%" y="1237" width="0.0231%" height="15" fill="rgb(207,40,23)" fg:x="6691" fg:w="11"/><text x="14.3017%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (13 samples, 0.03%)</title><rect x="14.0748%" y="1237" width="0.0273%" height="15" fill="rgb(223,111,35)" fg:x="6702" fg:w="13"/><text x="14.3248%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (9 samples, 0.02%)</title><rect x="14.1588%" y="1173" width="0.0189%" height="15" fill="rgb(229,147,28)" fg:x="6742" fg:w="9"/><text x="14.4088%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_pointer_size (6 samples, 0.01%)</title><rect x="14.2386%" y="1093" width="0.0126%" height="15" fill="rgb(211,29,28)" fg:x="6780" fg:w="6"/><text x="14.4886%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (12 samples, 0.03%)</title><rect x="14.2575%" y="1077" width="0.0252%" height="15" fill="rgb(228,72,33)" fg:x="6789" fg:w="12"/><text x="14.5075%" y="1087.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (25 samples, 0.05%)</title><rect x="14.2512%" y="1093" width="0.0525%" height="15" fill="rgb(205,214,31)" fg:x="6786" fg:w="25"/><text x="14.5012%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (10 samples, 0.02%)</title><rect x="14.2827%" y="1077" width="0.0210%" height="15" fill="rgb(224,111,15)" fg:x="6801" fg:w="10"/><text x="14.5327%" y="1087.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (47 samples, 0.10%)</title><rect x="14.2176%" y="1109" width="0.0987%" height="15" fill="rgb(253,21,26)" fg:x="6770" fg:w="47"/><text x="14.4676%" y="1119.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="14.3037%" y="1093" width="0.0126%" height="15" fill="rgb(245,139,43)" fg:x="6811" fg:w="6"/><text x="14.5537%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (50 samples, 0.11%)</title><rect x="14.2155%" y="1125" width="0.1050%" height="15" fill="rgb(252,170,7)" fg:x="6769" fg:w="50"/><text x="14.4655%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (71 samples, 0.15%)</title><rect x="14.1840%" y="1157" width="0.1491%" height="15" fill="rgb(231,118,14)" fg:x="6754" fg:w="71"/><text x="14.4340%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (62 samples, 0.13%)</title><rect x="14.2029%" y="1141" width="0.1302%" height="15" fill="rgb(238,83,0)" fg:x="6763" fg:w="62"/><text x="14.4529%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_size (6 samples, 0.01%)</title><rect x="14.3205%" y="1125" width="0.0126%" height="15" fill="rgb(221,39,39)" fg:x="6819" fg:w="6"/><text x="14.5705%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (76 samples, 0.16%)</title><rect x="14.1777%" y="1173" width="0.1596%" height="15" fill="rgb(222,119,46)" fg:x="6751" fg:w="76"/><text x="14.4277%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (115 samples, 0.24%)</title><rect x="14.1231%" y="1237" width="0.2415%" height="15" fill="rgb(222,165,49)" fg:x="6725" fg:w="115"/><text x="14.3731%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (109 samples, 0.23%)</title><rect x="14.1357%" y="1221" width="0.2289%" height="15" fill="rgb(219,113,52)" fg:x="6731" fg:w="109"/><text x="14.3857%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (106 samples, 0.22%)</title><rect x="14.1420%" y="1205" width="0.2226%" height="15" fill="rgb(214,7,15)" fg:x="6734" fg:w="106"/><text x="14.3920%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (104 samples, 0.22%)</title><rect x="14.1462%" y="1189" width="0.2184%" height="15" fill="rgb(235,32,4)" fg:x="6736" fg:w="104"/><text x="14.3962%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (7 samples, 0.01%)</title><rect x="14.3499%" y="1173" width="0.0147%" height="15" fill="rgb(238,90,54)" fg:x="6833" fg:w="7"/><text x="14.5999%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (13 samples, 0.03%)</title><rect x="14.3940%" y="1221" width="0.0273%" height="15" fill="rgb(213,208,19)" fg:x="6854" fg:w="13"/><text x="14.6440%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (28 samples, 0.06%)</title><rect x="14.3646%" y="1237" width="0.0588%" height="15" fill="rgb(233,156,4)" fg:x="6840" fg:w="28"/><text x="14.6146%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (17 samples, 0.04%)</title><rect x="14.5284%" y="1189" width="0.0357%" height="15" fill="rgb(207,194,5)" fg:x="6918" fg:w="17"/><text x="14.7784%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (16 samples, 0.03%)</title><rect x="14.5305%" y="1173" width="0.0336%" height="15" fill="rgb(206,111,30)" fg:x="6919" fg:w="16"/><text x="14.7805%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (16 samples, 0.03%)</title><rect x="14.5305%" y="1157" width="0.0336%" height="15" fill="rgb(243,70,54)" fg:x="6919" fg:w="16"/><text x="14.7805%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="14.5788%" y="1173" width="0.0147%" height="15" fill="rgb(242,28,8)" fg:x="6942" fg:w="7"/><text x="14.8288%" y="1183.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="14.5935%" y="1173" width="0.0147%" height="15" fill="rgb(219,106,18)" fg:x="6949" fg:w="7"/><text x="14.8435%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (9 samples, 0.02%)</title><rect x="14.6082%" y="1173" width="0.0189%" height="15" fill="rgb(244,222,10)" fg:x="6956" fg:w="9"/><text x="14.8582%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="14.6397%" y="1157" width="0.0168%" height="15" fill="rgb(236,179,52)" fg:x="6971" fg:w="8"/><text x="14.8897%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (81 samples, 0.17%)</title><rect x="14.4906%" y="1205" width="0.1701%" height="15" fill="rgb(213,23,39)" fg:x="6900" fg:w="81"/><text x="14.7406%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (46 samples, 0.10%)</title><rect x="14.5641%" y="1189" width="0.0966%" height="15" fill="rgb(238,48,10)" fg:x="6935" fg:w="46"/><text x="14.8141%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (16 samples, 0.03%)</title><rect x="14.6271%" y="1173" width="0.0336%" height="15" fill="rgb(251,196,23)" fg:x="6965" fg:w="16"/><text x="14.8771%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="14.6880%" y="1189" width="0.0147%" height="15" fill="rgb(250,152,24)" fg:x="6994" fg:w="7"/><text x="14.9380%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (13 samples, 0.03%)</title><rect x="14.7048%" y="1189" width="0.0273%" height="15" fill="rgb(209,150,17)" fg:x="7002" fg:w="13"/><text x="14.9548%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (10 samples, 0.02%)</title><rect x="14.7111%" y="1173" width="0.0210%" height="15" fill="rgb(234,202,34)" fg:x="7005" fg:w="10"/><text x="14.9611%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (5 samples, 0.01%)</title><rect x="14.7216%" y="1157" width="0.0105%" height="15" fill="rgb(253,148,53)" fg:x="7010" fg:w="5"/><text x="14.9716%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="14.7216%" y="1141" width="0.0105%" height="15" fill="rgb(218,129,16)" fg:x="7010" fg:w="5"/><text x="14.9716%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="14.7321%" y="1189" width="0.0168%" height="15" fill="rgb(216,85,19)" fg:x="7015" fg:w="8"/><text x="14.9821%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_type_modifiers (47 samples, 0.10%)</title><rect x="14.6607%" y="1205" width="0.0987%" height="15" fill="rgb(235,228,7)" fg:x="6981" fg:w="47"/><text x="14.9107%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (158 samples, 0.33%)</title><rect x="14.4297%" y="1221" width="0.3318%" height="15" fill="rgb(245,175,0)" fg:x="6871" fg:w="158"/><text x="14.6797%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (168 samples, 0.35%)</title><rect x="14.4255%" y="1237" width="0.3528%" height="15" fill="rgb(208,168,36)" fg:x="6869" fg:w="168"/><text x="14.6755%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="14.8287%" y="1221" width="0.0105%" height="15" fill="rgb(246,171,24)" fg:x="7061" fg:w="5"/><text x="15.0787%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="14.8539%" y="1221" width="0.0126%" height="15" fill="rgb(215,142,24)" fg:x="7073" fg:w="6"/><text x="15.1039%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="14.9064%" y="1205" width="0.0147%" height="15" fill="rgb(250,187,7)" fg:x="7098" fg:w="7"/><text x="15.1564%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_compound_field_access (25 samples, 0.05%)</title><rect x="14.8770%" y="1221" width="0.0525%" height="15" fill="rgb(228,66,33)" fg:x="7084" fg:w="25"/><text x="15.1270%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::expect_token (5 samples, 0.01%)</title><rect x="14.9610%" y="1205" width="0.0105%" height="15" fill="rgb(234,215,21)" fg:x="7124" fg:w="5"/><text x="15.2110%" y="1215.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (15 samples, 0.03%)</title><rect x="15.0387%" y="1189" width="0.0315%" height="15" fill="rgb(222,191,20)" fg:x="7161" fg:w="15"/><text x="15.2887%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="15.0702%" y="1189" width="0.0105%" height="15" fill="rgb(245,79,54)" fg:x="7176" fg:w="5"/><text x="15.3202%" y="1199.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="15.1122%" y="1173" width="0.0126%" height="15" fill="rgb(240,10,37)" fg:x="7196" fg:w="6"/><text x="15.3622%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (21 samples, 0.04%)</title><rect x="15.1354%" y="1173" width="0.0441%" height="15" fill="rgb(214,192,32)" fg:x="7207" fg:w="21"/><text x="15.3854%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (14 samples, 0.03%)</title><rect x="15.1501%" y="1157" width="0.0294%" height="15" fill="rgb(209,36,54)" fg:x="7214" fg:w="14"/><text x="15.4001%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (14 samples, 0.03%)</title><rect x="15.1501%" y="1141" width="0.0294%" height="15" fill="rgb(220,10,11)" fg:x="7214" fg:w="14"/><text x="15.4001%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (11 samples, 0.02%)</title><rect x="15.1564%" y="1125" width="0.0231%" height="15" fill="rgb(221,106,17)" fg:x="7217" fg:w="11"/><text x="15.4064%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (9 samples, 0.02%)</title><rect x="15.1606%" y="1109" width="0.0189%" height="15" fill="rgb(251,142,44)" fg:x="7219" fg:w="9"/><text x="15.4106%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="15.1921%" y="1157" width="0.0105%" height="15" fill="rgb(238,13,15)" fg:x="7234" fg:w="5"/><text x="15.4421%" y="1167.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (19 samples, 0.04%)</title><rect x="15.3013%" y="1109" width="0.0399%" height="15" fill="rgb(208,107,27)" fg:x="7286" fg:w="19"/><text x="15.5513%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (6 samples, 0.01%)</title><rect x="15.3496%" y="1093" width="0.0126%" height="15" fill="rgb(205,136,37)" fg:x="7309" fg:w="6"/><text x="15.5996%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (13 samples, 0.03%)</title><rect x="15.3412%" y="1109" width="0.0273%" height="15" fill="rgb(250,205,27)" fg:x="7305" fg:w="13"/><text x="15.5912%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="15.4168%" y="981" width="0.0126%" height="15" fill="rgb(210,80,43)" fg:x="7341" fg:w="6"/><text x="15.6668%" y="991.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (13 samples, 0.03%)</title><rect x="15.4147%" y="997" width="0.0273%" height="15" fill="rgb(247,160,36)" fg:x="7340" fg:w="13"/><text x="15.6647%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (26 samples, 0.05%)</title><rect x="15.3916%" y="1061" width="0.0546%" height="15" fill="rgb(234,13,49)" fg:x="7329" fg:w="26"/><text x="15.6416%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (23 samples, 0.05%)</title><rect x="15.3979%" y="1045" width="0.0483%" height="15" fill="rgb(234,122,0)" fg:x="7332" fg:w="23"/><text x="15.6479%" y="1055.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (21 samples, 0.04%)</title><rect x="15.4021%" y="1029" width="0.0441%" height="15" fill="rgb(207,146,38)" fg:x="7334" fg:w="21"/><text x="15.6521%" y="1039.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (20 samples, 0.04%)</title><rect x="15.4042%" y="1013" width="0.0420%" height="15" fill="rgb(207,177,25)" fg:x="7335" fg:w="20"/><text x="15.6542%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (29 samples, 0.06%)</title><rect x="15.3874%" y="1077" width="0.0609%" height="15" fill="rgb(211,178,42)" fg:x="7327" fg:w="29"/><text x="15.6374%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (54 samples, 0.11%)</title><rect x="15.3685%" y="1109" width="0.1134%" height="15" fill="rgb(230,69,54)" fg:x="7318" fg:w="54"/><text x="15.6185%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (53 samples, 0.11%)</title><rect x="15.3706%" y="1093" width="0.1113%" height="15" fill="rgb(214,135,41)" fg:x="7319" fg:w="53"/><text x="15.6206%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (13 samples, 0.03%)</title><rect x="15.4546%" y="1077" width="0.0273%" height="15" fill="rgb(237,67,25)" fg:x="7359" fg:w="13"/><text x="15.7046%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (119 samples, 0.25%)</title><rect x="15.2488%" y="1141" width="0.2499%" height="15" fill="rgb(222,189,50)" fg:x="7261" fg:w="119"/><text x="15.4988%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (105 samples, 0.22%)</title><rect x="15.2782%" y="1125" width="0.2205%" height="15" fill="rgb(245,148,34)" fg:x="7275" fg:w="105"/><text x="15.5282%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_named_arg_operator (134 samples, 0.28%)</title><rect x="15.2194%" y="1157" width="0.2814%" height="15" fill="rgb(222,29,6)" fg:x="7247" fg:w="134"/><text x="15.4694%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="15.5218%" y="1141" width="0.0168%" height="15" fill="rgb(221,189,43)" fg:x="7391" fg:w="8"/><text x="15.7718%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (19 samples, 0.04%)</title><rect x="15.5008%" y="1157" width="0.0399%" height="15" fill="rgb(207,36,27)" fg:x="7381" fg:w="19"/><text x="15.7508%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="15.5449%" y="1141" width="0.0105%" height="15" fill="rgb(217,90,24)" fg:x="7402" fg:w="5"/><text x="15.7949%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (9 samples, 0.02%)</title><rect x="15.5617%" y="1141" width="0.0189%" height="15" fill="rgb(224,66,35)" fg:x="7410" fg:w="9"/><text x="15.8117%" y="1151.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (13 samples, 0.03%)</title><rect x="15.6079%" y="1125" width="0.0273%" height="15" fill="rgb(221,13,50)" fg:x="7432" fg:w="13"/><text x="15.8579%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (5 samples, 0.01%)</title><rect x="15.6499%" y="1125" width="0.0105%" height="15" fill="rgb(236,68,49)" fg:x="7452" fg:w="5"/><text x="15.8999%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`_free (5 samples, 0.01%)</title><rect x="15.6877%" y="1109" width="0.0105%" height="15" fill="rgb(229,146,28)" fg:x="7470" fg:w="5"/><text x="15.9377%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="15.7024%" y="1109" width="0.0105%" height="15" fill="rgb(225,31,38)" fg:x="7477" fg:w="5"/><text x="15.9524%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="15.8095%" y="949" width="0.0189%" height="15" fill="rgb(250,208,3)" fg:x="7528" fg:w="9"/><text x="16.0595%" y="959.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (24 samples, 0.05%)</title><rect x="15.7990%" y="965" width="0.0504%" height="15" fill="rgb(246,54,23)" fg:x="7523" fg:w="24"/><text x="16.0490%" y="975.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (10 samples, 0.02%)</title><rect x="15.8284%" y="949" width="0.0210%" height="15" fill="rgb(243,76,11)" fg:x="7537" fg:w="10"/><text x="16.0784%" y="959.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (34 samples, 0.07%)</title><rect x="15.7801%" y="981" width="0.0714%" height="15" fill="rgb(245,21,50)" fg:x="7514" fg:w="34"/><text x="16.0301%" y="991.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (40 samples, 0.08%)</title><rect x="15.7717%" y="997" width="0.0840%" height="15" fill="rgb(228,9,43)" fg:x="7510" fg:w="40"/><text x="16.0217%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (48 samples, 0.10%)</title><rect x="15.7591%" y="1045" width="0.1008%" height="15" fill="rgb(208,100,47)" fg:x="7504" fg:w="48"/><text x="16.0091%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (46 samples, 0.10%)</title><rect x="15.7633%" y="1029" width="0.0966%" height="15" fill="rgb(232,26,8)" fg:x="7506" fg:w="46"/><text x="16.0133%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (44 samples, 0.09%)</title><rect x="15.7675%" y="1013" width="0.0924%" height="15" fill="rgb(216,166,38)" fg:x="7508" fg:w="44"/><text x="16.0175%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (69 samples, 0.14%)</title><rect x="15.7486%" y="1077" width="0.1449%" height="15" fill="rgb(251,202,51)" fg:x="7499" fg:w="69"/><text x="15.9986%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (69 samples, 0.14%)</title><rect x="15.7486%" y="1061" width="0.1449%" height="15" fill="rgb(254,216,34)" fg:x="7499" fg:w="69"/><text x="15.9986%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (12 samples, 0.03%)</title><rect x="15.8683%" y="1045" width="0.0252%" height="15" fill="rgb(251,32,27)" fg:x="7556" fg:w="12"/><text x="16.1183%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (80 samples, 0.17%)</title><rect x="15.7297%" y="1109" width="0.1680%" height="15" fill="rgb(208,127,28)" fg:x="7490" fg:w="80"/><text x="15.9797%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (77 samples, 0.16%)</title><rect x="15.7360%" y="1093" width="0.1617%" height="15" fill="rgb(224,137,22)" fg:x="7493" fg:w="77"/><text x="15.9860%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (11 samples, 0.02%)</title><rect x="15.9061%" y="1093" width="0.0231%" height="15" fill="rgb(254,70,32)" fg:x="7574" fg:w="11"/><text x="16.1561%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (17 samples, 0.04%)</title><rect x="15.8977%" y="1109" width="0.0357%" height="15" fill="rgb(229,75,37)" fg:x="7570" fg:w="17"/><text x="16.1477%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (5 samples, 0.01%)</title><rect x="15.9670%" y="1061" width="0.0105%" height="15" fill="rgb(252,64,23)" fg:x="7603" fg:w="5"/><text x="16.2170%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="16.0111%" y="1029" width="0.0126%" height="15" fill="rgb(232,162,48)" fg:x="7624" fg:w="6"/><text x="16.2611%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="16.0048%" y="1045" width="0.0252%" height="15" fill="rgb(246,160,12)" fg:x="7621" fg:w="12"/><text x="16.2548%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (36 samples, 0.08%)</title><rect x="15.9586%" y="1077" width="0.0756%" height="15" fill="rgb(247,166,0)" fg:x="7599" fg:w="36"/><text x="16.2086%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (27 samples, 0.06%)</title><rect x="15.9775%" y="1061" width="0.0567%" height="15" fill="rgb(249,219,21)" fg:x="7608" fg:w="27"/><text x="16.2275%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (44 samples, 0.09%)</title><rect x="15.9439%" y="1093" width="0.0924%" height="15" fill="rgb(205,209,3)" fg:x="7592" fg:w="44"/><text x="16.1939%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (48 samples, 0.10%)</title><rect x="15.9376%" y="1109" width="0.1008%" height="15" fill="rgb(243,44,1)" fg:x="7589" fg:w="48"/><text x="16.1876%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="16.0468%" y="1093" width="0.0168%" height="15" fill="rgb(206,159,16)" fg:x="7641" fg:w="8"/><text x="16.2968%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (7 samples, 0.01%)</title><rect x="16.0489%" y="1077" width="0.0147%" height="15" fill="rgb(244,77,30)" fg:x="7642" fg:w="7"/><text x="16.2989%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (15 samples, 0.03%)</title><rect x="16.0384%" y="1109" width="0.0315%" height="15" fill="rgb(218,69,12)" fg:x="7637" fg:w="15"/><text x="16.2884%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::try_parse (6 samples, 0.01%)</title><rect x="16.0699%" y="1109" width="0.0126%" height="15" fill="rgb(212,87,7)" fg:x="7652" fg:w="6"/><text x="16.3199%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (198 samples, 0.42%)</title><rect x="15.6688%" y="1125" width="0.4158%" height="15" fill="rgb(245,114,25)" fg:x="7461" fg:w="198"/><text x="15.9188%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_args (436 samples, 0.92%)</title><rect x="15.1795%" y="1173" width="0.9156%" height="15" fill="rgb(210,61,42)" fg:x="7228" fg:w="436"/><text x="15.4295%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_wildcard_expr (264 samples, 0.55%)</title><rect x="15.5407%" y="1157" width="0.5544%" height="15" fill="rgb(211,52,33)" fg:x="7400" fg:w="264"/><text x="15.7907%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (241 samples, 0.51%)</title><rect x="15.5890%" y="1141" width="0.5061%" height="15" fill="rgb(234,58,33)" fg:x="7423" fg:w="241"/><text x="15.8390%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (480 samples, 1.01%)</title><rect x="15.0954%" y="1189" width="1.0080%" height="15" fill="rgb(220,115,36)" fg:x="7188" fg:w="480"/><text x="15.3454%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_argument_list (541 samples, 1.14%)</title><rect x="14.9736%" y="1205" width="1.1361%" height="15" fill="rgb(243,153,54)" fg:x="7130" fg:w="541"/><text x="15.2236%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_call (564 samples, 1.18%)</title><rect x="14.9295%" y="1221" width="1.1845%" height="15" fill="rgb(251,47,18)" fg:x="7109" fg:w="564"/><text x="15.1795%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (641 samples, 1.35%)</title><rect x="14.7783%" y="1237" width="1.3462%" height="15" fill="rgb(242,102,42)" fg:x="7037" fg:w="641"/><text x="15.0283%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (1,035 samples, 2.17%)</title><rect x="13.9593%" y="1253" width="2.1736%" height="15" fill="rgb(234,31,38)" fg:x="6647" fg:w="1035"/><text x="14.2093%" y="1263.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_select_item (1,271 samples, 2.67%)</title><rect x="13.4700%" y="1301" width="2.6692%" height="15" fill="rgb(221,117,51)" fg:x="6414" fg:w="1271"/><text x="13.7200%" y="1311.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_wildcard_expr (1,200 samples, 2.52%)</title><rect x="13.6191%" y="1285" width="2.5201%" height="15" fill="rgb(212,20,18)" fg:x="6485" fg:w="1200"/><text x="13.8691%" y="1295.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (1,148 samples, 2.41%)</title><rect x="13.7283%" y="1269" width="2.4109%" height="15" fill="rgb(245,133,36)" fg:x="6537" fg:w="1148"/><text x="13.9783%" y="1279.50">sq..</text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="16.1623%" y="1285" width="0.0126%" height="15" fill="rgb(212,6,19)" fg:x="7696" fg:w="6"/><text x="16.4123%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (5 samples, 0.01%)</title><rect x="16.1896%" y="1285" width="0.0105%" height="15" fill="rgb(218,1,36)" fg:x="7709" fg:w="5"/><text x="16.4396%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="16.2799%" y="1237" width="0.0168%" height="15" fill="rgb(246,84,54)" fg:x="7752" fg:w="8"/><text x="16.5299%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="16.2862%" y="1221" width="0.0105%" height="15" fill="rgb(242,110,6)" fg:x="7755" fg:w="5"/><text x="16.5362%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (24 samples, 0.05%)</title><rect x="16.2484%" y="1269" width="0.0504%" height="15" fill="rgb(214,47,5)" fg:x="7737" fg:w="24"/><text x="16.4984%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (17 samples, 0.04%)</title><rect x="16.2631%" y="1253" width="0.0357%" height="15" fill="rgb(218,159,25)" fg:x="7744" fg:w="17"/><text x="16.5131%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_table_alias (8 samples, 0.02%)</title><rect x="16.2988%" y="1269" width="0.0168%" height="15" fill="rgb(215,211,28)" fg:x="7761" fg:w="8"/><text x="16.5488%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_alias (6 samples, 0.01%)</title><rect x="16.3030%" y="1253" width="0.0126%" height="15" fill="rgb(238,59,32)" fg:x="7763" fg:w="6"/><text x="16.5530%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (5 samples, 0.01%)</title><rect x="16.3198%" y="1269" width="0.0105%" height="15" fill="rgb(226,82,3)" fg:x="7771" fg:w="5"/><text x="16.5698%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="16.3765%" y="1237" width="0.0105%" height="15" fill="rgb(240,164,32)" fg:x="7798" fg:w="5"/><text x="16.6265%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_table_factor (90 samples, 0.19%)</title><rect x="16.2001%" y="1285" width="0.1890%" height="15" fill="rgb(232,46,7)" fg:x="7714" fg:w="90"/><text x="16.4501%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_tokens (28 samples, 0.06%)</title><rect x="16.3303%" y="1269" width="0.0588%" height="15" fill="rgb(229,129,53)" fg:x="7776" fg:w="28"/><text x="16.5803%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="16.3639%" y="1253" width="0.0252%" height="15" fill="rgb(234,188,29)" fg:x="7792" fg:w="12"/><text x="16.6139%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (1,454 samples, 3.05%)</title><rect x="13.3419%" y="1317" width="3.0535%" height="15" fill="rgb(246,141,4)" fg:x="6353" fg:w="1454"/><text x="13.5919%" y="1327.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_table_and_joins (122 samples, 0.26%)</title><rect x="16.1392%" y="1301" width="0.2562%" height="15" fill="rgb(229,23,39)" fg:x="7685" fg:w="122"/><text x="16.3892%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (8 samples, 0.02%)</title><rect x="16.4080%" y="1301" width="0.0168%" height="15" fill="rgb(206,12,3)" fg:x="7813" fg:w="8"/><text x="16.6580%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (12 samples, 0.03%)</title><rect x="16.4521%" y="1285" width="0.0252%" height="15" fill="rgb(252,226,20)" fg:x="7834" fg:w="12"/><text x="16.7021%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (5 samples, 0.01%)</title><rect x="16.5886%" y="1125" width="0.0105%" height="15" fill="rgb(216,123,35)" fg:x="7899" fg:w="5"/><text x="16.8386%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (22 samples, 0.05%)</title><rect x="16.5592%" y="1205" width="0.0462%" height="15" fill="rgb(212,68,40)" fg:x="7885" fg:w="22"/><text x="16.8092%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (22 samples, 0.05%)</title><rect x="16.5592%" y="1189" width="0.0462%" height="15" fill="rgb(254,125,32)" fg:x="7885" fg:w="22"/><text x="16.8092%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (18 samples, 0.04%)</title><rect x="16.5676%" y="1173" width="0.0378%" height="15" fill="rgb(253,97,22)" fg:x="7889" fg:w="18"/><text x="16.8176%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (11 samples, 0.02%)</title><rect x="16.5823%" y="1157" width="0.0231%" height="15" fill="rgb(241,101,14)" fg:x="7896" fg:w="11"/><text x="16.8323%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (11 samples, 0.02%)</title><rect x="16.5823%" y="1141" width="0.0231%" height="15" fill="rgb(238,103,29)" fg:x="7896" fg:w="11"/><text x="16.8323%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (33 samples, 0.07%)</title><rect x="16.5424%" y="1269" width="0.0693%" height="15" fill="rgb(233,195,47)" fg:x="7877" fg:w="33"/><text x="16.7924%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (30 samples, 0.06%)</title><rect x="16.5487%" y="1253" width="0.0630%" height="15" fill="rgb(246,218,30)" fg:x="7880" fg:w="30"/><text x="16.7987%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (30 samples, 0.06%)</title><rect x="16.5487%" y="1237" width="0.0630%" height="15" fill="rgb(219,145,47)" fg:x="7880" fg:w="30"/><text x="16.7987%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (29 samples, 0.06%)</title><rect x="16.5508%" y="1221" width="0.0609%" height="15" fill="rgb(243,12,26)" fg:x="7881" fg:w="29"/><text x="16.8008%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (7 samples, 0.01%)</title><rect x="16.6138%" y="1269" width="0.0147%" height="15" fill="rgb(214,87,16)" fg:x="7911" fg:w="7"/><text x="16.8638%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="16.6726%" y="1205" width="0.0126%" height="15" fill="rgb(208,99,42)" fg:x="7939" fg:w="6"/><text x="16.9226%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (24 samples, 0.05%)</title><rect x="16.6369%" y="1237" width="0.0504%" height="15" fill="rgb(253,99,2)" fg:x="7922" fg:w="24"/><text x="16.8869%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (13 samples, 0.03%)</title><rect x="16.6600%" y="1221" width="0.0273%" height="15" fill="rgb(220,168,23)" fg:x="7933" fg:w="13"/><text x="16.9100%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (33 samples, 0.07%)</title><rect x="16.6285%" y="1269" width="0.0693%" height="15" fill="rgb(242,38,24)" fg:x="7918" fg:w="33"/><text x="16.8785%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (32 samples, 0.07%)</title><rect x="16.6306%" y="1253" width="0.0672%" height="15" fill="rgb(225,182,9)" fg:x="7919" fg:w="32"/><text x="16.8806%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (6 samples, 0.01%)</title><rect x="16.6978%" y="1269" width="0.0126%" height="15" fill="rgb(243,178,37)" fg:x="7951" fg:w="6"/><text x="16.9478%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (106 samples, 0.22%)</title><rect x="16.4941%" y="1285" width="0.2226%" height="15" fill="rgb(232,139,19)" fg:x="7854" fg:w="106"/><text x="16.7441%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_group_by (154 samples, 0.32%)</title><rect x="16.3954%" y="1317" width="0.3234%" height="15" fill="rgb(225,201,24)" fg:x="7807" fg:w="154"/><text x="16.6454%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (135 samples, 0.28%)</title><rect x="16.4353%" y="1301" width="0.2835%" height="15" fill="rgb(221,47,46)" fg:x="7826" fg:w="135"/><text x="16.6853%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_query_body (1,727 samples, 3.63%)</title><rect x="13.0941%" y="1349" width="3.6269%" height="15" fill="rgb(249,23,13)" fg:x="6235" fg:w="1727"/><text x="13.3441%" y="1359.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_select (1,681 samples, 3.53%)</title><rect x="13.1907%" y="1333" width="3.5303%" height="15" fill="rgb(219,9,5)" fg:x="6281" fg:w="1681"/><text x="13.4407%" y="1343.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_cte (1,854 samples, 3.89%)</title><rect x="12.8337%" y="1381" width="3.8936%" height="15" fill="rgb(254,171,16)" fg:x="6111" fg:w="1854"/><text x="13.0837%" y="1391.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_query (1,798 samples, 3.78%)</title><rect x="12.9513%" y="1365" width="3.7760%" height="15" fill="rgb(230,171,20)" fg:x="6167" fg:w="1798"/><text x="13.2013%" y="1375.50">sqlp..</text></g><g><title>libsystem_platform.dylib`_platform_memmove (81 samples, 0.17%)</title><rect x="16.7314%" y="1365" width="0.1701%" height="15" fill="rgb(210,71,41)" fg:x="7967" fg:w="81"/><text x="16.9814%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (18 samples, 0.04%)</title><rect x="16.9099%" y="1349" width="0.0378%" height="15" fill="rgb(206,173,20)" fg:x="8052" fg:w="18"/><text x="17.1599%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (8 samples, 0.02%)</title><rect x="16.9582%" y="1301" width="0.0168%" height="15" fill="rgb(233,88,34)" fg:x="8075" fg:w="8"/><text x="17.2082%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="16.9603%" y="1285" width="0.0147%" height="15" fill="rgb(223,209,46)" fg:x="8076" fg:w="7"/><text x="17.2103%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (10 samples, 0.02%)</title><rect x="16.9582%" y="1349" width="0.0210%" height="15" fill="rgb(250,43,18)" fg:x="8075" fg:w="10"/><text x="17.2082%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (10 samples, 0.02%)</title><rect x="16.9582%" y="1333" width="0.0210%" height="15" fill="rgb(208,13,10)" fg:x="8075" fg:w="10"/><text x="17.2082%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (10 samples, 0.02%)</title><rect x="16.9582%" y="1317" width="0.0210%" height="15" fill="rgb(212,200,36)" fg:x="8075" fg:w="10"/><text x="17.2082%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="17.0023%" y="1333" width="0.0105%" height="15" fill="rgb(225,90,30)" fg:x="8096" fg:w="5"/><text x="17.2523%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_free (6 samples, 0.01%)</title><rect x="17.0191%" y="1317" width="0.0126%" height="15" fill="rgb(236,182,39)" fg:x="8104" fg:w="6"/><text x="17.2691%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (20 samples, 0.04%)</title><rect x="17.0359%" y="1317" width="0.0420%" height="15" fill="rgb(212,144,35)" fg:x="8112" fg:w="20"/><text x="17.2859%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (5 samples, 0.01%)</title><rect x="17.0863%" y="1317" width="0.0105%" height="15" fill="rgb(228,63,44)" fg:x="8136" fg:w="5"/><text x="17.3363%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="17.1262%" y="1269" width="0.0126%" height="15" fill="rgb(228,109,6)" fg:x="8155" fg:w="6"/><text x="17.3762%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="17.1262%" y="1253" width="0.0126%" height="15" fill="rgb(238,117,24)" fg:x="8155" fg:w="6"/><text x="17.3762%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (21 samples, 0.04%)</title><rect x="17.0968%" y="1317" width="0.0441%" height="15" fill="rgb(242,26,26)" fg:x="8141" fg:w="21"/><text x="17.3468%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (15 samples, 0.03%)</title><rect x="17.1094%" y="1301" width="0.0315%" height="15" fill="rgb(221,92,48)" fg:x="8147" fg:w="15"/><text x="17.3594%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="17.1157%" y="1285" width="0.0252%" height="15" fill="rgb(209,209,32)" fg:x="8150" fg:w="12"/><text x="17.3657%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_free (7 samples, 0.01%)</title><rect x="17.1808%" y="1301" width="0.0147%" height="15" fill="rgb(221,70,22)" fg:x="8181" fg:w="7"/><text x="17.4308%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (7 samples, 0.01%)</title><rect x="17.1955%" y="1301" width="0.0147%" height="15" fill="rgb(248,145,5)" fg:x="8188" fg:w="7"/><text x="17.4455%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="17.2102%" y="1301" width="0.0189%" height="15" fill="rgb(226,116,26)" fg:x="8195" fg:w="9"/><text x="17.4602%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="17.2396%" y="1301" width="0.0147%" height="15" fill="rgb(244,5,17)" fg:x="8209" fg:w="7"/><text x="17.4896%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="17.2585%" y="1285" width="0.0126%" height="15" fill="rgb(252,159,33)" fg:x="8218" fg:w="6"/><text x="17.5085%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="17.3005%" y="1237" width="0.0105%" height="15" fill="rgb(206,71,0)" fg:x="8238" fg:w="5"/><text x="17.5505%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (11 samples, 0.02%)</title><rect x="17.3782%" y="1141" width="0.0231%" height="15" fill="rgb(233,118,54)" fg:x="8275" fg:w="11"/><text x="17.6282%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (9 samples, 0.02%)</title><rect x="17.4013%" y="1141" width="0.0189%" height="15" fill="rgb(234,83,48)" fg:x="8286" fg:w="9"/><text x="17.6513%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (26 samples, 0.05%)</title><rect x="17.3740%" y="1157" width="0.0546%" height="15" fill="rgb(228,3,54)" fg:x="8273" fg:w="26"/><text x="17.6240%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (49 samples, 0.10%)</title><rect x="17.3404%" y="1189" width="0.1029%" height="15" fill="rgb(226,155,13)" fg:x="8257" fg:w="49"/><text x="17.5904%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (46 samples, 0.10%)</title><rect x="17.3467%" y="1173" width="0.0966%" height="15" fill="rgb(241,28,37)" fg:x="8260" fg:w="46"/><text x="17.5967%" y="1183.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="17.4286%" y="1157" width="0.0147%" height="15" fill="rgb(233,93,10)" fg:x="8299" fg:w="7"/><text x="17.6786%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (64 samples, 0.13%)</title><rect x="17.3110%" y="1237" width="0.1344%" height="15" fill="rgb(225,113,19)" fg:x="8243" fg:w="64"/><text x="17.5610%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (60 samples, 0.13%)</title><rect x="17.3194%" y="1221" width="0.1260%" height="15" fill="rgb(241,2,18)" fg:x="8247" fg:w="60"/><text x="17.5694%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (54 samples, 0.11%)</title><rect x="17.3320%" y="1205" width="0.1134%" height="15" fill="rgb(228,207,21)" fg:x="8253" fg:w="54"/><text x="17.5820%" y="1215.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="17.4581%" y="1221" width="0.0126%" height="15" fill="rgb(213,211,35)" fg:x="8313" fg:w="6"/><text x="17.7081%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (106 samples, 0.22%)</title><rect x="17.2585%" y="1301" width="0.2226%" height="15" fill="rgb(209,83,10)" fg:x="8218" fg:w="106"/><text x="17.5085%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (99 samples, 0.21%)</title><rect x="17.2732%" y="1285" width="0.2079%" height="15" fill="rgb(209,164,1)" fg:x="8225" fg:w="99"/><text x="17.5232%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (92 samples, 0.19%)</title><rect x="17.2879%" y="1269" width="0.1932%" height="15" fill="rgb(213,184,43)" fg:x="8232" fg:w="92"/><text x="17.5379%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (90 samples, 0.19%)</title><rect x="17.2921%" y="1253" width="0.1890%" height="15" fill="rgb(231,61,34)" fg:x="8234" fg:w="90"/><text x="17.5421%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (13 samples, 0.03%)</title><rect x="17.4539%" y="1237" width="0.0273%" height="15" fill="rgb(235,75,3)" fg:x="8311" fg:w="13"/><text x="17.7039%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="17.4854%" y="1285" width="0.0126%" height="15" fill="rgb(220,106,47)" fg:x="8326" fg:w="6"/><text x="17.7354%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (10 samples, 0.02%)</title><rect x="17.4812%" y="1301" width="0.0210%" height="15" fill="rgb(210,196,33)" fg:x="8324" fg:w="10"/><text x="17.7312%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="17.5778%" y="1237" width="0.0147%" height="15" fill="rgb(229,154,42)" fg:x="8370" fg:w="7"/><text x="17.8278%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="17.6072%" y="1221" width="0.0168%" height="15" fill="rgb(228,114,26)" fg:x="8384" fg:w="8"/><text x="17.8572%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="17.6240%" y="1221" width="0.0126%" height="15" fill="rgb(208,144,1)" fg:x="8392" fg:w="6"/><text x="17.8740%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (18 samples, 0.04%)</title><rect x="17.6009%" y="1237" width="0.0378%" height="15" fill="rgb(239,112,37)" fg:x="8381" fg:w="18"/><text x="17.8509%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (58 samples, 0.12%)</title><rect x="17.5232%" y="1269" width="0.1218%" height="15" fill="rgb(210,96,50)" fg:x="8344" fg:w="58"/><text x="17.7732%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (45 samples, 0.09%)</title><rect x="17.5505%" y="1253" width="0.0945%" height="15" fill="rgb(222,178,2)" fg:x="8357" fg:w="45"/><text x="17.8005%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (73 samples, 0.15%)</title><rect x="17.5022%" y="1301" width="0.1533%" height="15" fill="rgb(226,74,18)" fg:x="8334" fg:w="73"/><text x="17.7522%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (71 samples, 0.15%)</title><rect x="17.5064%" y="1285" width="0.1491%" height="15" fill="rgb(225,67,54)" fg:x="8336" fg:w="71"/><text x="17.7564%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="17.6807%" y="1285" width="0.0105%" height="15" fill="rgb(251,92,32)" fg:x="8419" fg:w="5"/><text x="17.9307%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="17.6912%" y="1285" width="0.0126%" height="15" fill="rgb(228,149,22)" fg:x="8424" fg:w="6"/><text x="17.9412%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="17.7038%" y="1285" width="0.0147%" height="15" fill="rgb(243,54,13)" fg:x="8430" fg:w="7"/><text x="17.9538%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (29 samples, 0.06%)</title><rect x="17.6597%" y="1301" width="0.0609%" height="15" fill="rgb(243,180,28)" fg:x="8409" fg:w="29"/><text x="17.9097%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (277 samples, 0.58%)</title><rect x="17.1514%" y="1317" width="0.5817%" height="15" fill="rgb(208,167,24)" fg:x="8167" fg:w="277"/><text x="17.4014%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::try_parse (6 samples, 0.01%)</title><rect x="17.7206%" y="1301" width="0.0126%" height="15" fill="rgb(245,73,45)" fg:x="8438" fg:w="6"/><text x="17.9706%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_order_by_expr (357 samples, 0.75%)</title><rect x="16.9855%" y="1349" width="0.7497%" height="15" fill="rgb(237,203,48)" fg:x="8088" fg:w="357"/><text x="17.2355%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (343 samples, 0.72%)</title><rect x="17.0149%" y="1333" width="0.7203%" height="15" fill="rgb(211,197,16)" fg:x="8102" fg:w="343"/><text x="17.2649%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_order_by (481 samples, 1.01%)</title><rect x="16.7272%" y="1381" width="1.0101%" height="15" fill="rgb(243,99,51)" fg:x="7965" fg:w="481"/><text x="16.9772%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (397 samples, 0.83%)</title><rect x="16.9036%" y="1365" width="0.8337%" height="15" fill="rgb(215,123,29)" fg:x="8049" fg:w="397"/><text x="17.1536%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (23 samples, 0.05%)</title><rect x="17.8130%" y="1365" width="0.0483%" height="15" fill="rgb(239,186,37)" fg:x="8482" fg:w="23"/><text x="18.0630%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (18 samples, 0.04%)</title><rect x="17.8235%" y="1349" width="0.0378%" height="15" fill="rgb(252,136,39)" fg:x="8487" fg:w="18"/><text x="18.0735%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (15 samples, 0.03%)</title><rect x="17.8298%" y="1333" width="0.0315%" height="15" fill="rgb(223,213,32)" fg:x="8490" fg:w="15"/><text x="18.0798%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (5 samples, 0.01%)</title><rect x="17.8508%" y="1317" width="0.0105%" height="15" fill="rgb(233,115,5)" fg:x="8500" fg:w="5"/><text x="18.1008%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (173 samples, 0.36%)</title><rect x="17.8613%" y="1365" width="0.3633%" height="15" fill="rgb(207,226,44)" fg:x="8505" fg:w="173"/><text x="18.1113%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (11 samples, 0.02%)</title><rect x="18.2330%" y="1365" width="0.0231%" height="15" fill="rgb(208,126,0)" fg:x="8682" fg:w="11"/><text x="18.4830%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`rack_get_thread_index (5 samples, 0.01%)</title><rect x="18.2792%" y="1333" width="0.0105%" height="15" fill="rgb(244,66,21)" fg:x="8704" fg:w="5"/><text x="18.5292%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (6 samples, 0.01%)</title><rect x="18.3170%" y="1301" width="0.0126%" height="15" fill="rgb(222,97,12)" fg:x="8722" fg:w="6"/><text x="18.5670%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::FnOnce::call_once (42 samples, 0.09%)</title><rect x="18.2582%" y="1365" width="0.0882%" height="15" fill="rgb(219,213,19)" fg:x="8694" fg:w="42"/><text x="18.5082%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (36 samples, 0.08%)</title><rect x="18.2708%" y="1349" width="0.0756%" height="15" fill="rgb(252,169,30)" fg:x="8700" fg:w="36"/><text x="18.5208%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (26 samples, 0.05%)</title><rect x="18.2918%" y="1333" width="0.0546%" height="15" fill="rgb(206,32,51)" fg:x="8710" fg:w="26"/><text x="18.5418%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (21 samples, 0.04%)</title><rect x="18.3023%" y="1317" width="0.0441%" height="15" fill="rgb(250,172,42)" fg:x="8715" fg:w="21"/><text x="18.5523%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (6 samples, 0.01%)</title><rect x="18.3338%" y="1301" width="0.0126%" height="15" fill="rgb(209,34,43)" fg:x="8730" fg:w="6"/><text x="18.5838%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (5 samples, 0.01%)</title><rect x="18.3590%" y="1365" width="0.0105%" height="15" fill="rgb(223,11,35)" fg:x="8742" fg:w="5"/><text x="18.6090%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (12 samples, 0.03%)</title><rect x="18.3695%" y="1365" width="0.0252%" height="15" fill="rgb(251,219,26)" fg:x="8747" fg:w="12"/><text x="18.6195%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keywords (17 samples, 0.04%)</title><rect x="18.3947%" y="1365" width="0.0357%" height="15" fill="rgb(231,119,3)" fg:x="8759" fg:w="17"/><text x="18.6447%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_one_of_keywords (5 samples, 0.01%)</title><rect x="18.4304%" y="1365" width="0.0105%" height="15" fill="rgb(216,97,11)" fg:x="8776" fg:w="5"/><text x="18.6804%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_group_by (5 samples, 0.01%)</title><rect x="18.4409%" y="1365" width="0.0105%" height="15" fill="rgb(223,59,9)" fg:x="8781" fg:w="5"/><text x="18.6909%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (106 samples, 0.22%)</title><rect x="18.7853%" y="1349" width="0.2226%" height="15" fill="rgb(233,93,31)" fg:x="8945" fg:w="106"/><text x="19.0353%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="19.0079%" y="1349" width="0.0126%" height="15" fill="rgb(239,81,33)" fg:x="9051" fg:w="6"/><text x="19.2579%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (13 samples, 0.03%)</title><rect x="19.0205%" y="1349" width="0.0273%" height="15" fill="rgb(213,120,34)" fg:x="9057" fg:w="13"/><text x="19.2705%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="19.0772%" y="1317" width="0.0105%" height="15" fill="rgb(243,49,53)" fg:x="9084" fg:w="5"/><text x="19.3272%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="19.0940%" y="1317" width="0.0105%" height="15" fill="rgb(247,216,33)" fg:x="9092" fg:w="5"/><text x="19.3440%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="19.0940%" y="1301" width="0.0105%" height="15" fill="rgb(226,26,14)" fg:x="9092" fg:w="5"/><text x="19.3440%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::expect_keyword (22 samples, 0.05%)</title><rect x="19.0604%" y="1349" width="0.0462%" height="15" fill="rgb(215,49,53)" fg:x="9076" fg:w="22"/><text x="19.3104%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (17 samples, 0.04%)</title><rect x="19.0709%" y="1333" width="0.0357%" height="15" fill="rgb(245,162,40)" fg:x="9081" fg:w="17"/><text x="19.3209%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::is_parse_comma_separated_end_with_trailing_commas (7 samples, 0.01%)</title><rect x="19.1066%" y="1349" width="0.0147%" height="15" fill="rgb(229,68,17)" fg:x="9098" fg:w="7"/><text x="19.3566%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_all_or_distinct (11 samples, 0.02%)</title><rect x="19.1213%" y="1349" width="0.0231%" height="15" fill="rgb(213,182,10)" fg:x="9105" fg:w="11"/><text x="19.3713%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_free (7 samples, 0.01%)</title><rect x="19.2326%" y="1333" width="0.0147%" height="15" fill="rgb(245,125,30)" fg:x="9158" fg:w="7"/><text x="19.4826%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="19.2473%" y="1333" width="0.0126%" height="15" fill="rgb(232,202,2)" fg:x="9165" fg:w="6"/><text x="19.4973%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (195 samples, 0.41%)</title><rect x="19.2599%" y="1333" width="0.4095%" height="15" fill="rgb(237,140,51)" fg:x="9171" fg:w="195"/><text x="19.5099%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::cmp::PartialEq&gt;::eq (5 samples, 0.01%)</title><rect x="19.6694%" y="1333" width="0.0105%" height="15" fill="rgb(236,157,25)" fg:x="9366" fg:w="5"/><text x="19.9194%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (10 samples, 0.02%)</title><rect x="19.6820%" y="1333" width="0.0210%" height="15" fill="rgb(219,209,0)" fg:x="9372" fg:w="10"/><text x="19.9320%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (9 samples, 0.02%)</title><rect x="19.7450%" y="1317" width="0.0189%" height="15" fill="rgb(240,116,54)" fg:x="9402" fg:w="9"/><text x="19.9950%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (5 samples, 0.01%)</title><rect x="19.8795%" y="1253" width="0.0105%" height="15" fill="rgb(216,10,36)" fg:x="9466" fg:w="5"/><text x="20.1295%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (94 samples, 0.20%)</title><rect x="19.7030%" y="1333" width="0.1974%" height="15" fill="rgb(222,72,44)" fg:x="9382" fg:w="94"/><text x="19.9530%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (56 samples, 0.12%)</title><rect x="19.7829%" y="1317" width="0.1176%" height="15" fill="rgb(232,159,9)" fg:x="9420" fg:w="56"/><text x="20.0329%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (28 samples, 0.06%)</title><rect x="19.8417%" y="1301" width="0.0588%" height="15" fill="rgb(210,39,32)" fg:x="9448" fg:w="28"/><text x="20.0917%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (19 samples, 0.04%)</title><rect x="19.8606%" y="1285" width="0.0399%" height="15" fill="rgb(216,194,45)" fg:x="9457" fg:w="19"/><text x="20.1106%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (13 samples, 0.03%)</title><rect x="19.8732%" y="1269" width="0.0273%" height="15" fill="rgb(218,18,35)" fg:x="9463" fg:w="13"/><text x="20.1232%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (5 samples, 0.01%)</title><rect x="19.8900%" y="1253" width="0.0105%" height="15" fill="rgb(207,83,51)" fg:x="9471" fg:w="5"/><text x="20.1400%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::is_parse_comma_separated_end_with_trailing_commas (15 samples, 0.03%)</title><rect x="19.9173%" y="1333" width="0.0315%" height="15" fill="rgb(225,63,43)" fg:x="9484" fg:w="15"/><text x="20.1673%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_select_item_exclude (7 samples, 0.01%)</title><rect x="20.0937%" y="1301" width="0.0147%" height="15" fill="rgb(207,57,36)" fg:x="9568" fg:w="7"/><text x="20.3437%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_select_item_ilike (5 samples, 0.01%)</title><rect x="20.1084%" y="1301" width="0.0105%" height="15" fill="rgb(216,99,33)" fg:x="9575" fg:w="5"/><text x="20.3584%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_select_item_rename (5 samples, 0.01%)</title><rect x="20.1189%" y="1301" width="0.0105%" height="15" fill="rgb(225,42,16)" fg:x="9580" fg:w="5"/><text x="20.3689%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_wildcard_additional_options (48 samples, 0.10%)</title><rect x="20.0370%" y="1317" width="0.1008%" height="15" fill="rgb(220,201,45)" fg:x="9541" fg:w="48"/><text x="20.2870%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="20.1672%" y="1301" width="0.0168%" height="15" fill="rgb(225,33,4)" fg:x="9603" fg:w="8"/><text x="20.4172%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="20.2008%" y="1285" width="0.0105%" height="15" fill="rgb(224,33,50)" fg:x="9619" fg:w="5"/><text x="20.4508%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="20.2113%" y="1285" width="0.0147%" height="15" fill="rgb(246,198,51)" fg:x="9624" fg:w="7"/><text x="20.4613%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="20.2134%" y="1269" width="0.0126%" height="15" fill="rgb(205,22,4)" fg:x="9625" fg:w="6"/><text x="20.4634%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (20 samples, 0.04%)</title><rect x="20.1882%" y="1301" width="0.0420%" height="15" fill="rgb(206,3,8)" fg:x="9613" fg:w="20"/><text x="20.4382%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (24 samples, 0.05%)</title><rect x="20.2617%" y="1285" width="0.0504%" height="15" fill="rgb(251,23,15)" fg:x="9648" fg:w="24"/><text x="20.5117%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (13 samples, 0.03%)</title><rect x="20.3373%" y="1285" width="0.0273%" height="15" fill="rgb(252,88,28)" fg:x="9684" fg:w="13"/><text x="20.5873%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (12 samples, 0.03%)</title><rect x="20.3394%" y="1269" width="0.0252%" height="15" fill="rgb(212,127,14)" fg:x="9685" fg:w="12"/><text x="20.5894%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (11 samples, 0.02%)</title><rect x="20.3415%" y="1253" width="0.0231%" height="15" fill="rgb(247,145,37)" fg:x="9686" fg:w="11"/><text x="20.5915%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (6 samples, 0.01%)</title><rect x="20.4024%" y="1269" width="0.0126%" height="15" fill="rgb(209,117,53)" fg:x="9715" fg:w="6"/><text x="20.6524%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (22 samples, 0.05%)</title><rect x="20.4150%" y="1269" width="0.0462%" height="15" fill="rgb(212,90,42)" fg:x="9721" fg:w="22"/><text x="20.6650%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (18 samples, 0.04%)</title><rect x="20.4612%" y="1269" width="0.0378%" height="15" fill="rgb(218,164,37)" fg:x="9743" fg:w="18"/><text x="20.7112%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (7 samples, 0.01%)</title><rect x="20.4990%" y="1269" width="0.0147%" height="15" fill="rgb(246,65,34)" fg:x="9761" fg:w="7"/><text x="20.7490%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="20.5137%" y="1269" width="0.0105%" height="15" fill="rgb(231,100,33)" fg:x="9768" fg:w="5"/><text x="20.7637%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="20.5809%" y="1205" width="0.0168%" height="15" fill="rgb(228,126,14)" fg:x="9800" fg:w="8"/><text x="20.8309%" y="1215.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_pointer_size (8 samples, 0.02%)</title><rect x="20.6523%" y="1125" width="0.0168%" height="15" fill="rgb(215,173,21)" fg:x="9834" fg:w="8"/><text x="20.9023%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (8 samples, 0.02%)</title><rect x="20.6817%" y="1109" width="0.0168%" height="15" fill="rgb(210,6,40)" fg:x="9848" fg:w="8"/><text x="20.9317%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (29 samples, 0.06%)</title><rect x="20.6418%" y="1141" width="0.0609%" height="15" fill="rgb(212,48,18)" fg:x="9829" fg:w="29"/><text x="20.8918%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (16 samples, 0.03%)</title><rect x="20.6691%" y="1125" width="0.0336%" height="15" fill="rgb(230,214,11)" fg:x="9842" fg:w="16"/><text x="20.9191%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (35 samples, 0.07%)</title><rect x="20.6313%" y="1157" width="0.0735%" height="15" fill="rgb(254,105,39)" fg:x="9824" fg:w="35"/><text x="20.8813%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (49 samples, 0.10%)</title><rect x="20.6103%" y="1189" width="0.1029%" height="15" fill="rgb(245,158,5)" fg:x="9814" fg:w="49"/><text x="20.8603%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (47 samples, 0.10%)</title><rect x="20.6145%" y="1173" width="0.0987%" height="15" fill="rgb(249,208,11)" fg:x="9816" fg:w="47"/><text x="20.8645%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (59 samples, 0.12%)</title><rect x="20.5977%" y="1205" width="0.1239%" height="15" fill="rgb(210,39,28)" fg:x="9808" fg:w="59"/><text x="20.8477%" y="1215.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="20.7342%" y="1189" width="0.0126%" height="15" fill="rgb(211,56,53)" fg:x="9873" fg:w="6"/><text x="20.9842%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (94 samples, 0.20%)</title><rect x="20.5662%" y="1237" width="0.1974%" height="15" fill="rgb(226,201,30)" fg:x="9793" fg:w="94"/><text x="20.8162%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (93 samples, 0.20%)</title><rect x="20.5683%" y="1221" width="0.1953%" height="15" fill="rgb(239,101,34)" fg:x="9794" fg:w="93"/><text x="20.8183%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (15 samples, 0.03%)</title><rect x="20.7321%" y="1205" width="0.0315%" height="15" fill="rgb(226,209,5)" fg:x="9872" fg:w="15"/><text x="20.9821%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (111 samples, 0.23%)</title><rect x="20.5347%" y="1269" width="0.2331%" height="15" fill="rgb(250,105,47)" fg:x="9778" fg:w="111"/><text x="20.7847%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (102 samples, 0.21%)</title><rect x="20.5536%" y="1253" width="0.2142%" height="15" fill="rgb(230,72,3)" fg:x="9787" fg:w="102"/><text x="20.8036%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (26 samples, 0.05%)</title><rect x="20.7678%" y="1269" width="0.0546%" height="15" fill="rgb(232,218,39)" fg:x="9889" fg:w="26"/><text x="21.0178%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (15 samples, 0.03%)</title><rect x="20.7909%" y="1253" width="0.0315%" height="15" fill="rgb(248,166,6)" fg:x="9900" fg:w="15"/><text x="21.0409%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (6 samples, 0.01%)</title><rect x="20.8854%" y="1221" width="0.0126%" height="15" fill="rgb(247,89,20)" fg:x="9945" fg:w="6"/><text x="21.1354%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (5 samples, 0.01%)</title><rect x="20.8875%" y="1205" width="0.0105%" height="15" fill="rgb(248,130,54)" fg:x="9946" fg:w="5"/><text x="21.1375%" y="1215.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="20.8875%" y="1189" width="0.0105%" height="15" fill="rgb(234,196,4)" fg:x="9946" fg:w="5"/><text x="21.1375%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="20.9022%" y="1205" width="0.0126%" height="15" fill="rgb(250,143,31)" fg:x="9953" fg:w="6"/><text x="21.1522%" y="1215.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="20.9148%" y="1205" width="0.0105%" height="15" fill="rgb(211,110,34)" fg:x="9959" fg:w="5"/><text x="21.1648%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="20.9253%" y="1205" width="0.0147%" height="15" fill="rgb(215,124,48)" fg:x="9964" fg:w="7"/><text x="21.1753%" y="1215.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="20.9274%" y="1189" width="0.0126%" height="15" fill="rgb(216,46,13)" fg:x="9965" fg:w="6"/><text x="21.1774%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (48 samples, 0.10%)</title><rect x="20.8602%" y="1237" width="0.1008%" height="15" fill="rgb(205,184,25)" fg:x="9933" fg:w="48"/><text x="21.1102%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (30 samples, 0.06%)</title><rect x="20.8980%" y="1221" width="0.0630%" height="15" fill="rgb(228,1,10)" fg:x="9951" fg:w="30"/><text x="21.1480%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (10 samples, 0.02%)</title><rect x="20.9400%" y="1205" width="0.0210%" height="15" fill="rgb(213,116,27)" fg:x="9971" fg:w="10"/><text x="21.1900%" y="1215.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="20.9736%" y="1221" width="0.0147%" height="15" fill="rgb(241,95,50)" fg:x="9987" fg:w="7"/><text x="21.2236%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (8 samples, 0.02%)</title><rect x="20.9967%" y="1205" width="0.0168%" height="15" fill="rgb(238,48,32)" fg:x="9998" fg:w="8"/><text x="21.2467%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (6 samples, 0.01%)</title><rect x="21.0009%" y="1189" width="0.0126%" height="15" fill="rgb(235,113,49)" fg:x="10000" fg:w="6"/><text x="21.2509%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="21.0030%" y="1173" width="0.0105%" height="15" fill="rgb(205,127,43)" fg:x="10001" fg:w="5"/><text x="21.2530%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (9 samples, 0.02%)</title><rect x="20.9967%" y="1221" width="0.0189%" height="15" fill="rgb(250,162,2)" fg:x="9998" fg:w="9"/><text x="21.2467%" y="1231.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (6 samples, 0.01%)</title><rect x="21.0177%" y="1205" width="0.0126%" height="15" fill="rgb(220,13,41)" fg:x="10008" fg:w="6"/><text x="21.2677%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (11 samples, 0.02%)</title><rect x="21.0156%" y="1221" width="0.0231%" height="15" fill="rgb(249,221,25)" fg:x="10007" fg:w="11"/><text x="21.2656%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (5 samples, 0.01%)</title><rect x="21.0513%" y="1221" width="0.0105%" height="15" fill="rgb(215,208,19)" fg:x="10024" fg:w="5"/><text x="21.3013%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_type_modifiers (50 samples, 0.11%)</title><rect x="20.9610%" y="1237" width="0.1050%" height="15" fill="rgb(236,175,2)" fg:x="9981" fg:w="50"/><text x="21.2110%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (111 samples, 0.23%)</title><rect x="20.8371%" y="1253" width="0.2331%" height="15" fill="rgb(241,52,2)" fg:x="9922" fg:w="111"/><text x="21.0871%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (118 samples, 0.25%)</title><rect x="20.8287%" y="1269" width="0.2478%" height="15" fill="rgb(248,140,14)" fg:x="9918" fg:w="118"/><text x="21.0787%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="21.1038%" y="1253" width="0.0105%" height="15" fill="rgb(253,22,42)" fg:x="10049" fg:w="5"/><text x="21.3538%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_compound_field_access (11 samples, 0.02%)</title><rect x="21.1374%" y="1253" width="0.0231%" height="15" fill="rgb(234,61,47)" fg:x="10065" fg:w="11"/><text x="21.3874%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (10 samples, 0.02%)</title><rect x="21.2613%" y="1237" width="0.0210%" height="15" fill="rgb(208,226,15)" fg:x="10124" fg:w="10"/><text x="21.5113%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::expect_token (6 samples, 0.01%)</title><rect x="21.2823%" y="1237" width="0.0126%" height="15" fill="rgb(217,221,4)" fg:x="10134" fg:w="6"/><text x="21.5323%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (19 samples, 0.04%)</title><rect x="21.3558%" y="1221" width="0.0399%" height="15" fill="rgb(212,174,34)" fg:x="10169" fg:w="19"/><text x="21.6058%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (14 samples, 0.03%)</title><rect x="21.3978%" y="1221" width="0.0294%" height="15" fill="rgb(253,83,4)" fg:x="10189" fg:w="14"/><text x="21.6478%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::expect_token (23 samples, 0.05%)</title><rect x="21.4335%" y="1221" width="0.0483%" height="15" fill="rgb(250,195,49)" fg:x="10206" fg:w="23"/><text x="21.6835%" y="1231.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="21.4881%" y="1205" width="0.0105%" height="15" fill="rgb(241,192,25)" fg:x="10232" fg:w="5"/><text x="21.7381%" y="1215.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (16 samples, 0.03%)</title><rect x="21.4986%" y="1205" width="0.0336%" height="15" fill="rgb(208,124,10)" fg:x="10237" fg:w="16"/><text x="21.7486%" y="1215.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="21.5511%" y="1189" width="0.0105%" height="15" fill="rgb(222,33,0)" fg:x="10262" fg:w="5"/><text x="21.8011%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (32 samples, 0.07%)</title><rect x="21.5406%" y="1205" width="0.0672%" height="15" fill="rgb(234,209,28)" fg:x="10257" fg:w="32"/><text x="21.7906%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (21 samples, 0.04%)</title><rect x="21.5637%" y="1189" width="0.0441%" height="15" fill="rgb(224,11,23)" fg:x="10268" fg:w="21"/><text x="21.8137%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (18 samples, 0.04%)</title><rect x="21.5700%" y="1173" width="0.0378%" height="15" fill="rgb(232,99,1)" fg:x="10271" fg:w="18"/><text x="21.8200%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (17 samples, 0.04%)</title><rect x="21.5721%" y="1157" width="0.0357%" height="15" fill="rgb(237,95,45)" fg:x="10272" fg:w="17"/><text x="21.8221%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (15 samples, 0.03%)</title><rect x="21.5763%" y="1141" width="0.0315%" height="15" fill="rgb(208,109,11)" fg:x="10274" fg:w="15"/><text x="21.8263%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (17 samples, 0.04%)</title><rect x="21.6435%" y="1189" width="0.0357%" height="15" fill="rgb(216,190,48)" fg:x="10306" fg:w="17"/><text x="21.8935%" y="1199.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (5 samples, 0.01%)</title><rect x="21.6813%" y="1189" width="0.0105%" height="15" fill="rgb(251,171,36)" fg:x="10324" fg:w="5"/><text x="21.9313%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="21.6960%" y="1189" width="0.0105%" height="15" fill="rgb(230,62,22)" fg:x="10331" fg:w="5"/><text x="21.9460%" y="1199.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (11 samples, 0.02%)</title><rect x="21.7716%" y="1141" width="0.0231%" height="15" fill="rgb(225,114,35)" fg:x="10367" fg:w="11"/><text x="22.0216%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (7 samples, 0.01%)</title><rect x="21.8010%" y="1125" width="0.0147%" height="15" fill="rgb(215,118,42)" fg:x="10381" fg:w="7"/><text x="22.0510%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (5 samples, 0.01%)</title><rect x="21.8052%" y="1109" width="0.0105%" height="15" fill="rgb(243,119,21)" fg:x="10383" fg:w="5"/><text x="22.0552%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (14 samples, 0.03%)</title><rect x="21.7947%" y="1141" width="0.0294%" height="15" fill="rgb(252,177,53)" fg:x="10378" fg:w="14"/><text x="22.0447%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="21.8892%" y="1013" width="0.0105%" height="15" fill="rgb(237,209,29)" fg:x="10423" fg:w="5"/><text x="22.1392%" y="1023.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (11 samples, 0.02%)</title><rect x="21.8850%" y="1029" width="0.0231%" height="15" fill="rgb(212,65,23)" fg:x="10421" fg:w="11"/><text x="22.1350%" y="1039.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (15 samples, 0.03%)</title><rect x="21.8808%" y="1045" width="0.0315%" height="15" fill="rgb(230,222,46)" fg:x="10419" fg:w="15"/><text x="22.1308%" y="1055.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (21 samples, 0.04%)</title><rect x="21.8703%" y="1061" width="0.0441%" height="15" fill="rgb(215,135,32)" fg:x="10414" fg:w="21"/><text x="22.1203%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (34 samples, 0.07%)</title><rect x="21.8514%" y="1109" width="0.0714%" height="15" fill="rgb(246,101,22)" fg:x="10405" fg:w="34"/><text x="22.1014%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (32 samples, 0.07%)</title><rect x="21.8556%" y="1093" width="0.0672%" height="15" fill="rgb(206,107,13)" fg:x="10407" fg:w="32"/><text x="22.1056%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (27 samples, 0.06%)</title><rect x="21.8661%" y="1077" width="0.0567%" height="15" fill="rgb(250,100,44)" fg:x="10412" fg:w="27"/><text x="22.1161%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (63 samples, 0.13%)</title><rect x="21.8241%" y="1141" width="0.1323%" height="15" fill="rgb(231,147,38)" fg:x="10392" fg:w="63"/><text x="22.0741%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (60 samples, 0.13%)</title><rect x="21.8304%" y="1125" width="0.1260%" height="15" fill="rgb(229,8,40)" fg:x="10395" fg:w="60"/><text x="22.0804%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (12 samples, 0.03%)</title><rect x="21.9312%" y="1109" width="0.0252%" height="15" fill="rgb(221,135,30)" fg:x="10443" fg:w="12"/><text x="22.1812%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (106 samples, 0.22%)</title><rect x="21.7359%" y="1173" width="0.2226%" height="15" fill="rgb(249,193,18)" fg:x="10350" fg:w="106"/><text x="21.9859%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (97 samples, 0.20%)</title><rect x="21.7548%" y="1157" width="0.2037%" height="15" fill="rgb(209,133,39)" fg:x="10359" fg:w="97"/><text x="22.0048%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_named_arg_operator (117 samples, 0.25%)</title><rect x="21.7149%" y="1189" width="0.2457%" height="15" fill="rgb(232,100,14)" fg:x="10340" fg:w="117"/><text x="21.9649%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="21.9816%" y="1173" width="0.0168%" height="15" fill="rgb(224,185,1)" fg:x="10467" fg:w="8"/><text x="22.2316%" y="1183.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="22.0005%" y="1157" width="0.0126%" height="15" fill="rgb(223,139,8)" fg:x="10476" fg:w="6"/><text x="22.2505%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (9 samples, 0.02%)</title><rect x="21.9984%" y="1173" width="0.0189%" height="15" fill="rgb(232,213,38)" fg:x="10475" fg:w="9"/><text x="22.2484%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (31 samples, 0.07%)</title><rect x="21.9606%" y="1189" width="0.0651%" height="15" fill="rgb(207,94,22)" fg:x="10457" fg:w="31"/><text x="22.2106%" y="1199.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="22.0425%" y="1173" width="0.0168%" height="15" fill="rgb(219,183,54)" fg:x="10496" fg:w="8"/><text x="22.2925%" y="1183.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="22.0698%" y="1157" width="0.0126%" height="15" fill="rgb(216,185,54)" fg:x="10509" fg:w="6"/><text x="22.3198%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (14 samples, 0.03%)</title><rect x="22.0593%" y="1173" width="0.0294%" height="15" fill="rgb(254,217,39)" fg:x="10504" fg:w="14"/><text x="22.3093%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`_free (5 samples, 0.01%)</title><rect x="22.1266%" y="1157" width="0.0105%" height="15" fill="rgb(240,178,23)" fg:x="10536" fg:w="5"/><text x="22.3766%" y="1167.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (17 samples, 0.04%)</title><rect x="22.1392%" y="1157" width="0.0357%" height="15" fill="rgb(218,11,47)" fg:x="10542" fg:w="17"/><text x="22.3892%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (11 samples, 0.02%)</title><rect x="22.1812%" y="1157" width="0.0231%" height="15" fill="rgb(218,51,51)" fg:x="10562" fg:w="11"/><text x="22.4312%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (9 samples, 0.02%)</title><rect x="22.1854%" y="1141" width="0.0189%" height="15" fill="rgb(238,126,27)" fg:x="10564" fg:w="9"/><text x="22.4354%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (8 samples, 0.02%)</title><rect x="22.2064%" y="1157" width="0.0168%" height="15" fill="rgb(249,202,22)" fg:x="10574" fg:w="8"/><text x="22.4564%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="22.2694%" y="1141" width="0.0105%" height="15" fill="rgb(254,195,49)" fg:x="10604" fg:w="5"/><text x="22.5194%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="22.2799%" y="1141" width="0.0147%" height="15" fill="rgb(208,123,14)" fg:x="10609" fg:w="7"/><text x="22.5299%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="22.4143%" y="981" width="0.0147%" height="15" fill="rgb(224,200,8)" fg:x="10673" fg:w="7"/><text x="22.6643%" y="991.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (15 samples, 0.03%)</title><rect x="22.4080%" y="997" width="0.0315%" height="15" fill="rgb(217,61,36)" fg:x="10670" fg:w="15"/><text x="22.6580%" y="1007.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (33 samples, 0.07%)</title><rect x="22.3912%" y="1013" width="0.0693%" height="15" fill="rgb(206,35,45)" fg:x="10662" fg:w="33"/><text x="22.6412%" y="1023.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (10 samples, 0.02%)</title><rect x="22.4395%" y="997" width="0.0210%" height="15" fill="rgb(217,65,33)" fg:x="10685" fg:w="10"/><text x="22.6895%" y="1007.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (37 samples, 0.08%)</title><rect x="22.3891%" y="1029" width="0.0777%" height="15" fill="rgb(222,158,48)" fg:x="10661" fg:w="37"/><text x="22.6391%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (46 samples, 0.10%)</title><rect x="22.3765%" y="1061" width="0.0966%" height="15" fill="rgb(254,2,54)" fg:x="10655" fg:w="46"/><text x="22.6265%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (42 samples, 0.09%)</title><rect x="22.3849%" y="1045" width="0.0882%" height="15" fill="rgb(250,143,38)" fg:x="10659" fg:w="42"/><text x="22.6349%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (48 samples, 0.10%)</title><rect x="22.3744%" y="1077" width="0.1008%" height="15" fill="rgb(248,25,0)" fg:x="10654" fg:w="48"/><text x="22.6244%" y="1087.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="22.5046%" y="1061" width="0.0105%" height="15" fill="rgb(206,152,27)" fg:x="10716" fg:w="5"/><text x="22.7546%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (79 samples, 0.17%)</title><rect x="22.3597%" y="1109" width="0.1659%" height="15" fill="rgb(240,77,30)" fg:x="10647" fg:w="79"/><text x="22.6097%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (78 samples, 0.16%)</title><rect x="22.3618%" y="1093" width="0.1638%" height="15" fill="rgb(231,5,3)" fg:x="10648" fg:w="78"/><text x="22.6118%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (19 samples, 0.04%)</title><rect x="22.4857%" y="1077" width="0.0399%" height="15" fill="rgb(207,226,32)" fg:x="10707" fg:w="19"/><text x="22.7357%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (102 samples, 0.21%)</title><rect x="22.3135%" y="1141" width="0.2142%" height="15" fill="rgb(222,207,47)" fg:x="10625" fg:w="102"/><text x="22.5635%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (94 samples, 0.20%)</title><rect x="22.3303%" y="1125" width="0.1974%" height="15" fill="rgb(229,115,45)" fg:x="10633" fg:w="94"/><text x="22.5803%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (11 samples, 0.02%)</title><rect x="22.5361%" y="1125" width="0.0231%" height="15" fill="rgb(224,191,6)" fg:x="10731" fg:w="11"/><text x="22.7861%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (19 samples, 0.04%)</title><rect x="22.5277%" y="1141" width="0.0399%" height="15" fill="rgb(230,227,24)" fg:x="10727" fg:w="19"/><text x="22.7777%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="22.6327%" y="1077" width="0.0126%" height="15" fill="rgb(228,80,19)" fg:x="10777" fg:w="6"/><text x="22.8827%" y="1087.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="22.6453%" y="1077" width="0.0147%" height="15" fill="rgb(247,229,0)" fg:x="10783" fg:w="7"/><text x="22.8953%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="22.6600%" y="1077" width="0.0105%" height="15" fill="rgb(237,194,15)" fg:x="10790" fg:w="5"/><text x="22.9100%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (10 samples, 0.02%)</title><rect x="22.6705%" y="1077" width="0.0210%" height="15" fill="rgb(219,203,20)" fg:x="10795" fg:w="10"/><text x="22.9205%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (46 samples, 0.10%)</title><rect x="22.5991%" y="1109" width="0.0966%" height="15" fill="rgb(234,128,8)" fg:x="10761" fg:w="46"/><text x="22.8491%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (38 samples, 0.08%)</title><rect x="22.6159%" y="1093" width="0.0798%" height="15" fill="rgb(248,202,8)" fg:x="10769" fg:w="38"/><text x="22.8659%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (64 samples, 0.13%)</title><rect x="22.5739%" y="1125" width="0.1344%" height="15" fill="rgb(206,104,37)" fg:x="10749" fg:w="64"/><text x="22.8239%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (69 samples, 0.14%)</title><rect x="22.5676%" y="1141" width="0.1449%" height="15" fill="rgb(223,8,27)" fg:x="10746" fg:w="69"/><text x="22.8176%" y="1151.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="22.7209%" y="1125" width="0.0168%" height="15" fill="rgb(216,217,28)" fg:x="10819" fg:w="8"/><text x="22.9709%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (18 samples, 0.04%)</title><rect x="22.7125%" y="1141" width="0.0378%" height="15" fill="rgb(249,199,1)" fg:x="10815" fg:w="18"/><text x="22.9625%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::try_parse (7 samples, 0.01%)</title><rect x="22.7503%" y="1141" width="0.0147%" height="15" fill="rgb(240,85,17)" fg:x="10833" fg:w="7"/><text x="23.0003%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (259 samples, 0.54%)</title><rect x="22.2232%" y="1157" width="0.5439%" height="15" fill="rgb(206,108,45)" fg:x="10582" fg:w="259"/><text x="22.4732%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_args (554 samples, 1.16%)</title><rect x="21.6078%" y="1205" width="1.1635%" height="15" fill="rgb(245,210,41)" fg:x="10289" fg:w="554"/><text x="21.8578%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_wildcard_expr (354 samples, 0.74%)</title><rect x="22.0278%" y="1189" width="0.7434%" height="15" fill="rgb(206,13,37)" fg:x="10489" fg:w="354"/><text x="22.2778%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (318 samples, 0.67%)</title><rect x="22.1035%" y="1173" width="0.6678%" height="15" fill="rgb(250,61,18)" fg:x="10525" fg:w="318"/><text x="22.3535%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (616 samples, 1.29%)</title><rect x="21.4839%" y="1221" width="1.2937%" height="15" fill="rgb(235,172,48)" fg:x="10230" fg:w="616"/><text x="21.7339%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_argument_list (706 samples, 1.48%)</title><rect x="21.2991%" y="1237" width="1.4827%" height="15" fill="rgb(249,201,17)" fg:x="10142" fg:w="706"/><text x="21.5491%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_json_null_clause (10 samples, 0.02%)</title><rect x="22.7818%" y="1237" width="0.0210%" height="15" fill="rgb(219,208,6)" fg:x="10848" fg:w="10"/><text x="23.0318%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_call (781 samples, 1.64%)</title><rect x="21.1647%" y="1253" width="1.6402%" height="15" fill="rgb(248,31,23)" fg:x="10078" fg:w="781"/><text x="21.4147%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (824 samples, 1.73%)</title><rect x="21.0786%" y="1269" width="1.7305%" height="15" fill="rgb(245,15,42)" fg:x="10037" fg:w="824"/><text x="21.3286%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (1,166 samples, 2.45%)</title><rect x="20.3730%" y="1285" width="2.4487%" height="15" fill="rgb(222,217,39)" fg:x="9701" fg:w="1166"/><text x="20.6230%" y="1295.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_select_item (1,371 samples, 2.88%)</title><rect x="19.9530%" y="1333" width="2.8792%" height="15" fill="rgb(210,219,27)" fg:x="9501" fg:w="1371"/><text x="20.2030%" y="1343.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_wildcard_expr (1,283 samples, 2.69%)</title><rect x="20.1378%" y="1317" width="2.6944%" height="15" fill="rgb(252,166,36)" fg:x="9589" fg:w="1283"/><text x="20.3878%" y="1327.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (1,236 samples, 2.60%)</title><rect x="20.2365%" y="1301" width="2.5957%" height="15" fill="rgb(245,132,34)" fg:x="9636" fg:w="1236"/><text x="20.4865%" y="1311.50">sq..</text></g><g><title>libsystem_malloc.dylib`_free (19 samples, 0.04%)</title><rect x="22.9477%" y="1317" width="0.0399%" height="15" fill="rgb(236,54,3)" fg:x="10927" fg:w="19"/><text x="23.1977%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (20 samples, 0.04%)</title><rect x="22.9876%" y="1317" width="0.0420%" height="15" fill="rgb(241,173,43)" fg:x="10946" fg:w="20"/><text x="23.2376%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (50 samples, 0.11%)</title><rect x="23.0296%" y="1317" width="0.1050%" height="15" fill="rgb(215,190,9)" fg:x="10966" fg:w="50"/><text x="23.2796%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;T as core::any::Any&gt;::type_id (12 samples, 0.03%)</title><rect x="23.1346%" y="1317" width="0.0252%" height="15" fill="rgb(242,101,16)" fg:x="11016" fg:w="12"/><text x="23.3846%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="23.1598%" y="1317" width="0.0105%" height="15" fill="rgb(223,190,21)" fg:x="11028" fg:w="5"/><text x="23.4098%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (8 samples, 0.02%)</title><rect x="23.1787%" y="1301" width="0.0168%" height="15" fill="rgb(215,228,25)" fg:x="11037" fg:w="8"/><text x="23.4287%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (15 samples, 0.03%)</title><rect x="23.1955%" y="1301" width="0.0315%" height="15" fill="rgb(225,36,22)" fg:x="11045" fg:w="15"/><text x="23.4455%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="23.2270%" y="1301" width="0.0252%" height="15" fill="rgb(251,106,46)" fg:x="11060" fg:w="12"/><text x="23.4770%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (8 samples, 0.02%)</title><rect x="23.2354%" y="1285" width="0.0168%" height="15" fill="rgb(208,90,1)" fg:x="11064" fg:w="8"/><text x="23.4854%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (41 samples, 0.09%)</title><rect x="23.1703%" y="1317" width="0.0861%" height="15" fill="rgb(243,10,4)" fg:x="11033" fg:w="41"/><text x="23.4203%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (7 samples, 0.01%)</title><rect x="23.2564%" y="1317" width="0.0147%" height="15" fill="rgb(212,137,27)" fg:x="11074" fg:w="7"/><text x="23.5064%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (6 samples, 0.01%)</title><rect x="23.2711%" y="1317" width="0.0126%" height="15" fill="rgb(231,220,49)" fg:x="11081" fg:w="6"/><text x="23.5211%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (17 samples, 0.04%)</title><rect x="23.2837%" y="1317" width="0.0357%" height="15" fill="rgb(237,96,20)" fg:x="11087" fg:w="17"/><text x="23.5337%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (15 samples, 0.03%)</title><rect x="23.2879%" y="1301" width="0.0315%" height="15" fill="rgb(239,229,30)" fg:x="11089" fg:w="15"/><text x="23.5379%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (5 samples, 0.01%)</title><rect x="23.3089%" y="1285" width="0.0105%" height="15" fill="rgb(219,65,33)" fg:x="11099" fg:w="5"/><text x="23.5589%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (22 samples, 0.05%)</title><rect x="23.3215%" y="1317" width="0.0462%" height="15" fill="rgb(243,134,7)" fg:x="11105" fg:w="22"/><text x="23.5715%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_join_constraint (31 samples, 0.07%)</title><rect x="23.3824%" y="1317" width="0.0651%" height="15" fill="rgb(216,177,54)" fg:x="11134" fg:w="31"/><text x="23.6324%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_parenthesized_column_list (21 samples, 0.04%)</title><rect x="23.4034%" y="1301" width="0.0441%" height="15" fill="rgb(211,160,20)" fg:x="11144" fg:w="21"/><text x="23.6534%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (9 samples, 0.02%)</title><rect x="23.4286%" y="1285" width="0.0189%" height="15" fill="rgb(239,85,39)" fg:x="11156" fg:w="9"/><text x="23.6786%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (15 samples, 0.03%)</title><rect x="23.4475%" y="1317" width="0.0315%" height="15" fill="rgb(232,125,22)" fg:x="11165" fg:w="15"/><text x="23.6975%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keywords (10 samples, 0.02%)</title><rect x="23.4790%" y="1317" width="0.0210%" height="15" fill="rgb(244,57,34)" fg:x="11180" fg:w="10"/><text x="23.7290%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (6 samples, 0.01%)</title><rect x="23.5000%" y="1317" width="0.0126%" height="15" fill="rgb(214,203,32)" fg:x="11190" fg:w="6"/><text x="23.7500%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_one_of_keywords (9 samples, 0.02%)</title><rect x="23.5126%" y="1317" width="0.0189%" height="15" fill="rgb(207,58,43)" fg:x="11196" fg:w="9"/><text x="23.7626%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (37 samples, 0.08%)</title><rect x="23.7121%" y="1301" width="0.0777%" height="15" fill="rgb(215,193,15)" fg:x="11291" fg:w="37"/><text x="23.9621%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::cmp::PartialEq&gt;::eq (6 samples, 0.01%)</title><rect x="23.8024%" y="1301" width="0.0126%" height="15" fill="rgb(232,15,44)" fg:x="11334" fg:w="6"/><text x="24.0524%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (9 samples, 0.02%)</title><rect x="23.8150%" y="1301" width="0.0189%" height="15" fill="rgb(212,3,48)" fg:x="11340" fg:w="9"/><text x="24.0650%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::consume_token (24 samples, 0.05%)</title><rect x="23.8339%" y="1301" width="0.0504%" height="15" fill="rgb(218,128,7)" fg:x="11349" fg:w="24"/><text x="24.0839%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::cmp::PartialEq&gt;::eq (8 samples, 0.02%)</title><rect x="23.8675%" y="1285" width="0.0168%" height="15" fill="rgb(226,216,39)" fg:x="11365" fg:w="8"/><text x="24.1175%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::maybe_parse_table_sample (12 samples, 0.03%)</title><rect x="23.8843%" y="1301" width="0.0252%" height="15" fill="rgb(243,47,51)" fg:x="11373" fg:w="12"/><text x="24.1343%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_free (6 samples, 0.01%)</title><rect x="23.9410%" y="1285" width="0.0126%" height="15" fill="rgb(241,183,40)" fg:x="11400" fg:w="6"/><text x="24.1910%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (32 samples, 0.07%)</title><rect x="23.9809%" y="1285" width="0.0672%" height="15" fill="rgb(231,217,32)" fg:x="11419" fg:w="32"/><text x="24.2309%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (27 samples, 0.06%)</title><rect x="23.9914%" y="1269" width="0.0567%" height="15" fill="rgb(229,61,38)" fg:x="11424" fg:w="27"/><text x="24.2414%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (25 samples, 0.05%)</title><rect x="23.9956%" y="1253" width="0.0525%" height="15" fill="rgb(225,210,5)" fg:x="11426" fg:w="25"/><text x="24.2456%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_allocate_outlined (14 samples, 0.03%)</title><rect x="24.0187%" y="1237" width="0.0294%" height="15" fill="rgb(231,79,45)" fg:x="11437" fg:w="14"/><text x="24.2687%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (6 samples, 0.01%)</title><rect x="24.0481%" y="1285" width="0.0126%" height="15" fill="rgb(224,100,7)" fg:x="11451" fg:w="6"/><text x="24.2981%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="24.0922%" y="1269" width="0.0105%" height="15" fill="rgb(241,198,18)" fg:x="11472" fg:w="5"/><text x="24.3422%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (14 samples, 0.03%)</title><rect x="24.1027%" y="1269" width="0.0294%" height="15" fill="rgb(252,97,53)" fg:x="11477" fg:w="14"/><text x="24.3527%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (19 samples, 0.04%)</title><rect x="24.1384%" y="1269" width="0.0399%" height="15" fill="rgb(220,88,7)" fg:x="11494" fg:w="19"/><text x="24.3884%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (13 samples, 0.03%)</title><rect x="24.1510%" y="1253" width="0.0273%" height="15" fill="rgb(213,176,14)" fg:x="11500" fg:w="13"/><text x="24.4010%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (6 samples, 0.01%)</title><rect x="24.1867%" y="1253" width="0.0126%" height="15" fill="rgb(246,73,7)" fg:x="11517" fg:w="6"/><text x="24.4367%" y="1263.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="24.1993%" y="1253" width="0.0126%" height="15" fill="rgb(245,64,36)" fg:x="11523" fg:w="6"/><text x="24.4493%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (13 samples, 0.03%)</title><rect x="24.2119%" y="1253" width="0.0273%" height="15" fill="rgb(245,80,10)" fg:x="11529" fg:w="13"/><text x="24.4619%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (7 samples, 0.01%)</title><rect x="24.2245%" y="1237" width="0.0147%" height="15" fill="rgb(232,107,50)" fg:x="11535" fg:w="7"/><text x="24.4745%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (34 samples, 0.07%)</title><rect x="24.1783%" y="1269" width="0.0714%" height="15" fill="rgb(253,3,0)" fg:x="11513" fg:w="34"/><text x="24.4283%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (170 samples, 0.36%)</title><rect x="23.9095%" y="1301" width="0.3570%" height="15" fill="rgb(212,99,53)" fg:x="11385" fg:w="170"/><text x="24.1595%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (98 samples, 0.21%)</title><rect x="24.0607%" y="1285" width="0.2058%" height="15" fill="rgb(249,111,54)" fg:x="11457" fg:w="98"/><text x="24.3107%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_free (6 samples, 0.01%)</title><rect x="24.2791%" y="1285" width="0.0126%" height="15" fill="rgb(249,55,30)" fg:x="11561" fg:w="6"/><text x="24.5291%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (12 samples, 0.03%)</title><rect x="24.3883%" y="1269" width="0.0252%" height="15" fill="rgb(237,47,42)" fg:x="11613" fg:w="12"/><text x="24.6383%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="24.4135%" y="1269" width="0.0105%" height="15" fill="rgb(211,20,18)" fg:x="11625" fg:w="5"/><text x="24.6635%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (9 samples, 0.02%)</title><rect x="24.4283%" y="1253" width="0.0189%" height="15" fill="rgb(231,203,46)" fg:x="11632" fg:w="9"/><text x="24.6783%" y="1263.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="24.4493%" y="1253" width="0.0168%" height="15" fill="rgb(237,142,3)" fg:x="11642" fg:w="8"/><text x="24.6993%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (14 samples, 0.03%)</title><rect x="24.4661%" y="1253" width="0.0294%" height="15" fill="rgb(241,107,1)" fg:x="11650" fg:w="14"/><text x="24.7161%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (8 samples, 0.02%)</title><rect x="24.4787%" y="1237" width="0.0168%" height="15" fill="rgb(229,83,13)" fg:x="11656" fg:w="8"/><text x="24.7287%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_table_alias (111 samples, 0.23%)</title><rect x="24.2686%" y="1301" width="0.2331%" height="15" fill="rgb(241,91,40)" fg:x="11556" fg:w="111"/><text x="24.5186%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_alias (95 samples, 0.20%)</title><rect x="24.3022%" y="1285" width="0.1995%" height="15" fill="rgb(225,3,45)" fg:x="11572" fg:w="95"/><text x="24.5522%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (37 samples, 0.08%)</title><rect x="24.4241%" y="1269" width="0.0777%" height="15" fill="rgb(244,223,14)" fg:x="11630" fg:w="37"/><text x="24.6741%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="24.5375%" y="1269" width="0.0147%" height="15" fill="rgb(224,124,37)" fg:x="11684" fg:w="7"/><text x="24.7875%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="24.5522%" y="1269" width="0.0252%" height="15" fill="rgb(251,171,30)" fg:x="11691" fg:w="12"/><text x="24.8022%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (10 samples, 0.02%)</title><rect x="24.5564%" y="1253" width="0.0210%" height="15" fill="rgb(236,46,54)" fg:x="11693" fg:w="10"/><text x="24.8064%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (40 samples, 0.08%)</title><rect x="24.5081%" y="1301" width="0.0840%" height="15" fill="rgb(245,213,5)" fg:x="11670" fg:w="40"/><text x="24.7581%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (33 samples, 0.07%)</title><rect x="24.5228%" y="1285" width="0.0693%" height="15" fill="rgb(230,144,27)" fg:x="11677" fg:w="33"/><text x="24.7728%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="24.8273%" y="1285" width="0.0105%" height="15" fill="rgb(220,86,6)" fg:x="11822" fg:w="5"/><text x="25.0773%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (12 samples, 0.03%)</title><rect x="24.8693%" y="1269" width="0.0252%" height="15" fill="rgb(240,20,13)" fg:x="11842" fg:w="12"/><text x="25.1193%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (24 samples, 0.05%)</title><rect x="24.8966%" y="1269" width="0.0504%" height="15" fill="rgb(217,89,34)" fg:x="11855" fg:w="24"/><text x="25.1466%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (22 samples, 0.05%)</title><rect x="24.9470%" y="1269" width="0.0462%" height="15" fill="rgb(229,13,5)" fg:x="11879" fg:w="22"/><text x="25.1970%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (19 samples, 0.04%)</title><rect x="24.9533%" y="1253" width="0.0399%" height="15" fill="rgb(244,67,35)" fg:x="11882" fg:w="19"/><text x="25.2033%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_table_factor (711 samples, 1.49%)</title><rect x="23.5357%" y="1317" width="1.4932%" height="15" fill="rgb(221,40,2)" fg:x="11207" fg:w="711"/><text x="23.7857%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_tokens (208 samples, 0.44%)</title><rect x="24.5921%" y="1301" width="0.4368%" height="15" fill="rgb(237,157,21)" fg:x="11710" fg:w="208"/><text x="24.8421%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (91 samples, 0.19%)</title><rect x="24.8378%" y="1285" width="0.1911%" height="15" fill="rgb(222,94,11)" fg:x="11827" fg:w="91"/><text x="25.0878%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_alloc (10 samples, 0.02%)</title><rect x="25.0079%" y="1269" width="0.0210%" height="15" fill="rgb(249,113,6)" fg:x="11908" fg:w="10"/><text x="25.2579%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_table_and_joins (1,055 samples, 2.22%)</title><rect x="22.8322%" y="1333" width="2.2156%" height="15" fill="rgb(238,137,36)" fg:x="10872" fg:w="1055"/><text x="23.0822%" y="1343.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_tokens (7 samples, 0.01%)</title><rect x="25.0331%" y="1317" width="0.0147%" height="15" fill="rgb(210,102,26)" fg:x="11920" fg:w="7"/><text x="25.2831%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (2,821 samples, 5.92%)</title><rect x="19.1444%" y="1349" width="5.9244%" height="15" fill="rgb(218,30,30)" fg:x="9116" fg:w="2821"/><text x="19.3944%" y="1359.50">sqlparse..</text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (15 samples, 0.03%)</title><rect x="25.1738%" y="1333" width="0.0315%" height="15" fill="rgb(214,67,26)" fg:x="11987" fg:w="15"/><text x="25.4238%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (73 samples, 0.15%)</title><rect x="25.2242%" y="1333" width="0.1533%" height="15" fill="rgb(251,9,53)" fg:x="12011" fg:w="73"/><text x="25.4742%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (8 samples, 0.02%)</title><rect x="25.3880%" y="1333" width="0.0168%" height="15" fill="rgb(228,204,25)" fg:x="12089" fg:w="8"/><text x="25.6380%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (6 samples, 0.01%)</title><rect x="25.4132%" y="1333" width="0.0126%" height="15" fill="rgb(207,153,8)" fg:x="12101" fg:w="6"/><text x="25.6632%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="25.4447%" y="1317" width="0.0147%" height="15" fill="rgb(242,9,16)" fg:x="12116" fg:w="7"/><text x="25.6947%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="25.4888%" y="1285" width="0.0105%" height="15" fill="rgb(217,211,10)" fg:x="12137" fg:w="5"/><text x="25.7388%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (36 samples, 0.08%)</title><rect x="25.4258%" y="1333" width="0.0756%" height="15" fill="rgb(219,228,52)" fg:x="12107" fg:w="36"/><text x="25.6758%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (19 samples, 0.04%)</title><rect x="25.4615%" y="1317" width="0.0399%" height="15" fill="rgb(231,92,29)" fg:x="12124" fg:w="19"/><text x="25.7115%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (10 samples, 0.02%)</title><rect x="25.4804%" y="1301" width="0.0210%" height="15" fill="rgb(232,8,23)" fg:x="12133" fg:w="10"/><text x="25.7304%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`rack_get_thread_index (10 samples, 0.02%)</title><rect x="25.5623%" y="1301" width="0.0210%" height="15" fill="rgb(216,211,34)" fg:x="12172" fg:w="10"/><text x="25.8123%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (8 samples, 0.02%)</title><rect x="25.5833%" y="1301" width="0.0168%" height="15" fill="rgb(236,151,0)" fg:x="12182" fg:w="8"/><text x="25.8333%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (18 samples, 0.04%)</title><rect x="25.6358%" y="1285" width="0.0378%" height="15" fill="rgb(209,168,3)" fg:x="12207" fg:w="18"/><text x="25.8858%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (129 samples, 0.27%)</title><rect x="25.5287%" y="1317" width="0.2709%" height="15" fill="rgb(208,129,28)" fg:x="12156" fg:w="129"/><text x="25.7787%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_should_clear (95 samples, 0.20%)</title><rect x="25.6001%" y="1301" width="0.1995%" height="15" fill="rgb(229,78,22)" fg:x="12190" fg:w="95"/><text x="25.8501%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (59 samples, 0.12%)</title><rect x="25.6757%" y="1285" width="0.1239%" height="15" fill="rgb(228,187,13)" fg:x="12226" fg:w="59"/><text x="25.9257%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (8 samples, 0.02%)</title><rect x="25.7828%" y="1269" width="0.0168%" height="15" fill="rgb(240,119,24)" fg:x="12277" fg:w="8"/><text x="26.0328%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_should_clear (5 samples, 0.01%)</title><rect x="25.7996%" y="1317" width="0.0105%" height="15" fill="rgb(209,194,42)" fg:x="12285" fg:w="5"/><text x="26.0496%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (19 samples, 0.04%)</title><rect x="25.8101%" y="1317" width="0.0399%" height="15" fill="rgb(247,200,46)" fg:x="12290" fg:w="19"/><text x="26.0601%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (6 samples, 0.01%)</title><rect x="25.8500%" y="1317" width="0.0126%" height="15" fill="rgb(218,76,16)" fg:x="12309" fg:w="6"/><text x="26.1000%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_free (5 samples, 0.01%)</title><rect x="25.9340%" y="1301" width="0.0105%" height="15" fill="rgb(225,21,48)" fg:x="12349" fg:w="5"/><text x="26.1840%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (83 samples, 0.17%)</title><rect x="25.9529%" y="1301" width="0.1743%" height="15" fill="rgb(239,223,50)" fg:x="12358" fg:w="83"/><text x="26.2029%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (6 samples, 0.01%)</title><rect x="26.1356%" y="1301" width="0.0126%" height="15" fill="rgb(244,45,21)" fg:x="12445" fg:w="6"/><text x="26.3856%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (6 samples, 0.01%)</title><rect x="26.1545%" y="1301" width="0.0126%" height="15" fill="rgb(232,33,43)" fg:x="12454" fg:w="6"/><text x="26.4045%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="26.1902%" y="1285" width="0.0189%" height="15" fill="rgb(209,8,3)" fg:x="12471" fg:w="9"/><text x="26.4402%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="26.2091%" y="1285" width="0.0105%" height="15" fill="rgb(214,25,53)" fg:x="12480" fg:w="5"/><text x="26.4591%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (39 samples, 0.08%)</title><rect x="26.1671%" y="1301" width="0.0819%" height="15" fill="rgb(254,186,54)" fg:x="12460" fg:w="39"/><text x="26.4171%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (14 samples, 0.03%)</title><rect x="26.2196%" y="1285" width="0.0294%" height="15" fill="rgb(208,174,49)" fg:x="12485" fg:w="14"/><text x="26.4696%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (10 samples, 0.02%)</title><rect x="26.2280%" y="1269" width="0.0210%" height="15" fill="rgb(233,191,51)" fg:x="12489" fg:w="10"/><text x="26.4780%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (8 samples, 0.02%)</title><rect x="26.3120%" y="1253" width="0.0168%" height="15" fill="rgb(222,134,10)" fg:x="12529" fg:w="8"/><text x="26.5620%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (50 samples, 0.11%)</title><rect x="26.2868%" y="1285" width="0.1050%" height="15" fill="rgb(230,226,20)" fg:x="12517" fg:w="50"/><text x="26.5368%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_should_clear (42 samples, 0.09%)</title><rect x="26.3036%" y="1269" width="0.0882%" height="15" fill="rgb(251,111,25)" fg:x="12525" fg:w="42"/><text x="26.5536%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (30 samples, 0.06%)</title><rect x="26.3288%" y="1253" width="0.0630%" height="15" fill="rgb(224,40,46)" fg:x="12537" fg:w="30"/><text x="26.5788%" y="1263.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="26.3960%" y="1285" width="0.0126%" height="15" fill="rgb(236,108,47)" fg:x="12569" fg:w="6"/><text x="26.6460%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_free (6 samples, 0.01%)</title><rect x="26.4338%" y="1269" width="0.0126%" height="15" fill="rgb(234,93,0)" fg:x="12587" fg:w="6"/><text x="26.6838%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (19 samples, 0.04%)</title><rect x="26.4485%" y="1269" width="0.0399%" height="15" fill="rgb(224,213,32)" fg:x="12594" fg:w="19"/><text x="26.6985%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="26.5157%" y="1221" width="0.0105%" height="15" fill="rgb(251,11,48)" fg:x="12626" fg:w="5"/><text x="26.7657%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (16 samples, 0.03%)</title><rect x="26.4947%" y="1269" width="0.0336%" height="15" fill="rgb(236,173,5)" fg:x="12616" fg:w="16"/><text x="26.7447%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (12 samples, 0.03%)</title><rect x="26.5031%" y="1253" width="0.0252%" height="15" fill="rgb(230,95,12)" fg:x="12620" fg:w="12"/><text x="26.7531%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (10 samples, 0.02%)</title><rect x="26.5073%" y="1237" width="0.0210%" height="15" fill="rgb(232,209,1)" fg:x="12622" fg:w="10"/><text x="26.7573%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`_free (5 samples, 0.01%)</title><rect x="26.5829%" y="1237" width="0.0105%" height="15" fill="rgb(232,6,1)" fg:x="12658" fg:w="5"/><text x="26.8329%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (6 samples, 0.01%)</title><rect x="26.6228%" y="1221" width="0.0126%" height="15" fill="rgb(210,224,50)" fg:x="12677" fg:w="6"/><text x="26.8728%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (16 samples, 0.03%)</title><rect x="26.6795%" y="1189" width="0.0336%" height="15" fill="rgb(228,127,35)" fg:x="12704" fg:w="16"/><text x="26.9295%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (13 samples, 0.03%)</title><rect x="26.7131%" y="1189" width="0.0273%" height="15" fill="rgb(245,102,45)" fg:x="12720" fg:w="13"/><text x="26.9631%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (9 samples, 0.02%)</title><rect x="26.7215%" y="1173" width="0.0189%" height="15" fill="rgb(214,1,49)" fg:x="12724" fg:w="9"/><text x="26.9715%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (6 samples, 0.01%)</title><rect x="26.7278%" y="1157" width="0.0126%" height="15" fill="rgb(226,163,40)" fg:x="12727" fg:w="6"/><text x="26.9778%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="26.7278%" y="1141" width="0.0126%" height="15" fill="rgb(239,212,28)" fg:x="12727" fg:w="6"/><text x="26.9778%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (8 samples, 0.02%)</title><rect x="26.7951%" y="1077" width="0.0168%" height="15" fill="rgb(220,20,13)" fg:x="12759" fg:w="8"/><text x="27.0451%" y="1087.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (19 samples, 0.04%)</title><rect x="26.7825%" y="1093" width="0.0399%" height="15" fill="rgb(210,164,35)" fg:x="12753" fg:w="19"/><text x="27.0325%" y="1103.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="26.8119%" y="1077" width="0.0105%" height="15" fill="rgb(248,109,41)" fg:x="12767" fg:w="5"/><text x="27.0619%" y="1087.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (23 samples, 0.05%)</title><rect x="26.7783%" y="1109" width="0.0483%" height="15" fill="rgb(238,23,50)" fg:x="12751" fg:w="23"/><text x="27.0283%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (30 samples, 0.06%)</title><rect x="26.7678%" y="1141" width="0.0630%" height="15" fill="rgb(211,48,49)" fg:x="12746" fg:w="30"/><text x="27.0178%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (29 samples, 0.06%)</title><rect x="26.7699%" y="1125" width="0.0609%" height="15" fill="rgb(223,36,21)" fg:x="12747" fg:w="29"/><text x="27.0199%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (35 samples, 0.07%)</title><rect x="26.7594%" y="1157" width="0.0735%" height="15" fill="rgb(207,123,46)" fg:x="12742" fg:w="35"/><text x="27.0094%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad_integral (5 samples, 0.01%)</title><rect x="26.8350%" y="1157" width="0.0105%" height="15" fill="rgb(240,218,32)" fg:x="12778" fg:w="5"/><text x="27.0850%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (64 samples, 0.13%)</title><rect x="26.7404%" y="1189" width="0.1344%" height="15" fill="rgb(252,5,43)" fg:x="12733" fg:w="64"/><text x="26.9904%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (62 samples, 0.13%)</title><rect x="26.7447%" y="1173" width="0.1302%" height="15" fill="rgb(252,84,19)" fg:x="12735" fg:w="62"/><text x="26.9947%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (14 samples, 0.03%)</title><rect x="26.8455%" y="1157" width="0.0294%" height="15" fill="rgb(243,152,39)" fg:x="12783" fg:w="14"/><text x="27.0955%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::fmt::Display&gt;::fmt (18 samples, 0.04%)</title><rect x="26.8749%" y="1189" width="0.0378%" height="15" fill="rgb(234,160,15)" fg:x="12797" fg:w="18"/><text x="27.1249%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (14 samples, 0.03%)</title><rect x="26.8833%" y="1173" width="0.0294%" height="15" fill="rgb(237,34,20)" fg:x="12801" fg:w="14"/><text x="27.1333%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (142 samples, 0.30%)</title><rect x="26.6354%" y="1221" width="0.2982%" height="15" fill="rgb(229,97,13)" fg:x="12683" fg:w="142"/><text x="26.8854%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (130 samples, 0.27%)</title><rect x="26.6606%" y="1205" width="0.2730%" height="15" fill="rgb(234,71,50)" fg:x="12695" fg:w="130"/><text x="26.9106%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (168 samples, 0.35%)</title><rect x="26.5829%" y="1253" width="0.3528%" height="15" fill="rgb(253,155,4)" fg:x="12658" fg:w="168"/><text x="26.8329%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (159 samples, 0.33%)</title><rect x="26.6018%" y="1237" width="0.3339%" height="15" fill="rgb(222,185,37)" fg:x="12667" fg:w="159"/><text x="26.8518%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_value (22 samples, 0.05%)</title><rect x="26.9358%" y="1253" width="0.0462%" height="15" fill="rgb(251,177,13)" fg:x="12826" fg:w="22"/><text x="27.1858%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="26.9568%" y="1237" width="0.0252%" height="15" fill="rgb(250,179,40)" fg:x="12836" fg:w="12"/><text x="27.2068%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (213 samples, 0.45%)</title><rect x="26.5388%" y="1269" width="0.4473%" height="15" fill="rgb(242,44,2)" fg:x="12637" fg:w="213"/><text x="26.7888%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_infix (349 samples, 0.73%)</title><rect x="26.2553%" y="1301" width="0.7329%" height="15" fill="rgb(216,177,13)" fg:x="12502" fg:w="349"/><text x="26.5053%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (271 samples, 0.57%)</title><rect x="26.4191%" y="1285" width="0.5691%" height="15" fill="rgb(216,106,43)" fg:x="12580" fg:w="271"/><text x="26.6691%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_free (6 samples, 0.01%)</title><rect x="27.0849%" y="1285" width="0.0126%" height="15" fill="rgb(216,183,2)" fg:x="12897" fg:w="6"/><text x="27.3349%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (9 samples, 0.02%)</title><rect x="27.0975%" y="1285" width="0.0189%" height="15" fill="rgb(249,75,3)" fg:x="12903" fg:w="9"/><text x="27.3475%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (20 samples, 0.04%)</title><rect x="27.1164%" y="1285" width="0.0420%" height="15" fill="rgb(219,67,39)" fg:x="12912" fg:w="20"/><text x="27.3664%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (11 samples, 0.02%)</title><rect x="27.1710%" y="1285" width="0.0231%" height="15" fill="rgb(253,228,2)" fg:x="12938" fg:w="11"/><text x="27.4210%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_pointer_size (5 samples, 0.01%)</title><rect x="27.3159%" y="1141" width="0.0105%" height="15" fill="rgb(235,138,27)" fg:x="13007" fg:w="5"/><text x="27.5659%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="27.3306%" y="1125" width="0.0147%" height="15" fill="rgb(236,97,51)" fg:x="13014" fg:w="7"/><text x="27.5806%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (5 samples, 0.01%)</title><rect x="27.3453%" y="1125" width="0.0105%" height="15" fill="rgb(240,80,30)" fg:x="13021" fg:w="5"/><text x="27.5953%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (17 samples, 0.04%)</title><rect x="27.3264%" y="1141" width="0.0357%" height="15" fill="rgb(230,178,19)" fg:x="13012" fg:w="17"/><text x="27.5764%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (36 samples, 0.08%)</title><rect x="27.2991%" y="1157" width="0.0756%" height="15" fill="rgb(210,190,27)" fg:x="12999" fg:w="36"/><text x="27.5491%" y="1167.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="27.3621%" y="1141" width="0.0126%" height="15" fill="rgb(222,107,31)" fg:x="13029" fg:w="6"/><text x="27.6121%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (50 samples, 0.11%)</title><rect x="27.2823%" y="1173" width="0.1050%" height="15" fill="rgb(216,127,34)" fg:x="12991" fg:w="50"/><text x="27.5323%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (59 samples, 0.12%)</title><rect x="27.2718%" y="1205" width="0.1239%" height="15" fill="rgb(234,116,52)" fg:x="12986" fg:w="59"/><text x="27.5218%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (55 samples, 0.12%)</title><rect x="27.2802%" y="1189" width="0.1155%" height="15" fill="rgb(222,124,15)" fg:x="12990" fg:w="55"/><text x="27.5302%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (63 samples, 0.13%)</title><rect x="27.2676%" y="1221" width="0.1323%" height="15" fill="rgb(231,179,28)" fg:x="12984" fg:w="63"/><text x="27.5176%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="27.4209%" y="1205" width="0.0147%" height="15" fill="rgb(226,93,45)" fg:x="13057" fg:w="7"/><text x="27.6709%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (91 samples, 0.19%)</title><rect x="27.2529%" y="1253" width="0.1911%" height="15" fill="rgb(215,8,51)" fg:x="12977" fg:w="91"/><text x="27.5029%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (89 samples, 0.19%)</title><rect x="27.2571%" y="1237" width="0.1869%" height="15" fill="rgb(223,106,5)" fg:x="12979" fg:w="89"/><text x="27.5071%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (14 samples, 0.03%)</title><rect x="27.4146%" y="1221" width="0.0294%" height="15" fill="rgb(250,191,5)" fg:x="13054" fg:w="14"/><text x="27.6646%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (105 samples, 0.22%)</title><rect x="27.2256%" y="1285" width="0.2205%" height="15" fill="rgb(242,132,44)" fg:x="12964" fg:w="105"/><text x="27.4756%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (99 samples, 0.21%)</title><rect x="27.2382%" y="1269" width="0.2079%" height="15" fill="rgb(251,152,29)" fg:x="12970" fg:w="99"/><text x="27.4882%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (8 samples, 0.02%)</title><rect x="27.4503%" y="1269" width="0.0168%" height="15" fill="rgb(218,179,5)" fg:x="13071" fg:w="8"/><text x="27.7003%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (13 samples, 0.03%)</title><rect x="27.4461%" y="1285" width="0.0273%" height="15" fill="rgb(227,67,19)" fg:x="13069" fg:w="13"/><text x="27.6961%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="27.4944%" y="1269" width="0.0126%" height="15" fill="rgb(233,119,31)" fg:x="13092" fg:w="6"/><text x="27.7444%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (6 samples, 0.01%)</title><rect x="27.5427%" y="1253" width="0.0126%" height="15" fill="rgb(241,120,22)" fg:x="13115" fg:w="6"/><text x="27.7927%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="27.5553%" y="1253" width="0.0105%" height="15" fill="rgb(224,102,30)" fg:x="13121" fg:w="5"/><text x="27.8053%" y="1263.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (7 samples, 0.01%)</title><rect x="27.5658%" y="1253" width="0.0147%" height="15" fill="rgb(210,164,37)" fg:x="13126" fg:w="7"/><text x="27.8158%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="27.6498%" y="1237" width="0.0126%" height="15" fill="rgb(226,191,16)" fg:x="13166" fg:w="6"/><text x="27.8998%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (8 samples, 0.02%)</title><rect x="27.6624%" y="1237" width="0.0168%" height="15" fill="rgb(214,40,45)" fg:x="13172" fg:w="8"/><text x="27.9124%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (6 samples, 0.01%)</title><rect x="27.6897%" y="1237" width="0.0126%" height="15" fill="rgb(244,29,26)" fg:x="13185" fg:w="6"/><text x="27.9397%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (18 samples, 0.04%)</title><rect x="27.7254%" y="1221" width="0.0378%" height="15" fill="rgb(216,16,5)" fg:x="13202" fg:w="18"/><text x="27.9754%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (13 samples, 0.03%)</title><rect x="27.7632%" y="1221" width="0.0273%" height="15" fill="rgb(249,76,35)" fg:x="13220" fg:w="13"/><text x="28.0132%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (7 samples, 0.01%)</title><rect x="27.7758%" y="1205" width="0.0147%" height="15" fill="rgb(207,11,44)" fg:x="13226" fg:w="7"/><text x="28.0258%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (6 samples, 0.01%)</title><rect x="27.7779%" y="1189" width="0.0126%" height="15" fill="rgb(228,190,49)" fg:x="13227" fg:w="6"/><text x="28.0279%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="27.7800%" y="1173" width="0.0105%" height="15" fill="rgb(214,173,12)" fg:x="13228" fg:w="5"/><text x="28.0300%" y="1183.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="27.8136%" y="1189" width="0.0126%" height="15" fill="rgb(218,26,35)" fg:x="13244" fg:w="6"/><text x="28.0636%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (5 samples, 0.01%)</title><rect x="27.8535%" y="1157" width="0.0105%" height="15" fill="rgb(220,200,19)" fg:x="13263" fg:w="5"/><text x="28.1035%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_pointer_size (5 samples, 0.01%)</title><rect x="27.9018%" y="1109" width="0.0105%" height="15" fill="rgb(239,95,49)" fg:x="13286" fg:w="5"/><text x="28.1518%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="27.9186%" y="1093" width="0.0147%" height="15" fill="rgb(235,85,53)" fg:x="13294" fg:w="7"/><text x="28.1686%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (8 samples, 0.02%)</title><rect x="27.9333%" y="1093" width="0.0168%" height="15" fill="rgb(233,133,31)" fg:x="13301" fg:w="8"/><text x="28.1833%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (25 samples, 0.05%)</title><rect x="27.9123%" y="1109" width="0.0525%" height="15" fill="rgb(218,25,20)" fg:x="13291" fg:w="25"/><text x="28.1623%" y="1119.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (7 samples, 0.01%)</title><rect x="27.9501%" y="1093" width="0.0147%" height="15" fill="rgb(252,210,38)" fg:x="13309" fg:w="7"/><text x="28.2001%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (47 samples, 0.10%)</title><rect x="27.8850%" y="1125" width="0.0987%" height="15" fill="rgb(242,134,21)" fg:x="13278" fg:w="47"/><text x="28.1350%" y="1135.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (9 samples, 0.02%)</title><rect x="27.9648%" y="1109" width="0.0189%" height="15" fill="rgb(213,28,48)" fg:x="13316" fg:w="9"/><text x="28.2148%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (53 samples, 0.11%)</title><rect x="27.8766%" y="1141" width="0.1113%" height="15" fill="rgb(250,196,2)" fg:x="13274" fg:w="53"/><text x="28.1266%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (80 samples, 0.17%)</title><rect x="27.8262%" y="1189" width="0.1680%" height="15" fill="rgb(227,5,17)" fg:x="13250" fg:w="80"/><text x="28.0762%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (73 samples, 0.15%)</title><rect x="27.8409%" y="1173" width="0.1533%" height="15" fill="rgb(221,226,24)" fg:x="13257" fg:w="73"/><text x="28.0909%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (58 samples, 0.12%)</title><rect x="27.8724%" y="1157" width="0.1218%" height="15" fill="rgb(211,5,48)" fg:x="13272" fg:w="58"/><text x="28.1224%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad_integral (5 samples, 0.01%)</title><rect x="28.0047%" y="1189" width="0.0105%" height="15" fill="rgb(219,150,6)" fg:x="13335" fg:w="5"/><text x="28.2547%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (120 samples, 0.25%)</title><rect x="27.7905%" y="1221" width="0.2520%" height="15" fill="rgb(251,46,16)" fg:x="13233" fg:w="120"/><text x="28.0405%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (118 samples, 0.25%)</title><rect x="27.7947%" y="1205" width="0.2478%" height="15" fill="rgb(220,204,40)" fg:x="13235" fg:w="118"/><text x="28.0447%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (13 samples, 0.03%)</title><rect x="28.0152%" y="1189" width="0.0273%" height="15" fill="rgb(211,85,2)" fg:x="13340" fg:w="13"/><text x="28.2652%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="28.0446%" y="1205" width="0.0105%" height="15" fill="rgb(229,17,7)" fg:x="13354" fg:w="5"/><text x="28.2946%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::fmt::Display&gt;::fmt (29 samples, 0.06%)</title><rect x="28.0425%" y="1221" width="0.0609%" height="15" fill="rgb(239,72,28)" fg:x="13353" fg:w="29"/><text x="28.2925%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (13 samples, 0.03%)</title><rect x="28.0761%" y="1205" width="0.0273%" height="15" fill="rgb(230,47,54)" fg:x="13369" fg:w="13"/><text x="28.3261%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (261 samples, 0.55%)</title><rect x="27.5847%" y="1253" width="0.5481%" height="15" fill="rgb(214,50,8)" fg:x="13135" fg:w="261"/><text x="27.8347%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (205 samples, 0.43%)</title><rect x="27.7023%" y="1237" width="0.4305%" height="15" fill="rgb(216,198,43)" fg:x="13191" fg:w="205"/><text x="27.9523%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (6 samples, 0.01%)</title><rect x="28.1202%" y="1221" width="0.0126%" height="15" fill="rgb(234,20,35)" fg:x="13390" fg:w="6"/><text x="28.3702%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (5 samples, 0.01%)</title><rect x="28.1580%" y="1237" width="0.0105%" height="15" fill="rgb(254,45,19)" fg:x="13408" fg:w="5"/><text x="28.4080%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="28.1916%" y="1221" width="0.0252%" height="15" fill="rgb(219,14,44)" fg:x="13424" fg:w="12"/><text x="28.4416%" y="1231.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="28.2042%" y="1205" width="0.0126%" height="15" fill="rgb(217,220,26)" fg:x="13430" fg:w="6"/><text x="28.4542%" y="1215.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="28.2252%" y="1205" width="0.0105%" height="15" fill="rgb(213,158,28)" fg:x="13440" fg:w="5"/><text x="28.4752%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="28.2357%" y="1205" width="0.0126%" height="15" fill="rgb(252,51,52)" fg:x="13445" fg:w="6"/><text x="28.4857%" y="1215.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="28.2378%" y="1189" width="0.0105%" height="15" fill="rgb(246,89,16)" fg:x="13446" fg:w="5"/><text x="28.4878%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (17 samples, 0.04%)</title><rect x="28.2168%" y="1221" width="0.0357%" height="15" fill="rgb(216,158,49)" fg:x="13436" fg:w="17"/><text x="28.4668%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (54 samples, 0.11%)</title><rect x="28.1412%" y="1253" width="0.1134%" height="15" fill="rgb(236,107,19)" fg:x="13400" fg:w="54"/><text x="28.3912%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (40 samples, 0.08%)</title><rect x="28.1706%" y="1237" width="0.0840%" height="15" fill="rgb(228,185,30)" fg:x="13414" fg:w="40"/><text x="28.4206%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (379 samples, 0.80%)</title><rect x="27.4734%" y="1285" width="0.7959%" height="15" fill="rgb(246,134,8)" fg:x="13082" fg:w="379"/><text x="27.7234%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (360 samples, 0.76%)</title><rect x="27.5133%" y="1269" width="0.7560%" height="15" fill="rgb(214,143,50)" fg:x="13101" fg:w="360"/><text x="27.7633%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (5 samples, 0.01%)</title><rect x="28.2693%" y="1285" width="0.0105%" height="15" fill="rgb(228,75,8)" fg:x="13461" fg:w="5"/><text x="28.5193%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="28.3008%" y="1269" width="0.0105%" height="15" fill="rgb(207,175,4)" fg:x="13476" fg:w="5"/><text x="28.5508%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (17 samples, 0.04%)</title><rect x="28.2798%" y="1285" width="0.0357%" height="15" fill="rgb(205,108,24)" fg:x="13466" fg:w="17"/><text x="28.5298%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="28.3218%" y="1269" width="0.0147%" height="15" fill="rgb(244,120,49)" fg:x="13486" fg:w="7"/><text x="28.5718%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (7 samples, 0.01%)</title><rect x="28.3512%" y="1253" width="0.0147%" height="15" fill="rgb(223,47,38)" fg:x="13500" fg:w="7"/><text x="28.6012%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_value (30 samples, 0.06%)</title><rect x="28.3155%" y="1285" width="0.0630%" height="15" fill="rgb(229,179,11)" fg:x="13483" fg:w="30"/><text x="28.5655%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (13 samples, 0.03%)</title><rect x="28.3512%" y="1269" width="0.0273%" height="15" fill="rgb(231,122,1)" fg:x="13500" fg:w="13"/><text x="28.6012%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="28.3659%" y="1253" width="0.0126%" height="15" fill="rgb(245,119,9)" fg:x="13507" fg:w="6"/><text x="28.6159%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="28.3659%" y="1237" width="0.0126%" height="15" fill="rgb(241,163,25)" fg:x="13507" fg:w="6"/><text x="28.6159%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::try_parse (11 samples, 0.02%)</title><rect x="28.3785%" y="1285" width="0.0231%" height="15" fill="rgb(217,214,3)" fg:x="13513" fg:w="11"/><text x="28.6285%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (673 samples, 1.41%)</title><rect x="26.9967%" y="1301" width="1.4134%" height="15" fill="rgb(240,86,28)" fg:x="12855" fg:w="673"/><text x="27.2467%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_infix (1,392 samples, 2.92%)</title><rect x="25.5035%" y="1333" width="2.9233%" height="15" fill="rgb(215,47,9)" fg:x="12144" fg:w="1392"/><text x="25.7535%" y="1343.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (1,215 samples, 2.55%)</title><rect x="25.8752%" y="1317" width="2.5516%" height="15" fill="rgb(252,25,45)" fg:x="12321" fg:w="1215"/><text x="26.1252%" y="1327.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (5 samples, 0.01%)</title><rect x="28.4268%" y="1333" width="0.0105%" height="15" fill="rgb(251,164,9)" fg:x="13536" fg:w="5"/><text x="28.6768%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="28.4751%" y="1317" width="0.0189%" height="15" fill="rgb(233,194,0)" fg:x="13559" fg:w="9"/><text x="28.7251%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="28.5318%" y="1285" width="0.0105%" height="15" fill="rgb(249,111,24)" fg:x="13586" fg:w="5"/><text x="28.7818%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="28.5423%" y="1285" width="0.0147%" height="15" fill="rgb(250,223,3)" fg:x="13591" fg:w="7"/><text x="28.7923%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (9 samples, 0.02%)</title><rect x="28.5906%" y="1269" width="0.0189%" height="15" fill="rgb(236,178,37)" fg:x="13614" fg:w="9"/><text x="28.8406%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (26 samples, 0.05%)</title><rect x="28.6347%" y="1253" width="0.0546%" height="15" fill="rgb(241,158,50)" fg:x="13635" fg:w="26"/><text x="28.8847%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (14 samples, 0.03%)</title><rect x="28.7061%" y="1237" width="0.0294%" height="15" fill="rgb(213,121,41)" fg:x="13669" fg:w="14"/><text x="28.9561%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (9 samples, 0.02%)</title><rect x="28.7166%" y="1221" width="0.0189%" height="15" fill="rgb(240,92,3)" fg:x="13674" fg:w="9"/><text x="28.9666%" y="1231.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (7 samples, 0.01%)</title><rect x="28.7208%" y="1205" width="0.0147%" height="15" fill="rgb(205,123,3)" fg:x="13676" fg:w="7"/><text x="28.9708%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (24 samples, 0.05%)</title><rect x="28.6893%" y="1253" width="0.0504%" height="15" fill="rgb(205,97,47)" fg:x="13661" fg:w="24"/><text x="28.9393%" y="1263.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="28.7859%" y="1221" width="0.0126%" height="15" fill="rgb(247,152,14)" fg:x="13707" fg:w="6"/><text x="29.0359%" y="1231.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="28.8531%" y="1125" width="0.0105%" height="15" fill="rgb(248,195,53)" fg:x="13739" fg:w="5"/><text x="29.1031%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (23 samples, 0.05%)</title><rect x="28.8405%" y="1141" width="0.0483%" height="15" fill="rgb(226,201,16)" fg:x="13733" fg:w="23"/><text x="29.0905%" y="1151.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (8 samples, 0.02%)</title><rect x="28.8720%" y="1125" width="0.0168%" height="15" fill="rgb(205,98,0)" fg:x="13748" fg:w="8"/><text x="29.1220%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (35 samples, 0.07%)</title><rect x="28.8258%" y="1157" width="0.0735%" height="15" fill="rgb(214,191,48)" fg:x="13726" fg:w="35"/><text x="29.0758%" y="1167.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="28.8888%" y="1141" width="0.0105%" height="15" fill="rgb(237,112,39)" fg:x="13756" fg:w="5"/><text x="29.1388%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (38 samples, 0.08%)</title><rect x="28.8258%" y="1173" width="0.0798%" height="15" fill="rgb(247,203,27)" fg:x="13726" fg:w="38"/><text x="29.0758%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (51 samples, 0.11%)</title><rect x="28.8132%" y="1205" width="0.1071%" height="15" fill="rgb(235,124,28)" fg:x="13720" fg:w="51"/><text x="29.0632%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (47 samples, 0.10%)</title><rect x="28.8216%" y="1189" width="0.0987%" height="15" fill="rgb(208,207,46)" fg:x="13724" fg:w="47"/><text x="29.0716%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_size (7 samples, 0.01%)</title><rect x="28.9056%" y="1173" width="0.0147%" height="15" fill="rgb(234,176,4)" fg:x="13764" fg:w="7"/><text x="29.1556%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (61 samples, 0.13%)</title><rect x="28.7985%" y="1221" width="0.1281%" height="15" fill="rgb(230,133,28)" fg:x="13713" fg:w="61"/><text x="29.0485%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (5 samples, 0.01%)</title><rect x="28.9350%" y="1221" width="0.0105%" height="15" fill="rgb(211,137,40)" fg:x="13778" fg:w="5"/><text x="29.1850%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad_integral (9 samples, 0.02%)</title><rect x="28.9455%" y="1221" width="0.0189%" height="15" fill="rgb(254,35,13)" fg:x="13783" fg:w="9"/><text x="29.1955%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad_integral (5 samples, 0.01%)</title><rect x="28.9875%" y="1205" width="0.0105%" height="15" fill="rgb(225,49,51)" fg:x="13803" fg:w="5"/><text x="29.2375%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (128 samples, 0.27%)</title><rect x="28.7397%" y="1253" width="0.2688%" height="15" fill="rgb(251,10,15)" fg:x="13685" fg:w="128"/><text x="28.9897%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (123 samples, 0.26%)</title><rect x="28.7502%" y="1237" width="0.2583%" height="15" fill="rgb(228,207,15)" fg:x="13690" fg:w="123"/><text x="29.0002%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (21 samples, 0.04%)</title><rect x="28.9644%" y="1221" width="0.0441%" height="15" fill="rgb(241,99,19)" fg:x="13792" fg:w="21"/><text x="29.2144%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad_integral::write_prefix (5 samples, 0.01%)</title><rect x="28.9980%" y="1205" width="0.0105%" height="15" fill="rgb(207,104,49)" fg:x="13808" fg:w="5"/><text x="29.2480%" y="1215.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="29.0379%" y="1221" width="0.0105%" height="15" fill="rgb(234,99,18)" fg:x="13827" fg:w="5"/><text x="29.2879%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (5 samples, 0.01%)</title><rect x="29.0484%" y="1221" width="0.0105%" height="15" fill="rgb(213,191,49)" fg:x="13832" fg:w="5"/><text x="29.2984%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::fmt::Display&gt;::fmt (26 samples, 0.05%)</title><rect x="29.0085%" y="1253" width="0.0546%" height="15" fill="rgb(210,226,19)" fg:x="13813" fg:w="26"/><text x="29.2585%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (21 samples, 0.04%)</title><rect x="29.0190%" y="1237" width="0.0441%" height="15" fill="rgb(229,97,18)" fg:x="13818" fg:w="21"/><text x="29.2690%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (246 samples, 0.52%)</title><rect x="28.5696%" y="1285" width="0.5166%" height="15" fill="rgb(211,167,15)" fg:x="13604" fg:w="246"/><text x="28.8196%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (223 samples, 0.47%)</title><rect x="28.6179%" y="1269" width="0.4683%" height="15" fill="rgb(210,169,34)" fg:x="13627" fg:w="223"/><text x="28.8679%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (273 samples, 0.57%)</title><rect x="28.5171%" y="1317" width="0.5733%" height="15" fill="rgb(241,121,31)" fg:x="13579" fg:w="273"/><text x="28.7671%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (269 samples, 0.56%)</title><rect x="28.5255%" y="1301" width="0.5649%" height="15" fill="rgb(232,40,11)" fg:x="13583" fg:w="269"/><text x="28.7755%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="29.1073%" y="1301" width="0.0105%" height="15" fill="rgb(205,86,26)" fg:x="13860" fg:w="5"/><text x="29.3573%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="29.1367%" y="1285" width="0.0126%" height="15" fill="rgb(231,126,28)" fg:x="13874" fg:w="6"/><text x="29.3867%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_value (28 samples, 0.06%)</title><rect x="29.0926%" y="1317" width="0.0588%" height="15" fill="rgb(219,221,18)" fg:x="13853" fg:w="28"/><text x="29.3426%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="29.1262%" y="1301" width="0.0252%" height="15" fill="rgb(211,40,0)" fg:x="13869" fg:w="12"/><text x="29.3762%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (343 samples, 0.72%)</title><rect x="28.4373%" y="1333" width="0.7203%" height="15" fill="rgb(239,85,43)" fg:x="13541" fg:w="343"/><text x="28.6873%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (1,947 samples, 4.09%)</title><rect x="25.0898%" y="1349" width="4.0889%" height="15" fill="rgb(231,55,21)" fg:x="11947" fg:w="1947"/><text x="25.3398%" y="1359.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (5 samples, 0.01%)</title><rect x="29.1682%" y="1333" width="0.0105%" height="15" fill="rgb(225,184,43)" fg:x="13889" fg:w="5"/><text x="29.4182%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_select (5,109 samples, 10.73%)</title><rect x="18.4514%" y="1365" width="10.7294%" height="15" fill="rgb(251,158,41)" fg:x="8786" fg:w="5109"/><text x="18.7014%" y="1375.50">sqlparser_bench-..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_query_body (5,450 samples, 11.45%)</title><rect x="17.7374%" y="1381" width="11.4455%" height="15" fill="rgb(234,159,37)" fg:x="8446" fg:w="5450"/><text x="17.9874%" y="1391.50">sqlparser_bench-9..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_select (5 samples, 0.01%)</title><rect x="29.1829%" y="1381" width="0.0105%" height="15" fill="rgb(216,204,22)" fg:x="13896" fg:w="5"/><text x="29.4329%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_query (8,118 samples, 17.05%)</title><rect x="12.1553%" y="1397" width="17.0485%" height="15" fill="rgb(214,17,3)" fg:x="5788" fg:w="8118"/><text x="12.4053%" y="1407.50">sqlparser_bench-959bc52679..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_settings (5 samples, 0.01%)</title><rect x="29.1934%" y="1381" width="0.0105%" height="15" fill="rgb(212,111,17)" fg:x="13901" fg:w="5"/><text x="29.4434%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_statements (8,347 samples, 17.53%)</title><rect x="11.6828%" y="1429" width="17.5295%" height="15" fill="rgb(221,157,24)" fg:x="5563" fg:w="8347"/><text x="11.9328%" y="1439.50">sqlparser_bench-959bc526797..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_statement (8,222 samples, 17.27%)</title><rect x="11.9453%" y="1413" width="17.2669%" height="15" fill="rgb(252,16,13)" fg:x="5688" fg:w="8222"/><text x="12.1953%" y="1423.50">sqlparser_bench-959bc526797..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::next_token (177 samples, 0.37%)</title><rect x="29.2795%" y="1397" width="0.3717%" height="15" fill="rgb(221,62,2)" fg:x="13942" fg:w="177"/><text x="29.5295%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_identifier_or_keyword (36 samples, 0.08%)</title><rect x="29.6512%" y="1397" width="0.0756%" height="15" fill="rgb(247,87,22)" fg:x="14119" fg:w="36"/><text x="29.9012%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_free (161 samples, 0.34%)</title><rect x="30.7516%" y="1381" width="0.3381%" height="15" fill="rgb(215,73,9)" fg:x="14643" fg:w="161"/><text x="31.0016%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (39 samples, 0.08%)</title><rect x="31.0897%" y="1381" width="0.0819%" height="15" fill="rgb(207,175,33)" fg:x="14804" fg:w="39"/><text x="31.3397%" y="1391.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="31.1716%" y="1381" width="0.0126%" height="15" fill="rgb(243,129,54)" fg:x="14843" fg:w="6"/><text x="31.4216%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::iter::traits::collect::FromIterator&lt;char&gt;&gt;::from_iter (24 samples, 0.05%)</title><rect x="31.1884%" y="1381" width="0.0504%" height="15" fill="rgb(227,119,45)" fg:x="14851" fg:w="24"/><text x="31.4384%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::dialect::generic::GenericDialect as sqlparser::dialect::Dialect&gt;::is_delimited_identifier_start (15 samples, 0.03%)</title><rect x="31.2388%" y="1381" width="0.0315%" height="15" fill="rgb(205,109,36)" fg:x="14875" fg:w="15"/><text x="31.4888%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::dialect::mssql::MsSqlDialect as sqlparser::dialect::Dialect&gt;::is_identifier_start (8 samples, 0.02%)</title><rect x="31.2703%" y="1381" width="0.0168%" height="15" fill="rgb(205,6,39)" fg:x="14890" fg:w="8"/><text x="31.5203%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (29 samples, 0.06%)</title><rect x="31.2871%" y="1381" width="0.0609%" height="15" fill="rgb(221,32,16)" fg:x="14898" fg:w="29"/><text x="31.5371%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_dealloc (5 samples, 0.01%)</title><rect x="31.3522%" y="1381" width="0.0105%" height="15" fill="rgb(228,144,50)" fg:x="14929" fg:w="5"/><text x="31.6022%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$realloc (5 samples, 0.01%)</title><rect x="31.4048%" y="1365" width="0.0105%" height="15" fill="rgb(229,201,53)" fg:x="14954" fg:w="5"/><text x="31.6548%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (7 samples, 0.01%)</title><rect x="31.4594%" y="1349" width="0.0147%" height="15" fill="rgb(249,153,27)" fg:x="14980" fg:w="7"/><text x="31.7094%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`szone_good_size (6 samples, 0.01%)</title><rect x="31.5833%" y="1317" width="0.0126%" height="15" fill="rgb(227,106,25)" fg:x="15039" fg:w="6"/><text x="31.8333%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (5 samples, 0.01%)</title><rect x="31.6442%" y="1301" width="0.0105%" height="15" fill="rgb(230,65,29)" fg:x="15068" fg:w="5"/><text x="31.8942%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (6 samples, 0.01%)</title><rect x="31.7114%" y="1269" width="0.0126%" height="15" fill="rgb(221,57,46)" fg:x="15100" fg:w="6"/><text x="31.9614%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (29 samples, 0.06%)</title><rect x="31.6673%" y="1301" width="0.0609%" height="15" fill="rgb(229,161,17)" fg:x="15079" fg:w="29"/><text x="31.9173%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (20 samples, 0.04%)</title><rect x="31.6862%" y="1285" width="0.0420%" height="15" fill="rgb(222,213,11)" fg:x="15088" fg:w="20"/><text x="31.9362%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`small_try_realloc_in_place (14 samples, 0.03%)</title><rect x="31.7471%" y="1301" width="0.0294%" height="15" fill="rgb(235,35,13)" fg:x="15117" fg:w="14"/><text x="31.9971%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (7 samples, 0.01%)</title><rect x="31.7618%" y="1285" width="0.0147%" height="15" fill="rgb(233,158,34)" fg:x="15124" fg:w="7"/><text x="32.0118%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (5 samples, 0.01%)</title><rect x="31.8416%" y="1253" width="0.0105%" height="15" fill="rgb(215,151,48)" fg:x="15162" fg:w="5"/><text x="32.0916%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (43 samples, 0.09%)</title><rect x="31.7765%" y="1301" width="0.0903%" height="15" fill="rgb(229,84,14)" fg:x="15131" fg:w="43"/><text x="32.0265%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (33 samples, 0.07%)</title><rect x="31.7975%" y="1285" width="0.0693%" height="15" fill="rgb(229,68,14)" fg:x="15141" fg:w="33"/><text x="32.0475%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (28 samples, 0.06%)</title><rect x="31.8080%" y="1269" width="0.0588%" height="15" fill="rgb(243,106,26)" fg:x="15146" fg:w="28"/><text x="32.0580%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (7 samples, 0.01%)</title><rect x="31.8521%" y="1253" width="0.0147%" height="15" fill="rgb(206,45,38)" fg:x="15167" fg:w="7"/><text x="32.1021%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`szone_size (23 samples, 0.05%)</title><rect x="31.8668%" y="1301" width="0.0483%" height="15" fill="rgb(226,6,15)" fg:x="15174" fg:w="23"/><text x="32.1168%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`tiny_size (22 samples, 0.05%)</title><rect x="31.8689%" y="1285" width="0.0462%" height="15" fill="rgb(232,22,54)" fg:x="15175" fg:w="22"/><text x="32.1189%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`tiny_try_realloc_in_place (23 samples, 0.05%)</title><rect x="31.9214%" y="1301" width="0.0483%" height="15" fill="rgb(229,222,32)" fg:x="15200" fg:w="23"/><text x="32.1714%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (6 samples, 0.01%)</title><rect x="31.9571%" y="1285" width="0.0126%" height="15" fill="rgb(228,62,29)" fg:x="15217" fg:w="6"/><text x="32.2071%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`szone_realloc (186 samples, 0.39%)</title><rect x="31.5980%" y="1317" width="0.3906%" height="15" fill="rgb(251,103,34)" fg:x="15046" fg:w="186"/><text x="31.8480%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (9 samples, 0.02%)</title><rect x="31.9697%" y="1301" width="0.0189%" height="15" fill="rgb(233,12,30)" fg:x="15223" fg:w="9"/><text x="32.2197%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (252 samples, 0.53%)</title><rect x="31.5245%" y="1333" width="0.5292%" height="15" fill="rgb(238,52,0)" fg:x="15011" fg:w="252"/><text x="31.7745%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (29 samples, 0.06%)</title><rect x="31.9928%" y="1317" width="0.0609%" height="15" fill="rgb(223,98,5)" fg:x="15234" fg:w="29"/><text x="32.2428%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (330 samples, 0.69%)</title><rect x="31.4741%" y="1349" width="0.6930%" height="15" fill="rgb(228,75,37)" fg:x="14987" fg:w="330"/><text x="31.7241%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`szone_size (42 samples, 0.09%)</title><rect x="32.0789%" y="1333" width="0.0882%" height="15" fill="rgb(205,115,49)" fg:x="15275" fg:w="42"/><text x="32.3289%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`tiny_size (40 samples, 0.08%)</title><rect x="32.0831%" y="1317" width="0.0840%" height="15" fill="rgb(250,154,43)" fg:x="15277" fg:w="40"/><text x="32.3331%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (47 samples, 0.10%)</title><rect x="32.1692%" y="1349" width="0.0987%" height="15" fill="rgb(226,43,29)" fg:x="15318" fg:w="47"/><text x="32.4192%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_should_clear (34 samples, 0.07%)</title><rect x="32.1965%" y="1333" width="0.0714%" height="15" fill="rgb(249,228,39)" fg:x="15331" fg:w="34"/><text x="32.4465%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (25 samples, 0.05%)</title><rect x="32.2154%" y="1317" width="0.0525%" height="15" fill="rgb(216,79,43)" fg:x="15340" fg:w="25"/><text x="32.4654%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (436 samples, 0.92%)</title><rect x="31.3648%" y="1381" width="0.9156%" height="15" fill="rgb(228,95,12)" fg:x="14935" fg:w="436"/><text x="31.6148%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (405 samples, 0.85%)</title><rect x="31.4300%" y="1365" width="0.8505%" height="15" fill="rgb(249,221,15)" fg:x="14966" fg:w="405"/><text x="31.6800%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::is_custom_operator_part (11 samples, 0.02%)</title><rect x="32.2847%" y="1381" width="0.0231%" height="15" fill="rgb(233,34,13)" fg:x="15373" fg:w="11"/><text x="32.5347%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::State::next (10 samples, 0.02%)</title><rect x="32.3078%" y="1381" width="0.0210%" height="15" fill="rgb(214,103,39)" fg:x="15384" fg:w="10"/><text x="32.5578%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::State::peek (25 samples, 0.05%)</title><rect x="32.3288%" y="1381" width="0.0525%" height="15" fill="rgb(251,126,39)" fg:x="15394" fg:w="25"/><text x="32.5788%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::consume_and_return (25 samples, 0.05%)</title><rect x="32.3813%" y="1381" width="0.0525%" height="15" fill="rgb(214,216,36)" fg:x="15419" fg:w="25"/><text x="32.6313%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_free (9 samples, 0.02%)</title><rect x="33.4712%" y="1365" width="0.0189%" height="15" fill="rgb(220,221,8)" fg:x="15938" fg:w="9"/><text x="33.7212%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (13 samples, 0.03%)</title><rect x="33.4901%" y="1365" width="0.0273%" height="15" fill="rgb(240,216,3)" fg:x="15947" fg:w="13"/><text x="33.7401%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (30 samples, 0.06%)</title><rect x="33.5174%" y="1365" width="0.0630%" height="15" fill="rgb(232,218,17)" fg:x="15960" fg:w="30"/><text x="33.7674%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memcmp (80 samples, 0.17%)</title><rect x="33.5804%" y="1365" width="0.1680%" height="15" fill="rgb(229,163,45)" fg:x="15990" fg:w="80"/><text x="33.8304%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (12 samples, 0.03%)</title><rect x="33.7485%" y="1365" width="0.0252%" height="15" fill="rgb(231,110,42)" fg:x="16070" fg:w="12"/><text x="33.9985%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::dialect::mssql::MsSqlDialect as sqlparser::dialect::Dialect&gt;::is_identifier_part (17 samples, 0.04%)</title><rect x="33.7737%" y="1365" width="0.0357%" height="15" fill="rgb(208,170,48)" fg:x="16082" fg:w="17"/><text x="34.0237%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcmp (21 samples, 0.04%)</title><rect x="33.8157%" y="1365" width="0.0441%" height="15" fill="rgb(239,116,25)" fg:x="16102" fg:w="21"/><text x="34.0657%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (10 samples, 0.02%)</title><rect x="33.8934%" y="1349" width="0.0210%" height="15" fill="rgb(219,200,50)" fg:x="16139" fg:w="10"/><text x="34.1434%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (41 samples, 0.09%)</title><rect x="33.8745%" y="1365" width="0.0861%" height="15" fill="rgb(245,200,0)" fg:x="16130" fg:w="41"/><text x="34.1245%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (18 samples, 0.04%)</title><rect x="33.9228%" y="1349" width="0.0378%" height="15" fill="rgb(245,119,33)" fg:x="16153" fg:w="18"/><text x="34.1728%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (17 samples, 0.04%)</title><rect x="33.9249%" y="1333" width="0.0357%" height="15" fill="rgb(231,125,12)" fg:x="16154" fg:w="17"/><text x="34.1749%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (7 samples, 0.01%)</title><rect x="34.0005%" y="1349" width="0.0147%" height="15" fill="rgb(216,96,41)" fg:x="16190" fg:w="7"/><text x="34.2505%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Token::make_word (33 samples, 0.07%)</title><rect x="33.9774%" y="1365" width="0.0693%" height="15" fill="rgb(248,43,45)" fg:x="16179" fg:w="33"/><text x="34.2274%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::str::_&lt;impl str&gt;::to_uppercase (12 samples, 0.03%)</title><rect x="34.0215%" y="1349" width="0.0252%" height="15" fill="rgb(217,222,7)" fg:x="16200" fg:w="12"/><text x="34.2715%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="34.0341%" y="1333" width="0.0126%" height="15" fill="rgb(233,28,6)" fg:x="16206" fg:w="6"/><text x="34.2841%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (12 samples, 0.03%)</title><rect x="34.1202%" y="1349" width="0.0252%" height="15" fill="rgb(231,218,15)" fg:x="16247" fg:w="12"/><text x="34.3702%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (7 samples, 0.01%)</title><rect x="34.1454%" y="1349" width="0.0147%" height="15" fill="rgb(226,171,48)" fg:x="16259" fg:w="7"/><text x="34.3954%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (14 samples, 0.03%)</title><rect x="34.1601%" y="1349" width="0.0294%" height="15" fill="rgb(235,201,9)" fg:x="16266" fg:w="14"/><text x="34.4101%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (5 samples, 0.01%)</title><rect x="34.1790%" y="1333" width="0.0105%" height="15" fill="rgb(217,80,15)" fg:x="16275" fg:w="5"/><text x="34.4290%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_pointer_size (11 samples, 0.02%)</title><rect x="34.2357%" y="1285" width="0.0231%" height="15" fill="rgb(219,152,8)" fg:x="16302" fg:w="11"/><text x="34.4857%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (30 samples, 0.06%)</title><rect x="34.2084%" y="1317" width="0.0630%" height="15" fill="rgb(243,107,38)" fg:x="16289" fg:w="30"/><text x="34.4584%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (23 samples, 0.05%)</title><rect x="34.2231%" y="1301" width="0.0483%" height="15" fill="rgb(231,17,5)" fg:x="16296" fg:w="23"/><text x="34.4731%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (6 samples, 0.01%)</title><rect x="34.2588%" y="1285" width="0.0126%" height="15" fill="rgb(209,25,54)" fg:x="16313" fg:w="6"/><text x="34.5088%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (47 samples, 0.10%)</title><rect x="34.1895%" y="1349" width="0.0987%" height="15" fill="rgb(219,0,2)" fg:x="16280" fg:w="47"/><text x="34.4395%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (39 samples, 0.08%)</title><rect x="34.2063%" y="1333" width="0.0819%" height="15" fill="rgb(246,9,5)" fg:x="16288" fg:w="39"/><text x="34.4563%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_size (8 samples, 0.02%)</title><rect x="34.2714%" y="1317" width="0.0168%" height="15" fill="rgb(226,159,4)" fg:x="16319" fg:w="8"/><text x="34.5214%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::next_token (884 samples, 1.86%)</title><rect x="32.4338%" y="1381" width="1.8565%" height="15" fill="rgb(219,175,34)" fg:x="15444" fg:w="884"/><text x="32.6838%" y="1391.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_word (116 samples, 0.24%)</title><rect x="34.0467%" y="1365" width="0.2436%" height="15" fill="rgb(236,10,46)" fg:x="16212" fg:w="116"/><text x="34.2967%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_free (37 samples, 0.08%)</title><rect x="34.4478%" y="1365" width="0.0777%" height="15" fill="rgb(240,211,16)" fg:x="16403" fg:w="37"/><text x="34.6978%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (39 samples, 0.08%)</title><rect x="34.5255%" y="1365" width="0.0819%" height="15" fill="rgb(205,3,43)" fg:x="16440" fg:w="39"/><text x="34.7755%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (231 samples, 0.49%)</title><rect x="34.6074%" y="1365" width="0.4851%" height="15" fill="rgb(245,7,22)" fg:x="16479" fg:w="231"/><text x="34.8574%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memcmp (593 samples, 1.25%)</title><rect x="35.0925%" y="1365" width="1.2454%" height="15" fill="rgb(239,132,32)" fg:x="16710" fg:w="593"/><text x="35.3425%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (110 samples, 0.23%)</title><rect x="36.3379%" y="1365" width="0.2310%" height="15" fill="rgb(228,202,34)" fg:x="17303" fg:w="110"/><text x="36.5879%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (41 samples, 0.09%)</title><rect x="36.7369%" y="1333" width="0.0861%" height="15" fill="rgb(254,200,22)" fg:x="17493" fg:w="41"/><text x="36.9869%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_alloc (17 samples, 0.04%)</title><rect x="36.8314%" y="1333" width="0.0357%" height="15" fill="rgb(219,10,39)" fg:x="17538" fg:w="17"/><text x="37.0814%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (183 samples, 0.38%)</title><rect x="36.6571%" y="1349" width="0.3843%" height="15" fill="rgb(226,210,39)" fg:x="17455" fg:w="183"/><text x="36.9071%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (83 samples, 0.17%)</title><rect x="36.8671%" y="1333" width="0.1743%" height="15" fill="rgb(208,219,16)" fg:x="17555" fg:w="83"/><text x="37.1171%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (66 samples, 0.14%)</title><rect x="36.9028%" y="1317" width="0.1386%" height="15" fill="rgb(216,158,51)" fg:x="17572" fg:w="66"/><text x="37.1528%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::iter::traits::collect::FromIterator&lt;char&gt;&gt;::from_iter (235 samples, 0.49%)</title><rect x="36.5689%" y="1365" width="0.4935%" height="15" fill="rgb(233,14,44)" fg:x="17413" fg:w="235"/><text x="36.8189%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (10 samples, 0.02%)</title><rect x="37.0414%" y="1349" width="0.0210%" height="15" fill="rgb(237,97,39)" fg:x="17638" fg:w="10"/><text x="37.2914%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::dialect::mssql::MsSqlDialect as sqlparser::dialect::Dialect&gt;::is_identifier_part (119 samples, 0.25%)</title><rect x="37.0624%" y="1365" width="0.2499%" height="15" fill="rgb(218,198,43)" fg:x="17648" fg:w="119"/><text x="37.3124%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (28 samples, 0.06%)</title><rect x="37.3123%" y="1365" width="0.0588%" height="15" fill="rgb(231,104,20)" fg:x="17767" fg:w="28"/><text x="37.5623%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$malloc (8 samples, 0.02%)</title><rect x="37.3711%" y="1365" width="0.0168%" height="15" fill="rgb(254,36,13)" fg:x="17795" fg:w="8"/><text x="37.6211%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcmp (194 samples, 0.41%)</title><rect x="37.3879%" y="1365" width="0.4074%" height="15" fill="rgb(248,14,50)" fg:x="17803" fg:w="194"/><text x="37.6379%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (17 samples, 0.04%)</title><rect x="37.7953%" y="1365" width="0.0357%" height="15" fill="rgb(217,107,29)" fg:x="17997" fg:w="17"/><text x="38.0453%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (12 samples, 0.03%)</title><rect x="37.8415%" y="1365" width="0.0252%" height="15" fill="rgb(251,169,33)" fg:x="18019" fg:w="12"/><text x="38.0915%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (12 samples, 0.03%)</title><rect x="37.8667%" y="1365" width="0.0252%" height="15" fill="rgb(217,108,32)" fg:x="18031" fg:w="12"/><text x="38.1167%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::str::_&lt;impl str&gt;::to_uppercase (38 samples, 0.08%)</title><rect x="37.8919%" y="1365" width="0.0798%" height="15" fill="rgb(219,66,42)" fg:x="18043" fg:w="38"/><text x="38.1419%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (42 samples, 0.09%)</title><rect x="38.2027%" y="1349" width="0.0882%" height="15" fill="rgb(206,180,7)" fg:x="18191" fg:w="42"/><text x="38.4527%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (55 samples, 0.12%)</title><rect x="38.2909%" y="1349" width="0.1155%" height="15" fill="rgb(208,226,31)" fg:x="18233" fg:w="55"/><text x="38.5409%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$malloc (6 samples, 0.01%)</title><rect x="38.4065%" y="1349" width="0.0126%" height="15" fill="rgb(218,26,49)" fg:x="18288" fg:w="6"/><text x="38.6565%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_alloc (13 samples, 0.03%)</title><rect x="38.4191%" y="1349" width="0.0273%" height="15" fill="rgb(233,197,48)" fg:x="18294" fg:w="13"/><text x="38.6691%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Token::make_word (363 samples, 0.76%)</title><rect x="37.9717%" y="1365" width="0.7623%" height="15" fill="rgb(252,181,51)" fg:x="18081" fg:w="363"/><text x="38.2217%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::str::_&lt;impl str&gt;::to_uppercase (137 samples, 0.29%)</title><rect x="38.4464%" y="1349" width="0.2877%" height="15" fill="rgb(253,90,19)" fg:x="18307" fg:w="137"/><text x="38.6964%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (59 samples, 0.12%)</title><rect x="38.6102%" y="1333" width="0.1239%" height="15" fill="rgb(215,171,30)" fg:x="18385" fg:w="59"/><text x="38.8602%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (78 samples, 0.16%)</title><rect x="39.2738%" y="1349" width="0.1638%" height="15" fill="rgb(214,222,9)" fg:x="18701" fg:w="78"/><text x="39.5238%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (46 samples, 0.10%)</title><rect x="39.5132%" y="1333" width="0.0966%" height="15" fill="rgb(223,3,22)" fg:x="18815" fg:w="46"/><text x="39.7632%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$malloc (9 samples, 0.02%)</title><rect x="39.6098%" y="1333" width="0.0189%" height="15" fill="rgb(225,196,46)" fg:x="18861" fg:w="9"/><text x="39.8598%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_alloc (12 samples, 0.03%)</title><rect x="39.6287%" y="1333" width="0.0252%" height="15" fill="rgb(209,110,37)" fg:x="18870" fg:w="12"/><text x="39.8787%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (158 samples, 0.33%)</title><rect x="39.4376%" y="1349" width="0.3318%" height="15" fill="rgb(249,89,12)" fg:x="18779" fg:w="158"/><text x="39.6876%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (55 samples, 0.12%)</title><rect x="39.6539%" y="1333" width="0.1155%" height="15" fill="rgb(226,27,33)" fg:x="18882" fg:w="55"/><text x="39.9039%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (43 samples, 0.09%)</title><rect x="39.6791%" y="1317" width="0.0903%" height="15" fill="rgb(213,82,22)" fg:x="18894" fg:w="43"/><text x="39.9291%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (13 samples, 0.03%)</title><rect x="39.7694%" y="1349" width="0.0273%" height="15" fill="rgb(248,140,0)" fg:x="18937" fg:w="13"/><text x="40.0194%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (7 samples, 0.01%)</title><rect x="39.7820%" y="1333" width="0.0147%" height="15" fill="rgb(228,106,3)" fg:x="18943" fg:w="7"/><text x="40.0320%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_identifier_or_keyword (2,644 samples, 5.55%)</title><rect x="34.2903%" y="1381" width="5.5526%" height="15" fill="rgb(209,23,37)" fg:x="16328" fg:w="2644"/><text x="34.5403%" y="1391.50">sqlpars..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_word (528 samples, 1.11%)</title><rect x="38.7341%" y="1365" width="1.1088%" height="15" fill="rgb(241,93,50)" fg:x="18444" fg:w="528"/><text x="38.9841%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (22 samples, 0.05%)</title><rect x="39.7967%" y="1349" width="0.0462%" height="15" fill="rgb(253,46,43)" fg:x="18950" fg:w="22"/><text x="40.0467%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_with_location (5,051 samples, 10.61%)</title><rect x="29.2732%" y="1413" width="10.6076%" height="15" fill="rgb(226,206,43)" fg:x="13939" fg:w="5051"/><text x="29.5232%" y="1423.50">sqlparser_bench..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_with_location_into_buf (4,835 samples, 10.15%)</title><rect x="29.7268%" y="1397" width="10.1539%" height="15" fill="rgb(217,54,7)" fg:x="14155" fg:w="4835"/><text x="29.9768%" y="1407.50">sqlparser_bench..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_word (18 samples, 0.04%)</title><rect x="39.8429%" y="1381" width="0.0378%" height="15" fill="rgb(223,5,52)" fg:x="18972" fg:w="18"/><text x="40.0929%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::try_with_sql (5,081 samples, 10.67%)</title><rect x="29.2123%" y="1429" width="10.6706%" height="15" fill="rgb(206,52,46)" fg:x="13910" fg:w="5081"/><text x="29.4623%" y="1439.50">sqlparser_bench-..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_sql (13,813 samples, 29.01%)</title><rect x="10.8785%" y="1445" width="29.0085%" height="15" fill="rgb(253,136,11)" fg:x="5180" fg:w="13813"/><text x="11.1285%" y="1455.50">sqlparser_bench-959bc5267970ca34`sqlparser::par..</text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::bencher::Bencher&lt;M&gt;::iter (18,926 samples, 39.75%)</title><rect x="0.1575%" y="1461" width="39.7463%" height="15" fill="rgb(208,106,33)" fg:x="75" fg:w="18926"/><text x="0.4075%" y="1471.50">sqlparser_bench-959bc5267970ca34`criterion::bencher::Bencher&lt;M&gt;::..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::try_with_sql (5 samples, 0.01%)</title><rect x="39.8933%" y="1445" width="0.0105%" height="15" fill="rgb(206,54,4)" fg:x="18996" fg:w="5"/><text x="40.1433%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (18,946 samples, 39.79%)</title><rect x="0.1176%" y="1477" width="39.7883%" height="15" fill="rgb(213,3,15)" fg:x="56" fg:w="18946"/><text x="0.3676%" y="1487.50">sqlparser_bench-959bc5267970ca34`&lt;alloc::vec::Vec&lt;T&gt; as alloc::ve..</text></g><g><title>libsystem_malloc.dylib`_free (8 samples, 0.02%)</title><rect x="39.9059%" y="1461" width="0.0168%" height="15" fill="rgb(252,211,39)" fg:x="19002" fg:w="8"/><text x="40.1559%" y="1471.50"></text></g><g><title>libsystem_malloc.dylib`_free (57 samples, 0.12%)</title><rect x="39.9500%" y="1445" width="0.1197%" height="15" fill="rgb(223,6,36)" fg:x="19023" fg:w="57"/><text x="40.2000%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (33 samples, 0.07%)</title><rect x="40.0739%" y="1445" width="0.0693%" height="15" fill="rgb(252,169,45)" fg:x="19082" fg:w="33"/><text x="40.3239%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (12 samples, 0.03%)</title><rect x="40.1432%" y="1445" width="0.0252%" height="15" fill="rgb(212,48,26)" fg:x="19115" fg:w="12"/><text x="40.3932%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (14 samples, 0.03%)</title><rect x="40.2146%" y="1429" width="0.0294%" height="15" fill="rgb(251,102,48)" fg:x="19149" fg:w="14"/><text x="40.4646%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_find_by_ptr (8 samples, 0.02%)</title><rect x="40.2440%" y="1429" width="0.0168%" height="15" fill="rgb(243,208,16)" fg:x="19163" fg:w="8"/><text x="40.4940%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`free_small (60 samples, 0.13%)</title><rect x="40.1705%" y="1445" width="0.1260%" height="15" fill="rgb(219,96,24)" fg:x="19128" fg:w="60"/><text x="40.4205%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (14 samples, 0.03%)</title><rect x="40.2671%" y="1429" width="0.0294%" height="15" fill="rgb(219,33,29)" fg:x="19174" fg:w="14"/><text x="40.5171%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (12 samples, 0.03%)</title><rect x="40.3112%" y="1333" width="0.0252%" height="15" fill="rgb(223,176,5)" fg:x="19195" fg:w="12"/><text x="40.5612%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::OrderByExpr as core::fmt::Display&gt;::fmt (11 samples, 0.02%)</title><rect x="40.3385%" y="1333" width="0.0231%" height="15" fill="rgb(228,140,14)" fg:x="19208" fg:w="11"/><text x="40.5885%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (11 samples, 0.02%)</title><rect x="40.3637%" y="1333" width="0.0231%" height="15" fill="rgb(217,179,31)" fg:x="19220" fg:w="11"/><text x="40.6137%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (11 samples, 0.02%)</title><rect x="40.4939%" y="1317" width="0.0231%" height="15" fill="rgb(230,9,30)" fg:x="19282" fg:w="11"/><text x="40.7439%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (22 samples, 0.05%)</title><rect x="40.5170%" y="1317" width="0.0462%" height="15" fill="rgb(230,136,20)" fg:x="19293" fg:w="22"/><text x="40.7670%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (34 samples, 0.07%)</title><rect x="40.6241%" y="1301" width="0.0714%" height="15" fill="rgb(215,210,22)" fg:x="19344" fg:w="34"/><text x="40.8741%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (12 samples, 0.03%)</title><rect x="40.6955%" y="1301" width="0.0252%" height="15" fill="rgb(218,43,5)" fg:x="19378" fg:w="12"/><text x="40.9455%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt (9 samples, 0.02%)</title><rect x="40.7208%" y="1301" width="0.0189%" height="15" fill="rgb(216,11,5)" fg:x="19390" fg:w="9"/><text x="40.9708%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (5 samples, 0.01%)</title><rect x="40.7397%" y="1301" width="0.0105%" height="15" fill="rgb(209,82,29)" fg:x="19399" fg:w="5"/><text x="40.9897%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (5 samples, 0.01%)</title><rect x="40.7502%" y="1301" width="0.0105%" height="15" fill="rgb(244,115,12)" fg:x="19404" fg:w="5"/><text x="41.0002%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="40.8279%" y="1285" width="0.0105%" height="15" fill="rgb(222,82,18)" fg:x="19441" fg:w="5"/><text x="41.0779%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (9 samples, 0.02%)</title><rect x="40.8720%" y="1269" width="0.0189%" height="15" fill="rgb(249,227,8)" fg:x="19462" fg:w="9"/><text x="41.1220%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="40.8909%" y="1269" width="0.0105%" height="15" fill="rgb(253,141,45)" fg:x="19471" fg:w="5"/><text x="41.1409%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (43 samples, 0.09%)</title><rect x="40.9749%" y="1253" width="0.0903%" height="15" fill="rgb(234,184,4)" fg:x="19511" fg:w="43"/><text x="41.2249%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (7 samples, 0.01%)</title><rect x="41.0652%" y="1253" width="0.0147%" height="15" fill="rgb(218,194,23)" fg:x="19554" fg:w="7"/><text x="41.3152%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (17 samples, 0.04%)</title><rect x="41.0799%" y="1253" width="0.0357%" height="15" fill="rgb(235,66,41)" fg:x="19561" fg:w="17"/><text x="41.3299%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (143 samples, 0.30%)</title><rect x="40.8384%" y="1285" width="0.3003%" height="15" fill="rgb(245,217,1)" fg:x="19446" fg:w="143"/><text x="41.0884%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (113 samples, 0.24%)</title><rect x="40.9014%" y="1269" width="0.2373%" height="15" fill="rgb(229,91,1)" fg:x="19476" fg:w="113"/><text x="41.1514%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_str (8 samples, 0.02%)</title><rect x="41.1219%" y="1253" width="0.0168%" height="15" fill="rgb(207,101,30)" fg:x="19581" fg:w="8"/><text x="41.3719%" y="1263.50"></text></g><g><title>libdyld.dylib`tlv_get_addr (15 samples, 0.03%)</title><rect x="41.1387%" y="1269" width="0.0315%" height="15" fill="rgb(223,82,49)" fg:x="19589" fg:w="15"/><text x="41.3887%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`psm::stack_pointer (7 samples, 0.01%)</title><rect x="41.1702%" y="1269" width="0.0147%" height="15" fill="rgb(218,167,17)" fg:x="19604" fg:w="7"/><text x="41.4202%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rust_psm_stack_pointer (14 samples, 0.03%)</title><rect x="41.1849%" y="1269" width="0.0294%" height="15" fill="rgb(208,103,14)" fg:x="19611" fg:w="14"/><text x="41.4349%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt (49 samples, 0.10%)</title><rect x="41.1387%" y="1285" width="0.1029%" height="15" fill="rgb(238,20,8)" fg:x="19589" fg:w="49"/><text x="41.3887%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (13 samples, 0.03%)</title><rect x="41.2143%" y="1269" width="0.0273%" height="15" fill="rgb(218,80,54)" fg:x="19625" fg:w="13"/><text x="41.4643%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_fmt (6 samples, 0.01%)</title><rect x="41.2416%" y="1285" width="0.0126%" height="15" fill="rgb(240,144,17)" fg:x="19638" fg:w="6"/><text x="41.4916%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (17 samples, 0.04%)</title><rect x="41.2542%" y="1285" width="0.0357%" height="15" fill="rgb(245,27,50)" fg:x="19644" fg:w="17"/><text x="41.5042%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_minimum_stack_size (17 samples, 0.04%)</title><rect x="41.2899%" y="1285" width="0.0357%" height="15" fill="rgb(251,51,7)" fg:x="19661" fg:w="17"/><text x="41.5399%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_stack_allocation_size (7 samples, 0.01%)</title><rect x="41.3256%" y="1285" width="0.0147%" height="15" fill="rgb(245,217,29)" fg:x="19678" fg:w="7"/><text x="41.5756%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::OrderByExpr as core::fmt::Display&gt;::fmt (376 samples, 0.79%)</title><rect x="40.5632%" y="1317" width="0.7896%" height="15" fill="rgb(221,176,29)" fg:x="19315" fg:w="376"/><text x="40.8132%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (282 samples, 0.59%)</title><rect x="40.7607%" y="1301" width="0.5922%" height="15" fill="rgb(212,180,24)" fg:x="19409" fg:w="282"/><text x="41.0107%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (6 samples, 0.01%)</title><rect x="41.3403%" y="1285" width="0.0126%" height="15" fill="rgb(254,24,2)" fg:x="19685" fg:w="6"/><text x="41.5903%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (11 samples, 0.02%)</title><rect x="41.3529%" y="1317" width="0.0231%" height="15" fill="rgb(230,100,2)" fg:x="19691" fg:w="11"/><text x="41.6029%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (17 samples, 0.04%)</title><rect x="41.3760%" y="1317" width="0.0357%" height="15" fill="rgb(219,142,25)" fg:x="19702" fg:w="17"/><text x="41.6260%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (542 samples, 1.14%)</title><rect x="40.2986%" y="1349" width="1.1382%" height="15" fill="rgb(240,73,43)" fg:x="19189" fg:w="542"/><text x="40.5486%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (500 samples, 1.05%)</title><rect x="40.3868%" y="1333" width="1.0500%" height="15" fill="rgb(214,114,15)" fg:x="19231" fg:w="500"/><text x="40.6368%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (12 samples, 0.03%)</title><rect x="41.4117%" y="1317" width="0.0252%" height="15" fill="rgb(207,130,4)" fg:x="19719" fg:w="12"/><text x="41.6617%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::OrderBy as core::fmt::Display&gt;::fmt (570 samples, 1.20%)</title><rect x="40.2986%" y="1381" width="1.1971%" height="15" fill="rgb(221,25,40)" fg:x="19189" fg:w="570"/><text x="40.5486%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (570 samples, 1.20%)</title><rect x="40.2986%" y="1365" width="1.1971%" height="15" fill="rgb(241,184,7)" fg:x="19189" fg:w="570"/><text x="40.5486%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (28 samples, 0.06%)</title><rect x="41.4369%" y="1349" width="0.0588%" height="15" fill="rgb(235,159,4)" fg:x="19731" fg:w="28"/><text x="41.6869%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (16 samples, 0.03%)</title><rect x="41.5041%" y="1301" width="0.0336%" height="15" fill="rgb(214,87,48)" fg:x="19763" fg:w="16"/><text x="41.7541%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (9 samples, 0.02%)</title><rect x="41.5377%" y="1301" width="0.0189%" height="15" fill="rgb(246,198,24)" fg:x="19779" fg:w="9"/><text x="41.7877%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (11 samples, 0.02%)</title><rect x="41.5713%" y="1301" width="0.0231%" height="15" fill="rgb(209,66,40)" fg:x="19795" fg:w="11"/><text x="41.8213%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (13 samples, 0.03%)</title><rect x="41.6973%" y="1285" width="0.0273%" height="15" fill="rgb(233,147,39)" fg:x="19855" fg:w="13"/><text x="41.9473%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (9 samples, 0.02%)</title><rect x="41.7246%" y="1269" width="0.0189%" height="15" fill="rgb(231,145,52)" fg:x="19868" fg:w="9"/><text x="41.9746%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::Join as core::fmt::Display&gt;::fmt (12 samples, 0.03%)</title><rect x="41.7435%" y="1269" width="0.0252%" height="15" fill="rgb(206,20,26)" fg:x="19877" fg:w="12"/><text x="41.9935%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&lt;sqlparser::ast::query::Join as core::fmt::Display&gt;::fmt::suffix::Suffix as core::fmt::Display&gt;::fmt (10 samples, 0.02%)</title><rect x="41.8800%" y="1237" width="0.0210%" height="15" fill="rgb(238,220,4)" fg:x="19942" fg:w="10"/><text x="42.1300%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (30 samples, 0.06%)</title><rect x="41.9010%" y="1237" width="0.0630%" height="15" fill="rgb(252,195,42)" fg:x="19952" fg:w="30"/><text x="42.1510%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::TableFactor as core::fmt::Display&gt;::fmt (14 samples, 0.03%)</title><rect x="41.9640%" y="1237" width="0.0294%" height="15" fill="rgb(209,10,6)" fg:x="19982" fg:w="14"/><text x="42.2140%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (6 samples, 0.01%)</title><rect x="41.9997%" y="1237" width="0.0126%" height="15" fill="rgb(229,3,52)" fg:x="19999" fg:w="6"/><text x="42.2497%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (65 samples, 0.14%)</title><rect x="42.1593%" y="1221" width="0.1365%" height="15" fill="rgb(253,49,37)" fg:x="20075" fg:w="65"/><text x="42.4093%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&lt;sqlparser::ast::query::Join as core::fmt::Display&gt;::fmt::suffix::Suffix as core::fmt::Display&gt;::fmt (20 samples, 0.04%)</title><rect x="42.2958%" y="1221" width="0.0420%" height="15" fill="rgb(240,103,49)" fg:x="20140" fg:w="20"/><text x="42.5458%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (42 samples, 0.09%)</title><rect x="42.3378%" y="1221" width="0.0882%" height="15" fill="rgb(250,182,30)" fg:x="20160" fg:w="42"/><text x="42.5878%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (10 samples, 0.02%)</title><rect x="42.5415%" y="1205" width="0.0210%" height="15" fill="rgb(248,8,30)" fg:x="20257" fg:w="10"/><text x="42.7915%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (16 samples, 0.03%)</title><rect x="42.6612%" y="1173" width="0.0336%" height="15" fill="rgb(237,120,30)" fg:x="20314" fg:w="16"/><text x="42.9112%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (11 samples, 0.02%)</title><rect x="42.7830%" y="1141" width="0.0231%" height="15" fill="rgb(221,146,34)" fg:x="20372" fg:w="11"/><text x="43.0330%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (18 samples, 0.04%)</title><rect x="42.8061%" y="1141" width="0.0378%" height="15" fill="rgb(242,55,13)" fg:x="20383" fg:w="18"/><text x="43.0561%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="42.8439%" y="1141" width="0.0105%" height="15" fill="rgb(242,112,31)" fg:x="20401" fg:w="5"/><text x="43.0939%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (18 samples, 0.04%)</title><rect x="42.8628%" y="1141" width="0.0378%" height="15" fill="rgb(249,192,27)" fg:x="20410" fg:w="18"/><text x="43.1128%" y="1151.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (38 samples, 0.08%)</title><rect x="43.0288%" y="1125" width="0.0798%" height="15" fill="rgb(208,204,44)" fg:x="20489" fg:w="38"/><text x="43.2788%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (14 samples, 0.03%)</title><rect x="43.1086%" y="1125" width="0.0294%" height="15" fill="rgb(208,93,54)" fg:x="20527" fg:w="14"/><text x="43.3586%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (19 samples, 0.04%)</title><rect x="43.1380%" y="1125" width="0.0399%" height="15" fill="rgb(242,1,31)" fg:x="20541" fg:w="19"/><text x="43.3880%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (10 samples, 0.02%)</title><rect x="43.1779%" y="1125" width="0.0210%" height="15" fill="rgb(241,83,25)" fg:x="20560" fg:w="10"/><text x="43.4279%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (14 samples, 0.03%)</title><rect x="43.2073%" y="1125" width="0.0294%" height="15" fill="rgb(205,169,50)" fg:x="20574" fg:w="14"/><text x="43.4573%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (232 samples, 0.49%)</title><rect x="42.7515%" y="1157" width="0.4872%" height="15" fill="rgb(239,186,37)" fg:x="20357" fg:w="232"/><text x="43.0015%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (161 samples, 0.34%)</title><rect x="42.9006%" y="1141" width="0.3381%" height="15" fill="rgb(205,221,10)" fg:x="20428" fg:w="161"/><text x="43.1506%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (311 samples, 0.65%)</title><rect x="42.6129%" y="1189" width="0.6531%" height="15" fill="rgb(218,196,15)" fg:x="20291" fg:w="311"/><text x="42.8629%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (272 samples, 0.57%)</title><rect x="42.6948%" y="1173" width="0.5712%" height="15" fill="rgb(218,196,35)" fg:x="20330" fg:w="272"/><text x="42.9448%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (13 samples, 0.03%)</title><rect x="43.2388%" y="1157" width="0.0273%" height="15" fill="rgb(233,63,24)" fg:x="20589" fg:w="13"/><text x="43.4888%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::TableFactor as core::fmt::Display&gt;::fmt (412 samples, 0.87%)</title><rect x="42.4260%" y="1221" width="0.8652%" height="15" fill="rgb(225,8,4)" fg:x="20202" fg:w="412"/><text x="42.6760%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (347 samples, 0.73%)</title><rect x="42.5625%" y="1205" width="0.7287%" height="15" fill="rgb(234,105,35)" fg:x="20267" fg:w="347"/><text x="42.8125%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (12 samples, 0.03%)</title><rect x="43.2661%" y="1189" width="0.0252%" height="15" fill="rgb(236,21,32)" fg:x="20602" fg:w="12"/><text x="43.5161%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (6 samples, 0.01%)</title><rect x="43.2913%" y="1221" width="0.0126%" height="15" fill="rgb(228,109,6)" fg:x="20614" fg:w="6"/><text x="43.5413%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (11 samples, 0.02%)</title><rect x="43.3039%" y="1221" width="0.0231%" height="15" fill="rgb(229,215,31)" fg:x="20620" fg:w="11"/><text x="43.5539%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (11 samples, 0.02%)</title><rect x="43.3270%" y="1221" width="0.0231%" height="15" fill="rgb(221,52,54)" fg:x="20631" fg:w="11"/><text x="43.5770%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::Join as core::fmt::Display&gt;::fmt (733 samples, 1.54%)</title><rect x="41.8338%" y="1253" width="1.5394%" height="15" fill="rgb(252,129,43)" fg:x="19920" fg:w="733"/><text x="42.0838%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (648 samples, 1.36%)</title><rect x="42.0123%" y="1237" width="1.3609%" height="15" fill="rgb(248,183,27)" fg:x="20005" fg:w="648"/><text x="42.2623%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (11 samples, 0.02%)</title><rect x="43.3501%" y="1221" width="0.0231%" height="15" fill="rgb(250,0,22)" fg:x="20642" fg:w="11"/><text x="43.6001%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (801 samples, 1.68%)</title><rect x="41.7246%" y="1285" width="1.6822%" height="15" fill="rgb(213,166,10)" fg:x="19868" fg:w="801"/><text x="41.9746%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (780 samples, 1.64%)</title><rect x="41.7687%" y="1269" width="1.6381%" height="15" fill="rgb(207,163,36)" fg:x="19889" fg:w="780"/><text x="42.0187%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (15 samples, 0.03%)</title><rect x="43.3753%" y="1253" width="0.0315%" height="15" fill="rgb(208,122,22)" fg:x="20654" fg:w="15"/><text x="43.6253%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (13 samples, 0.03%)</title><rect x="43.4068%" y="1285" width="0.0273%" height="15" fill="rgb(207,104,49)" fg:x="20669" fg:w="13"/><text x="43.6568%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (15 samples, 0.03%)</title><rect x="43.4551%" y="1269" width="0.0315%" height="15" fill="rgb(248,211,50)" fg:x="20692" fg:w="15"/><text x="43.7051%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (11 samples, 0.02%)</title><rect x="43.4866%" y="1269" width="0.0231%" height="15" fill="rgb(217,13,45)" fg:x="20707" fg:w="11"/><text x="43.7366%" y="1279.50"></text></g><g><title>libdyld.dylib`tlv_get_addr (16 samples, 0.03%)</title><rect x="43.6126%" y="1237" width="0.0336%" height="15" fill="rgb(211,216,49)" fg:x="20767" fg:w="16"/><text x="43.8626%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`psm::stack_pointer (7 samples, 0.01%)</title><rect x="43.6462%" y="1237" width="0.0147%" height="15" fill="rgb(221,58,53)" fg:x="20783" fg:w="7"/><text x="43.8962%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rust_psm_stack_pointer (10 samples, 0.02%)</title><rect x="43.6609%" y="1237" width="0.0210%" height="15" fill="rgb(220,112,41)" fg:x="20790" fg:w="10"/><text x="43.9109%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (56 samples, 0.12%)</title><rect x="43.5937%" y="1253" width="0.1176%" height="15" fill="rgb(236,38,28)" fg:x="20758" fg:w="56"/><text x="43.8437%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (14 samples, 0.03%)</title><rect x="43.6819%" y="1237" width="0.0294%" height="15" fill="rgb(227,195,22)" fg:x="20800" fg:w="14"/><text x="43.9319%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="43.7386%" y="1237" width="0.0168%" height="15" fill="rgb(214,55,33)" fg:x="20827" fg:w="8"/><text x="43.9886%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Function as core::fmt::Display&gt;::fmt (12 samples, 0.03%)</title><rect x="43.7554%" y="1237" width="0.0252%" height="15" fill="rgb(248,80,13)" fg:x="20835" fg:w="12"/><text x="44.0054%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArguments as core::fmt::Display&gt;::fmt (36 samples, 0.08%)</title><rect x="43.9066%" y="1205" width="0.0756%" height="15" fill="rgb(238,52,6)" fg:x="20907" fg:w="36"/><text x="44.1566%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (23 samples, 0.05%)</title><rect x="44.1460%" y="1173" width="0.0483%" height="15" fill="rgb(224,198,47)" fg:x="21021" fg:w="23"/><text x="44.3960%" y="1183.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (24 samples, 0.05%)</title><rect x="44.2888%" y="1157" width="0.0504%" height="15" fill="rgb(233,171,20)" fg:x="21089" fg:w="24"/><text x="44.5388%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (27 samples, 0.06%)</title><rect x="44.3392%" y="1157" width="0.0567%" height="15" fill="rgb(241,30,25)" fg:x="21113" fg:w="27"/><text x="44.5892%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (9 samples, 0.02%)</title><rect x="44.4148%" y="1141" width="0.0189%" height="15" fill="rgb(207,171,38)" fg:x="21149" fg:w="9"/><text x="44.6648%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (16 samples, 0.03%)</title><rect x="44.5366%" y="1109" width="0.0336%" height="15" fill="rgb(234,70,1)" fg:x="21207" fg:w="16"/><text x="44.7866%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (6 samples, 0.01%)</title><rect x="44.5702%" y="1109" width="0.0126%" height="15" fill="rgb(232,178,18)" fg:x="21223" fg:w="6"/><text x="44.8202%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArg as core::fmt::Display&gt;::fmt (7 samples, 0.01%)</title><rect x="44.5828%" y="1109" width="0.0147%" height="15" fill="rgb(241,78,40)" fg:x="21229" fg:w="7"/><text x="44.8328%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="44.5975%" y="1109" width="0.0105%" height="15" fill="rgb(222,35,25)" fg:x="21236" fg:w="5"/><text x="44.8475%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (21 samples, 0.04%)</title><rect x="44.6080%" y="1109" width="0.0441%" height="15" fill="rgb(207,92,16)" fg:x="21241" fg:w="21"/><text x="44.8580%" y="1119.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (15 samples, 0.03%)</title><rect x="44.7592%" y="1093" width="0.0315%" height="15" fill="rgb(216,59,51)" fg:x="21313" fg:w="15"/><text x="45.0092%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (12 samples, 0.03%)</title><rect x="44.7907%" y="1093" width="0.0252%" height="15" fill="rgb(213,80,28)" fg:x="21328" fg:w="12"/><text x="45.0407%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArgExpr as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="44.8537%" y="1077" width="0.0105%" height="15" fill="rgb(220,93,7)" fg:x="21358" fg:w="5"/><text x="45.1037%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (11 samples, 0.02%)</title><rect x="44.9587%" y="1045" width="0.0231%" height="15" fill="rgb(225,24,44)" fg:x="21408" fg:w="11"/><text x="45.2087%" y="1055.50"></text></g><g><title>libdyld.dylib`tlv_get_addr (9 samples, 0.02%)</title><rect x="45.0658%" y="1013" width="0.0189%" height="15" fill="rgb(243,74,40)" fg:x="21459" fg:w="9"/><text x="45.3158%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`psm::stack_pointer (6 samples, 0.01%)</title><rect x="45.0847%" y="1013" width="0.0126%" height="15" fill="rgb(228,39,7)" fg:x="21468" fg:w="6"/><text x="45.3347%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rust_psm_stack_pointer (9 samples, 0.02%)</title><rect x="45.0973%" y="1013" width="0.0189%" height="15" fill="rgb(227,79,8)" fg:x="21474" fg:w="9"/><text x="45.3473%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (40 samples, 0.08%)</title><rect x="45.0574%" y="1029" width="0.0840%" height="15" fill="rgb(236,58,11)" fg:x="21455" fg:w="40"/><text x="45.3074%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (12 samples, 0.03%)</title><rect x="45.1162%" y="1013" width="0.0252%" height="15" fill="rgb(249,63,35)" fg:x="21483" fg:w="12"/><text x="45.3662%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (8 samples, 0.02%)</title><rect x="45.1960%" y="1013" width="0.0168%" height="15" fill="rgb(252,114,16)" fg:x="21521" fg:w="8"/><text x="45.4460%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (6 samples, 0.01%)</title><rect x="45.2128%" y="1013" width="0.0126%" height="15" fill="rgb(254,151,24)" fg:x="21529" fg:w="6"/><text x="45.4628%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="45.2254%" y="1013" width="0.0105%" height="15" fill="rgb(253,54,39)" fg:x="21535" fg:w="5"/><text x="45.4754%" y="1023.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (42 samples, 0.09%)</title><rect x="45.3304%" y="997" width="0.0882%" height="15" fill="rgb(243,25,45)" fg:x="21585" fg:w="42"/><text x="45.5804%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (19 samples, 0.04%)</title><rect x="45.4187%" y="997" width="0.0399%" height="15" fill="rgb(234,134,9)" fg:x="21627" fg:w="19"/><text x="45.6687%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (15 samples, 0.03%)</title><rect x="45.4586%" y="997" width="0.0315%" height="15" fill="rgb(227,166,31)" fg:x="21646" fg:w="15"/><text x="45.7086%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (6 samples, 0.01%)</title><rect x="45.4901%" y="997" width="0.0126%" height="15" fill="rgb(245,143,41)" fg:x="21661" fg:w="6"/><text x="45.7401%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (178 samples, 0.37%)</title><rect x="45.1414%" y="1029" width="0.3738%" height="15" fill="rgb(238,181,32)" fg:x="21495" fg:w="178"/><text x="45.3914%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (133 samples, 0.28%)</title><rect x="45.2359%" y="1013" width="0.2793%" height="15" fill="rgb(224,113,18)" fg:x="21540" fg:w="133"/><text x="45.4859%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_str (6 samples, 0.01%)</title><rect x="45.5027%" y="997" width="0.0126%" height="15" fill="rgb(240,229,28)" fg:x="21667" fg:w="6"/><text x="45.7527%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_fmt (10 samples, 0.02%)</title><rect x="45.5153%" y="1029" width="0.0210%" height="15" fill="rgb(250,185,3)" fg:x="21673" fg:w="10"/><text x="45.7653%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (11 samples, 0.02%)</title><rect x="45.5363%" y="1029" width="0.0231%" height="15" fill="rgb(212,59,25)" fg:x="21683" fg:w="11"/><text x="45.7863%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_minimum_stack_size (23 samples, 0.05%)</title><rect x="45.5594%" y="1029" width="0.0483%" height="15" fill="rgb(221,87,20)" fg:x="21694" fg:w="23"/><text x="45.8094%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_stack_allocation_size (7 samples, 0.01%)</title><rect x="45.6077%" y="1029" width="0.0147%" height="15" fill="rgb(213,74,28)" fg:x="21717" fg:w="7"/><text x="45.8577%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArgExpr as core::fmt::Display&gt;::fmt (340 samples, 0.71%)</title><rect x="44.9209%" y="1061" width="0.7140%" height="15" fill="rgb(224,132,34)" fg:x="21390" fg:w="340"/><text x="45.1709%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (311 samples, 0.65%)</title><rect x="44.9818%" y="1045" width="0.6531%" height="15" fill="rgb(222,101,24)" fg:x="21419" fg:w="311"/><text x="45.2318%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (6 samples, 0.01%)</title><rect x="45.6224%" y="1029" width="0.0126%" height="15" fill="rgb(254,142,4)" fg:x="21724" fg:w="6"/><text x="45.8724%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArg as core::fmt::Display&gt;::fmt (401 samples, 0.84%)</title><rect x="44.8159%" y="1093" width="0.8421%" height="15" fill="rgb(230,229,49)" fg:x="21340" fg:w="401"/><text x="45.0659%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (378 samples, 0.79%)</title><rect x="44.8642%" y="1077" width="0.7938%" height="15" fill="rgb(238,70,47)" fg:x="21363" fg:w="378"/><text x="45.1142%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (11 samples, 0.02%)</title><rect x="45.6350%" y="1061" width="0.0231%" height="15" fill="rgb(231,160,17)" fg:x="21730" fg:w="11"/><text x="45.8850%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (9 samples, 0.02%)</title><rect x="45.6665%" y="1093" width="0.0189%" height="15" fill="rgb(218,68,53)" fg:x="21745" fg:w="9"/><text x="45.9165%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (580 samples, 1.22%)</title><rect x="44.5009%" y="1125" width="1.2181%" height="15" fill="rgb(236,111,10)" fg:x="21190" fg:w="580"/><text x="44.7509%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (508 samples, 1.07%)</title><rect x="44.6521%" y="1109" width="1.0668%" height="15" fill="rgb(224,34,41)" fg:x="21262" fg:w="508"/><text x="44.9021%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (16 samples, 0.03%)</title><rect x="45.6854%" y="1093" width="0.0336%" height="15" fill="rgb(241,118,19)" fg:x="21754" fg:w="16"/><text x="45.9354%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArgumentList as core::fmt::Display&gt;::fmt (655 samples, 1.38%)</title><rect x="44.3959%" y="1157" width="1.3756%" height="15" fill="rgb(238,129,25)" fg:x="21140" fg:w="655"/><text x="44.6459%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (637 samples, 1.34%)</title><rect x="44.4337%" y="1141" width="1.3378%" height="15" fill="rgb(238,22,31)" fg:x="21158" fg:w="637"/><text x="44.6837%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (25 samples, 0.05%)</title><rect x="45.7190%" y="1125" width="0.0525%" height="15" fill="rgb(222,174,48)" fg:x="21770" fg:w="25"/><text x="45.9690%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (10 samples, 0.02%)</title><rect x="45.7715%" y="1157" width="0.0210%" height="15" fill="rgb(206,152,40)" fg:x="21795" fg:w="10"/><text x="46.0215%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::FunctionArguments as core::fmt::Display&gt;::fmt (813 samples, 1.71%)</title><rect x="44.1145%" y="1189" width="1.7074%" height="15" fill="rgb(218,99,54)" fg:x="21006" fg:w="813"/><text x="44.3645%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (772 samples, 1.62%)</title><rect x="44.2006%" y="1173" width="1.6213%" height="15" fill="rgb(220,174,26)" fg:x="21047" fg:w="772"/><text x="44.4506%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (14 samples, 0.03%)</title><rect x="45.7925%" y="1157" width="0.0294%" height="15" fill="rgb(245,116,9)" fg:x="21805" fg:w="14"/><text x="46.0425%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (7 samples, 0.01%)</title><rect x="45.8618%" y="1173" width="0.0147%" height="15" fill="rgb(209,72,35)" fg:x="21838" fg:w="7"/><text x="46.1118%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (13 samples, 0.03%)</title><rect x="45.9857%" y="1141" width="0.0273%" height="15" fill="rgb(226,126,21)" fg:x="21897" fg:w="13"/><text x="46.2357%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (29 samples, 0.06%)</title><rect x="46.0130%" y="1141" width="0.0609%" height="15" fill="rgb(227,192,1)" fg:x="21910" fg:w="29"/><text x="46.2630%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (7 samples, 0.01%)</title><rect x="46.0823%" y="1141" width="0.0147%" height="15" fill="rgb(237,180,29)" fg:x="21943" fg:w="7"/><text x="46.3323%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (15 samples, 0.03%)</title><rect x="46.0970%" y="1141" width="0.0315%" height="15" fill="rgb(230,197,35)" fg:x="21950" fg:w="15"/><text x="46.3470%" y="1151.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (49 samples, 0.10%)</title><rect x="46.2188%" y="1125" width="0.1029%" height="15" fill="rgb(246,193,31)" fg:x="22008" fg:w="49"/><text x="46.4688%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (23 samples, 0.05%)</title><rect x="46.3217%" y="1125" width="0.0483%" height="15" fill="rgb(241,36,4)" fg:x="22057" fg:w="23"/><text x="46.5717%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (21 samples, 0.04%)</title><rect x="46.3700%" y="1125" width="0.0441%" height="15" fill="rgb(241,130,17)" fg:x="22080" fg:w="21"/><text x="46.6200%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (7 samples, 0.01%)</title><rect x="46.4288%" y="1125" width="0.0147%" height="15" fill="rgb(206,137,32)" fg:x="22108" fg:w="7"/><text x="46.6788%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (239 samples, 0.50%)</title><rect x="45.9458%" y="1157" width="0.5019%" height="15" fill="rgb(237,228,51)" fg:x="21878" fg:w="239"/><text x="46.1958%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (152 samples, 0.32%)</title><rect x="46.1285%" y="1141" width="0.3192%" height="15" fill="rgb(243,6,42)" fg:x="21965" fg:w="152"/><text x="46.3785%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::ObjectName as core::fmt::Display&gt;::fmt (320 samples, 0.67%)</title><rect x="45.8219%" y="1189" width="0.6720%" height="15" fill="rgb(251,74,28)" fg:x="21819" fg:w="320"/><text x="46.0719%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (294 samples, 0.62%)</title><rect x="45.8765%" y="1173" width="0.6174%" height="15" fill="rgb(218,20,49)" fg:x="21845" fg:w="294"/><text x="46.1265%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (22 samples, 0.05%)</title><rect x="46.4477%" y="1157" width="0.0462%" height="15" fill="rgb(238,28,14)" fg:x="22117" fg:w="22"/><text x="46.6977%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Function as core::fmt::Display&gt;::fmt (1,284 samples, 2.70%)</title><rect x="43.8541%" y="1221" width="2.6965%" height="15" fill="rgb(229,40,46)" fg:x="20882" fg:w="1284"/><text x="44.1041%" y="1231.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,221 samples, 2.56%)</title><rect x="43.9864%" y="1205" width="2.5642%" height="15" fill="rgb(244,195,20)" fg:x="20945" fg:w="1221"/><text x="44.2364%" y="1215.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (27 samples, 0.06%)</title><rect x="46.4939%" y="1189" width="0.0567%" height="15" fill="rgb(253,56,35)" fg:x="22139" fg:w="27"/><text x="46.7439%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,364 samples, 2.86%)</title><rect x="43.7113%" y="1253" width="2.8645%" height="15" fill="rgb(210,149,44)" fg:x="20814" fg:w="1364"/><text x="43.9613%" y="1263.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,331 samples, 2.80%)</title><rect x="43.7806%" y="1237" width="2.7952%" height="15" fill="rgb(240,135,12)" fg:x="20847" fg:w="1331"/><text x="44.0306%" y="1247.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (12 samples, 0.03%)</title><rect x="46.5506%" y="1221" width="0.0252%" height="15" fill="rgb(251,24,50)" fg:x="22166" fg:w="12"/><text x="46.8006%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (13 samples, 0.03%)</title><rect x="46.5842%" y="1253" width="0.0273%" height="15" fill="rgb(243,200,47)" fg:x="22182" fg:w="13"/><text x="46.8342%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_minimum_stack_size (9 samples, 0.02%)</title><rect x="46.6115%" y="1253" width="0.0189%" height="15" fill="rgb(224,166,26)" fg:x="22195" fg:w="9"/><text x="46.8615%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_stack_allocation_size (8 samples, 0.02%)</title><rect x="46.6304%" y="1253" width="0.0168%" height="15" fill="rgb(233,0,47)" fg:x="22204" fg:w="8"/><text x="46.8804%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::SelectItem as core::fmt::Display&gt;::fmt (1,540 samples, 3.23%)</title><rect x="43.4341%" y="1285" width="3.2341%" height="15" fill="rgb(253,80,5)" fg:x="20682" fg:w="1540"/><text x="43.6841%" y="1295.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,504 samples, 3.16%)</title><rect x="43.5097%" y="1269" width="3.1585%" height="15" fill="rgb(214,133,25)" fg:x="20718" fg:w="1504"/><text x="43.7597%" y="1279.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (10 samples, 0.02%)</title><rect x="46.6472%" y="1253" width="0.0210%" height="15" fill="rgb(209,27,14)" fg:x="22212" fg:w="10"/><text x="46.8972%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (5 samples, 0.01%)</title><rect x="46.6766%" y="1285" width="0.0105%" height="15" fill="rgb(219,102,51)" fg:x="22226" fg:w="5"/><text x="46.9266%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::DisplaySeparated&lt;T&gt; as core::fmt::Display&gt;::fmt (2,493 samples, 5.24%)</title><rect x="41.4957%" y="1317" width="5.2355%" height="15" fill="rgb(237,18,16)" fg:x="19759" fg:w="2493"/><text x="41.7457%" y="1327.50">sqlpar..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (2,446 samples, 5.14%)</title><rect x="41.5944%" y="1301" width="5.1368%" height="15" fill="rgb(241,85,17)" fg:x="19806" fg:w="2446"/><text x="41.8444%" y="1311.50">sqlpar..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (21 samples, 0.04%)</title><rect x="46.6871%" y="1285" width="0.0441%" height="15" fill="rgb(236,90,42)" fg:x="22231" fg:w="21"/><text x="46.9371%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (10 samples, 0.02%)</title><rect x="46.7795%" y="229" width="0.0210%" height="15" fill="rgb(249,57,21)" fg:x="22275" fg:w="10"/><text x="47.0295%" y="239.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (9 samples, 0.02%)</title><rect x="46.7816%" y="213" width="0.0189%" height="15" fill="rgb(243,12,36)" fg:x="22276" fg:w="9"/><text x="47.0316%" y="223.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (8 samples, 0.02%)</title><rect x="46.7837%" y="197" width="0.0168%" height="15" fill="rgb(253,128,47)" fg:x="22277" fg:w="8"/><text x="47.0337%" y="207.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (7 samples, 0.01%)</title><rect x="46.7858%" y="181" width="0.0147%" height="15" fill="rgb(207,33,20)" fg:x="22278" fg:w="7"/><text x="47.0358%" y="191.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (14 samples, 0.03%)</title><rect x="46.7732%" y="293" width="0.0294%" height="15" fill="rgb(233,215,35)" fg:x="22272" fg:w="14"/><text x="47.0232%" y="303.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (14 samples, 0.03%)</title><rect x="46.7732%" y="277" width="0.0294%" height="15" fill="rgb(249,188,52)" fg:x="22272" fg:w="14"/><text x="47.0232%" y="287.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (14 samples, 0.03%)</title><rect x="46.7732%" y="261" width="0.0294%" height="15" fill="rgb(225,12,32)" fg:x="22272" fg:w="14"/><text x="47.0232%" y="271.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (12 samples, 0.03%)</title><rect x="46.7774%" y="245" width="0.0252%" height="15" fill="rgb(247,98,14)" fg:x="22274" fg:w="12"/><text x="47.0274%" y="255.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (15 samples, 0.03%)</title><rect x="46.7732%" y="325" width="0.0315%" height="15" fill="rgb(247,219,48)" fg:x="22272" fg:w="15"/><text x="47.0232%" y="335.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (15 samples, 0.03%)</title><rect x="46.7732%" y="309" width="0.0315%" height="15" fill="rgb(253,60,48)" fg:x="22272" fg:w="15"/><text x="47.0232%" y="319.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (16 samples, 0.03%)</title><rect x="46.7732%" y="357" width="0.0336%" height="15" fill="rgb(245,15,52)" fg:x="22272" fg:w="16"/><text x="47.0232%" y="367.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (16 samples, 0.03%)</title><rect x="46.7732%" y="341" width="0.0336%" height="15" fill="rgb(220,133,28)" fg:x="22272" fg:w="16"/><text x="47.0232%" y="351.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (23 samples, 0.05%)</title><rect x="46.7606%" y="421" width="0.0483%" height="15" fill="rgb(217,180,4)" fg:x="22266" fg:w="23"/><text x="47.0106%" y="431.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (22 samples, 0.05%)</title><rect x="46.7627%" y="405" width="0.0462%" height="15" fill="rgb(251,24,1)" fg:x="22267" fg:w="22"/><text x="47.0127%" y="415.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (19 samples, 0.04%)</title><rect x="46.7690%" y="389" width="0.0399%" height="15" fill="rgb(212,185,49)" fg:x="22270" fg:w="19"/><text x="47.0190%" y="399.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (18 samples, 0.04%)</title><rect x="46.7711%" y="373" width="0.0378%" height="15" fill="rgb(215,175,22)" fg:x="22271" fg:w="18"/><text x="47.0211%" y="383.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (26 samples, 0.05%)</title><rect x="46.7585%" y="485" width="0.0546%" height="15" fill="rgb(250,205,14)" fg:x="22265" fg:w="26"/><text x="47.0085%" y="495.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (26 samples, 0.05%)</title><rect x="46.7585%" y="469" width="0.0546%" height="15" fill="rgb(225,211,22)" fg:x="22265" fg:w="26"/><text x="47.0085%" y="479.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (26 samples, 0.05%)</title><rect x="46.7585%" y="453" width="0.0546%" height="15" fill="rgb(251,179,42)" fg:x="22265" fg:w="26"/><text x="47.0085%" y="463.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (25 samples, 0.05%)</title><rect x="46.7606%" y="437" width="0.0525%" height="15" fill="rgb(208,216,51)" fg:x="22266" fg:w="25"/><text x="47.0106%" y="447.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (27 samples, 0.06%)</title><rect x="46.7585%" y="581" width="0.0567%" height="15" fill="rgb(235,36,11)" fg:x="22265" fg:w="27"/><text x="47.0085%" y="591.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (27 samples, 0.06%)</title><rect x="46.7585%" y="565" width="0.0567%" height="15" fill="rgb(213,189,28)" fg:x="22265" fg:w="27"/><text x="47.0085%" y="575.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (27 samples, 0.06%)</title><rect x="46.7585%" y="549" width="0.0567%" height="15" fill="rgb(227,203,42)" fg:x="22265" fg:w="27"/><text x="47.0085%" y="559.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (27 samples, 0.06%)</title><rect x="46.7585%" y="533" width="0.0567%" height="15" fill="rgb(244,72,36)" fg:x="22265" fg:w="27"/><text x="47.0085%" y="543.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (27 samples, 0.06%)</title><rect x="46.7585%" y="517" width="0.0567%" height="15" fill="rgb(213,53,17)" fg:x="22265" fg:w="27"/><text x="47.0085%" y="527.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (27 samples, 0.06%)</title><rect x="46.7585%" y="501" width="0.0567%" height="15" fill="rgb(207,167,3)" fg:x="22265" fg:w="27"/><text x="47.0085%" y="511.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (30 samples, 0.06%)</title><rect x="46.7564%" y="677" width="0.0630%" height="15" fill="rgb(216,98,30)" fg:x="22264" fg:w="30"/><text x="47.0064%" y="687.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (30 samples, 0.06%)</title><rect x="46.7564%" y="661" width="0.0630%" height="15" fill="rgb(236,123,15)" fg:x="22264" fg:w="30"/><text x="47.0064%" y="671.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (30 samples, 0.06%)</title><rect x="46.7564%" y="645" width="0.0630%" height="15" fill="rgb(248,81,50)" fg:x="22264" fg:w="30"/><text x="47.0064%" y="655.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (29 samples, 0.06%)</title><rect x="46.7585%" y="629" width="0.0609%" height="15" fill="rgb(214,120,4)" fg:x="22265" fg:w="29"/><text x="47.0085%" y="639.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (29 samples, 0.06%)</title><rect x="46.7585%" y="613" width="0.0609%" height="15" fill="rgb(208,179,34)" fg:x="22265" fg:w="29"/><text x="47.0085%" y="623.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (29 samples, 0.06%)</title><rect x="46.7585%" y="597" width="0.0609%" height="15" fill="rgb(227,140,7)" fg:x="22265" fg:w="29"/><text x="47.0085%" y="607.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (32 samples, 0.07%)</title><rect x="46.7543%" y="741" width="0.0672%" height="15" fill="rgb(214,22,6)" fg:x="22263" fg:w="32"/><text x="47.0043%" y="751.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (32 samples, 0.07%)</title><rect x="46.7543%" y="725" width="0.0672%" height="15" fill="rgb(207,137,27)" fg:x="22263" fg:w="32"/><text x="47.0043%" y="735.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (31 samples, 0.07%)</title><rect x="46.7564%" y="709" width="0.0651%" height="15" fill="rgb(210,8,46)" fg:x="22264" fg:w="31"/><text x="47.0064%" y="719.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (31 samples, 0.07%)</title><rect x="46.7564%" y="693" width="0.0651%" height="15" fill="rgb(240,16,54)" fg:x="22264" fg:w="31"/><text x="47.0064%" y="703.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (33 samples, 0.07%)</title><rect x="46.7543%" y="773" width="0.0693%" height="15" fill="rgb(211,209,29)" fg:x="22263" fg:w="33"/><text x="47.0043%" y="783.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (33 samples, 0.07%)</title><rect x="46.7543%" y="757" width="0.0693%" height="15" fill="rgb(226,228,24)" fg:x="22263" fg:w="33"/><text x="47.0043%" y="767.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (36 samples, 0.08%)</title><rect x="46.7501%" y="869" width="0.0756%" height="15" fill="rgb(222,84,9)" fg:x="22261" fg:w="36"/><text x="47.0001%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (36 samples, 0.08%)</title><rect x="46.7501%" y="853" width="0.0756%" height="15" fill="rgb(234,203,30)" fg:x="22261" fg:w="36"/><text x="47.0001%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (35 samples, 0.07%)</title><rect x="46.7522%" y="837" width="0.0735%" height="15" fill="rgb(238,109,14)" fg:x="22262" fg:w="35"/><text x="47.0022%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (35 samples, 0.07%)</title><rect x="46.7522%" y="821" width="0.0735%" height="15" fill="rgb(233,206,34)" fg:x="22262" fg:w="35"/><text x="47.0022%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (34 samples, 0.07%)</title><rect x="46.7543%" y="805" width="0.0714%" height="15" fill="rgb(220,167,47)" fg:x="22263" fg:w="34"/><text x="47.0043%" y="815.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (34 samples, 0.07%)</title><rect x="46.7543%" y="789" width="0.0714%" height="15" fill="rgb(238,105,10)" fg:x="22263" fg:w="34"/><text x="47.0043%" y="799.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (38 samples, 0.08%)</title><rect x="46.7480%" y="933" width="0.0798%" height="15" fill="rgb(213,227,17)" fg:x="22260" fg:w="38"/><text x="46.9980%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (38 samples, 0.08%)</title><rect x="46.7480%" y="917" width="0.0798%" height="15" fill="rgb(217,132,38)" fg:x="22260" fg:w="38"/><text x="46.9980%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (38 samples, 0.08%)</title><rect x="46.7480%" y="901" width="0.0798%" height="15" fill="rgb(242,146,4)" fg:x="22260" fg:w="38"/><text x="46.9980%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (38 samples, 0.08%)</title><rect x="46.7480%" y="885" width="0.0798%" height="15" fill="rgb(212,61,9)" fg:x="22260" fg:w="38"/><text x="46.9980%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (41 samples, 0.09%)</title><rect x="46.7438%" y="1029" width="0.0861%" height="15" fill="rgb(247,126,22)" fg:x="22258" fg:w="41"/><text x="46.9938%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (40 samples, 0.08%)</title><rect x="46.7459%" y="1013" width="0.0840%" height="15" fill="rgb(220,196,2)" fg:x="22259" fg:w="40"/><text x="46.9959%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (40 samples, 0.08%)</title><rect x="46.7459%" y="997" width="0.0840%" height="15" fill="rgb(208,46,4)" fg:x="22259" fg:w="40"/><text x="46.9959%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (40 samples, 0.08%)</title><rect x="46.7459%" y="981" width="0.0840%" height="15" fill="rgb(252,104,46)" fg:x="22259" fg:w="40"/><text x="46.9959%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (39 samples, 0.08%)</title><rect x="46.7480%" y="965" width="0.0819%" height="15" fill="rgb(237,152,48)" fg:x="22260" fg:w="39"/><text x="46.9980%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (39 samples, 0.08%)</title><rect x="46.7480%" y="949" width="0.0819%" height="15" fill="rgb(221,59,37)" fg:x="22260" fg:w="39"/><text x="46.9980%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (44 samples, 0.09%)</title><rect x="46.7396%" y="1061" width="0.0924%" height="15" fill="rgb(209,202,51)" fg:x="22256" fg:w="44"/><text x="46.9896%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (42 samples, 0.09%)</title><rect x="46.7438%" y="1045" width="0.0882%" height="15" fill="rgb(228,81,30)" fg:x="22258" fg:w="42"/><text x="46.9938%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (48 samples, 0.10%)</title><rect x="46.7333%" y="1157" width="0.1008%" height="15" fill="rgb(227,42,39)" fg:x="22253" fg:w="48"/><text x="46.9833%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (47 samples, 0.10%)</title><rect x="46.7354%" y="1141" width="0.0987%" height="15" fill="rgb(221,26,2)" fg:x="22254" fg:w="47"/><text x="46.9854%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (47 samples, 0.10%)</title><rect x="46.7354%" y="1125" width="0.0987%" height="15" fill="rgb(254,61,31)" fg:x="22254" fg:w="47"/><text x="46.9854%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (47 samples, 0.10%)</title><rect x="46.7354%" y="1109" width="0.0987%" height="15" fill="rgb(222,173,38)" fg:x="22254" fg:w="47"/><text x="46.9854%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (46 samples, 0.10%)</title><rect x="46.7375%" y="1093" width="0.0966%" height="15" fill="rgb(218,50,12)" fg:x="22255" fg:w="46"/><text x="46.9875%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (45 samples, 0.09%)</title><rect x="46.7396%" y="1077" width="0.0945%" height="15" fill="rgb(223,88,40)" fg:x="22256" fg:w="45"/><text x="46.9896%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (51 samples, 0.11%)</title><rect x="46.7312%" y="1317" width="0.1071%" height="15" fill="rgb(237,54,19)" fg:x="22252" fg:w="51"/><text x="46.9812%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (51 samples, 0.11%)</title><rect x="46.7312%" y="1301" width="0.1071%" height="15" fill="rgb(251,129,25)" fg:x="22252" fg:w="51"/><text x="46.9812%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (51 samples, 0.11%)</title><rect x="46.7312%" y="1285" width="0.1071%" height="15" fill="rgb(238,97,19)" fg:x="22252" fg:w="51"/><text x="46.9812%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (51 samples, 0.11%)</title><rect x="46.7312%" y="1269" width="0.1071%" height="15" fill="rgb(240,169,18)" fg:x="22252" fg:w="51"/><text x="46.9812%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (51 samples, 0.11%)</title><rect x="46.7312%" y="1253" width="0.1071%" height="15" fill="rgb(230,187,49)" fg:x="22252" fg:w="51"/><text x="46.9812%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (51 samples, 0.11%)</title><rect x="46.7312%" y="1237" width="0.1071%" height="15" fill="rgb(209,44,26)" fg:x="22252" fg:w="51"/><text x="46.9812%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (51 samples, 0.11%)</title><rect x="46.7312%" y="1221" width="0.1071%" height="15" fill="rgb(244,0,6)" fg:x="22252" fg:w="51"/><text x="46.9812%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (51 samples, 0.11%)</title><rect x="46.7312%" y="1205" width="0.1071%" height="15" fill="rgb(248,18,21)" fg:x="22252" fg:w="51"/><text x="46.9812%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (50 samples, 0.11%)</title><rect x="46.7333%" y="1189" width="0.1050%" height="15" fill="rgb(245,180,19)" fg:x="22253" fg:w="50"/><text x="46.9833%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (50 samples, 0.11%)</title><rect x="46.7333%" y="1173" width="0.1050%" height="15" fill="rgb(252,118,36)" fg:x="22253" fg:w="50"/><text x="46.9833%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Statement as core::fmt::Display&gt;::fmt (3,140 samples, 6.59%)</title><rect x="40.2986%" y="1445" width="6.5943%" height="15" fill="rgb(210,224,19)" fg:x="19189" fg:w="3140"/><text x="40.5486%" y="1455.50">sqlparser..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (3,140 samples, 6.59%)</title><rect x="40.2986%" y="1429" width="6.5943%" height="15" fill="rgb(218,30,24)" fg:x="19189" fg:w="3140"/><text x="40.5486%" y="1439.50">sqlparser..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::Query as core::fmt::Display&gt;::fmt (3,140 samples, 6.59%)</title><rect x="40.2986%" y="1413" width="6.5943%" height="15" fill="rgb(219,75,50)" fg:x="19189" fg:w="3140"/><text x="40.5486%" y="1423.50">sqlparser..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (3,140 samples, 6.59%)</title><rect x="40.2986%" y="1397" width="6.5943%" height="15" fill="rgb(234,72,50)" fg:x="19189" fg:w="3140"/><text x="40.5486%" y="1407.50">sqlparser..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::SetExpr as core::fmt::Display&gt;::fmt (2,570 samples, 5.40%)</title><rect x="41.4957%" y="1381" width="5.3972%" height="15" fill="rgb(219,100,48)" fg:x="19759" fg:w="2570"/><text x="41.7457%" y="1391.50">sqlpars..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (2,570 samples, 5.40%)</title><rect x="41.4957%" y="1365" width="5.3972%" height="15" fill="rgb(253,5,41)" fg:x="19759" fg:w="2570"/><text x="41.7457%" y="1375.50">sqlpars..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::query::Select as core::fmt::Display&gt;::fmt (2,570 samples, 5.40%)</title><rect x="41.4957%" y="1349" width="5.3972%" height="15" fill="rgb(247,181,11)" fg:x="19759" fg:w="2570"/><text x="41.7457%" y="1359.50">sqlpars..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (2,570 samples, 5.40%)</title><rect x="41.4957%" y="1333" width="5.3972%" height="15" fill="rgb(222,223,25)" fg:x="19759" fg:w="2570"/><text x="41.7457%" y="1343.50">sqlpars..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (26 samples, 0.05%)</title><rect x="46.8383%" y="1317" width="0.0546%" height="15" fill="rgb(214,198,28)" fg:x="22303" fg:w="26"/><text x="47.0883%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (24 samples, 0.05%)</title><rect x="46.8929%" y="1445" width="0.0504%" height="15" fill="rgb(230,46,43)" fg:x="22329" fg:w="24"/><text x="47.1429%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`_free (6 samples, 0.01%)</title><rect x="46.9454%" y="1429" width="0.0126%" height="15" fill="rgb(233,65,53)" fg:x="22354" fg:w="6"/><text x="47.1954%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (5 samples, 0.01%)</title><rect x="46.9664%" y="1429" width="0.0105%" height="15" fill="rgb(221,121,27)" fg:x="22364" fg:w="5"/><text x="47.2164%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`_free (14 samples, 0.03%)</title><rect x="47.0000%" y="1413" width="0.0294%" height="15" fill="rgb(247,70,47)" fg:x="22380" fg:w="14"/><text x="47.2500%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (12 samples, 0.03%)</title><rect x="47.0294%" y="1413" width="0.0252%" height="15" fill="rgb(228,85,35)" fg:x="22394" fg:w="12"/><text x="47.2794%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (18 samples, 0.04%)</title><rect x="47.0546%" y="1413" width="0.0378%" height="15" fill="rgb(209,50,18)" fg:x="22406" fg:w="18"/><text x="47.3046%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (8 samples, 0.02%)</title><rect x="47.1638%" y="1397" width="0.0168%" height="15" fill="rgb(250,19,35)" fg:x="22458" fg:w="8"/><text x="47.4138%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr (7 samples, 0.01%)</title><rect x="47.1890%" y="1397" width="0.0147%" height="15" fill="rgb(253,107,29)" fg:x="22470" fg:w="7"/><text x="47.4390%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`free_small (64 samples, 0.13%)</title><rect x="47.0924%" y="1413" width="0.1344%" height="15" fill="rgb(252,179,29)" fg:x="22424" fg:w="64"/><text x="47.3424%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (11 samples, 0.02%)</title><rect x="47.2037%" y="1397" width="0.0231%" height="15" fill="rgb(238,194,6)" fg:x="22477" fg:w="11"/><text x="47.4537%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (8 samples, 0.02%)</title><rect x="47.2373%" y="1413" width="0.0168%" height="15" fill="rgb(238,164,29)" fg:x="22493" fg:w="8"/><text x="47.4873%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_free (7 samples, 0.01%)</title><rect x="47.2772%" y="1381" width="0.0147%" height="15" fill="rgb(224,25,9)" fg:x="22512" fg:w="7"/><text x="47.5272%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="47.3150%" y="1365" width="0.0147%" height="15" fill="rgb(244,153,23)" fg:x="22530" fg:w="7"/><text x="47.5650%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`free_small (7 samples, 0.01%)</title><rect x="47.3318%" y="1365" width="0.0147%" height="15" fill="rgb(212,203,14)" fg:x="22538" fg:w="7"/><text x="47.5818%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (8 samples, 0.02%)</title><rect x="47.3696%" y="1333" width="0.0168%" height="15" fill="rgb(220,164,20)" fg:x="22556" fg:w="8"/><text x="47.6196%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`free_small (8 samples, 0.02%)</title><rect x="47.4011%" y="1317" width="0.0168%" height="15" fill="rgb(222,203,48)" fg:x="22571" fg:w="8"/><text x="47.6511%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Function&gt; (28 samples, 0.06%)</title><rect x="47.3612%" y="1349" width="0.0588%" height="15" fill="rgb(215,159,22)" fg:x="22552" fg:w="28"/><text x="47.6112%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::FunctionArgumentList&gt; (12 samples, 0.03%)</title><rect x="47.3948%" y="1333" width="0.0252%" height="15" fill="rgb(216,183,47)" fg:x="22568" fg:w="12"/><text x="47.6448%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::Cte&gt; (77 samples, 0.16%)</title><rect x="47.2604%" y="1413" width="0.1617%" height="15" fill="rgb(229,195,25)" fg:x="22504" fg:w="77"/><text x="47.5104%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::Query&gt; (69 samples, 0.14%)</title><rect x="47.2772%" y="1397" width="0.1449%" height="15" fill="rgb(224,132,51)" fg:x="22512" fg:w="69"/><text x="47.5272%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::SetExpr&gt; (53 samples, 0.11%)</title><rect x="47.3108%" y="1381" width="0.1113%" height="15" fill="rgb(240,63,7)" fg:x="22528" fg:w="53"/><text x="47.5608%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::SelectItem&gt; (32 samples, 0.07%)</title><rect x="47.3549%" y="1365" width="0.0672%" height="15" fill="rgb(249,182,41)" fg:x="22549" fg:w="32"/><text x="47.6049%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (12 samples, 0.03%)</title><rect x="47.4221%" y="1397" width="0.0252%" height="15" fill="rgb(243,47,26)" fg:x="22581" fg:w="12"/><text x="47.6721%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`free_medium (28 samples, 0.06%)</title><rect x="47.4473%" y="1397" width="0.0588%" height="15" fill="rgb(233,48,2)" fg:x="22593" fg:w="28"/><text x="47.6973%" y="1407.50"></text></g><g><title>libsystem_kernel.dylib`madvise (28 samples, 0.06%)</title><rect x="47.4473%" y="1381" width="0.0588%" height="15" fill="rgb(244,165,34)" fg:x="22593" fg:w="28"/><text x="47.6973%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::OrderBy&gt; (42 samples, 0.09%)</title><rect x="47.4221%" y="1413" width="0.0882%" height="15" fill="rgb(207,89,7)" fg:x="22581" fg:w="42"/><text x="47.6721%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_free (10 samples, 0.02%)</title><rect x="47.5460%" y="1397" width="0.0210%" height="15" fill="rgb(244,117,36)" fg:x="22640" fg:w="10"/><text x="47.7960%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (20 samples, 0.04%)</title><rect x="47.5670%" y="1397" width="0.0420%" height="15" fill="rgb(226,144,34)" fg:x="22650" fg:w="20"/><text x="47.8170%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (10 samples, 0.02%)</title><rect x="47.6090%" y="1397" width="0.0210%" height="15" fill="rgb(213,23,19)" fg:x="22670" fg:w="10"/><text x="47.8590%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`free_medium (27 samples, 0.06%)</title><rect x="47.6300%" y="1397" width="0.0567%" height="15" fill="rgb(217,75,12)" fg:x="22680" fg:w="27"/><text x="47.8800%" y="1407.50"></text></g><g><title>libsystem_kernel.dylib`madvise (27 samples, 0.06%)</title><rect x="47.6300%" y="1381" width="0.0567%" height="15" fill="rgb(224,159,17)" fg:x="22680" fg:w="27"/><text x="47.8800%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (14 samples, 0.03%)</title><rect x="47.7603%" y="1381" width="0.0294%" height="15" fill="rgb(217,118,1)" fg:x="22742" fg:w="14"/><text x="48.0103%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_find_by_ptr (5 samples, 0.01%)</title><rect x="47.7897%" y="1381" width="0.0105%" height="15" fill="rgb(232,180,48)" fg:x="22756" fg:w="5"/><text x="48.0397%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`free_small (64 samples, 0.13%)</title><rect x="47.6868%" y="1397" width="0.1344%" height="15" fill="rgb(230,27,33)" fg:x="22707" fg:w="64"/><text x="47.9368%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (8 samples, 0.02%)</title><rect x="47.8044%" y="1381" width="0.0168%" height="15" fill="rgb(205,31,21)" fg:x="22763" fg:w="8"/><text x="48.0544%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (5 samples, 0.01%)</title><rect x="47.8821%" y="1365" width="0.0105%" height="15" fill="rgb(253,59,4)" fg:x="22800" fg:w="5"/><text x="48.1321%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (40 samples, 0.08%)</title><rect x="47.8212%" y="1397" width="0.0840%" height="15" fill="rgb(224,201,9)" fg:x="22771" fg:w="40"/><text x="48.0712%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (23 samples, 0.05%)</title><rect x="47.8569%" y="1381" width="0.0483%" height="15" fill="rgb(229,206,30)" fg:x="22788" fg:w="23"/><text x="48.1069%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (6 samples, 0.01%)</title><rect x="47.8926%" y="1365" width="0.0126%" height="15" fill="rgb(212,67,47)" fg:x="22805" fg:w="6"/><text x="48.1426%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_free (6 samples, 0.01%)</title><rect x="47.9262%" y="1381" width="0.0126%" height="15" fill="rgb(211,96,50)" fg:x="22821" fg:w="6"/><text x="48.1762%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (11 samples, 0.02%)</title><rect x="47.9388%" y="1381" width="0.0231%" height="15" fill="rgb(252,114,18)" fg:x="22827" fg:w="11"/><text x="48.1888%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`free_medium (12 samples, 0.03%)</title><rect x="47.9619%" y="1381" width="0.0252%" height="15" fill="rgb(223,58,37)" fg:x="22838" fg:w="12"/><text x="48.2119%" y="1391.50"></text></g><g><title>libsystem_kernel.dylib`madvise (12 samples, 0.03%)</title><rect x="47.9619%" y="1365" width="0.0252%" height="15" fill="rgb(237,70,4)" fg:x="22838" fg:w="12"/><text x="48.2119%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (5 samples, 0.01%)</title><rect x="47.9955%" y="1381" width="0.0105%" height="15" fill="rgb(244,85,46)" fg:x="22854" fg:w="5"/><text x="48.2455%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (45 samples, 0.09%)</title><rect x="48.0459%" y="1365" width="0.0945%" height="15" fill="rgb(223,39,52)" fg:x="22878" fg:w="45"/><text x="48.2959%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block (13 samples, 0.03%)</title><rect x="48.1404%" y="1365" width="0.0273%" height="15" fill="rgb(218,200,14)" fg:x="22923" fg:w="13"/><text x="48.3904%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block_locked (13 samples, 0.03%)</title><rect x="48.1404%" y="1349" width="0.0273%" height="15" fill="rgb(208,171,16)" fg:x="22923" fg:w="13"/><text x="48.3904%" y="1359.50"></text></g><g><title>libsystem_kernel.dylib`madvise (13 samples, 0.03%)</title><rect x="48.1404%" y="1333" width="0.0273%" height="15" fill="rgb(234,200,18)" fg:x="22923" fg:w="13"/><text x="48.3904%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (133 samples, 0.28%)</title><rect x="47.9157%" y="1397" width="0.2793%" height="15" fill="rgb(228,45,11)" fg:x="22816" fg:w="133"/><text x="48.1657%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::TableFactor&gt; (89 samples, 0.19%)</title><rect x="48.0081%" y="1381" width="0.1869%" height="15" fill="rgb(237,182,11)" fg:x="22860" fg:w="89"/><text x="48.2581%" y="1391.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (13 samples, 0.03%)</title><rect x="48.1677%" y="1365" width="0.0273%" height="15" fill="rgb(241,175,49)" fg:x="22936" fg:w="13"/><text x="48.4177%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (9 samples, 0.02%)</title><rect x="48.1950%" y="1397" width="0.0189%" height="15" fill="rgb(247,38,35)" fg:x="22949" fg:w="9"/><text x="48.4450%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="48.2181%" y="1381" width="0.0189%" height="15" fill="rgb(228,39,49)" fg:x="22960" fg:w="9"/><text x="48.4681%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (11 samples, 0.02%)</title><rect x="48.2181%" y="1397" width="0.0231%" height="15" fill="rgb(226,101,26)" fg:x="22960" fg:w="11"/><text x="48.4681%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_free (6 samples, 0.01%)</title><rect x="48.2475%" y="1381" width="0.0126%" height="15" fill="rgb(206,141,19)" fg:x="22974" fg:w="6"/><text x="48.4975%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (25 samples, 0.05%)</title><rect x="48.2643%" y="1381" width="0.0525%" height="15" fill="rgb(211,200,13)" fg:x="22982" fg:w="25"/><text x="48.5143%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (15 samples, 0.03%)</title><rect x="48.2853%" y="1365" width="0.0315%" height="15" fill="rgb(241,121,6)" fg:x="22992" fg:w="15"/><text x="48.5353%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (9 samples, 0.02%)</title><rect x="48.2979%" y="1349" width="0.0189%" height="15" fill="rgb(234,221,29)" fg:x="22998" fg:w="9"/><text x="48.5479%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (8 samples, 0.02%)</title><rect x="48.3231%" y="1365" width="0.0168%" height="15" fill="rgb(229,136,5)" fg:x="23010" fg:w="8"/><text x="48.5731%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (15 samples, 0.03%)</title><rect x="48.3231%" y="1381" width="0.0315%" height="15" fill="rgb(238,36,11)" fg:x="23010" fg:w="15"/><text x="48.5731%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (6 samples, 0.01%)</title><rect x="48.3420%" y="1365" width="0.0126%" height="15" fill="rgb(251,55,41)" fg:x="23019" fg:w="6"/><text x="48.5920%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (56 samples, 0.12%)</title><rect x="48.2412%" y="1397" width="0.1176%" height="15" fill="rgb(242,34,40)" fg:x="22971" fg:w="56"/><text x="48.4912%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (11 samples, 0.02%)</title><rect x="48.3735%" y="1381" width="0.0231%" height="15" fill="rgb(215,42,17)" fg:x="23034" fg:w="11"/><text x="48.6235%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="48.3987%" y="1365" width="0.0105%" height="15" fill="rgb(207,44,46)" fg:x="23046" fg:w="5"/><text x="48.6487%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (7 samples, 0.01%)</title><rect x="48.4092%" y="1365" width="0.0147%" height="15" fill="rgb(211,206,28)" fg:x="23051" fg:w="7"/><text x="48.6592%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (14 samples, 0.03%)</title><rect x="48.4407%" y="1349" width="0.0294%" height="15" fill="rgb(237,167,16)" fg:x="23066" fg:w="14"/><text x="48.6907%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`free_small (28 samples, 0.06%)</title><rect x="48.4239%" y="1365" width="0.0588%" height="15" fill="rgb(233,66,6)" fg:x="23058" fg:w="28"/><text x="48.6739%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (6 samples, 0.01%)</title><rect x="48.4701%" y="1349" width="0.0126%" height="15" fill="rgb(246,123,29)" fg:x="23080" fg:w="6"/><text x="48.7201%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Function&gt; (63 samples, 0.13%)</title><rect x="48.3588%" y="1397" width="0.1323%" height="15" fill="rgb(209,62,40)" fg:x="23027" fg:w="63"/><text x="48.6088%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::FunctionArgumentList&gt; (44 samples, 0.09%)</title><rect x="48.3987%" y="1381" width="0.0924%" height="15" fill="rgb(218,4,25)" fg:x="23046" fg:w="44"/><text x="48.6487%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::SetExpr&gt; (478 samples, 1.00%)</title><rect x="47.5124%" y="1413" width="1.0038%" height="15" fill="rgb(253,91,49)" fg:x="22624" fg:w="478"/><text x="47.7624%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::query::Query&gt;&gt; (753 samples, 1.58%)</title><rect x="46.9454%" y="1445" width="1.5814%" height="15" fill="rgb(228,155,29)" fg:x="22354" fg:w="753"/><text x="47.1954%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::query::Query&gt; (737 samples, 1.55%)</title><rect x="46.9790%" y="1429" width="1.5478%" height="15" fill="rgb(243,57,37)" fg:x="22370" fg:w="737"/><text x="47.2290%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (142 samples, 0.30%)</title><rect x="48.5394%" y="1445" width="0.2982%" height="15" fill="rgb(244,167,17)" fg:x="23113" fg:w="142"/><text x="48.7894%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Whitespace&gt; (32 samples, 0.07%)</title><rect x="48.8376%" y="1445" width="0.0672%" height="15" fill="rgb(207,181,38)" fg:x="23255" fg:w="32"/><text x="49.0876%" y="1455.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (121 samples, 0.25%)</title><rect x="49.0161%" y="1429" width="0.2541%" height="15" fill="rgb(211,8,23)" fg:x="23340" fg:w="121"/><text x="49.2661%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`free_medium (45 samples, 0.09%)</title><rect x="49.2723%" y="1429" width="0.0945%" height="15" fill="rgb(235,11,44)" fg:x="23462" fg:w="45"/><text x="49.5223%" y="1439.50"></text></g><g><title>libsystem_kernel.dylib`madvise (45 samples, 0.09%)</title><rect x="49.2723%" y="1413" width="0.0945%" height="15" fill="rgb(248,18,52)" fg:x="23462" fg:w="45"/><text x="49.5223%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`free_small (5 samples, 0.01%)</title><rect x="49.3668%" y="1429" width="0.0105%" height="15" fill="rgb(208,4,7)" fg:x="23507" fg:w="5"/><text x="49.6168%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block (6 samples, 0.01%)</title><rect x="49.3773%" y="1429" width="0.0126%" height="15" fill="rgb(240,17,39)" fg:x="23512" fg:w="6"/><text x="49.6273%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block_locked (6 samples, 0.01%)</title><rect x="49.3773%" y="1413" width="0.0126%" height="15" fill="rgb(207,170,3)" fg:x="23512" fg:w="6"/><text x="49.6273%" y="1423.50"></text></g><g><title>libsystem_kernel.dylib`madvise (6 samples, 0.01%)</title><rect x="49.3773%" y="1397" width="0.0126%" height="15" fill="rgb(236,100,52)" fg:x="23512" fg:w="6"/><text x="49.6273%" y="1407.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (95 samples, 0.20%)</title><rect x="49.3983%" y="1429" width="0.1995%" height="15" fill="rgb(246,78,51)" fg:x="23522" fg:w="95"/><text x="49.6483%" y="1439.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (6 samples, 0.01%)</title><rect x="49.5978%" y="1429" width="0.0126%" height="15" fill="rgb(211,17,15)" fg:x="23617" fg:w="6"/><text x="49.8478%" y="1439.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (10 samples, 0.02%)</title><rect x="49.6671%" y="1413" width="0.0210%" height="15" fill="rgb(209,59,46)" fg:x="23650" fg:w="10"/><text x="49.9171%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="49.7112%" y="1397" width="0.0105%" height="15" fill="rgb(210,92,25)" fg:x="23671" fg:w="5"/><text x="49.9612%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (9 samples, 0.02%)</title><rect x="49.7301%" y="1397" width="0.0189%" height="15" fill="rgb(238,174,52)" fg:x="23680" fg:w="9"/><text x="49.9801%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (7 samples, 0.01%)</title><rect x="49.7343%" y="1381" width="0.0147%" height="15" fill="rgb(230,73,7)" fg:x="23682" fg:w="7"/><text x="49.9843%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (27 samples, 0.06%)</title><rect x="49.6965%" y="1413" width="0.0567%" height="15" fill="rgb(243,124,40)" fg:x="23664" fg:w="27"/><text x="49.9465%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (5 samples, 0.01%)</title><rect x="49.8939%" y="1333" width="0.0105%" height="15" fill="rgb(244,170,11)" fg:x="23758" fg:w="5"/><text x="50.1439%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (80 samples, 0.17%)</title><rect x="49.7616%" y="1413" width="0.1680%" height="15" fill="rgb(207,114,54)" fg:x="23695" fg:w="80"/><text x="50.0116%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (58 samples, 0.12%)</title><rect x="49.8078%" y="1397" width="0.1218%" height="15" fill="rgb(205,42,20)" fg:x="23717" fg:w="58"/><text x="50.0578%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (36 samples, 0.08%)</title><rect x="49.8540%" y="1381" width="0.0756%" height="15" fill="rgb(230,30,28)" fg:x="23739" fg:w="36"/><text x="50.1040%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (30 samples, 0.06%)</title><rect x="49.8666%" y="1365" width="0.0630%" height="15" fill="rgb(205,73,54)" fg:x="23745" fg:w="30"/><text x="50.1166%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (25 samples, 0.05%)</title><rect x="49.8771%" y="1349" width="0.0525%" height="15" fill="rgb(254,227,23)" fg:x="23750" fg:w="25"/><text x="50.1271%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (10 samples, 0.02%)</title><rect x="49.9086%" y="1333" width="0.0210%" height="15" fill="rgb(228,202,34)" fg:x="23765" fg:w="10"/><text x="50.1586%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (6 samples, 0.01%)</title><rect x="49.9296%" y="1413" width="0.0126%" height="15" fill="rgb(222,225,37)" fg:x="23775" fg:w="6"/><text x="50.1796%" y="1423.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (14 samples, 0.03%)</title><rect x="49.9905%" y="1397" width="0.0294%" height="15" fill="rgb(221,14,54)" fg:x="23804" fg:w="14"/><text x="50.2405%" y="1407.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (54 samples, 0.11%)</title><rect x="50.0200%" y="1397" width="0.1134%" height="15" fill="rgb(254,102,2)" fg:x="23818" fg:w="54"/><text x="50.2700%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (6 samples, 0.01%)</title><rect x="50.1544%" y="1381" width="0.0126%" height="15" fill="rgb(232,104,17)" fg:x="23882" fg:w="6"/><text x="50.4044%" y="1391.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (9 samples, 0.02%)</title><rect x="50.1670%" y="1381" width="0.0189%" height="15" fill="rgb(250,220,14)" fg:x="23888" fg:w="9"/><text x="50.4170%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="50.1859%" y="1381" width="0.0147%" height="15" fill="rgb(241,158,9)" fg:x="23897" fg:w="7"/><text x="50.4359%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (30 samples, 0.06%)</title><rect x="50.1439%" y="1397" width="0.0630%" height="15" fill="rgb(246,9,43)" fg:x="23877" fg:w="30"/><text x="50.3939%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (8 samples, 0.02%)</title><rect x="50.2216%" y="1397" width="0.0168%" height="15" fill="rgb(206,73,33)" fg:x="23914" fg:w="8"/><text x="50.4716%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="50.4463%" y="1381" width="0.0105%" height="15" fill="rgb(222,79,8)" fg:x="24021" fg:w="5"/><text x="50.6963%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (5 samples, 0.01%)</title><rect x="50.4610%" y="1381" width="0.0105%" height="15" fill="rgb(234,8,54)" fg:x="24028" fg:w="5"/><text x="50.7110%" y="1391.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (138 samples, 0.29%)</title><rect x="50.4715%" y="1381" width="0.2898%" height="15" fill="rgb(209,134,38)" fg:x="24033" fg:w="138"/><text x="50.7215%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (6 samples, 0.01%)</title><rect x="50.8348%" y="1317" width="0.0126%" height="15" fill="rgb(230,127,29)" fg:x="24206" fg:w="6"/><text x="51.0848%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::alloc::exchange_malloc (35 samples, 0.07%)</title><rect x="50.7865%" y="1381" width="0.0735%" height="15" fill="rgb(242,44,41)" fg:x="24183" fg:w="35"/><text x="51.0365%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (32 samples, 0.07%)</title><rect x="50.7928%" y="1365" width="0.0672%" height="15" fill="rgb(222,56,43)" fg:x="24186" fg:w="32"/><text x="51.0428%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (24 samples, 0.05%)</title><rect x="50.8096%" y="1349" width="0.0504%" height="15" fill="rgb(238,39,47)" fg:x="24194" fg:w="24"/><text x="51.0596%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (23 samples, 0.05%)</title><rect x="50.8117%" y="1333" width="0.0483%" height="15" fill="rgb(226,79,43)" fg:x="24195" fg:w="23"/><text x="51.0617%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (6 samples, 0.01%)</title><rect x="50.8474%" y="1317" width="0.0126%" height="15" fill="rgb(242,105,53)" fg:x="24212" fg:w="6"/><text x="51.0974%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (7 samples, 0.01%)</title><rect x="50.8600%" y="1381" width="0.0147%" height="15" fill="rgb(251,132,46)" fg:x="24218" fg:w="7"/><text x="51.1100%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (5 samples, 0.01%)</title><rect x="50.8642%" y="1365" width="0.0105%" height="15" fill="rgb(231,77,14)" fg:x="24220" fg:w="5"/><text x="51.1142%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (11 samples, 0.02%)</title><rect x="50.8747%" y="1381" width="0.0231%" height="15" fill="rgb(240,135,9)" fg:x="24225" fg:w="11"/><text x="51.1247%" y="1391.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="50.9230%" y="1365" width="0.0168%" height="15" fill="rgb(248,109,14)" fg:x="24248" fg:w="8"/><text x="51.1730%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::expect_token (5 samples, 0.01%)</title><rect x="50.9461%" y="1365" width="0.0105%" height="15" fill="rgb(227,146,52)" fg:x="24259" fg:w="5"/><text x="51.1961%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (5 samples, 0.01%)</title><rect x="50.9566%" y="1365" width="0.0105%" height="15" fill="rgb(232,54,3)" fg:x="24264" fg:w="5"/><text x="51.2066%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (8 samples, 0.02%)</title><rect x="50.9671%" y="1365" width="0.0168%" height="15" fill="rgb(229,201,43)" fg:x="24269" fg:w="8"/><text x="51.2171%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (19 samples, 0.04%)</title><rect x="51.0259%" y="1349" width="0.0399%" height="15" fill="rgb(252,161,33)" fg:x="24297" fg:w="19"/><text x="51.2759%" y="1359.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (19 samples, 0.04%)</title><rect x="51.0973%" y="1333" width="0.0399%" height="15" fill="rgb(226,146,40)" fg:x="24331" fg:w="19"/><text x="51.3473%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::FnOnce::call_once (6 samples, 0.01%)</title><rect x="51.1372%" y="1333" width="0.0126%" height="15" fill="rgb(219,47,25)" fg:x="24350" fg:w="6"/><text x="51.3872%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (6 samples, 0.01%)</title><rect x="51.1372%" y="1317" width="0.0126%" height="15" fill="rgb(250,135,13)" fg:x="24350" fg:w="6"/><text x="51.3872%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (10 samples, 0.02%)</title><rect x="51.1519%" y="1333" width="0.0210%" height="15" fill="rgb(219,229,18)" fg:x="24357" fg:w="10"/><text x="51.4019%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keywords (5 samples, 0.01%)</title><rect x="51.1729%" y="1333" width="0.0105%" height="15" fill="rgb(217,152,27)" fg:x="24367" fg:w="5"/><text x="51.4229%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (10 samples, 0.02%)</title><rect x="51.2212%" y="1317" width="0.0210%" height="15" fill="rgb(225,71,47)" fg:x="24390" fg:w="10"/><text x="51.4712%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::expect_keyword (6 samples, 0.01%)</title><rect x="51.2548%" y="1317" width="0.0126%" height="15" fill="rgb(220,139,14)" fg:x="24406" fg:w="6"/><text x="51.5048%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (12 samples, 0.03%)</title><rect x="51.2968%" y="1301" width="0.0252%" height="15" fill="rgb(247,54,32)" fg:x="24426" fg:w="12"/><text x="51.5468%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (14 samples, 0.03%)</title><rect x="51.3262%" y="1301" width="0.0294%" height="15" fill="rgb(252,131,39)" fg:x="24440" fg:w="14"/><text x="51.5762%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (13 samples, 0.03%)</title><rect x="51.3283%" y="1285" width="0.0273%" height="15" fill="rgb(210,108,39)" fg:x="24441" fg:w="13"/><text x="51.5783%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (5 samples, 0.01%)</title><rect x="51.3451%" y="1269" width="0.0105%" height="15" fill="rgb(205,23,29)" fg:x="24449" fg:w="5"/><text x="51.5951%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (5 samples, 0.01%)</title><rect x="51.3451%" y="1253" width="0.0105%" height="15" fill="rgb(246,139,46)" fg:x="24449" fg:w="5"/><text x="51.5951%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (5 samples, 0.01%)</title><rect x="51.3451%" y="1237" width="0.0105%" height="15" fill="rgb(250,81,26)" fg:x="24449" fg:w="5"/><text x="51.5951%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="51.4354%" y="1253" width="0.0105%" height="15" fill="rgb(214,104,7)" fg:x="24492" fg:w="5"/><text x="51.6854%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_alias (21 samples, 0.04%)</title><rect x="51.4039%" y="1285" width="0.0441%" height="15" fill="rgb(233,189,8)" fg:x="24477" fg:w="21"/><text x="51.6539%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (10 samples, 0.02%)</title><rect x="51.4270%" y="1269" width="0.0210%" height="15" fill="rgb(228,141,17)" fg:x="24488" fg:w="10"/><text x="51.6770%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="51.4648%" y="1269" width="0.0126%" height="15" fill="rgb(247,157,1)" fg:x="24506" fg:w="6"/><text x="51.7148%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="51.4774%" y="1269" width="0.0126%" height="15" fill="rgb(249,225,5)" fg:x="24512" fg:w="6"/><text x="51.7274%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="51.4900%" y="1269" width="0.0126%" height="15" fill="rgb(242,55,13)" fg:x="24518" fg:w="6"/><text x="51.7400%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (16 samples, 0.03%)</title><rect x="51.5341%" y="1253" width="0.0336%" height="15" fill="rgb(230,49,50)" fg:x="24539" fg:w="16"/><text x="51.7841%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (5 samples, 0.01%)</title><rect x="51.5677%" y="1253" width="0.0105%" height="15" fill="rgb(241,111,38)" fg:x="24555" fg:w="5"/><text x="51.8177%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (12 samples, 0.03%)</title><rect x="51.5824%" y="1253" width="0.0252%" height="15" fill="rgb(252,155,4)" fg:x="24562" fg:w="12"/><text x="51.8324%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (9 samples, 0.02%)</title><rect x="51.5887%" y="1237" width="0.0189%" height="15" fill="rgb(212,69,32)" fg:x="24565" fg:w="9"/><text x="51.8387%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="51.5929%" y="1221" width="0.0147%" height="15" fill="rgb(243,107,47)" fg:x="24567" fg:w="7"/><text x="51.8429%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (7 samples, 0.01%)</title><rect x="51.6097%" y="1253" width="0.0147%" height="15" fill="rgb(247,130,12)" fg:x="24575" fg:w="7"/><text x="51.8597%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_free (5 samples, 0.01%)</title><rect x="51.6685%" y="1237" width="0.0105%" height="15" fill="rgb(233,74,16)" fg:x="24603" fg:w="5"/><text x="51.9185%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="51.6874%" y="1237" width="0.0189%" height="15" fill="rgb(208,58,18)" fg:x="24612" fg:w="9"/><text x="51.9374%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="51.7084%" y="1237" width="0.0168%" height="15" fill="rgb(242,225,1)" fg:x="24622" fg:w="8"/><text x="51.9584%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (5 samples, 0.01%)</title><rect x="51.7252%" y="1237" width="0.0105%" height="15" fill="rgb(249,39,40)" fg:x="24630" fg:w="5"/><text x="51.9752%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (7 samples, 0.01%)</title><rect x="51.8113%" y="1077" width="0.0147%" height="15" fill="rgb(207,72,44)" fg:x="24671" fg:w="7"/><text x="52.0613%" y="1087.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (13 samples, 0.03%)</title><rect x="51.8029%" y="1093" width="0.0273%" height="15" fill="rgb(215,193,12)" fg:x="24667" fg:w="13"/><text x="52.0529%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (20 samples, 0.04%)</title><rect x="51.7924%" y="1109" width="0.0420%" height="15" fill="rgb(248,41,39)" fg:x="24662" fg:w="20"/><text x="52.0424%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (23 samples, 0.05%)</title><rect x="51.7882%" y="1125" width="0.0483%" height="15" fill="rgb(253,85,4)" fg:x="24660" fg:w="23"/><text x="52.0382%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (34 samples, 0.07%)</title><rect x="51.7735%" y="1173" width="0.0714%" height="15" fill="rgb(243,70,31)" fg:x="24653" fg:w="34"/><text x="52.0235%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (33 samples, 0.07%)</title><rect x="51.7756%" y="1157" width="0.0693%" height="15" fill="rgb(253,195,26)" fg:x="24654" fg:w="33"/><text x="52.0256%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (28 samples, 0.06%)</title><rect x="51.7861%" y="1141" width="0.0588%" height="15" fill="rgb(243,42,11)" fg:x="24659" fg:w="28"/><text x="52.0361%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (67 samples, 0.14%)</title><rect x="51.7462%" y="1237" width="0.1407%" height="15" fill="rgb(239,66,17)" fg:x="24640" fg:w="67"/><text x="51.9962%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (66 samples, 0.14%)</title><rect x="51.7483%" y="1221" width="0.1386%" height="15" fill="rgb(217,132,21)" fg:x="24641" fg:w="66"/><text x="51.9983%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (61 samples, 0.13%)</title><rect x="51.7588%" y="1205" width="0.1281%" height="15" fill="rgb(252,202,21)" fg:x="24646" fg:w="61"/><text x="52.0088%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (58 samples, 0.12%)</title><rect x="51.7651%" y="1189" width="0.1218%" height="15" fill="rgb(233,98,36)" fg:x="24649" fg:w="58"/><text x="52.0151%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (14 samples, 0.03%)</title><rect x="51.8575%" y="1173" width="0.0294%" height="15" fill="rgb(216,153,54)" fg:x="24693" fg:w="14"/><text x="52.1075%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (11 samples, 0.02%)</title><rect x="51.8974%" y="1221" width="0.0231%" height="15" fill="rgb(250,99,7)" fg:x="24712" fg:w="11"/><text x="52.1474%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (18 samples, 0.04%)</title><rect x="51.8869%" y="1237" width="0.0378%" height="15" fill="rgb(207,56,50)" fg:x="24707" fg:w="18"/><text x="52.1369%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (14 samples, 0.03%)</title><rect x="51.9940%" y="1189" width="0.0294%" height="15" fill="rgb(244,61,34)" fg:x="24758" fg:w="14"/><text x="52.2440%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (9 samples, 0.02%)</title><rect x="52.0045%" y="1173" width="0.0189%" height="15" fill="rgb(241,50,38)" fg:x="24763" fg:w="9"/><text x="52.2545%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (9 samples, 0.02%)</title><rect x="52.0045%" y="1157" width="0.0189%" height="15" fill="rgb(212,166,30)" fg:x="24763" fg:w="9"/><text x="52.2545%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="52.0444%" y="1173" width="0.0168%" height="15" fill="rgb(249,127,32)" fg:x="24782" fg:w="8"/><text x="52.2944%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (46 samples, 0.10%)</title><rect x="51.9793%" y="1205" width="0.0966%" height="15" fill="rgb(209,103,0)" fg:x="24751" fg:w="46"/><text x="52.2293%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (23 samples, 0.05%)</title><rect x="52.0276%" y="1189" width="0.0483%" height="15" fill="rgb(238,209,51)" fg:x="24774" fg:w="23"/><text x="52.2776%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="52.0612%" y="1173" width="0.0147%" height="15" fill="rgb(237,56,23)" fg:x="24790" fg:w="7"/><text x="52.3112%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (5 samples, 0.01%)</title><rect x="52.1011%" y="1189" width="0.0105%" height="15" fill="rgb(215,153,46)" fg:x="24809" fg:w="5"/><text x="52.3511%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="52.1116%" y="1189" width="0.0147%" height="15" fill="rgb(224,49,31)" fg:x="24814" fg:w="7"/><text x="52.3616%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (96 samples, 0.20%)</title><rect x="51.9310%" y="1221" width="0.2016%" height="15" fill="rgb(250,18,42)" fg:x="24728" fg:w="96"/><text x="52.1810%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_type_modifiers (27 samples, 0.06%)</title><rect x="52.0759%" y="1205" width="0.0567%" height="15" fill="rgb(215,176,39)" fg:x="24797" fg:w="27"/><text x="52.3259%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (99 samples, 0.21%)</title><rect x="51.9289%" y="1237" width="0.2079%" height="15" fill="rgb(223,77,29)" fg:x="24727" fg:w="99"/><text x="52.1789%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_compound_field_access (9 samples, 0.02%)</title><rect x="52.1767%" y="1221" width="0.0189%" height="15" fill="rgb(234,94,52)" fg:x="24845" fg:w="9"/><text x="52.4267%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="52.1851%" y="1205" width="0.0105%" height="15" fill="rgb(220,154,50)" fg:x="24849" fg:w="5"/><text x="52.4351%" y="1215.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (10 samples, 0.02%)</title><rect x="52.2691%" y="1189" width="0.0210%" height="15" fill="rgb(212,11,10)" fg:x="24889" fg:w="10"/><text x="52.5191%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="52.2901%" y="1189" width="0.0168%" height="15" fill="rgb(205,166,19)" fg:x="24899" fg:w="8"/><text x="52.5401%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (11 samples, 0.02%)</title><rect x="52.3469%" y="1173" width="0.0231%" height="15" fill="rgb(244,198,16)" fg:x="24926" fg:w="11"/><text x="52.5969%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (7 samples, 0.01%)</title><rect x="52.3553%" y="1157" width="0.0147%" height="15" fill="rgb(219,69,12)" fg:x="24930" fg:w="7"/><text x="52.6053%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (5 samples, 0.01%)</title><rect x="52.3595%" y="1141" width="0.0105%" height="15" fill="rgb(245,30,7)" fg:x="24932" fg:w="5"/><text x="52.6095%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="52.3868%" y="1157" width="0.0147%" height="15" fill="rgb(218,221,48)" fg:x="24945" fg:w="7"/><text x="52.6368%" y="1167.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (10 samples, 0.02%)</title><rect x="52.4498%" y="1109" width="0.0210%" height="15" fill="rgb(216,66,15)" fg:x="24975" fg:w="10"/><text x="52.6998%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (7 samples, 0.01%)</title><rect x="52.5128%" y="997" width="0.0147%" height="15" fill="rgb(226,122,50)" fg:x="25005" fg:w="7"/><text x="52.7628%" y="1007.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (13 samples, 0.03%)</title><rect x="52.5023%" y="1029" width="0.0273%" height="15" fill="rgb(239,156,16)" fg:x="25000" fg:w="13"/><text x="52.7523%" y="1039.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (12 samples, 0.03%)</title><rect x="52.5044%" y="1013" width="0.0252%" height="15" fill="rgb(224,27,38)" fg:x="25001" fg:w="12"/><text x="52.7544%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (21 samples, 0.04%)</title><rect x="52.4918%" y="1077" width="0.0441%" height="15" fill="rgb(224,39,27)" fg:x="24995" fg:w="21"/><text x="52.7418%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (21 samples, 0.04%)</title><rect x="52.4918%" y="1061" width="0.0441%" height="15" fill="rgb(215,92,29)" fg:x="24995" fg:w="21"/><text x="52.7418%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (17 samples, 0.04%)</title><rect x="52.5002%" y="1045" width="0.0357%" height="15" fill="rgb(207,159,16)" fg:x="24999" fg:w="17"/><text x="52.7502%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (35 samples, 0.07%)</title><rect x="52.4750%" y="1109" width="0.0735%" height="15" fill="rgb(238,163,47)" fg:x="24987" fg:w="35"/><text x="52.7250%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (34 samples, 0.07%)</title><rect x="52.4771%" y="1093" width="0.0714%" height="15" fill="rgb(219,91,49)" fg:x="24988" fg:w="34"/><text x="52.7271%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (5 samples, 0.01%)</title><rect x="52.5380%" y="1077" width="0.0105%" height="15" fill="rgb(227,167,31)" fg:x="25017" fg:w="5"/><text x="52.7880%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (62 samples, 0.13%)</title><rect x="52.4246%" y="1141" width="0.1302%" height="15" fill="rgb(234,80,54)" fg:x="24963" fg:w="62"/><text x="52.6746%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (52 samples, 0.11%)</title><rect x="52.4456%" y="1125" width="0.1092%" height="15" fill="rgb(212,114,2)" fg:x="24973" fg:w="52"/><text x="52.6956%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_named_arg_operator (70 samples, 0.15%)</title><rect x="52.4099%" y="1157" width="0.1470%" height="15" fill="rgb(234,50,24)" fg:x="24956" fg:w="70"/><text x="52.6599%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="52.5653%" y="1141" width="0.0105%" height="15" fill="rgb(221,68,8)" fg:x="25030" fg:w="5"/><text x="52.8153%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="52.5779%" y="1141" width="0.0105%" height="15" fill="rgb(254,180,31)" fg:x="25036" fg:w="5"/><text x="52.8279%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (18 samples, 0.04%)</title><rect x="52.5569%" y="1157" width="0.0378%" height="15" fill="rgb(247,130,50)" fg:x="25026" fg:w="18"/><text x="52.8069%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="52.6073%" y="1141" width="0.0168%" height="15" fill="rgb(211,109,4)" fg:x="25050" fg:w="8"/><text x="52.8573%" y="1151.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (12 samples, 0.03%)</title><rect x="52.6409%" y="1125" width="0.0252%" height="15" fill="rgb(238,50,21)" fg:x="25066" fg:w="12"/><text x="52.8909%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (16 samples, 0.03%)</title><rect x="52.7543%" y="1045" width="0.0336%" height="15" fill="rgb(225,57,45)" fg:x="25120" fg:w="16"/><text x="53.0043%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (15 samples, 0.03%)</title><rect x="52.7564%" y="1029" width="0.0315%" height="15" fill="rgb(209,196,50)" fg:x="25121" fg:w="15"/><text x="53.0064%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (13 samples, 0.03%)</title><rect x="52.7606%" y="1013" width="0.0273%" height="15" fill="rgb(242,140,13)" fg:x="25123" fg:w="13"/><text x="53.0106%" y="1023.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (13 samples, 0.03%)</title><rect x="52.7606%" y="997" width="0.0273%" height="15" fill="rgb(217,111,7)" fg:x="25123" fg:w="13"/><text x="53.0106%" y="1007.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (10 samples, 0.02%)</title><rect x="52.7669%" y="981" width="0.0210%" height="15" fill="rgb(253,193,51)" fg:x="25126" fg:w="10"/><text x="53.0169%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (33 samples, 0.07%)</title><rect x="52.7270%" y="1109" width="0.0693%" height="15" fill="rgb(252,70,29)" fg:x="25107" fg:w="33"/><text x="52.9770%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (26 samples, 0.05%)</title><rect x="52.7417%" y="1093" width="0.0546%" height="15" fill="rgb(232,127,12)" fg:x="25114" fg:w="26"/><text x="52.9917%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (25 samples, 0.05%)</title><rect x="52.7438%" y="1077" width="0.0525%" height="15" fill="rgb(211,180,21)" fg:x="25115" fg:w="25"/><text x="52.9938%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (24 samples, 0.05%)</title><rect x="52.7459%" y="1061" width="0.0504%" height="15" fill="rgb(229,72,13)" fg:x="25116" fg:w="24"/><text x="52.9959%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (7 samples, 0.01%)</title><rect x="52.7963%" y="1109" width="0.0147%" height="15" fill="rgb(240,211,49)" fg:x="25140" fg:w="7"/><text x="53.0463%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="52.8404%" y="1045" width="0.0105%" height="15" fill="rgb(219,149,40)" fg:x="25161" fg:w="5"/><text x="53.0904%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (22 samples, 0.05%)</title><rect x="52.8152%" y="1077" width="0.0462%" height="15" fill="rgb(210,127,46)" fg:x="25149" fg:w="22"/><text x="53.0652%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (14 samples, 0.03%)</title><rect x="52.8320%" y="1061" width="0.0294%" height="15" fill="rgb(220,106,7)" fg:x="25157" fg:w="14"/><text x="53.0820%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (26 samples, 0.05%)</title><rect x="52.8131%" y="1093" width="0.0546%" height="15" fill="rgb(249,31,22)" fg:x="25148" fg:w="26"/><text x="53.0631%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (29 samples, 0.06%)</title><rect x="52.8110%" y="1109" width="0.0609%" height="15" fill="rgb(253,1,49)" fg:x="25147" fg:w="29"/><text x="53.0610%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (93 samples, 0.20%)</title><rect x="52.6829%" y="1125" width="0.1953%" height="15" fill="rgb(227,144,33)" fg:x="25086" fg:w="93"/><text x="52.9329%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_args (239 samples, 0.50%)</title><rect x="52.3784%" y="1173" width="0.5019%" height="15" fill="rgb(249,163,44)" fg:x="24941" fg:w="239"/><text x="52.6284%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_wildcard_expr (136 samples, 0.29%)</title><rect x="52.5947%" y="1157" width="0.2856%" height="15" fill="rgb(234,15,39)" fg:x="25044" fg:w="136"/><text x="52.8447%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (120 samples, 0.25%)</title><rect x="52.6283%" y="1141" width="0.2520%" height="15" fill="rgb(207,66,16)" fg:x="25060" fg:w="120"/><text x="52.8783%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_argument_list (315 samples, 0.66%)</title><rect x="52.2229%" y="1205" width="0.6615%" height="15" fill="rgb(233,112,24)" fg:x="24867" fg:w="315"/><text x="52.4729%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (274 samples, 0.58%)</title><rect x="52.3090%" y="1189" width="0.5754%" height="15" fill="rgb(230,90,22)" fg:x="24908" fg:w="274"/><text x="52.5590%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_call (334 samples, 0.70%)</title><rect x="52.1956%" y="1221" width="0.7014%" height="15" fill="rgb(229,61,13)" fg:x="24854" fg:w="334"/><text x="52.4456%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (364 samples, 0.76%)</title><rect x="52.1368%" y="1237" width="0.7644%" height="15" fill="rgb(225,57,24)" fg:x="24826" fg:w="364"/><text x="52.3868%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (614 samples, 1.29%)</title><rect x="51.6244%" y="1253" width="1.2895%" height="15" fill="rgb(208,169,48)" fg:x="24582" fg:w="614"/><text x="51.8744%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::try_parse (5 samples, 0.01%)</title><rect x="52.9034%" y="1237" width="0.0105%" height="15" fill="rgb(244,218,51)" fg:x="25191" fg:w="5"/><text x="53.1534%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_select_item (740 samples, 1.55%)</title><rect x="51.3619%" y="1301" width="1.5541%" height="15" fill="rgb(214,148,10)" fg:x="24457" fg:w="740"/><text x="51.6119%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_wildcard_expr (698 samples, 1.47%)</title><rect x="51.4501%" y="1285" width="1.4659%" height="15" fill="rgb(225,174,27)" fg:x="24499" fg:w="698"/><text x="51.7001%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (669 samples, 1.40%)</title><rect x="51.5110%" y="1269" width="1.4050%" height="15" fill="rgb(230,96,26)" fg:x="24528" fg:w="669"/><text x="51.7610%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="52.9349%" y="1285" width="0.0126%" height="15" fill="rgb(232,10,30)" fg:x="25206" fg:w="6"/><text x="53.1849%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (14 samples, 0.03%)</title><rect x="52.9916%" y="1269" width="0.0294%" height="15" fill="rgb(222,8,50)" fg:x="25233" fg:w="14"/><text x="53.2416%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (8 samples, 0.02%)</title><rect x="53.0042%" y="1253" width="0.0168%" height="15" fill="rgb(213,81,27)" fg:x="25239" fg:w="8"/><text x="53.2542%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (7 samples, 0.01%)</title><rect x="53.0315%" y="1269" width="0.0147%" height="15" fill="rgb(245,50,10)" fg:x="25252" fg:w="7"/><text x="53.2815%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_table_factor (58 samples, 0.12%)</title><rect x="52.9601%" y="1285" width="0.1218%" height="15" fill="rgb(216,100,18)" fg:x="25218" fg:w="58"/><text x="53.2101%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_tokens (17 samples, 0.04%)</title><rect x="53.0462%" y="1269" width="0.0357%" height="15" fill="rgb(236,147,54)" fg:x="25259" fg:w="17"/><text x="53.2962%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="53.0714%" y="1253" width="0.0105%" height="15" fill="rgb(205,143,26)" fg:x="25271" fg:w="5"/><text x="53.3214%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (865 samples, 1.82%)</title><rect x="51.2716%" y="1317" width="1.8166%" height="15" fill="rgb(236,26,9)" fg:x="24414" fg:w="865"/><text x="51.5216%" y="1327.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_table_and_joins (82 samples, 0.17%)</title><rect x="52.9160%" y="1301" width="0.1722%" height="15" fill="rgb(221,165,53)" fg:x="25197" fg:w="82"/><text x="53.1660%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (8 samples, 0.02%)</title><rect x="53.1029%" y="1301" width="0.0168%" height="15" fill="rgb(214,110,17)" fg:x="25286" fg:w="8"/><text x="53.3529%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (5 samples, 0.01%)</title><rect x="53.1092%" y="1285" width="0.0105%" height="15" fill="rgb(237,197,12)" fg:x="25289" fg:w="5"/><text x="53.3592%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (6 samples, 0.01%)</title><rect x="53.1869%" y="1125" width="0.0126%" height="15" fill="rgb(205,84,17)" fg:x="25326" fg:w="6"/><text x="53.4369%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (13 samples, 0.03%)</title><rect x="53.1806%" y="1141" width="0.0273%" height="15" fill="rgb(237,18,45)" fg:x="25323" fg:w="13"/><text x="53.4306%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (14 samples, 0.03%)</title><rect x="53.1806%" y="1157" width="0.0294%" height="15" fill="rgb(221,87,14)" fg:x="25323" fg:w="14"/><text x="53.4306%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (19 samples, 0.04%)</title><rect x="53.1722%" y="1205" width="0.0399%" height="15" fill="rgb(238,186,15)" fg:x="25319" fg:w="19"/><text x="53.4222%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (19 samples, 0.04%)</title><rect x="53.1722%" y="1189" width="0.0399%" height="15" fill="rgb(208,115,11)" fg:x="25319" fg:w="19"/><text x="53.4222%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (18 samples, 0.04%)</title><rect x="53.1743%" y="1173" width="0.0378%" height="15" fill="rgb(254,175,0)" fg:x="25320" fg:w="18"/><text x="53.4243%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (29 samples, 0.06%)</title><rect x="53.1617%" y="1269" width="0.0609%" height="15" fill="rgb(227,24,42)" fg:x="25314" fg:w="29"/><text x="53.4117%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (27 samples, 0.06%)</title><rect x="53.1659%" y="1253" width="0.0567%" height="15" fill="rgb(223,211,37)" fg:x="25316" fg:w="27"/><text x="53.4159%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (27 samples, 0.06%)</title><rect x="53.1659%" y="1237" width="0.0567%" height="15" fill="rgb(235,49,27)" fg:x="25316" fg:w="27"/><text x="53.4159%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (26 samples, 0.05%)</title><rect x="53.1680%" y="1221" width="0.0546%" height="15" fill="rgb(254,97,51)" fg:x="25317" fg:w="26"/><text x="53.4180%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (5 samples, 0.01%)</title><rect x="53.2226%" y="1269" width="0.0105%" height="15" fill="rgb(249,51,40)" fg:x="25343" fg:w="5"/><text x="53.4726%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (12 samples, 0.03%)</title><rect x="53.2436%" y="1237" width="0.0252%" height="15" fill="rgb(210,128,45)" fg:x="25353" fg:w="12"/><text x="53.4936%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (8 samples, 0.02%)</title><rect x="53.2520%" y="1221" width="0.0168%" height="15" fill="rgb(224,137,50)" fg:x="25357" fg:w="8"/><text x="53.5020%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (18 samples, 0.04%)</title><rect x="53.2331%" y="1253" width="0.0378%" height="15" fill="rgb(242,15,9)" fg:x="25348" fg:w="18"/><text x="53.4831%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (19 samples, 0.04%)</title><rect x="53.2331%" y="1269" width="0.0399%" height="15" fill="rgb(233,187,41)" fg:x="25348" fg:w="19"/><text x="53.4831%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_group_by (93 samples, 0.20%)</title><rect x="53.0882%" y="1317" width="0.1953%" height="15" fill="rgb(227,2,29)" fg:x="25279" fg:w="93"/><text x="53.3382%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (76 samples, 0.16%)</title><rect x="53.1239%" y="1301" width="0.1596%" height="15" fill="rgb(222,70,3)" fg:x="25296" fg:w="76"/><text x="53.3739%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (68 samples, 0.14%)</title><rect x="53.1407%" y="1285" width="0.1428%" height="15" fill="rgb(213,11,42)" fg:x="25304" fg:w="68"/><text x="53.3907%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_query (1,096 samples, 2.30%)</title><rect x="50.9860%" y="1365" width="2.3017%" height="15" fill="rgb(225,150,9)" fg:x="24278" fg:w="1096"/><text x="51.2360%" y="1375.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_query_body (1,055 samples, 2.22%)</title><rect x="51.0721%" y="1349" width="2.2156%" height="15" fill="rgb(230,162,45)" fg:x="24319" fg:w="1055"/><text x="51.3221%" y="1359.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_select (1,000 samples, 2.10%)</title><rect x="51.1876%" y="1333" width="2.1001%" height="15" fill="rgb(222,14,52)" fg:x="24374" fg:w="1000"/><text x="51.4376%" y="1343.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_cte (1,138 samples, 2.39%)</title><rect x="50.8999%" y="1381" width="2.3899%" height="15" fill="rgb(254,198,14)" fg:x="24237" fg:w="1138"/><text x="51.1499%" y="1391.50">sq..</text></g><g><title>libsystem_platform.dylib`_platform_memmove (79 samples, 0.17%)</title><rect x="53.3003%" y="1365" width="0.1659%" height="15" fill="rgb(220,217,30)" fg:x="25380" fg:w="79"/><text x="53.5503%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (15 samples, 0.03%)</title><rect x="53.4725%" y="1349" width="0.0315%" height="15" fill="rgb(215,146,41)" fg:x="25462" fg:w="15"/><text x="53.7225%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (11 samples, 0.02%)</title><rect x="53.5040%" y="1349" width="0.0231%" height="15" fill="rgb(217,27,36)" fg:x="25477" fg:w="11"/><text x="53.7540%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (11 samples, 0.02%)</title><rect x="53.5040%" y="1333" width="0.0231%" height="15" fill="rgb(219,218,39)" fg:x="25477" fg:w="11"/><text x="53.7540%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (11 samples, 0.02%)</title><rect x="53.5040%" y="1317" width="0.0231%" height="15" fill="rgb(219,4,42)" fg:x="25477" fg:w="11"/><text x="53.7540%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (11 samples, 0.02%)</title><rect x="53.5040%" y="1301" width="0.0231%" height="15" fill="rgb(249,119,36)" fg:x="25477" fg:w="11"/><text x="53.7540%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="53.5124%" y="1285" width="0.0147%" height="15" fill="rgb(209,23,33)" fg:x="25481" fg:w="7"/><text x="53.7624%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (13 samples, 0.03%)</title><rect x="53.5460%" y="1333" width="0.0273%" height="15" fill="rgb(211,10,0)" fg:x="25497" fg:w="13"/><text x="53.7960%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (16 samples, 0.03%)</title><rect x="53.6006%" y="1317" width="0.0336%" height="15" fill="rgb(208,99,37)" fg:x="25523" fg:w="16"/><text x="53.8506%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (16 samples, 0.03%)</title><rect x="53.6468%" y="1317" width="0.0336%" height="15" fill="rgb(213,132,31)" fg:x="25545" fg:w="16"/><text x="53.8968%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (9 samples, 0.02%)</title><rect x="53.6615%" y="1301" width="0.0189%" height="15" fill="rgb(243,129,40)" fg:x="25552" fg:w="9"/><text x="53.9115%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="53.6636%" y="1285" width="0.0168%" height="15" fill="rgb(210,66,33)" fg:x="25553" fg:w="8"/><text x="53.9136%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (10 samples, 0.02%)</title><rect x="53.7413%" y="1301" width="0.0210%" height="15" fill="rgb(209,189,4)" fg:x="25590" fg:w="10"/><text x="53.9913%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="53.7623%" y="1301" width="0.0168%" height="15" fill="rgb(214,107,37)" fg:x="25600" fg:w="8"/><text x="54.0123%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="53.7854%" y="1301" width="0.0126%" height="15" fill="rgb(245,88,54)" fg:x="25611" fg:w="6"/><text x="54.0354%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="53.8316%" y="1237" width="0.0126%" height="15" fill="rgb(205,146,20)" fg:x="25633" fg:w="6"/><text x="54.0816%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="53.8904%" y="1157" width="0.0105%" height="15" fill="rgb(220,161,25)" fg:x="25661" fg:w="5"/><text x="54.1404%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (12 samples, 0.03%)</title><rect x="53.9072%" y="1141" width="0.0252%" height="15" fill="rgb(215,152,15)" fg:x="25669" fg:w="12"/><text x="54.1572%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (5 samples, 0.01%)</title><rect x="53.9324%" y="1141" width="0.0105%" height="15" fill="rgb(233,192,44)" fg:x="25681" fg:w="5"/><text x="54.1824%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (20 samples, 0.04%)</title><rect x="53.9072%" y="1157" width="0.0420%" height="15" fill="rgb(240,170,46)" fg:x="25669" fg:w="20"/><text x="54.1572%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (42 samples, 0.09%)</title><rect x="53.8631%" y="1189" width="0.0882%" height="15" fill="rgb(207,104,33)" fg:x="25648" fg:w="42"/><text x="54.1131%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (39 samples, 0.08%)</title><rect x="53.8694%" y="1173" width="0.0819%" height="15" fill="rgb(219,21,39)" fg:x="25651" fg:w="39"/><text x="54.1194%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (51 samples, 0.11%)</title><rect x="53.8484%" y="1221" width="0.1071%" height="15" fill="rgb(214,133,29)" fg:x="25641" fg:w="51"/><text x="54.0984%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (45 samples, 0.09%)</title><rect x="53.8610%" y="1205" width="0.0945%" height="15" fill="rgb(226,93,6)" fg:x="25647" fg:w="45"/><text x="54.1110%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (54 samples, 0.11%)</title><rect x="53.8442%" y="1237" width="0.1134%" height="15" fill="rgb(252,222,34)" fg:x="25639" fg:w="54"/><text x="54.0942%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (84 samples, 0.18%)</title><rect x="53.8253%" y="1269" width="0.1764%" height="15" fill="rgb(252,92,48)" fg:x="25630" fg:w="84"/><text x="54.0753%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (81 samples, 0.17%)</title><rect x="53.8316%" y="1253" width="0.1701%" height="15" fill="rgb(245,223,24)" fg:x="25633" fg:w="81"/><text x="54.0816%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (16 samples, 0.03%)</title><rect x="53.9681%" y="1237" width="0.0336%" height="15" fill="rgb(205,176,3)" fg:x="25698" fg:w="16"/><text x="54.2181%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (99 samples, 0.21%)</title><rect x="53.8001%" y="1301" width="0.2079%" height="15" fill="rgb(235,151,15)" fg:x="25618" fg:w="99"/><text x="54.0501%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (93 samples, 0.20%)</title><rect x="53.8127%" y="1285" width="0.1953%" height="15" fill="rgb(237,209,11)" fg:x="25624" fg:w="93"/><text x="54.0627%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (11 samples, 0.02%)</title><rect x="54.0143%" y="1285" width="0.0231%" height="15" fill="rgb(243,227,24)" fg:x="25720" fg:w="11"/><text x="54.2643%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (16 samples, 0.03%)</title><rect x="54.0080%" y="1301" width="0.0336%" height="15" fill="rgb(239,193,16)" fg:x="25717" fg:w="16"/><text x="54.2580%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="54.1130%" y="1237" width="0.0126%" height="15" fill="rgb(231,27,9)" fg:x="25767" fg:w="6"/><text x="54.3630%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="54.1256%" y="1237" width="0.0168%" height="15" fill="rgb(219,169,10)" fg:x="25773" fg:w="8"/><text x="54.3756%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (10 samples, 0.02%)</title><rect x="54.1424%" y="1237" width="0.0210%" height="15" fill="rgb(244,229,43)" fg:x="25781" fg:w="10"/><text x="54.3924%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (50 samples, 0.11%)</title><rect x="54.0626%" y="1269" width="0.1050%" height="15" fill="rgb(254,38,20)" fg:x="25743" fg:w="50"/><text x="54.3126%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (37 samples, 0.08%)</title><rect x="54.0899%" y="1253" width="0.0777%" height="15" fill="rgb(250,47,30)" fg:x="25756" fg:w="37"/><text x="54.3399%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (61 samples, 0.13%)</title><rect x="54.0458%" y="1285" width="0.1281%" height="15" fill="rgb(224,124,36)" fg:x="25735" fg:w="61"/><text x="54.2958%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (65 samples, 0.14%)</title><rect x="54.0416%" y="1301" width="0.1365%" height="15" fill="rgb(246,68,51)" fg:x="25733" fg:w="65"/><text x="54.2916%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="54.2012%" y="1285" width="0.0147%" height="15" fill="rgb(253,43,49)" fg:x="25809" fg:w="7"/><text x="54.4512%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="54.2264%" y="1269" width="0.0126%" height="15" fill="rgb(219,54,36)" fg:x="25821" fg:w="6"/><text x="54.4764%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (30 samples, 0.06%)</title><rect x="54.1781%" y="1301" width="0.0630%" height="15" fill="rgb(227,133,34)" fg:x="25798" fg:w="30"/><text x="54.4281%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="54.2159%" y="1285" width="0.0252%" height="15" fill="rgb(247,227,15)" fg:x="25816" fg:w="12"/><text x="54.4659%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (269 samples, 0.56%)</title><rect x="53.6867%" y="1317" width="0.5649%" height="15" fill="rgb(229,96,14)" fg:x="25564" fg:w="269"/><text x="53.9367%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (377 samples, 0.79%)</title><rect x="53.4662%" y="1365" width="0.7917%" height="15" fill="rgb(220,79,17)" fg:x="25459" fg:w="377"/><text x="53.7162%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_order_by_expr (348 samples, 0.73%)</title><rect x="53.5271%" y="1349" width="0.7308%" height="15" fill="rgb(205,131,53)" fg:x="25488" fg:w="348"/><text x="53.7771%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (323 samples, 0.68%)</title><rect x="53.5796%" y="1333" width="0.6783%" height="15" fill="rgb(209,50,29)" fg:x="25513" fg:w="323"/><text x="53.8296%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_order_by (462 samples, 0.97%)</title><rect x="53.2898%" y="1381" width="0.9702%" height="15" fill="rgb(245,86,46)" fg:x="25375" fg:w="462"/><text x="53.5398%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (6 samples, 0.01%)</title><rect x="54.3986%" y="1317" width="0.0126%" height="15" fill="rgb(235,66,46)" fg:x="25903" fg:w="6"/><text x="54.6486%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (36 samples, 0.08%)</title><rect x="54.3461%" y="1365" width="0.0756%" height="15" fill="rgb(232,148,31)" fg:x="25878" fg:w="36"/><text x="54.5961%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (23 samples, 0.05%)</title><rect x="54.3734%" y="1349" width="0.0483%" height="15" fill="rgb(217,149,8)" fg:x="25891" fg:w="23"/><text x="54.6234%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (20 samples, 0.04%)</title><rect x="54.3797%" y="1333" width="0.0420%" height="15" fill="rgb(209,183,11)" fg:x="25894" fg:w="20"/><text x="54.6297%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (139 samples, 0.29%)</title><rect x="54.4217%" y="1365" width="0.2919%" height="15" fill="rgb(208,55,20)" fg:x="25914" fg:w="139"/><text x="54.6717%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (9 samples, 0.02%)</title><rect x="54.7221%" y="1365" width="0.0189%" height="15" fill="rgb(218,39,14)" fg:x="26057" fg:w="9"/><text x="54.9721%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr (6 samples, 0.01%)</title><rect x="54.8019%" y="1301" width="0.0126%" height="15" fill="rgb(216,169,33)" fg:x="26095" fg:w="6"/><text x="55.0519%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::FnOnce::call_once (40 samples, 0.08%)</title><rect x="54.7431%" y="1365" width="0.0840%" height="15" fill="rgb(233,80,24)" fg:x="26067" fg:w="40"/><text x="54.9931%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (34 samples, 0.07%)</title><rect x="54.7557%" y="1349" width="0.0714%" height="15" fill="rgb(213,179,31)" fg:x="26073" fg:w="34"/><text x="55.0057%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (25 samples, 0.05%)</title><rect x="54.7746%" y="1333" width="0.0525%" height="15" fill="rgb(209,19,5)" fg:x="26082" fg:w="25"/><text x="55.0246%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (22 samples, 0.05%)</title><rect x="54.7809%" y="1317" width="0.0462%" height="15" fill="rgb(219,18,35)" fg:x="26085" fg:w="22"/><text x="55.0309%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (6 samples, 0.01%)</title><rect x="54.8145%" y="1301" width="0.0126%" height="15" fill="rgb(209,169,16)" fg:x="26101" fg:w="6"/><text x="55.0645%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (6 samples, 0.01%)</title><rect x="54.8460%" y="1365" width="0.0126%" height="15" fill="rgb(245,90,51)" fg:x="26116" fg:w="6"/><text x="55.0960%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (16 samples, 0.03%)</title><rect x="54.8586%" y="1365" width="0.0336%" height="15" fill="rgb(220,99,45)" fg:x="26122" fg:w="16"/><text x="55.1086%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keywords (13 samples, 0.03%)</title><rect x="54.8922%" y="1365" width="0.0273%" height="15" fill="rgb(249,89,25)" fg:x="26138" fg:w="13"/><text x="55.1422%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (95 samples, 0.20%)</title><rect x="55.1967%" y="1349" width="0.1995%" height="15" fill="rgb(239,193,0)" fg:x="26283" fg:w="95"/><text x="55.4467%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (11 samples, 0.02%)</title><rect x="55.4046%" y="1349" width="0.0231%" height="15" fill="rgb(231,126,1)" fg:x="26382" fg:w="11"/><text x="55.6546%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (6 samples, 0.01%)</title><rect x="55.4298%" y="1349" width="0.0126%" height="15" fill="rgb(243,166,3)" fg:x="26394" fg:w="6"/><text x="55.6798%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (6 samples, 0.01%)</title><rect x="55.4844%" y="1317" width="0.0126%" height="15" fill="rgb(223,22,34)" fg:x="26420" fg:w="6"/><text x="55.7344%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (9 samples, 0.02%)</title><rect x="55.5033%" y="1317" width="0.0189%" height="15" fill="rgb(251,52,51)" fg:x="26429" fg:w="9"/><text x="55.7533%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (7 samples, 0.01%)</title><rect x="55.5075%" y="1301" width="0.0147%" height="15" fill="rgb(221,165,28)" fg:x="26431" fg:w="7"/><text x="55.7575%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::expect_keyword (38 samples, 0.08%)</title><rect x="55.4445%" y="1349" width="0.0798%" height="15" fill="rgb(218,121,47)" fg:x="26401" fg:w="38"/><text x="55.6945%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (22 samples, 0.05%)</title><rect x="55.4781%" y="1333" width="0.0462%" height="15" fill="rgb(209,120,9)" fg:x="26417" fg:w="22"/><text x="55.7281%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::is_parse_comma_separated_end_with_trailing_commas (8 samples, 0.02%)</title><rect x="55.5243%" y="1349" width="0.0168%" height="15" fill="rgb(236,68,12)" fg:x="26439" fg:w="8"/><text x="55.7743%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_all_or_distinct (12 samples, 0.03%)</title><rect x="55.5411%" y="1349" width="0.0252%" height="15" fill="rgb(225,194,26)" fg:x="26447" fg:w="12"/><text x="55.7911%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_free (7 samples, 0.01%)</title><rect x="55.6440%" y="1333" width="0.0147%" height="15" fill="rgb(231,84,39)" fg:x="26496" fg:w="7"/><text x="55.8940%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (191 samples, 0.40%)</title><rect x="55.6671%" y="1333" width="0.4011%" height="15" fill="rgb(210,11,45)" fg:x="26507" fg:w="191"/><text x="55.9171%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (8 samples, 0.02%)</title><rect x="56.0829%" y="1333" width="0.0168%" height="15" fill="rgb(224,54,52)" fg:x="26705" fg:w="8"/><text x="56.3329%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (16 samples, 0.03%)</title><rect x="56.1312%" y="1317" width="0.0336%" height="15" fill="rgb(238,102,14)" fg:x="26728" fg:w="16"/><text x="56.3812%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (7 samples, 0.01%)</title><rect x="56.2026%" y="1301" width="0.0147%" height="15" fill="rgb(243,160,52)" fg:x="26762" fg:w="7"/><text x="56.4526%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (7 samples, 0.01%)</title><rect x="56.2026%" y="1285" width="0.0147%" height="15" fill="rgb(216,114,19)" fg:x="26762" fg:w="7"/><text x="56.4526%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="56.2047%" y="1269" width="0.0126%" height="15" fill="rgb(244,166,37)" fg:x="26763" fg:w="6"/><text x="56.4547%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`rack_get_thread_index (5 samples, 0.01%)</title><rect x="56.2383%" y="1285" width="0.0105%" height="15" fill="rgb(246,29,44)" fg:x="26779" fg:w="5"/><text x="56.4883%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (9 samples, 0.02%)</title><rect x="56.2929%" y="1253" width="0.0189%" height="15" fill="rgb(215,56,53)" fg:x="26805" fg:w="9"/><text x="56.5429%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (104 samples, 0.22%)</title><rect x="56.1039%" y="1333" width="0.2184%" height="15" fill="rgb(217,60,2)" fg:x="26715" fg:w="104"/><text x="56.3539%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (72 samples, 0.15%)</title><rect x="56.1711%" y="1317" width="0.1512%" height="15" fill="rgb(207,26,24)" fg:x="26747" fg:w="72"/><text x="56.4211%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (47 samples, 0.10%)</title><rect x="56.2236%" y="1301" width="0.0987%" height="15" fill="rgb(252,210,15)" fg:x="26772" fg:w="47"/><text x="56.4736%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (32 samples, 0.07%)</title><rect x="56.2551%" y="1285" width="0.0672%" height="15" fill="rgb(253,209,26)" fg:x="26787" fg:w="32"/><text x="56.5051%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (21 samples, 0.04%)</title><rect x="56.2782%" y="1269" width="0.0441%" height="15" fill="rgb(238,170,14)" fg:x="26798" fg:w="21"/><text x="56.5282%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::is_parse_comma_separated_end_with_trailing_commas (8 samples, 0.02%)</title><rect x="56.3370%" y="1333" width="0.0168%" height="15" fill="rgb(216,178,15)" fg:x="26826" fg:w="8"/><text x="56.5870%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::cmp::PartialEq&gt;::eq (6 samples, 0.01%)</title><rect x="56.3412%" y="1317" width="0.0126%" height="15" fill="rgb(250,197,2)" fg:x="26828" fg:w="6"/><text x="56.5912%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="56.4042%" y="1317" width="0.0105%" height="15" fill="rgb(212,70,42)" fg:x="26858" fg:w="5"/><text x="56.6542%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_select_item_exclude (7 samples, 0.01%)</title><rect x="56.5113%" y="1301" width="0.0147%" height="15" fill="rgb(227,213,9)" fg:x="26909" fg:w="7"/><text x="56.7613%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_select_item_rename (7 samples, 0.01%)</title><rect x="56.5323%" y="1301" width="0.0147%" height="15" fill="rgb(245,99,25)" fg:x="26919" fg:w="7"/><text x="56.7823%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_wildcard_additional_options (56 samples, 0.12%)</title><rect x="56.4399%" y="1317" width="0.1176%" height="15" fill="rgb(250,82,29)" fg:x="26875" fg:w="56"/><text x="56.6899%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_select_item_replace (5 samples, 0.01%)</title><rect x="56.5470%" y="1301" width="0.0105%" height="15" fill="rgb(241,226,54)" fg:x="26926" fg:w="5"/><text x="56.7970%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="56.5785%" y="1301" width="0.0147%" height="15" fill="rgb(221,99,41)" fg:x="26941" fg:w="7"/><text x="56.8285%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="56.5932%" y="1301" width="0.0126%" height="15" fill="rgb(213,90,21)" fg:x="26948" fg:w="6"/><text x="56.8432%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="56.6142%" y="1285" width="0.0147%" height="15" fill="rgb(205,208,24)" fg:x="26958" fg:w="7"/><text x="56.8642%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (14 samples, 0.03%)</title><rect x="56.6079%" y="1301" width="0.0294%" height="15" fill="rgb(246,31,12)" fg:x="26955" fg:w="14"/><text x="56.8579%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::cmp::PartialEq&gt;::eq (6 samples, 0.01%)</title><rect x="56.6373%" y="1301" width="0.0126%" height="15" fill="rgb(213,154,6)" fg:x="26969" fg:w="6"/><text x="56.8873%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (23 samples, 0.05%)</title><rect x="56.6709%" y="1285" width="0.0483%" height="15" fill="rgb(222,163,29)" fg:x="26985" fg:w="23"/><text x="56.9209%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (5 samples, 0.01%)</title><rect x="56.7213%" y="1285" width="0.0105%" height="15" fill="rgb(227,201,8)" fg:x="27009" fg:w="5"/><text x="56.9713%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (15 samples, 0.03%)</title><rect x="56.7339%" y="1285" width="0.0315%" height="15" fill="rgb(233,9,32)" fg:x="27015" fg:w="15"/><text x="56.9839%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (14 samples, 0.03%)</title><rect x="56.7360%" y="1269" width="0.0294%" height="15" fill="rgb(217,54,24)" fg:x="27016" fg:w="14"/><text x="56.9860%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="56.7402%" y="1253" width="0.0252%" height="15" fill="rgb(235,192,0)" fg:x="27018" fg:w="12"/><text x="56.9902%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="56.8032%" y="1269" width="0.0105%" height="15" fill="rgb(235,45,9)" fg:x="27048" fg:w="5"/><text x="57.0532%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (13 samples, 0.03%)</title><rect x="56.8137%" y="1269" width="0.0273%" height="15" fill="rgb(246,42,40)" fg:x="27053" fg:w="13"/><text x="57.0637%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (17 samples, 0.04%)</title><rect x="56.8410%" y="1269" width="0.0357%" height="15" fill="rgb(248,111,24)" fg:x="27066" fg:w="17"/><text x="57.0910%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (5 samples, 0.01%)</title><rect x="56.8767%" y="1269" width="0.0105%" height="15" fill="rgb(249,65,22)" fg:x="27083" fg:w="5"/><text x="57.1267%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="56.8872%" y="1269" width="0.0168%" height="15" fill="rgb(238,111,51)" fg:x="27088" fg:w="8"/><text x="57.1372%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="56.8914%" y="1253" width="0.0126%" height="15" fill="rgb(250,118,22)" fg:x="27090" fg:w="6"/><text x="57.1414%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (5 samples, 0.01%)</title><rect x="56.9040%" y="1269" width="0.0105%" height="15" fill="rgb(234,84,26)" fg:x="27096" fg:w="5"/><text x="57.1540%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="57.0154%" y="1109" width="0.0189%" height="15" fill="rgb(243,172,12)" fg:x="27149" fg:w="9"/><text x="57.2654%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (18 samples, 0.04%)</title><rect x="57.0133%" y="1125" width="0.0378%" height="15" fill="rgb(236,150,49)" fg:x="27148" fg:w="18"/><text x="57.2633%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (30 samples, 0.06%)</title><rect x="57.0049%" y="1141" width="0.0630%" height="15" fill="rgb(225,197,26)" fg:x="27144" fg:w="30"/><text x="57.2549%" y="1151.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="57.0511%" y="1125" width="0.0168%" height="15" fill="rgb(214,17,42)" fg:x="27166" fg:w="8"/><text x="57.3011%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (41 samples, 0.09%)</title><rect x="56.9944%" y="1157" width="0.0861%" height="15" fill="rgb(224,165,40)" fg:x="27139" fg:w="41"/><text x="57.2444%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (51 samples, 0.11%)</title><rect x="56.9754%" y="1189" width="0.1071%" height="15" fill="rgb(246,100,4)" fg:x="27130" fg:w="51"/><text x="57.2254%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (45 samples, 0.09%)</title><rect x="56.9881%" y="1173" width="0.0945%" height="15" fill="rgb(222,103,0)" fg:x="27136" fg:w="45"/><text x="57.2381%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (56 samples, 0.12%)</title><rect x="56.9691%" y="1205" width="0.1176%" height="15" fill="rgb(227,189,26)" fg:x="27127" fg:w="56"/><text x="57.2191%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (79 samples, 0.17%)</title><rect x="56.9460%" y="1237" width="0.1659%" height="15" fill="rgb(214,202,17)" fg:x="27116" fg:w="79"/><text x="57.1960%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (78 samples, 0.16%)</title><rect x="56.9481%" y="1221" width="0.1638%" height="15" fill="rgb(229,111,3)" fg:x="27117" fg:w="78"/><text x="57.1981%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (7 samples, 0.01%)</title><rect x="57.0973%" y="1205" width="0.0147%" height="15" fill="rgb(229,172,15)" fg:x="27188" fg:w="7"/><text x="57.3473%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (88 samples, 0.18%)</title><rect x="56.9292%" y="1269" width="0.1848%" height="15" fill="rgb(230,224,35)" fg:x="27108" fg:w="88"/><text x="57.1792%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (84 samples, 0.18%)</title><rect x="56.9376%" y="1253" width="0.1764%" height="15" fill="rgb(251,141,6)" fg:x="27112" fg:w="84"/><text x="57.1876%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (10 samples, 0.02%)</title><rect x="57.1351%" y="1253" width="0.0210%" height="15" fill="rgb(225,208,6)" fg:x="27206" fg:w="10"/><text x="57.3851%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (21 samples, 0.04%)</title><rect x="57.1162%" y="1269" width="0.0441%" height="15" fill="rgb(246,181,16)" fg:x="27197" fg:w="21"/><text x="57.3662%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="57.2107%" y="1221" width="0.0105%" height="15" fill="rgb(227,129,36)" fg:x="27242" fg:w="5"/><text x="57.4607%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (9 samples, 0.02%)</title><rect x="57.2233%" y="1221" width="0.0189%" height="15" fill="rgb(248,117,24)" fg:x="27248" fg:w="9"/><text x="57.4733%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="57.2569%" y="1205" width="0.0126%" height="15" fill="rgb(214,185,35)" fg:x="27264" fg:w="6"/><text x="57.5069%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="57.2695%" y="1205" width="0.0168%" height="15" fill="rgb(236,150,34)" fg:x="27270" fg:w="8"/><text x="57.5195%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="57.2989%" y="1189" width="0.0168%" height="15" fill="rgb(243,228,27)" fg:x="27284" fg:w="8"/><text x="57.5489%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (7 samples, 0.01%)</title><rect x="57.3010%" y="1173" width="0.0147%" height="15" fill="rgb(245,77,44)" fg:x="27285" fg:w="7"/><text x="57.5510%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (16 samples, 0.03%)</title><rect x="57.2863%" y="1205" width="0.0336%" height="15" fill="rgb(235,214,42)" fg:x="27278" fg:w="16"/><text x="57.5363%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (62 samples, 0.13%)</title><rect x="57.1918%" y="1237" width="0.1302%" height="15" fill="rgb(221,74,3)" fg:x="27233" fg:w="62"/><text x="57.4418%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (38 samples, 0.08%)</title><rect x="57.2422%" y="1221" width="0.0798%" height="15" fill="rgb(206,121,29)" fg:x="27257" fg:w="38"/><text x="57.4922%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (12 samples, 0.03%)</title><rect x="57.3472%" y="1221" width="0.0252%" height="15" fill="rgb(249,131,53)" fg:x="27307" fg:w="12"/><text x="57.5972%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (12 samples, 0.03%)</title><rect x="57.3472%" y="1205" width="0.0252%" height="15" fill="rgb(236,170,29)" fg:x="27307" fg:w="12"/><text x="57.5972%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (6 samples, 0.01%)</title><rect x="57.3598%" y="1189" width="0.0126%" height="15" fill="rgb(247,96,15)" fg:x="27313" fg:w="6"/><text x="57.6098%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="57.3598%" y="1173" width="0.0126%" height="15" fill="rgb(211,210,7)" fg:x="27313" fg:w="6"/><text x="57.6098%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (13 samples, 0.03%)</title><rect x="57.3724%" y="1221" width="0.0273%" height="15" fill="rgb(240,88,50)" fg:x="27319" fg:w="13"/><text x="57.6224%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="57.3892%" y="1205" width="0.0105%" height="15" fill="rgb(209,229,26)" fg:x="27327" fg:w="5"/><text x="57.6392%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (9 samples, 0.02%)</title><rect x="57.4102%" y="1221" width="0.0189%" height="15" fill="rgb(210,68,23)" fg:x="27337" fg:w="9"/><text x="57.6602%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_type_modifiers (53 samples, 0.11%)</title><rect x="57.3220%" y="1237" width="0.1113%" height="15" fill="rgb(229,180,13)" fg:x="27295" fg:w="53"/><text x="57.5720%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (130 samples, 0.27%)</title><rect x="57.1645%" y="1253" width="0.2730%" height="15" fill="rgb(236,53,44)" fg:x="27220" fg:w="130"/><text x="57.4145%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (131 samples, 0.28%)</title><rect x="57.1645%" y="1269" width="0.2751%" height="15" fill="rgb(244,214,29)" fg:x="27220" fg:w="131"/><text x="57.4145%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="57.4690%" y="1253" width="0.0126%" height="15" fill="rgb(220,75,29)" fg:x="27365" fg:w="6"/><text x="57.7190%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_compound_field_access (7 samples, 0.01%)</title><rect x="57.5110%" y="1253" width="0.0147%" height="15" fill="rgb(214,183,37)" fg:x="27385" fg:w="7"/><text x="57.7610%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (5 samples, 0.01%)</title><rect x="57.5950%" y="1237" width="0.0105%" height="15" fill="rgb(239,117,29)" fg:x="27425" fg:w="5"/><text x="57.8450%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="57.6706%" y="1221" width="0.0105%" height="15" fill="rgb(237,171,35)" fg:x="27461" fg:w="5"/><text x="57.9206%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (25 samples, 0.05%)</title><rect x="57.6811%" y="1221" width="0.0525%" height="15" fill="rgb(229,178,53)" fg:x="27466" fg:w="25"/><text x="57.9311%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="57.7546%" y="1205" width="0.0168%" height="15" fill="rgb(210,102,19)" fg:x="27501" fg:w="8"/><text x="58.0046%" y="1215.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="57.7609%" y="1189" width="0.0105%" height="15" fill="rgb(235,127,22)" fg:x="27504" fg:w="5"/><text x="58.0109%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (18 samples, 0.04%)</title><rect x="57.7357%" y="1221" width="0.0378%" height="15" fill="rgb(244,31,31)" fg:x="27492" fg:w="18"/><text x="57.9857%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::expect_token (19 samples, 0.04%)</title><rect x="57.7777%" y="1221" width="0.0399%" height="15" fill="rgb(231,43,21)" fg:x="27512" fg:w="19"/><text x="58.0277%" y="1231.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (12 samples, 0.03%)</title><rect x="57.8323%" y="1205" width="0.0252%" height="15" fill="rgb(217,131,35)" fg:x="27538" fg:w="12"/><text x="58.0823%" y="1215.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (14 samples, 0.03%)</title><rect x="57.8575%" y="1205" width="0.0294%" height="15" fill="rgb(221,149,4)" fg:x="27550" fg:w="14"/><text x="58.1075%" y="1215.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (7 samples, 0.01%)</title><rect x="57.9499%" y="1125" width="0.0147%" height="15" fill="rgb(232,170,28)" fg:x="27594" fg:w="7"/><text x="58.1999%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (34 samples, 0.07%)</title><rect x="57.9037%" y="1205" width="0.0714%" height="15" fill="rgb(238,56,10)" fg:x="27572" fg:w="34"/><text x="58.1537%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (26 samples, 0.05%)</title><rect x="57.9205%" y="1189" width="0.0546%" height="15" fill="rgb(235,196,14)" fg:x="27580" fg:w="26"/><text x="58.1705%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (22 samples, 0.05%)</title><rect x="57.9289%" y="1173" width="0.0462%" height="15" fill="rgb(216,45,48)" fg:x="27584" fg:w="22"/><text x="58.1789%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (22 samples, 0.05%)</title><rect x="57.9289%" y="1157" width="0.0462%" height="15" fill="rgb(238,213,17)" fg:x="27584" fg:w="22"/><text x="58.1789%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (18 samples, 0.04%)</title><rect x="57.9373%" y="1141" width="0.0378%" height="15" fill="rgb(212,13,2)" fg:x="27588" fg:w="18"/><text x="58.1873%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (5 samples, 0.01%)</title><rect x="57.9646%" y="1125" width="0.0105%" height="15" fill="rgb(240,114,20)" fg:x="27601" fg:w="5"/><text x="58.2146%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`_free (8 samples, 0.02%)</title><rect x="57.9898%" y="1189" width="0.0168%" height="15" fill="rgb(228,41,40)" fg:x="27613" fg:w="8"/><text x="58.2398%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (15 samples, 0.03%)</title><rect x="58.0066%" y="1189" width="0.0315%" height="15" fill="rgb(244,132,35)" fg:x="27621" fg:w="15"/><text x="58.2566%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (5 samples, 0.01%)</title><rect x="58.0507%" y="1189" width="0.0105%" height="15" fill="rgb(253,189,4)" fg:x="27642" fg:w="5"/><text x="58.3007%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="58.1011%" y="1157" width="0.0126%" height="15" fill="rgb(224,37,19)" fg:x="27666" fg:w="6"/><text x="58.3511%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (5 samples, 0.01%)</title><rect x="58.1137%" y="1157" width="0.0105%" height="15" fill="rgb(235,223,18)" fg:x="27672" fg:w="5"/><text x="58.3637%" y="1167.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (13 samples, 0.03%)</title><rect x="58.1494%" y="1141" width="0.0273%" height="15" fill="rgb(235,163,25)" fg:x="27689" fg:w="13"/><text x="58.3994%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (6 samples, 0.01%)</title><rect x="58.1809%" y="1125" width="0.0126%" height="15" fill="rgb(217,145,28)" fg:x="27704" fg:w="6"/><text x="58.4309%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (5 samples, 0.01%)</title><rect x="58.1830%" y="1109" width="0.0105%" height="15" fill="rgb(223,223,32)" fg:x="27705" fg:w="5"/><text x="58.4330%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (9 samples, 0.02%)</title><rect x="58.1767%" y="1141" width="0.0189%" height="15" fill="rgb(227,189,39)" fg:x="27702" fg:w="9"/><text x="58.4267%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (10 samples, 0.02%)</title><rect x="58.2292%" y="1029" width="0.0210%" height="15" fill="rgb(248,10,22)" fg:x="27727" fg:w="10"/><text x="58.4792%" y="1039.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (20 samples, 0.04%)</title><rect x="58.2166%" y="1061" width="0.0420%" height="15" fill="rgb(248,46,39)" fg:x="27721" fg:w="20"/><text x="58.4666%" y="1071.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (19 samples, 0.04%)</title><rect x="58.2187%" y="1045" width="0.0399%" height="15" fill="rgb(248,113,48)" fg:x="27722" fg:w="19"/><text x="58.4687%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (24 samples, 0.05%)</title><rect x="58.2145%" y="1093" width="0.0504%" height="15" fill="rgb(245,16,25)" fg:x="27720" fg:w="24"/><text x="58.4645%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (23 samples, 0.05%)</title><rect x="58.2166%" y="1077" width="0.0483%" height="15" fill="rgb(249,152,16)" fg:x="27721" fg:w="23"/><text x="58.4666%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (28 samples, 0.06%)</title><rect x="58.2103%" y="1109" width="0.0588%" height="15" fill="rgb(250,16,1)" fg:x="27718" fg:w="28"/><text x="58.4603%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (52 samples, 0.11%)</title><rect x="58.1956%" y="1141" width="0.1092%" height="15" fill="rgb(249,138,3)" fg:x="27711" fg:w="52"/><text x="58.4456%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (51 samples, 0.11%)</title><rect x="58.1977%" y="1125" width="0.1071%" height="15" fill="rgb(227,71,41)" fg:x="27712" fg:w="51"/><text x="58.4477%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (12 samples, 0.03%)</title><rect x="58.2796%" y="1109" width="0.0252%" height="15" fill="rgb(209,184,23)" fg:x="27751" fg:w="12"/><text x="58.5296%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="58.3048%" y="1141" width="0.0105%" height="15" fill="rgb(223,215,31)" fg:x="27763" fg:w="5"/><text x="58.5548%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (115 samples, 0.24%)</title><rect x="58.0927%" y="1173" width="0.2415%" height="15" fill="rgb(210,146,28)" fg:x="27662" fg:w="115"/><text x="58.3427%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (96 samples, 0.20%)</title><rect x="58.1326%" y="1157" width="0.2016%" height="15" fill="rgb(209,183,41)" fg:x="27681" fg:w="96"/><text x="58.3826%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_named_arg_operator (131 samples, 0.28%)</title><rect x="58.0675%" y="1189" width="0.2751%" height="15" fill="rgb(209,224,45)" fg:x="27650" fg:w="131"/><text x="58.3175%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (9 samples, 0.02%)</title><rect x="58.3531%" y="1173" width="0.0189%" height="15" fill="rgb(224,209,51)" fg:x="27786" fg:w="9"/><text x="58.6031%" y="1183.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="58.3615%" y="1157" width="0.0105%" height="15" fill="rgb(223,17,39)" fg:x="27790" fg:w="5"/><text x="58.6115%" y="1167.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="58.3804%" y="1157" width="0.0126%" height="15" fill="rgb(234,204,37)" fg:x="27799" fg:w="6"/><text x="58.6304%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (17 samples, 0.04%)</title><rect x="58.3720%" y="1173" width="0.0357%" height="15" fill="rgb(236,120,5)" fg:x="27795" fg:w="17"/><text x="58.6220%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="58.3930%" y="1157" width="0.0147%" height="15" fill="rgb(248,97,27)" fg:x="27805" fg:w="7"/><text x="58.6430%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="58.3972%" y="1141" width="0.0105%" height="15" fill="rgb(240,66,17)" fg:x="27807" fg:w="5"/><text x="58.6472%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (32 samples, 0.07%)</title><rect x="58.3426%" y="1189" width="0.0672%" height="15" fill="rgb(210,79,3)" fg:x="27781" fg:w="32"/><text x="58.5926%" y="1199.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="58.4392%" y="1157" width="0.0147%" height="15" fill="rgb(214,176,27)" fg:x="27827" fg:w="7"/><text x="58.6892%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="58.4539%" y="1157" width="0.0126%" height="15" fill="rgb(235,185,3)" fg:x="27834" fg:w="6"/><text x="58.7039%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (16 samples, 0.03%)</title><rect x="58.4371%" y="1173" width="0.0336%" height="15" fill="rgb(227,24,12)" fg:x="27826" fg:w="16"/><text x="58.6871%" y="1183.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (17 samples, 0.04%)</title><rect x="58.4980%" y="1157" width="0.0357%" height="15" fill="rgb(252,169,48)" fg:x="27855" fg:w="17"/><text x="58.7480%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (7 samples, 0.01%)</title><rect x="58.5484%" y="1157" width="0.0147%" height="15" fill="rgb(212,65,1)" fg:x="27879" fg:w="7"/><text x="58.7984%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (7 samples, 0.01%)</title><rect x="58.5484%" y="1141" width="0.0147%" height="15" fill="rgb(242,39,24)" fg:x="27879" fg:w="7"/><text x="58.7984%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (6 samples, 0.01%)</title><rect x="58.5967%" y="1141" width="0.0126%" height="15" fill="rgb(249,32,23)" fg:x="27902" fg:w="6"/><text x="58.8467%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="58.7206%" y="981" width="0.0147%" height="15" fill="rgb(251,195,23)" fg:x="27961" fg:w="7"/><text x="58.9706%" y="991.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (15 samples, 0.03%)</title><rect x="58.7164%" y="997" width="0.0315%" height="15" fill="rgb(236,174,8)" fg:x="27959" fg:w="15"/><text x="58.9664%" y="1007.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (29 samples, 0.06%)</title><rect x="58.7017%" y="1013" width="0.0609%" height="15" fill="rgb(220,197,8)" fg:x="27952" fg:w="29"/><text x="58.9517%" y="1023.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="58.7479%" y="997" width="0.0147%" height="15" fill="rgb(240,108,37)" fg:x="27974" fg:w="7"/><text x="58.9979%" y="1007.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (32 samples, 0.07%)</title><rect x="58.6996%" y="1029" width="0.0672%" height="15" fill="rgb(232,176,24)" fg:x="27951" fg:w="32"/><text x="58.9496%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (41 samples, 0.09%)</title><rect x="58.6912%" y="1077" width="0.0861%" height="15" fill="rgb(243,35,29)" fg:x="27947" fg:w="41"/><text x="58.9412%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (40 samples, 0.08%)</title><rect x="58.6933%" y="1061" width="0.0840%" height="15" fill="rgb(210,37,18)" fg:x="27948" fg:w="40"/><text x="58.9433%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (39 samples, 0.08%)</title><rect x="58.6954%" y="1045" width="0.0819%" height="15" fill="rgb(224,184,40)" fg:x="27949" fg:w="39"/><text x="58.9454%" y="1055.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_size (5 samples, 0.01%)</title><rect x="58.7668%" y="1029" width="0.0105%" height="15" fill="rgb(236,39,29)" fg:x="27983" fg:w="5"/><text x="59.0168%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (5 samples, 0.01%)</title><rect x="58.7836%" y="1077" width="0.0105%" height="15" fill="rgb(232,48,39)" fg:x="27991" fg:w="5"/><text x="59.0336%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (70 samples, 0.15%)</title><rect x="58.6723%" y="1109" width="0.1470%" height="15" fill="rgb(236,34,42)" fg:x="27938" fg:w="70"/><text x="58.9223%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (68 samples, 0.14%)</title><rect x="58.6765%" y="1093" width="0.1428%" height="15" fill="rgb(243,106,37)" fg:x="27940" fg:w="68"/><text x="58.9265%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (10 samples, 0.02%)</title><rect x="58.7983%" y="1077" width="0.0210%" height="15" fill="rgb(218,96,6)" fg:x="27998" fg:w="10"/><text x="59.0483%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (80 samples, 0.17%)</title><rect x="58.6534%" y="1141" width="0.1680%" height="15" fill="rgb(235,130,12)" fg:x="27929" fg:w="80"/><text x="58.9034%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (74 samples, 0.16%)</title><rect x="58.6660%" y="1125" width="0.1554%" height="15" fill="rgb(231,95,0)" fg:x="27935" fg:w="74"/><text x="58.9160%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="58.8319%" y="1125" width="0.0126%" height="15" fill="rgb(228,12,23)" fg:x="28014" fg:w="6"/><text x="59.0819%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (11 samples, 0.02%)</title><rect x="58.8235%" y="1141" width="0.0231%" height="15" fill="rgb(216,12,1)" fg:x="28010" fg:w="11"/><text x="59.0735%" y="1151.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="58.9117%" y="1077" width="0.0105%" height="15" fill="rgb(219,59,3)" fg:x="28052" fg:w="5"/><text x="59.1617%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (7 samples, 0.01%)</title><rect x="58.9264%" y="1077" width="0.0147%" height="15" fill="rgb(215,208,46)" fg:x="28059" fg:w="7"/><text x="59.1764%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (31 samples, 0.07%)</title><rect x="58.8781%" y="1109" width="0.0651%" height="15" fill="rgb(254,224,29)" fg:x="28036" fg:w="31"/><text x="59.1281%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (19 samples, 0.04%)</title><rect x="58.9033%" y="1093" width="0.0399%" height="15" fill="rgb(232,14,29)" fg:x="28048" fg:w="19"/><text x="59.1533%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (44 samples, 0.09%)</title><rect x="58.8613%" y="1125" width="0.0924%" height="15" fill="rgb(208,45,52)" fg:x="28028" fg:w="44"/><text x="59.1113%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (49 samples, 0.10%)</title><rect x="58.8529%" y="1141" width="0.1029%" height="15" fill="rgb(234,191,28)" fg:x="28024" fg:w="49"/><text x="59.1029%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (9 samples, 0.02%)</title><rect x="58.9558%" y="1141" width="0.0189%" height="15" fill="rgb(244,67,43)" fg:x="28073" fg:w="9"/><text x="59.2058%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (200 samples, 0.42%)</title><rect x="58.5652%" y="1157" width="0.4200%" height="15" fill="rgb(236,189,24)" fg:x="27887" fg:w="200"/><text x="58.8152%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (559 samples, 1.17%)</title><rect x="57.8197%" y="1221" width="1.1740%" height="15" fill="rgb(239,214,33)" fg:x="27532" fg:w="559"/><text x="58.0697%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_args (485 samples, 1.02%)</title><rect x="57.9751%" y="1205" width="1.0185%" height="15" fill="rgb(226,176,41)" fg:x="27606" fg:w="485"/><text x="58.2251%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_wildcard_expr (277 samples, 0.58%)</title><rect x="58.4119%" y="1189" width="0.5817%" height="15" fill="rgb(248,47,8)" fg:x="27814" fg:w="277"/><text x="58.6619%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (243 samples, 0.51%)</title><rect x="58.4833%" y="1173" width="0.5103%" height="15" fill="rgb(218,81,44)" fg:x="27848" fg:w="243"/><text x="58.7333%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_argument_list (663 samples, 1.39%)</title><rect x="57.6139%" y="1237" width="1.3924%" height="15" fill="rgb(213,98,6)" fg:x="27434" fg:w="663"/><text x="57.8639%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_listagg_on_overflow (5 samples, 0.01%)</title><rect x="58.9957%" y="1221" width="0.0105%" height="15" fill="rgb(222,85,22)" fg:x="28092" fg:w="5"/><text x="59.2457%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_json_null_clause (13 samples, 0.03%)</title><rect x="59.0062%" y="1237" width="0.0273%" height="15" fill="rgb(239,46,39)" fg:x="28097" fg:w="13"/><text x="59.2562%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_function_call (723 samples, 1.52%)</title><rect x="57.5278%" y="1253" width="1.5184%" height="15" fill="rgb(237,12,29)" fg:x="27393" fg:w="723"/><text x="57.7778%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_listagg_on_overflow (6 samples, 0.01%)</title><rect x="59.0335%" y="1237" width="0.0126%" height="15" fill="rgb(214,77,8)" fg:x="28110" fg:w="6"/><text x="59.2835%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (766 samples, 1.61%)</title><rect x="57.4396%" y="1269" width="1.6087%" height="15" fill="rgb(217,168,37)" fg:x="27351" fg:w="766"/><text x="57.6896%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (1,085 samples, 2.28%)</title><rect x="56.7759%" y="1285" width="2.2786%" height="15" fill="rgb(221,217,23)" fg:x="27035" fg:w="1085"/><text x="57.0259%" y="1295.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_select_item (1,285 samples, 2.70%)</title><rect x="56.3580%" y="1333" width="2.6986%" height="15" fill="rgb(243,229,36)" fg:x="26836" fg:w="1285"/><text x="56.6080%" y="1343.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_wildcard_expr (1,190 samples, 2.50%)</title><rect x="56.5575%" y="1317" width="2.4991%" height="15" fill="rgb(251,163,40)" fg:x="26931" fg:w="1190"/><text x="56.8075%" y="1327.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (1,144 samples, 2.40%)</title><rect x="56.6541%" y="1301" width="2.4025%" height="15" fill="rgb(237,222,12)" fg:x="26977" fg:w="1144"/><text x="56.9041%" y="1311.50">sq..</text></g><g><title>libsystem_malloc.dylib`_free (15 samples, 0.03%)</title><rect x="59.1847%" y="1317" width="0.0315%" height="15" fill="rgb(248,132,6)" fg:x="28182" fg:w="15"/><text x="59.4347%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (15 samples, 0.03%)</title><rect x="59.2162%" y="1317" width="0.0315%" height="15" fill="rgb(227,167,50)" fg:x="28197" fg:w="15"/><text x="59.4662%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (45 samples, 0.09%)</title><rect x="59.2477%" y="1317" width="0.0945%" height="15" fill="rgb(242,84,37)" fg:x="28212" fg:w="45"/><text x="59.4977%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;T as core::any::Any&gt;::type_id (7 samples, 0.01%)</title><rect x="59.3423%" y="1317" width="0.0147%" height="15" fill="rgb(212,4,50)" fg:x="28257" fg:w="7"/><text x="59.5923%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (10 samples, 0.02%)</title><rect x="59.3717%" y="1301" width="0.0210%" height="15" fill="rgb(230,228,32)" fg:x="28271" fg:w="10"/><text x="59.6217%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="59.3990%" y="1301" width="0.0168%" height="15" fill="rgb(248,217,23)" fg:x="28284" fg:w="8"/><text x="59.6490%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="59.4053%" y="1285" width="0.0105%" height="15" fill="rgb(238,197,32)" fg:x="28287" fg:w="5"/><text x="59.6553%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (29 samples, 0.06%)</title><rect x="59.3654%" y="1317" width="0.0609%" height="15" fill="rgb(236,106,1)" fg:x="28268" fg:w="29"/><text x="59.6154%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (8 samples, 0.02%)</title><rect x="59.4284%" y="1317" width="0.0168%" height="15" fill="rgb(219,228,13)" fg:x="28298" fg:w="8"/><text x="59.6784%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (7 samples, 0.01%)</title><rect x="59.4641%" y="1285" width="0.0147%" height="15" fill="rgb(238,30,35)" fg:x="28315" fg:w="7"/><text x="59.7141%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (7 samples, 0.01%)</title><rect x="59.4641%" y="1269" width="0.0147%" height="15" fill="rgb(236,70,23)" fg:x="28315" fg:w="7"/><text x="59.7141%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="59.4662%" y="1253" width="0.0126%" height="15" fill="rgb(249,104,48)" fg:x="28316" fg:w="6"/><text x="59.7162%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (17 samples, 0.04%)</title><rect x="59.4515%" y="1317" width="0.0357%" height="15" fill="rgb(254,117,50)" fg:x="28309" fg:w="17"/><text x="59.7015%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (13 samples, 0.03%)</title><rect x="59.4599%" y="1301" width="0.0273%" height="15" fill="rgb(223,152,4)" fg:x="28313" fg:w="13"/><text x="59.7099%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (10 samples, 0.02%)</title><rect x="59.4872%" y="1317" width="0.0210%" height="15" fill="rgb(245,6,2)" fg:x="28326" fg:w="10"/><text x="59.7372%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_join_constraint (16 samples, 0.03%)</title><rect x="59.5334%" y="1317" width="0.0336%" height="15" fill="rgb(249,150,24)" fg:x="28348" fg:w="16"/><text x="59.7834%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_parenthesized_column_list (13 samples, 0.03%)</title><rect x="59.5397%" y="1301" width="0.0273%" height="15" fill="rgb(228,185,42)" fg:x="28351" fg:w="13"/><text x="59.7897%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (5 samples, 0.01%)</title><rect x="59.5565%" y="1285" width="0.0105%" height="15" fill="rgb(226,39,33)" fg:x="28359" fg:w="5"/><text x="59.8065%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (15 samples, 0.03%)</title><rect x="59.5670%" y="1317" width="0.0315%" height="15" fill="rgb(221,166,19)" fg:x="28364" fg:w="15"/><text x="59.8170%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keywords (12 samples, 0.03%)</title><rect x="59.5985%" y="1317" width="0.0252%" height="15" fill="rgb(209,109,2)" fg:x="28379" fg:w="12"/><text x="59.8485%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (5 samples, 0.01%)</title><rect x="59.6237%" y="1317" width="0.0105%" height="15" fill="rgb(252,216,26)" fg:x="28391" fg:w="5"/><text x="59.8737%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_one_of_keywords (7 samples, 0.01%)</title><rect x="59.6342%" y="1317" width="0.0147%" height="15" fill="rgb(227,173,36)" fg:x="28396" fg:w="7"/><text x="59.8842%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (42 samples, 0.09%)</title><rect x="59.8001%" y="1301" width="0.0882%" height="15" fill="rgb(209,90,7)" fg:x="28475" fg:w="42"/><text x="60.0501%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;T as core::any::Any&gt;::type_id (7 samples, 0.01%)</title><rect x="59.8883%" y="1301" width="0.0147%" height="15" fill="rgb(250,194,11)" fg:x="28517" fg:w="7"/><text x="60.1383%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::cmp::PartialEq&gt;::eq (5 samples, 0.01%)</title><rect x="59.9051%" y="1301" width="0.0105%" height="15" fill="rgb(220,72,50)" fg:x="28525" fg:w="5"/><text x="60.1551%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (8 samples, 0.02%)</title><rect x="59.9198%" y="1301" width="0.0168%" height="15" fill="rgb(222,106,48)" fg:x="28532" fg:w="8"/><text x="60.1698%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::maybe_parse_table_sample (6 samples, 0.01%)</title><rect x="59.9471%" y="1301" width="0.0126%" height="15" fill="rgb(216,220,45)" fg:x="28545" fg:w="6"/><text x="60.1971%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_free (5 samples, 0.01%)</title><rect x="59.9996%" y="1285" width="0.0105%" height="15" fill="rgb(234,112,18)" fg:x="28570" fg:w="5"/><text x="60.2496%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (5 samples, 0.01%)</title><rect x="60.0227%" y="1285" width="0.0105%" height="15" fill="rgb(206,179,9)" fg:x="28581" fg:w="5"/><text x="60.2727%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (11 samples, 0.02%)</title><rect x="60.0458%" y="1269" width="0.0231%" height="15" fill="rgb(215,115,40)" fg:x="28592" fg:w="11"/><text x="60.2958%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (43 samples, 0.09%)</title><rect x="60.0332%" y="1285" width="0.0903%" height="15" fill="rgb(222,69,34)" fg:x="28586" fg:w="43"/><text x="60.2832%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (26 samples, 0.05%)</title><rect x="60.0689%" y="1269" width="0.0546%" height="15" fill="rgb(209,161,10)" fg:x="28603" fg:w="26"/><text x="60.3189%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (25 samples, 0.05%)</title><rect x="60.0710%" y="1253" width="0.0525%" height="15" fill="rgb(217,6,38)" fg:x="28604" fg:w="25"/><text x="60.3210%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_allocate_outlined (12 samples, 0.03%)</title><rect x="60.0983%" y="1237" width="0.0252%" height="15" fill="rgb(229,229,48)" fg:x="28617" fg:w="12"/><text x="60.3483%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (7 samples, 0.01%)</title><rect x="60.1235%" y="1285" width="0.0147%" height="15" fill="rgb(225,21,28)" fg:x="28629" fg:w="7"/><text x="60.3735%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="60.2537%" y="1269" width="0.0105%" height="15" fill="rgb(206,33,13)" fg:x="28691" fg:w="5"/><text x="60.5037%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (12 samples, 0.03%)</title><rect x="60.2642%" y="1269" width="0.0252%" height="15" fill="rgb(242,178,17)" fg:x="28696" fg:w="12"/><text x="60.5142%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (11 samples, 0.02%)</title><rect x="60.2894%" y="1269" width="0.0231%" height="15" fill="rgb(220,162,5)" fg:x="28708" fg:w="11"/><text x="60.5394%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (23 samples, 0.05%)</title><rect x="60.3125%" y="1269" width="0.0483%" height="15" fill="rgb(210,33,43)" fg:x="28719" fg:w="23"/><text x="60.5625%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (14 samples, 0.03%)</title><rect x="60.3314%" y="1253" width="0.0294%" height="15" fill="rgb(216,116,54)" fg:x="28728" fg:w="14"/><text x="60.5814%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (23 samples, 0.05%)</title><rect x="60.3797%" y="1253" width="0.0483%" height="15" fill="rgb(249,92,24)" fg:x="28751" fg:w="23"/><text x="60.6297%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (7 samples, 0.01%)</title><rect x="60.4133%" y="1237" width="0.0147%" height="15" fill="rgb(231,189,14)" fg:x="28767" fg:w="7"/><text x="60.6633%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (37 samples, 0.08%)</title><rect x="60.3608%" y="1269" width="0.0777%" height="15" fill="rgb(230,8,41)" fg:x="28742" fg:w="37"/><text x="60.6108%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (231 samples, 0.49%)</title><rect x="59.9618%" y="1301" width="0.4851%" height="15" fill="rgb(249,7,27)" fg:x="28552" fg:w="231"/><text x="60.2118%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (147 samples, 0.31%)</title><rect x="60.1382%" y="1285" width="0.3087%" height="15" fill="rgb(232,86,5)" fg:x="28636" fg:w="147"/><text x="60.3882%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (6 samples, 0.01%)</title><rect x="60.4763%" y="1285" width="0.0126%" height="15" fill="rgb(224,175,18)" fg:x="28797" fg:w="6"/><text x="60.7263%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (8 samples, 0.02%)</title><rect x="60.5624%" y="1269" width="0.0168%" height="15" fill="rgb(220,129,12)" fg:x="28838" fg:w="8"/><text x="60.8124%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (9 samples, 0.02%)</title><rect x="60.6023%" y="1253" width="0.0189%" height="15" fill="rgb(210,19,36)" fg:x="28857" fg:w="9"/><text x="60.8523%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (13 samples, 0.03%)</title><rect x="60.6212%" y="1253" width="0.0273%" height="15" fill="rgb(219,96,14)" fg:x="28866" fg:w="13"/><text x="60.8712%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (9 samples, 0.02%)</title><rect x="60.6296%" y="1237" width="0.0189%" height="15" fill="rgb(249,106,1)" fg:x="28870" fg:w="9"/><text x="60.8796%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_table_alias (100 samples, 0.21%)</title><rect x="60.4532%" y="1301" width="0.2100%" height="15" fill="rgb(249,155,20)" fg:x="28786" fg:w="100"/><text x="60.7032%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_optional_alias (82 samples, 0.17%)</title><rect x="60.4910%" y="1285" width="0.1722%" height="15" fill="rgb(244,168,9)" fg:x="28804" fg:w="82"/><text x="60.7410%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (37 samples, 0.08%)</title><rect x="60.5855%" y="1269" width="0.0777%" height="15" fill="rgb(216,23,50)" fg:x="28849" fg:w="37"/><text x="60.8355%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (7 samples, 0.01%)</title><rect x="60.6905%" y="1269" width="0.0147%" height="15" fill="rgb(224,219,20)" fg:x="28899" fg:w="7"/><text x="60.9405%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (15 samples, 0.03%)</title><rect x="60.7094%" y="1269" width="0.0315%" height="15" fill="rgb(222,156,15)" fg:x="28908" fg:w="15"/><text x="60.9594%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (9 samples, 0.02%)</title><rect x="60.7220%" y="1253" width="0.0189%" height="15" fill="rgb(231,97,17)" fg:x="28914" fg:w="9"/><text x="60.9720%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (40 samples, 0.08%)</title><rect x="60.6674%" y="1301" width="0.0840%" height="15" fill="rgb(218,70,48)" fg:x="28888" fg:w="40"/><text x="60.9174%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (33 samples, 0.07%)</title><rect x="60.6821%" y="1285" width="0.0693%" height="15" fill="rgb(212,196,52)" fg:x="28895" fg:w="33"/><text x="60.9321%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (15 samples, 0.03%)</title><rect x="61.0076%" y="1269" width="0.0315%" height="15" fill="rgb(243,203,18)" fg:x="29050" fg:w="15"/><text x="61.2576%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (15 samples, 0.03%)</title><rect x="61.0391%" y="1269" width="0.0315%" height="15" fill="rgb(252,125,41)" fg:x="29065" fg:w="15"/><text x="61.2891%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (19 samples, 0.04%)</title><rect x="61.0706%" y="1269" width="0.0399%" height="15" fill="rgb(223,180,33)" fg:x="29080" fg:w="19"/><text x="61.3206%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (12 samples, 0.03%)</title><rect x="61.0853%" y="1253" width="0.0252%" height="15" fill="rgb(254,159,46)" fg:x="29087" fg:w="12"/><text x="61.3353%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_table_factor (701 samples, 1.47%)</title><rect x="59.6510%" y="1317" width="1.4722%" height="15" fill="rgb(254,38,10)" fg:x="28404" fg:w="701"/><text x="59.9010%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_tokens (177 samples, 0.37%)</title><rect x="60.7514%" y="1301" width="0.3717%" height="15" fill="rgb(208,217,32)" fg:x="28928" fg:w="177"/><text x="61.0014%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (65 samples, 0.14%)</title><rect x="60.9866%" y="1285" width="0.1365%" height="15" fill="rgb(221,120,13)" fg:x="29040" fg:w="65"/><text x="61.2366%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_table_version (5 samples, 0.01%)</title><rect x="61.1231%" y="1317" width="0.0105%" height="15" fill="rgb(246,54,52)" fg:x="29105" fg:w="5"/><text x="61.3731%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_table_and_joins (991 samples, 2.08%)</title><rect x="59.0566%" y="1333" width="2.0812%" height="15" fill="rgb(242,34,25)" fg:x="28121" fg:w="991"/><text x="59.3066%" y="1343.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_comma_separated_with_trailing_commas (2,665 samples, 5.60%)</title><rect x="55.5663%" y="1349" width="5.5967%" height="15" fill="rgb(247,209,9)" fg:x="26459" fg:w="2665"/><text x="55.8163%" y="1359.50">sqlpars..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_infix (6 samples, 0.01%)</title><rect x="61.1630%" y="1349" width="0.0126%" height="15" fill="rgb(228,71,26)" fg:x="29124" fg:w="6"/><text x="61.4130%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (13 samples, 0.03%)</title><rect x="61.2617%" y="1333" width="0.0273%" height="15" fill="rgb(222,145,49)" fg:x="29171" fg:w="13"/><text x="61.5117%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (85 samples, 0.18%)</title><rect x="61.3079%" y="1333" width="0.1785%" height="15" fill="rgb(218,121,17)" fg:x="29193" fg:w="85"/><text x="61.5579%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (6 samples, 0.01%)</title><rect x="61.4990%" y="1333" width="0.0126%" height="15" fill="rgb(244,50,7)" fg:x="29284" fg:w="6"/><text x="61.7490%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_alloc (5 samples, 0.01%)</title><rect x="61.5116%" y="1333" width="0.0105%" height="15" fill="rgb(246,229,37)" fg:x="29290" fg:w="5"/><text x="61.7616%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (8 samples, 0.02%)</title><rect x="61.5242%" y="1333" width="0.0168%" height="15" fill="rgb(225,18,5)" fg:x="29296" fg:w="8"/><text x="61.7742%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (8 samples, 0.02%)</title><rect x="61.5494%" y="1317" width="0.0168%" height="15" fill="rgb(213,204,8)" fg:x="29308" fg:w="8"/><text x="61.7994%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (32 samples, 0.07%)</title><rect x="61.5410%" y="1333" width="0.0672%" height="15" fill="rgb(238,103,6)" fg:x="29304" fg:w="32"/><text x="61.7910%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (19 samples, 0.04%)</title><rect x="61.5683%" y="1317" width="0.0399%" height="15" fill="rgb(222,25,35)" fg:x="29317" fg:w="19"/><text x="61.8183%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (14 samples, 0.03%)</title><rect x="61.5788%" y="1301" width="0.0294%" height="15" fill="rgb(213,203,35)" fg:x="29322" fg:w="14"/><text x="61.8288%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`rack_get_thread_index (8 samples, 0.02%)</title><rect x="61.6986%" y="1301" width="0.0168%" height="15" fill="rgb(221,79,53)" fg:x="29379" fg:w="8"/><text x="61.9486%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (8 samples, 0.02%)</title><rect x="61.7154%" y="1301" width="0.0168%" height="15" fill="rgb(243,200,35)" fg:x="29387" fg:w="8"/><text x="61.9654%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (11 samples, 0.02%)</title><rect x="61.7679%" y="1285" width="0.0231%" height="15" fill="rgb(248,60,25)" fg:x="29412" fg:w="11"/><text x="62.0179%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_tiny_check_and_zero_inline_meta_from_freelist (5 samples, 0.01%)</title><rect x="61.8813%" y="1269" width="0.0105%" height="15" fill="rgb(227,53,46)" fg:x="29466" fg:w="5"/><text x="62.1313%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (114 samples, 0.24%)</title><rect x="61.6629%" y="1317" width="0.2394%" height="15" fill="rgb(216,120,32)" fg:x="29362" fg:w="114"/><text x="61.9129%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_should_clear (81 samples, 0.17%)</title><rect x="61.7322%" y="1301" width="0.1701%" height="15" fill="rgb(220,134,1)" fg:x="29395" fg:w="81"/><text x="61.9822%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (53 samples, 0.11%)</title><rect x="61.7910%" y="1285" width="0.1113%" height="15" fill="rgb(237,168,5)" fg:x="29423" fg:w="53"/><text x="62.0410%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (5 samples, 0.01%)</title><rect x="61.8918%" y="1269" width="0.0105%" height="15" fill="rgb(231,100,33)" fg:x="29471" fg:w="5"/><text x="62.1418%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (23 samples, 0.05%)</title><rect x="61.9065%" y="1317" width="0.0483%" height="15" fill="rgb(236,177,47)" fg:x="29478" fg:w="23"/><text x="62.1565%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_free (7 samples, 0.01%)</title><rect x="62.0199%" y="1301" width="0.0147%" height="15" fill="rgb(235,7,49)" fg:x="29532" fg:w="7"/><text x="62.2699%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (6 samples, 0.01%)</title><rect x="62.0346%" y="1301" width="0.0126%" height="15" fill="rgb(232,119,22)" fg:x="29539" fg:w="6"/><text x="62.2846%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="62.0472%" y="1301" width="0.0126%" height="15" fill="rgb(254,73,53)" fg:x="29545" fg:w="6"/><text x="62.2972%" y="1311.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (62 samples, 0.13%)</title><rect x="62.0703%" y="1301" width="0.1302%" height="15" fill="rgb(251,35,20)" fg:x="29556" fg:w="62"/><text x="62.3203%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (7 samples, 0.01%)</title><rect x="62.2110%" y="1301" width="0.0147%" height="15" fill="rgb(241,119,20)" fg:x="29623" fg:w="7"/><text x="62.4610%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::tokenizer::Token&gt; (12 samples, 0.03%)</title><rect x="62.2341%" y="1301" width="0.0252%" height="15" fill="rgb(207,102,14)" fg:x="29634" fg:w="12"/><text x="62.4841%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (30 samples, 0.06%)</title><rect x="62.2593%" y="1301" width="0.0630%" height="15" fill="rgb(248,201,50)" fg:x="29646" fg:w="30"/><text x="62.5093%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (20 samples, 0.04%)</title><rect x="62.2803%" y="1285" width="0.0420%" height="15" fill="rgb(222,185,44)" fg:x="29656" fg:w="20"/><text x="62.5303%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (12 samples, 0.03%)</title><rect x="62.2971%" y="1269" width="0.0252%" height="15" fill="rgb(218,107,18)" fg:x="29664" fg:w="12"/><text x="62.5471%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (8 samples, 0.02%)</title><rect x="62.3475%" y="1253" width="0.0168%" height="15" fill="rgb(237,177,39)" fg:x="29688" fg:w="8"/><text x="62.5975%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (37 samples, 0.08%)</title><rect x="62.3391%" y="1285" width="0.0777%" height="15" fill="rgb(246,69,6)" fg:x="29684" fg:w="37"/><text x="62.5891%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_should_clear (36 samples, 0.08%)</title><rect x="62.3412%" y="1269" width="0.0756%" height="15" fill="rgb(234,208,37)" fg:x="29685" fg:w="36"/><text x="62.5912%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (25 samples, 0.05%)</title><rect x="62.3643%" y="1253" width="0.0525%" height="15" fill="rgb(225,4,6)" fg:x="29696" fg:w="25"/><text x="62.6143%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_free (7 samples, 0.01%)</title><rect x="62.4441%" y="1269" width="0.0147%" height="15" fill="rgb(233,45,0)" fg:x="29734" fg:w="7"/><text x="62.6941%" y="1279.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (19 samples, 0.04%)</title><rect x="62.4630%" y="1269" width="0.0399%" height="15" fill="rgb(226,136,5)" fg:x="29743" fg:w="19"/><text x="62.7130%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="62.5134%" y="1253" width="0.0147%" height="15" fill="rgb(211,91,47)" fg:x="29767" fg:w="7"/><text x="62.7634%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::dialect::Dialect::get_next_precedence_default (25 samples, 0.05%)</title><rect x="62.5113%" y="1269" width="0.0525%" height="15" fill="rgb(242,88,51)" fg:x="29766" fg:w="25"/><text x="62.7613%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::peek_token (17 samples, 0.04%)</title><rect x="62.5281%" y="1253" width="0.0357%" height="15" fill="rgb(230,91,28)" fg:x="29774" fg:w="17"/><text x="62.7781%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (13 samples, 0.03%)</title><rect x="62.5365%" y="1237" width="0.0273%" height="15" fill="rgb(254,186,29)" fg:x="29778" fg:w="13"/><text x="62.7865%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="62.6184%" y="1253" width="0.0126%" height="15" fill="rgb(238,6,4)" fg:x="29817" fg:w="6"/><text x="62.8684%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="62.6688%" y="1221" width="0.0105%" height="15" fill="rgb(221,151,16)" fg:x="29841" fg:w="5"/><text x="62.9188%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (5 samples, 0.01%)</title><rect x="62.6856%" y="1221" width="0.0105%" height="15" fill="rgb(251,143,52)" fg:x="29849" fg:w="5"/><text x="62.9356%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (12 samples, 0.03%)</title><rect x="62.7507%" y="1189" width="0.0252%" height="15" fill="rgb(206,90,15)" fg:x="29880" fg:w="12"/><text x="63.0007%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (11 samples, 0.02%)</title><rect x="62.7780%" y="1173" width="0.0231%" height="15" fill="rgb(218,35,8)" fg:x="29893" fg:w="11"/><text x="63.0280%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (6 samples, 0.01%)</title><rect x="62.7885%" y="1157" width="0.0126%" height="15" fill="rgb(239,215,6)" fg:x="29898" fg:w="6"/><text x="63.0385%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="62.7906%" y="1141" width="0.0105%" height="15" fill="rgb(245,116,39)" fg:x="29899" fg:w="5"/><text x="63.0406%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (13 samples, 0.03%)</title><rect x="62.7759%" y="1189" width="0.0273%" height="15" fill="rgb(242,65,28)" fg:x="29892" fg:w="13"/><text x="63.0259%" y="1199.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="62.8200%" y="1157" width="0.0126%" height="15" fill="rgb(252,132,53)" fg:x="29913" fg:w="6"/><text x="63.0700%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (9 samples, 0.02%)</title><rect x="62.8620%" y="1077" width="0.0189%" height="15" fill="rgb(224,159,50)" fg:x="29933" fg:w="9"/><text x="63.1120%" y="1087.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (18 samples, 0.04%)</title><rect x="62.8473%" y="1093" width="0.0378%" height="15" fill="rgb(224,93,4)" fg:x="29926" fg:w="18"/><text x="63.0973%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (20 samples, 0.04%)</title><rect x="62.8452%" y="1109" width="0.0420%" height="15" fill="rgb(208,81,34)" fg:x="29925" fg:w="20"/><text x="63.0952%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (28 samples, 0.06%)</title><rect x="62.8326%" y="1157" width="0.0588%" height="15" fill="rgb(233,92,54)" fg:x="29919" fg:w="28"/><text x="63.0826%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (24 samples, 0.05%)</title><rect x="62.8410%" y="1141" width="0.0504%" height="15" fill="rgb(237,21,14)" fg:x="29923" fg:w="24"/><text x="63.0910%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (22 samples, 0.05%)</title><rect x="62.8452%" y="1125" width="0.0462%" height="15" fill="rgb(249,128,51)" fg:x="29925" fg:w="22"/><text x="63.0952%" y="1135.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="62.9103%" y="1141" width="0.0105%" height="15" fill="rgb(223,129,24)" fg:x="29956" fg:w="5"/><text x="63.1603%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (57 samples, 0.12%)</title><rect x="62.8032%" y="1189" width="0.1197%" height="15" fill="rgb(231,168,25)" fg:x="29905" fg:w="57"/><text x="63.0532%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (55 samples, 0.12%)</title><rect x="62.8074%" y="1173" width="0.1155%" height="15" fill="rgb(224,39,20)" fg:x="29907" fg:w="55"/><text x="63.0574%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (11 samples, 0.02%)</title><rect x="62.8998%" y="1157" width="0.0231%" height="15" fill="rgb(225,152,53)" fg:x="29951" fg:w="11"/><text x="63.1498%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (5 samples, 0.01%)</title><rect x="62.9271%" y="1173" width="0.0105%" height="15" fill="rgb(252,17,24)" fg:x="29964" fg:w="5"/><text x="63.1771%" y="1183.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="62.9502%" y="1157" width="0.0126%" height="15" fill="rgb(250,114,30)" fg:x="29975" fg:w="6"/><text x="63.2002%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::fmt::Display&gt;::fmt (20 samples, 0.04%)</title><rect x="62.9229%" y="1189" width="0.0420%" height="15" fill="rgb(229,5,4)" fg:x="29962" fg:w="20"/><text x="63.1729%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (13 samples, 0.03%)</title><rect x="62.9376%" y="1173" width="0.0273%" height="15" fill="rgb(225,176,49)" fg:x="29969" fg:w="13"/><text x="63.1876%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (157 samples, 0.33%)</title><rect x="62.6541%" y="1253" width="0.3297%" height="15" fill="rgb(224,221,49)" fg:x="29834" fg:w="157"/><text x="62.9041%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (155 samples, 0.33%)</title><rect x="62.6583%" y="1237" width="0.3255%" height="15" fill="rgb(253,169,27)" fg:x="29836" fg:w="155"/><text x="62.9083%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (136 samples, 0.29%)</title><rect x="62.6982%" y="1221" width="0.2856%" height="15" fill="rgb(211,206,16)" fg:x="29855" fg:w="136"/><text x="62.9482%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (121 samples, 0.25%)</title><rect x="62.7297%" y="1205" width="0.2541%" height="15" fill="rgb(244,87,35)" fg:x="29870" fg:w="121"/><text x="62.9797%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="63.0216%" y="1221" width="0.0105%" height="15" fill="rgb(246,28,10)" fg:x="30009" fg:w="5"/><text x="63.2716%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (223 samples, 0.47%)</title><rect x="62.5701%" y="1269" width="0.4683%" height="15" fill="rgb(229,12,44)" fg:x="29794" fg:w="223"/><text x="62.8201%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_value (26 samples, 0.05%)</title><rect x="62.9838%" y="1253" width="0.0546%" height="15" fill="rgb(210,145,37)" fg:x="29991" fg:w="26"/><text x="63.2338%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (9 samples, 0.02%)</title><rect x="63.0195%" y="1237" width="0.0189%" height="15" fill="rgb(227,112,52)" fg:x="30008" fg:w="9"/><text x="63.2695%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_infix (338 samples, 0.71%)</title><rect x="62.3307%" y="1301" width="0.7098%" height="15" fill="rgb(238,155,34)" fg:x="29680" fg:w="338"/><text x="62.5807%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (291 samples, 0.61%)</title><rect x="62.4294%" y="1285" width="0.6111%" height="15" fill="rgb(239,226,36)" fg:x="29727" fg:w="291"/><text x="62.6794%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (7 samples, 0.01%)</title><rect x="63.0405%" y="1301" width="0.0147%" height="15" fill="rgb(230,16,23)" fg:x="30018" fg:w="7"/><text x="63.2905%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (6 samples, 0.01%)</title><rect x="63.1413%" y="1285" width="0.0126%" height="15" fill="rgb(236,171,36)" fg:x="30066" fg:w="6"/><text x="63.3913%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (24 samples, 0.05%)</title><rect x="63.1539%" y="1285" width="0.0504%" height="15" fill="rgb(221,22,14)" fg:x="30072" fg:w="24"/><text x="63.4039%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="63.2043%" y="1285" width="0.0168%" height="15" fill="rgb(242,43,11)" fg:x="30096" fg:w="8"/><text x="63.4543%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (8 samples, 0.02%)</title><rect x="63.2211%" y="1285" width="0.0168%" height="15" fill="rgb(232,69,23)" fg:x="30104" fg:w="8"/><text x="63.4711%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="63.2862%" y="1221" width="0.0147%" height="15" fill="rgb(216,180,54)" fg:x="30135" fg:w="7"/><text x="63.5362%" y="1231.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_pointer_size (5 samples, 0.01%)</title><rect x="63.3408%" y="1141" width="0.0105%" height="15" fill="rgb(216,5,24)" fg:x="30161" fg:w="5"/><text x="63.5908%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (10 samples, 0.02%)</title><rect x="63.3555%" y="1125" width="0.0210%" height="15" fill="rgb(225,89,9)" fg:x="30168" fg:w="10"/><text x="63.6055%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (18 samples, 0.04%)</title><rect x="63.3513%" y="1141" width="0.0378%" height="15" fill="rgb(243,75,33)" fg:x="30166" fg:w="18"/><text x="63.6013%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (38 samples, 0.08%)</title><rect x="63.3240%" y="1157" width="0.0798%" height="15" fill="rgb(247,141,45)" fg:x="30153" fg:w="38"/><text x="63.5740%" y="1167.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="63.3891%" y="1141" width="0.0147%" height="15" fill="rgb(232,177,36)" fg:x="30184" fg:w="7"/><text x="63.6391%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (42 samples, 0.09%)</title><rect x="63.3198%" y="1173" width="0.0882%" height="15" fill="rgb(219,125,36)" fg:x="30151" fg:w="42"/><text x="63.5698%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (52 samples, 0.11%)</title><rect x="63.3051%" y="1205" width="0.1092%" height="15" fill="rgb(227,94,9)" fg:x="30144" fg:w="52"/><text x="63.5551%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (47 samples, 0.10%)</title><rect x="63.3156%" y="1189" width="0.0987%" height="15" fill="rgb(240,34,52)" fg:x="30149" fg:w="47"/><text x="63.5656%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (55 samples, 0.12%)</title><rect x="63.3009%" y="1221" width="0.1155%" height="15" fill="rgb(216,45,12)" fg:x="30142" fg:w="55"/><text x="63.5509%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="63.4311%" y="1205" width="0.0105%" height="15" fill="rgb(246,21,19)" fg:x="30204" fg:w="5"/><text x="63.6811%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (85 samples, 0.18%)</title><rect x="63.2757%" y="1253" width="0.1785%" height="15" fill="rgb(213,98,42)" fg:x="30130" fg:w="85"/><text x="63.5257%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (84 samples, 0.18%)</title><rect x="63.2778%" y="1237" width="0.1764%" height="15" fill="rgb(250,136,47)" fg:x="30131" fg:w="84"/><text x="63.5278%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (15 samples, 0.03%)</title><rect x="63.4227%" y="1221" width="0.0315%" height="15" fill="rgb(251,124,27)" fg:x="30200" fg:w="15"/><text x="63.6727%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (96 samples, 0.20%)</title><rect x="63.2568%" y="1285" width="0.2016%" height="15" fill="rgb(229,180,14)" fg:x="30121" fg:w="96"/><text x="63.5068%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (89 samples, 0.19%)</title><rect x="63.2715%" y="1269" width="0.1869%" height="15" fill="rgb(245,216,25)" fg:x="30128" fg:w="89"/><text x="63.5215%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="63.4647%" y="1269" width="0.0126%" height="15" fill="rgb(251,43,5)" fg:x="30220" fg:w="6"/><text x="63.7147%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::data_type::DataType&gt; (11 samples, 0.02%)</title><rect x="63.4584%" y="1285" width="0.0231%" height="15" fill="rgb(250,128,24)" fg:x="30217" fg:w="11"/><text x="63.7084%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (5 samples, 0.01%)</title><rect x="63.5508%" y="1253" width="0.0105%" height="15" fill="rgb(217,117,27)" fg:x="30261" fg:w="5"/><text x="63.8008%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (5 samples, 0.01%)</title><rect x="63.6453%" y="1237" width="0.0105%" height="15" fill="rgb(245,147,4)" fg:x="30306" fg:w="5"/><text x="63.8953%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (17 samples, 0.04%)</title><rect x="63.6894%" y="1221" width="0.0357%" height="15" fill="rgb(242,201,35)" fg:x="30327" fg:w="17"/><text x="63.9394%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (7 samples, 0.01%)</title><rect x="63.7398%" y="1205" width="0.0147%" height="15" fill="rgb(218,181,1)" fg:x="30351" fg:w="7"/><text x="63.9898%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (15 samples, 0.03%)</title><rect x="63.7251%" y="1221" width="0.0315%" height="15" fill="rgb(222,6,29)" fg:x="30344" fg:w="15"/><text x="63.9751%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="63.7734%" y="1189" width="0.0105%" height="15" fill="rgb(208,186,3)" fg:x="30367" fg:w="5"/><text x="64.0234%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_pointer_size (7 samples, 0.01%)</title><rect x="63.8448%" y="1109" width="0.0147%" height="15" fill="rgb(216,36,26)" fg:x="30401" fg:w="7"/><text x="64.0948%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="63.8658%" y="1093" width="0.0189%" height="15" fill="rgb(248,201,23)" fg:x="30411" fg:w="9"/><text x="64.1158%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (5 samples, 0.01%)</title><rect x="63.8847%" y="1093" width="0.0105%" height="15" fill="rgb(251,170,31)" fg:x="30420" fg:w="5"/><text x="64.1347%" y="1103.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (21 samples, 0.04%)</title><rect x="63.8595%" y="1109" width="0.0441%" height="15" fill="rgb(207,110,25)" fg:x="30408" fg:w="21"/><text x="64.1095%" y="1119.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (46 samples, 0.10%)</title><rect x="63.8196%" y="1141" width="0.0966%" height="15" fill="rgb(250,54,15)" fg:x="30389" fg:w="46"/><text x="64.0696%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (39 samples, 0.08%)</title><rect x="63.8343%" y="1125" width="0.0819%" height="15" fill="rgb(227,68,33)" fg:x="30396" fg:w="39"/><text x="64.0843%" y="1135.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="63.9036%" y="1109" width="0.0126%" height="15" fill="rgb(238,34,41)" fg:x="30429" fg:w="6"/><text x="64.1536%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (63 samples, 0.13%)</title><rect x="63.8007%" y="1173" width="0.1323%" height="15" fill="rgb(220,11,15)" fg:x="30380" fg:w="63"/><text x="64.0507%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (57 samples, 0.12%)</title><rect x="63.8133%" y="1157" width="0.1197%" height="15" fill="rgb(246,111,35)" fg:x="30386" fg:w="57"/><text x="64.0633%" y="1167.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_size (8 samples, 0.02%)</title><rect x="63.9162%" y="1141" width="0.0168%" height="15" fill="rgb(209,88,53)" fg:x="30435" fg:w="8"/><text x="64.1662%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (73 samples, 0.15%)</title><rect x="63.7839%" y="1189" width="0.1533%" height="15" fill="rgb(231,185,47)" fg:x="30372" fg:w="73"/><text x="64.0339%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad_integral (6 samples, 0.01%)</title><rect x="63.9414%" y="1189" width="0.0126%" height="15" fill="rgb(233,154,1)" fg:x="30447" fg:w="6"/><text x="64.1914%" y="1199.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="63.9646%" y="1173" width="0.0105%" height="15" fill="rgb(225,15,46)" fg:x="30458" fg:w="5"/><text x="64.2146%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (5 samples, 0.01%)</title><rect x="63.9751%" y="1173" width="0.0105%" height="15" fill="rgb(211,135,41)" fg:x="30463" fg:w="5"/><text x="64.2251%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad_integral::write_prefix (8 samples, 0.02%)</title><rect x="63.9919%" y="1173" width="0.0168%" height="15" fill="rgb(208,54,0)" fg:x="30471" fg:w="8"/><text x="64.2419%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (121 samples, 0.25%)</title><rect x="63.7566%" y="1221" width="0.2541%" height="15" fill="rgb(244,136,14)" fg:x="30359" fg:w="121"/><text x="64.0066%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (120 samples, 0.25%)</title><rect x="63.7587%" y="1205" width="0.2520%" height="15" fill="rgb(241,56,14)" fg:x="30360" fg:w="120"/><text x="64.0087%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (27 samples, 0.06%)</title><rect x="63.9541%" y="1189" width="0.0567%" height="15" fill="rgb(205,80,24)" fg:x="30453" fg:w="27"/><text x="64.2041%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (5 samples, 0.01%)</title><rect x="64.0171%" y="1205" width="0.0105%" height="15" fill="rgb(220,57,4)" fg:x="30483" fg:w="5"/><text x="64.2671%" y="1215.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="64.0591%" y="1189" width="0.0147%" height="15" fill="rgb(226,193,50)" fg:x="30503" fg:w="7"/><text x="64.3091%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::fmt::Display&gt;::fmt (33 samples, 0.07%)</title><rect x="64.0108%" y="1221" width="0.0693%" height="15" fill="rgb(231,168,22)" fg:x="30480" fg:w="33"/><text x="64.2608%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (17 samples, 0.04%)</title><rect x="64.0444%" y="1205" width="0.0357%" height="15" fill="rgb(254,215,14)" fg:x="30496" fg:w="17"/><text x="64.2944%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (5 samples, 0.01%)</title><rect x="64.0801%" y="1221" width="0.0105%" height="15" fill="rgb(211,115,16)" fg:x="30513" fg:w="5"/><text x="64.3301%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (260 samples, 0.55%)</title><rect x="63.5655%" y="1253" width="0.5460%" height="15" fill="rgb(236,210,16)" fg:x="30268" fg:w="260"/><text x="63.8155%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (214 samples, 0.45%)</title><rect x="63.6621%" y="1237" width="0.4494%" height="15" fill="rgb(221,94,12)" fg:x="30314" fg:w="214"/><text x="63.9121%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (6 samples, 0.01%)</title><rect x="64.1284%" y="1237" width="0.0126%" height="15" fill="rgb(235,218,49)" fg:x="30536" fg:w="6"/><text x="64.3784%" y="1247.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (6 samples, 0.01%)</title><rect x="64.1557%" y="1221" width="0.0126%" height="15" fill="rgb(217,114,14)" fg:x="30549" fg:w="6"/><text x="64.4057%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="64.1683%" y="1221" width="0.0147%" height="15" fill="rgb(216,145,22)" fg:x="30555" fg:w="7"/><text x="64.4183%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (8 samples, 0.02%)</title><rect x="64.1830%" y="1221" width="0.0168%" height="15" fill="rgb(217,112,39)" fg:x="30562" fg:w="8"/><text x="64.4330%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (6 samples, 0.01%)</title><rect x="64.2082%" y="1205" width="0.0126%" height="15" fill="rgb(225,85,32)" fg:x="30574" fg:w="6"/><text x="64.4582%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (5 samples, 0.01%)</title><rect x="64.2208%" y="1205" width="0.0105%" height="15" fill="rgb(245,209,47)" fg:x="30580" fg:w="5"/><text x="64.4708%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (17 samples, 0.04%)</title><rect x="64.1998%" y="1221" width="0.0357%" height="15" fill="rgb(218,220,15)" fg:x="30570" fg:w="17"/><text x="64.4498%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_object_name (63 samples, 0.13%)</title><rect x="64.1116%" y="1253" width="0.1323%" height="15" fill="rgb(222,202,31)" fg:x="30528" fg:w="63"/><text x="64.3616%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_identifier (49 samples, 0.10%)</title><rect x="64.1410%" y="1237" width="0.1029%" height="15" fill="rgb(243,203,4)" fg:x="30542" fg:w="49"/><text x="64.3910%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (352 samples, 0.74%)</title><rect x="63.5067%" y="1269" width="0.7392%" height="15" fill="rgb(237,92,17)" fg:x="30240" fg:w="352"/><text x="63.7567%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (365 samples, 0.77%)</title><rect x="63.4815%" y="1285" width="0.7665%" height="15" fill="rgb(231,119,7)" fg:x="30228" fg:w="365"/><text x="63.7315%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_expr_prefix_by_unreserved_word (11 samples, 0.02%)</title><rect x="64.2565%" y="1285" width="0.0231%" height="15" fill="rgb(237,82,41)" fg:x="30597" fg:w="11"/><text x="64.5065%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (10 samples, 0.02%)</title><rect x="64.2922%" y="1269" width="0.0210%" height="15" fill="rgb(226,81,48)" fg:x="30614" fg:w="10"/><text x="64.5422%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (7 samples, 0.01%)</title><rect x="64.3132%" y="1269" width="0.0147%" height="15" fill="rgb(234,70,51)" fg:x="30624" fg:w="7"/><text x="64.5632%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (6 samples, 0.01%)</title><rect x="64.3342%" y="1253" width="0.0126%" height="15" fill="rgb(251,86,4)" fg:x="30634" fg:w="6"/><text x="64.5842%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (5 samples, 0.01%)</title><rect x="64.3363%" y="1237" width="0.0105%" height="15" fill="rgb(244,144,28)" fg:x="30635" fg:w="5"/><text x="64.5863%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_value (33 samples, 0.07%)</title><rect x="64.2796%" y="1285" width="0.0693%" height="15" fill="rgb(232,161,39)" fg:x="30608" fg:w="33"/><text x="64.5296%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (9 samples, 0.02%)</title><rect x="64.3300%" y="1269" width="0.0189%" height="15" fill="rgb(247,34,51)" fg:x="30632" fg:w="9"/><text x="64.5800%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (622 samples, 1.31%)</title><rect x="63.0552%" y="1301" width="1.3063%" height="15" fill="rgb(225,132,2)" fg:x="30025" fg:w="622"/><text x="63.3052%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_infix (1,318 samples, 2.77%)</title><rect x="61.6082%" y="1333" width="2.7679%" height="15" fill="rgb(209,159,44)" fg:x="29336" fg:w="1318"/><text x="61.8582%" y="1343.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (1,147 samples, 2.41%)</title><rect x="61.9674%" y="1317" width="2.4088%" height="15" fill="rgb(251,214,1)" fg:x="29507" fg:w="1147"/><text x="62.2174%" y="1327.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_keyword (5 samples, 0.01%)</title><rect x="64.3762%" y="1333" width="0.0105%" height="15" fill="rgb(247,84,47)" fg:x="30654" fg:w="5"/><text x="64.6262%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="64.4413%" y="1317" width="0.0105%" height="15" fill="rgb(240,111,43)" fg:x="30685" fg:w="5"/><text x="64.6913%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (10 samples, 0.02%)</title><rect x="64.4518%" y="1317" width="0.0210%" height="15" fill="rgb(215,214,35)" fg:x="30690" fg:w="10"/><text x="64.7018%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`_free (7 samples, 0.01%)</title><rect x="64.4959%" y="1301" width="0.0147%" height="15" fill="rgb(248,207,23)" fg:x="30711" fg:w="7"/><text x="64.7459%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (9 samples, 0.02%)</title><rect x="64.5337%" y="1285" width="0.0189%" height="15" fill="rgb(214,186,4)" fg:x="30729" fg:w="9"/><text x="64.7837%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (5 samples, 0.01%)</title><rect x="64.5526%" y="1285" width="0.0105%" height="15" fill="rgb(220,133,22)" fg:x="30738" fg:w="5"/><text x="64.8026%" y="1295.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (23 samples, 0.05%)</title><rect x="64.6324%" y="1253" width="0.0483%" height="15" fill="rgb(239,134,19)" fg:x="30776" fg:w="23"/><text x="64.8824%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="64.6912%" y="1221" width="0.0105%" height="15" fill="rgb(250,140,9)" fg:x="30804" fg:w="5"/><text x="64.9412%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (13 samples, 0.03%)</title><rect x="64.6891%" y="1237" width="0.0273%" height="15" fill="rgb(225,59,14)" fg:x="30803" fg:w="13"/><text x="64.9391%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (20 samples, 0.04%)</title><rect x="64.6807%" y="1253" width="0.0420%" height="15" fill="rgb(214,152,51)" fg:x="30799" fg:w="20"/><text x="64.9307%" y="1263.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="64.7563%" y="1221" width="0.0168%" height="15" fill="rgb(251,227,43)" fg:x="30835" fg:w="8"/><text x="65.0063%" y="1231.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="64.8214%" y="1125" width="0.0105%" height="15" fill="rgb(241,96,17)" fg:x="30866" fg:w="5"/><text x="65.0714%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (7 samples, 0.01%)</title><rect x="64.8319%" y="1125" width="0.0147%" height="15" fill="rgb(234,198,43)" fg:x="30871" fg:w="7"/><text x="65.0819%" y="1135.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (21 samples, 0.04%)</title><rect x="64.8109%" y="1141" width="0.0441%" height="15" fill="rgb(220,108,29)" fg:x="30861" fg:w="21"/><text x="65.0609%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (34 samples, 0.07%)</title><rect x="64.8004%" y="1157" width="0.0714%" height="15" fill="rgb(226,163,33)" fg:x="30856" fg:w="34"/><text x="65.0504%" y="1167.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (8 samples, 0.02%)</title><rect x="64.8550%" y="1141" width="0.0168%" height="15" fill="rgb(205,194,45)" fg:x="30882" fg:w="8"/><text x="65.1050%" y="1151.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (39 samples, 0.08%)</title><rect x="64.7941%" y="1173" width="0.0819%" height="15" fill="rgb(206,143,44)" fg:x="30853" fg:w="39"/><text x="65.0441%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (58 samples, 0.12%)</title><rect x="64.7731%" y="1221" width="0.1218%" height="15" fill="rgb(236,136,36)" fg:x="30843" fg:w="58"/><text x="65.0231%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (52 samples, 0.11%)</title><rect x="64.7857%" y="1205" width="0.1092%" height="15" fill="rgb(249,172,42)" fg:x="30849" fg:w="52"/><text x="65.0357%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (48 samples, 0.10%)</title><rect x="64.7941%" y="1189" width="0.1008%" height="15" fill="rgb(216,139,23)" fg:x="30853" fg:w="48"/><text x="65.0441%" y="1199.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_size (9 samples, 0.02%)</title><rect x="64.8760%" y="1173" width="0.0189%" height="15" fill="rgb(207,166,20)" fg:x="30892" fg:w="9"/><text x="65.1260%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad_integral (14 samples, 0.03%)</title><rect x="64.9096%" y="1221" width="0.0294%" height="15" fill="rgb(210,209,22)" fg:x="30908" fg:w="14"/><text x="65.1596%" y="1231.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (7 samples, 0.01%)</title><rect x="64.9411%" y="1205" width="0.0147%" height="15" fill="rgb(232,118,20)" fg:x="30923" fg:w="7"/><text x="65.1911%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad_integral::write_prefix (8 samples, 0.02%)</title><rect x="64.9684%" y="1205" width="0.0168%" height="15" fill="rgb(238,113,42)" fg:x="30936" fg:w="8"/><text x="65.2184%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Location as core::fmt::Display&gt;::fmt (126 samples, 0.26%)</title><rect x="64.7227%" y="1253" width="0.2646%" height="15" fill="rgb(231,42,5)" fg:x="30819" fg:w="126"/><text x="64.9727%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (123 samples, 0.26%)</title><rect x="64.7290%" y="1237" width="0.2583%" height="15" fill="rgb(243,166,24)" fg:x="30822" fg:w="123"/><text x="64.9790%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::num::imp::_&lt;impl core::fmt::Display for u64&gt;::fmt (23 samples, 0.05%)</title><rect x="64.9390%" y="1221" width="0.0483%" height="15" fill="rgb(237,226,12)" fg:x="30922" fg:w="23"/><text x="65.1890%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (5 samples, 0.01%)</title><rect x="64.9999%" y="1237" width="0.0105%" height="15" fill="rgb(229,133,24)" fg:x="30951" fg:w="5"/><text x="65.2499%" y="1247.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="65.0314%" y="1221" width="0.0105%" height="15" fill="rgb(238,33,43)" fg:x="30966" fg:w="5"/><text x="65.2814%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::fmt::Display&gt;::fmt (31 samples, 0.07%)</title><rect x="64.9873%" y="1253" width="0.0651%" height="15" fill="rgb(227,59,38)" fg:x="30945" fg:w="31"/><text x="65.2373%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (17 samples, 0.04%)</title><rect x="65.0167%" y="1237" width="0.0357%" height="15" fill="rgb(230,97,0)" fg:x="30959" fg:w="17"/><text x="65.2667%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (5 samples, 0.01%)</title><rect x="65.0587%" y="1253" width="0.0105%" height="15" fill="rgb(250,173,50)" fg:x="30979" fg:w="5"/><text x="65.3087%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::fmt::format::format_inner (245 samples, 0.51%)</title><rect x="64.5652%" y="1285" width="0.5145%" height="15" fill="rgb(240,15,50)" fg:x="30744" fg:w="245"/><text x="64.8152%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (224 samples, 0.47%)</title><rect x="64.6093%" y="1269" width="0.4704%" height="15" fill="rgb(221,93,22)" fg:x="30765" fg:w="224"/><text x="64.8593%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type (281 samples, 0.59%)</title><rect x="64.4959%" y="1317" width="0.5901%" height="15" fill="rgb(245,180,53)" fg:x="30711" fg:w="281"/><text x="64.7459%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_data_type_helper (270 samples, 0.57%)</title><rect x="64.5190%" y="1301" width="0.5670%" height="15" fill="rgb(231,88,51)" fg:x="30722" fg:w="270"/><text x="64.7690%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="65.0965%" y="1301" width="0.0105%" height="15" fill="rgb(240,58,21)" fg:x="30997" fg:w="5"/><text x="65.3465%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (5 samples, 0.01%)</title><rect x="65.1175%" y="1285" width="0.0105%" height="15" fill="rgb(237,21,10)" fg:x="31007" fg:w="5"/><text x="65.3675%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_value (30 samples, 0.06%)</title><rect x="65.0881%" y="1317" width="0.0630%" height="15" fill="rgb(218,43,11)" fg:x="30993" fg:w="30"/><text x="65.3381%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::tokenizer::Token as core::clone::Clone&gt;::clone (16 samples, 0.03%)</title><rect x="65.1175%" y="1301" width="0.0336%" height="15" fill="rgb(218,221,29)" fg:x="31007" fg:w="16"/><text x="65.3675%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::clone::Clone&gt;::clone (9 samples, 0.02%)</title><rect x="65.1322%" y="1285" width="0.0189%" height="15" fill="rgb(214,118,42)" fg:x="31014" fg:w="9"/><text x="65.3822%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (6 samples, 0.01%)</title><rect x="65.1385%" y="1269" width="0.0126%" height="15" fill="rgb(251,200,26)" fg:x="31017" fg:w="6"/><text x="65.3885%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_prefix (365 samples, 0.77%)</title><rect x="64.3867%" y="1333" width="0.7665%" height="15" fill="rgb(237,101,39)" fg:x="30659" fg:w="365"/><text x="64.6367%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_subexpr (1,893 samples, 3.98%)</title><rect x="61.1945%" y="1349" width="3.9755%" height="15" fill="rgb(251,117,11)" fg:x="29139" fg:w="1893"/><text x="61.4445%" y="1359.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_query_body (5,198 samples, 10.92%)</title><rect x="54.2600%" y="1381" width="10.9163%" height="15" fill="rgb(216,223,23)" fg:x="25837" fg:w="5198"/><text x="54.5100%" y="1391.50">sqlparser_bench-..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_select (4,878 samples, 10.24%)</title><rect x="54.9321%" y="1365" width="10.2442%" height="15" fill="rgb(251,54,12)" fg:x="26157" fg:w="4878"/><text x="55.1821%" y="1375.50">sqlparser_bench..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_query (7,112 samples, 14.94%)</title><rect x="50.2468%" y="1397" width="14.9358%" height="15" fill="rgb(254,176,54)" fg:x="23926" fg:w="7112"/><text x="50.4968%" y="1407.50">sqlparser_bench-959bc52..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_statements (7,412 samples, 15.57%)</title><rect x="49.6272%" y="1429" width="15.5659%" height="15" fill="rgb(210,32,8)" fg:x="23631" fg:w="7412"/><text x="49.8772%" y="1439.50">sqlparser_bench-959bc526..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_statement (7,260 samples, 15.25%)</title><rect x="49.9464%" y="1413" width="15.2467%" height="15" fill="rgb(235,52,38)" fg:x="23783" fg:w="7260"/><text x="50.1964%" y="1423.50">sqlparser_bench-959bc52..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::next_token (136 samples, 0.29%)</title><rect x="65.2561%" y="1397" width="0.2856%" height="15" fill="rgb(231,4,44)" fg:x="31073" fg:w="136"/><text x="65.5061%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_identifier_or_keyword (26 samples, 0.05%)</title><rect x="65.5417%" y="1397" width="0.0546%" height="15" fill="rgb(249,2,32)" fg:x="31209" fg:w="26"/><text x="65.7917%" y="1407.50"></text></g><g><title>libsystem_malloc.dylib`_free (121 samples, 0.25%)</title><rect x="66.3608%" y="1381" width="0.2541%" height="15" fill="rgb(224,65,26)" fg:x="31599" fg:w="121"/><text x="66.6108%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (33 samples, 0.07%)</title><rect x="66.6149%" y="1381" width="0.0693%" height="15" fill="rgb(250,73,40)" fg:x="31720" fg:w="33"/><text x="66.8649%" y="1391.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (5 samples, 0.01%)</title><rect x="66.6842%" y="1381" width="0.0105%" height="15" fill="rgb(253,177,16)" fg:x="31753" fg:w="5"/><text x="66.9342%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::iter::traits::collect::FromIterator&lt;char&gt;&gt;::from_iter (18 samples, 0.04%)</title><rect x="66.6989%" y="1381" width="0.0378%" height="15" fill="rgb(217,32,34)" fg:x="31760" fg:w="18"/><text x="66.9489%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::dialect::generic::GenericDialect as sqlparser::dialect::Dialect&gt;::is_delimited_identifier_start (10 samples, 0.02%)</title><rect x="66.7367%" y="1381" width="0.0210%" height="15" fill="rgb(212,7,10)" fg:x="31778" fg:w="10"/><text x="66.9867%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::dialect::mssql::MsSqlDialect as sqlparser::dialect::Dialect&gt;::is_identifier_start (7 samples, 0.01%)</title><rect x="66.7577%" y="1381" width="0.0147%" height="15" fill="rgb(245,89,8)" fg:x="31788" fg:w="7"/><text x="67.0077%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (15 samples, 0.03%)</title><rect x="66.7724%" y="1381" width="0.0315%" height="15" fill="rgb(237,16,53)" fg:x="31795" fg:w="15"/><text x="67.0224%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (6 samples, 0.01%)</title><rect x="66.8039%" y="1381" width="0.0126%" height="15" fill="rgb(250,204,30)" fg:x="31810" fg:w="6"/><text x="67.0539%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_dealloc (5 samples, 0.01%)</title><rect x="66.8165%" y="1381" width="0.0105%" height="15" fill="rgb(208,77,27)" fg:x="31816" fg:w="5"/><text x="67.0665%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (11 samples, 0.02%)</title><rect x="66.8816%" y="1365" width="0.0231%" height="15" fill="rgb(250,204,28)" fg:x="31847" fg:w="11"/><text x="67.1316%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (5 samples, 0.01%)</title><rect x="67.0643%" y="1301" width="0.0105%" height="15" fill="rgb(244,63,21)" fg:x="31934" fg:w="5"/><text x="67.3143%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`free_medium (5 samples, 0.01%)</title><rect x="67.0748%" y="1301" width="0.0105%" height="15" fill="rgb(236,85,44)" fg:x="31939" fg:w="5"/><text x="67.3248%" y="1311.50"></text></g><g><title>libsystem_kernel.dylib`madvise (5 samples, 0.01%)</title><rect x="67.0748%" y="1285" width="0.0105%" height="15" fill="rgb(215,98,4)" fg:x="31939" fg:w="5"/><text x="67.3248%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (5 samples, 0.01%)</title><rect x="67.1336%" y="1269" width="0.0105%" height="15" fill="rgb(235,38,11)" fg:x="31967" fg:w="5"/><text x="67.3836%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (33 samples, 0.07%)</title><rect x="67.0916%" y="1301" width="0.0693%" height="15" fill="rgb(254,186,25)" fg:x="31947" fg:w="33"/><text x="67.3416%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (27 samples, 0.06%)</title><rect x="67.1042%" y="1285" width="0.0567%" height="15" fill="rgb(225,55,31)" fg:x="31953" fg:w="27"/><text x="67.3542%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (8 samples, 0.02%)</title><rect x="67.1441%" y="1269" width="0.0168%" height="15" fill="rgb(211,15,21)" fg:x="31972" fg:w="8"/><text x="67.3941%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`small_try_realloc_in_place (12 samples, 0.03%)</title><rect x="67.1777%" y="1301" width="0.0252%" height="15" fill="rgb(215,187,41)" fg:x="31988" fg:w="12"/><text x="67.4277%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_add_ptr (5 samples, 0.01%)</title><rect x="67.2533%" y="1253" width="0.0105%" height="15" fill="rgb(248,69,32)" fg:x="32024" fg:w="5"/><text x="67.5033%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (38 samples, 0.08%)</title><rect x="67.2029%" y="1301" width="0.0798%" height="15" fill="rgb(252,102,52)" fg:x="32000" fg:w="38"/><text x="67.4529%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_should_clear (27 samples, 0.06%)</title><rect x="67.2260%" y="1285" width="0.0567%" height="15" fill="rgb(253,140,32)" fg:x="32011" fg:w="27"/><text x="67.4760%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`small_malloc_from_free_list (23 samples, 0.05%)</title><rect x="67.2344%" y="1269" width="0.0483%" height="15" fill="rgb(216,56,42)" fg:x="32015" fg:w="23"/><text x="67.4844%" y="1279.50"></text></g><g><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (8 samples, 0.02%)</title><rect x="67.2659%" y="1253" width="0.0168%" height="15" fill="rgb(216,184,14)" fg:x="32030" fg:w="8"/><text x="67.5159%" y="1263.50"></text></g><g><title>libsystem_malloc.dylib`szone_size (9 samples, 0.02%)</title><rect x="67.2827%" y="1301" width="0.0189%" height="15" fill="rgb(237,187,27)" fg:x="32038" fg:w="9"/><text x="67.5327%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`tiny_size (8 samples, 0.02%)</title><rect x="67.2848%" y="1285" width="0.0168%" height="15" fill="rgb(219,65,3)" fg:x="32039" fg:w="8"/><text x="67.5348%" y="1295.50"></text></g><g><title>libsystem_malloc.dylib`tiny_try_realloc_in_place (24 samples, 0.05%)</title><rect x="67.3058%" y="1301" width="0.0504%" height="15" fill="rgb(245,83,25)" fg:x="32049" fg:w="24"/><text x="67.5558%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`szone_realloc (166 samples, 0.35%)</title><rect x="67.0286%" y="1317" width="0.3486%" height="15" fill="rgb(214,205,45)" fg:x="31917" fg:w="166"/><text x="67.2786%" y="1327.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (10 samples, 0.02%)</title><rect x="67.3562%" y="1301" width="0.0210%" height="15" fill="rgb(241,20,18)" fg:x="32073" fg:w="10"/><text x="67.6062%" y="1311.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (223 samples, 0.47%)</title><rect x="66.9908%" y="1333" width="0.4683%" height="15" fill="rgb(232,163,23)" fg:x="31899" fg:w="223"/><text x="67.2408%" y="1343.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (36 samples, 0.08%)</title><rect x="67.3835%" y="1317" width="0.0756%" height="15" fill="rgb(214,5,46)" fg:x="32086" fg:w="36"/><text x="67.6335%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_realloc (6 samples, 0.01%)</title><rect x="67.4633%" y="1333" width="0.0126%" height="15" fill="rgb(229,78,17)" fg:x="32124" fg:w="6"/><text x="67.7133%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`szone_realloc (10 samples, 0.02%)</title><rect x="67.4780%" y="1333" width="0.0210%" height="15" fill="rgb(248,89,10)" fg:x="32131" fg:w="10"/><text x="67.7280%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (297 samples, 0.62%)</title><rect x="66.9467%" y="1349" width="0.6237%" height="15" fill="rgb(248,54,15)" fg:x="31878" fg:w="297"/><text x="67.1967%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`szone_size (34 samples, 0.07%)</title><rect x="67.4990%" y="1333" width="0.0714%" height="15" fill="rgb(223,116,6)" fg:x="32141" fg:w="34"/><text x="67.7490%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`tiny_size (33 samples, 0.07%)</title><rect x="67.5011%" y="1317" width="0.0693%" height="15" fill="rgb(205,125,38)" fg:x="32142" fg:w="33"/><text x="67.7511%" y="1327.50"></text></g><g><title>libsystem_malloc.dylib`szone_malloc_should_clear (39 samples, 0.08%)</title><rect x="67.5788%" y="1349" width="0.0819%" height="15" fill="rgb(251,78,38)" fg:x="32179" fg:w="39"/><text x="67.8288%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_should_clear (31 samples, 0.07%)</title><rect x="67.5956%" y="1333" width="0.0651%" height="15" fill="rgb(253,78,28)" fg:x="32187" fg:w="31"/><text x="67.8456%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (21 samples, 0.04%)</title><rect x="67.6166%" y="1317" width="0.0441%" height="15" fill="rgb(209,120,3)" fg:x="32197" fg:w="21"/><text x="67.8666%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (401 samples, 0.84%)</title><rect x="66.8270%" y="1381" width="0.8421%" height="15" fill="rgb(238,229,9)" fg:x="31821" fg:w="401"/><text x="67.0770%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (358 samples, 0.75%)</title><rect x="66.9173%" y="1365" width="0.7518%" height="15" fill="rgb(253,159,18)" fg:x="31864" fg:w="358"/><text x="67.1673%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::State::next (14 samples, 0.03%)</title><rect x="67.6859%" y="1381" width="0.0294%" height="15" fill="rgb(244,42,34)" fg:x="32230" fg:w="14"/><text x="67.9359%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::State::peek (27 samples, 0.06%)</title><rect x="67.7153%" y="1381" width="0.0567%" height="15" fill="rgb(224,8,7)" fg:x="32244" fg:w="27"/><text x="67.9653%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::consume_and_return (18 samples, 0.04%)</title><rect x="67.7741%" y="1381" width="0.0378%" height="15" fill="rgb(210,201,45)" fg:x="32272" fg:w="18"/><text x="68.0241%" y="1391.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (7 samples, 0.01%)</title><rect x="68.6646%" y="1365" width="0.0147%" height="15" fill="rgb(252,185,21)" fg:x="32696" fg:w="7"/><text x="68.9146%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (21 samples, 0.04%)</title><rect x="68.6793%" y="1365" width="0.0441%" height="15" fill="rgb(223,131,1)" fg:x="32703" fg:w="21"/><text x="68.9293%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memcmp (42 samples, 0.09%)</title><rect x="68.7234%" y="1365" width="0.0882%" height="15" fill="rgb(245,141,16)" fg:x="32724" fg:w="42"/><text x="68.9734%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (14 samples, 0.03%)</title><rect x="68.8116%" y="1365" width="0.0294%" height="15" fill="rgb(229,55,45)" fg:x="32766" fg:w="14"/><text x="69.0616%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::dialect::mssql::MsSqlDialect as sqlparser::dialect::Dialect&gt;::is_identifier_part (11 samples, 0.02%)</title><rect x="68.8410%" y="1365" width="0.0231%" height="15" fill="rgb(208,92,15)" fg:x="32780" fg:w="11"/><text x="69.0910%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcmp (15 samples, 0.03%)</title><rect x="68.8683%" y="1365" width="0.0315%" height="15" fill="rgb(234,185,47)" fg:x="32793" fg:w="15"/><text x="69.1183%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (12 samples, 0.03%)</title><rect x="68.9271%" y="1349" width="0.0252%" height="15" fill="rgb(253,104,50)" fg:x="32821" fg:w="12"/><text x="69.1771%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (36 samples, 0.08%)</title><rect x="68.9040%" y="1365" width="0.0756%" height="15" fill="rgb(205,70,7)" fg:x="32810" fg:w="36"/><text x="69.1540%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (10 samples, 0.02%)</title><rect x="68.9586%" y="1349" width="0.0210%" height="15" fill="rgb(240,178,43)" fg:x="32836" fg:w="10"/><text x="69.2086%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (10 samples, 0.02%)</title><rect x="68.9586%" y="1333" width="0.0210%" height="15" fill="rgb(214,112,2)" fg:x="32836" fg:w="10"/><text x="69.2086%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Token::make_word (18 samples, 0.04%)</title><rect x="68.9922%" y="1365" width="0.0378%" height="15" fill="rgb(206,46,17)" fg:x="32852" fg:w="18"/><text x="69.2422%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::str::_&lt;impl str&gt;::to_uppercase (6 samples, 0.01%)</title><rect x="69.0174%" y="1349" width="0.0126%" height="15" fill="rgb(225,220,16)" fg:x="32864" fg:w="6"/><text x="69.2674%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="69.0804%" y="1349" width="0.0105%" height="15" fill="rgb(238,65,40)" fg:x="32894" fg:w="5"/><text x="69.3304%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (10 samples, 0.02%)</title><rect x="69.0909%" y="1349" width="0.0210%" height="15" fill="rgb(230,151,21)" fg:x="32899" fg:w="10"/><text x="69.3409%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (8 samples, 0.02%)</title><rect x="69.1119%" y="1349" width="0.0168%" height="15" fill="rgb(218,58,49)" fg:x="32909" fg:w="8"/><text x="69.3619%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::next_token (641 samples, 1.35%)</title><rect x="67.8119%" y="1381" width="1.3462%" height="15" fill="rgb(219,179,14)" fg:x="32290" fg:w="641"/><text x="68.0619%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_word (61 samples, 0.13%)</title><rect x="69.0300%" y="1365" width="0.1281%" height="15" fill="rgb(223,72,1)" fg:x="32870" fg:w="61"/><text x="69.2800%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (14 samples, 0.03%)</title><rect x="69.1287%" y="1349" width="0.0294%" height="15" fill="rgb(238,126,10)" fg:x="32917" fg:w="14"/><text x="69.3787%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (7 samples, 0.01%)</title><rect x="69.1434%" y="1333" width="0.0147%" height="15" fill="rgb(224,206,38)" fg:x="32924" fg:w="7"/><text x="69.3934%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_free (37 samples, 0.08%)</title><rect x="69.2862%" y="1365" width="0.0777%" height="15" fill="rgb(212,201,54)" fg:x="32992" fg:w="37"/><text x="69.5362%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (32 samples, 0.07%)</title><rect x="69.3639%" y="1365" width="0.0672%" height="15" fill="rgb(218,154,48)" fg:x="33029" fg:w="32"/><text x="69.6139%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (214 samples, 0.45%)</title><rect x="69.4311%" y="1365" width="0.4494%" height="15" fill="rgb(232,93,24)" fg:x="33061" fg:w="214"/><text x="69.6811%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memcmp (527 samples, 1.11%)</title><rect x="69.8805%" y="1365" width="1.1067%" height="15" fill="rgb(245,30,21)" fg:x="33275" fg:w="527"/><text x="70.1305%" y="1375.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (89 samples, 0.19%)</title><rect x="70.9873%" y="1365" width="0.1869%" height="15" fill="rgb(242,148,29)" fg:x="33802" fg:w="89"/><text x="71.2373%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (37 samples, 0.08%)</title><rect x="71.3296%" y="1333" width="0.0777%" height="15" fill="rgb(244,153,54)" fg:x="33965" fg:w="37"/><text x="71.5796%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_alloc (8 samples, 0.02%)</title><rect x="71.4094%" y="1333" width="0.0168%" height="15" fill="rgb(252,87,22)" fg:x="34003" fg:w="8"/><text x="71.6594%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (136 samples, 0.29%)</title><rect x="71.2729%" y="1349" width="0.2856%" height="15" fill="rgb(210,51,29)" fg:x="33938" fg:w="136"/><text x="71.5229%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (63 samples, 0.13%)</title><rect x="71.4262%" y="1333" width="0.1323%" height="15" fill="rgb(242,136,47)" fg:x="34011" fg:w="63"/><text x="71.6762%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (48 samples, 0.10%)</title><rect x="71.4577%" y="1317" width="0.1008%" height="15" fill="rgb(238,68,4)" fg:x="34026" fg:w="48"/><text x="71.7077%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::iter::traits::collect::FromIterator&lt;char&gt;&gt;::from_iter (201 samples, 0.42%)</title><rect x="71.1742%" y="1365" width="0.4221%" height="15" fill="rgb(242,161,30)" fg:x="33891" fg:w="201"/><text x="71.4242%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (18 samples, 0.04%)</title><rect x="71.5585%" y="1349" width="0.0378%" height="15" fill="rgb(218,58,44)" fg:x="34074" fg:w="18"/><text x="71.8085%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::dialect::mssql::MsSqlDialect as sqlparser::dialect::Dialect&gt;::is_identifier_part (105 samples, 0.22%)</title><rect x="71.5963%" y="1365" width="0.2205%" height="15" fill="rgb(252,125,32)" fg:x="34092" fg:w="105"/><text x="71.8463%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$free (23 samples, 0.05%)</title><rect x="71.8168%" y="1365" width="0.0483%" height="15" fill="rgb(219,178,0)" fg:x="34197" fg:w="23"/><text x="72.0668%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$malloc (8 samples, 0.02%)</title><rect x="71.8651%" y="1365" width="0.0168%" height="15" fill="rgb(213,152,7)" fg:x="34220" fg:w="8"/><text x="72.1151%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcmp (176 samples, 0.37%)</title><rect x="71.8819%" y="1365" width="0.3696%" height="15" fill="rgb(249,109,34)" fg:x="34228" fg:w="176"/><text x="72.1319%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (18 samples, 0.04%)</title><rect x="72.2515%" y="1365" width="0.0378%" height="15" fill="rgb(232,96,21)" fg:x="34404" fg:w="18"/><text x="72.5015%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_alloc (6 samples, 0.01%)</title><rect x="72.2893%" y="1365" width="0.0126%" height="15" fill="rgb(228,27,39)" fg:x="34422" fg:w="6"/><text x="72.5393%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (10 samples, 0.02%)</title><rect x="72.3040%" y="1365" width="0.0210%" height="15" fill="rgb(211,182,52)" fg:x="34429" fg:w="10"/><text x="72.5540%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (18 samples, 0.04%)</title><rect x="72.3250%" y="1365" width="0.0378%" height="15" fill="rgb(234,178,38)" fg:x="34439" fg:w="18"/><text x="72.5750%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::str::_&lt;impl str&gt;::to_uppercase (27 samples, 0.06%)</title><rect x="72.3628%" y="1365" width="0.0567%" height="15" fill="rgb(221,111,3)" fg:x="34457" fg:w="27"/><text x="72.6128%" y="1375.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (37 samples, 0.08%)</title><rect x="72.5812%" y="1349" width="0.0777%" height="15" fill="rgb(228,175,21)" fg:x="34561" fg:w="37"/><text x="72.8312%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (57 samples, 0.12%)</title><rect x="72.6589%" y="1349" width="0.1197%" height="15" fill="rgb(228,174,43)" fg:x="34598" fg:w="57"/><text x="72.9089%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_allocate_outlined (9 samples, 0.02%)</title><rect x="72.7597%" y="1333" width="0.0189%" height="15" fill="rgb(211,191,0)" fg:x="34646" fg:w="9"/><text x="73.0097%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$malloc (8 samples, 0.02%)</title><rect x="72.7786%" y="1349" width="0.0168%" height="15" fill="rgb(253,117,3)" fg:x="34655" fg:w="8"/><text x="73.0286%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_alloc (9 samples, 0.02%)</title><rect x="72.7954%" y="1349" width="0.0189%" height="15" fill="rgb(241,127,19)" fg:x="34663" fg:w="9"/><text x="73.0454%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Token::make_word (300 samples, 0.63%)</title><rect x="72.4195%" y="1365" width="0.6300%" height="15" fill="rgb(218,103,12)" fg:x="34484" fg:w="300"/><text x="72.6695%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::str::_&lt;impl str&gt;::to_uppercase (111 samples, 0.23%)</title><rect x="72.8164%" y="1349" width="0.2331%" height="15" fill="rgb(236,214,43)" fg:x="34673" fg:w="111"/><text x="73.0664%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (57 samples, 0.12%)</title><rect x="72.9298%" y="1333" width="0.1197%" height="15" fill="rgb(244,144,19)" fg:x="34727" fg:w="57"/><text x="73.1798%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (68 samples, 0.14%)</title><rect x="73.5809%" y="1349" width="0.1428%" height="15" fill="rgb(246,188,10)" fg:x="35037" fg:w="68"/><text x="73.8309%" y="1359.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (31 samples, 0.07%)</title><rect x="73.7783%" y="1333" width="0.0651%" height="15" fill="rgb(212,193,33)" fg:x="35131" fg:w="31"/><text x="74.0283%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$malloc (5 samples, 0.01%)</title><rect x="73.8434%" y="1333" width="0.0105%" height="15" fill="rgb(241,51,29)" fg:x="35162" fg:w="5"/><text x="74.0934%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`__rdl_alloc (15 samples, 0.03%)</title><rect x="73.8539%" y="1333" width="0.0315%" height="15" fill="rgb(211,58,19)" fg:x="35167" fg:w="15"/><text x="74.1039%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVec&lt;T,A&gt;::grow_one (149 samples, 0.31%)</title><rect x="73.7237%" y="1349" width="0.3129%" height="15" fill="rgb(229,111,26)" fg:x="35105" fg:w="149"/><text x="73.9737%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (72 samples, 0.15%)</title><rect x="73.8854%" y="1333" width="0.1512%" height="15" fill="rgb(213,115,40)" fg:x="35182" fg:w="72"/><text x="74.1354%" y="1343.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_malloc_type (55 samples, 0.12%)</title><rect x="73.9211%" y="1317" width="0.1155%" height="15" fill="rgb(209,56,44)" fg:x="35199" fg:w="55"/><text x="74.1711%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (10 samples, 0.02%)</title><rect x="74.0366%" y="1349" width="0.0210%" height="15" fill="rgb(230,108,32)" fg:x="35254" fg:w="10"/><text x="74.2866%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (7 samples, 0.01%)</title><rect x="74.0429%" y="1333" width="0.0147%" height="15" fill="rgb(216,165,31)" fg:x="35257" fg:w="7"/><text x="74.2929%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_identifier_or_keyword (2,345 samples, 4.92%)</title><rect x="69.1581%" y="1381" width="4.9247%" height="15" fill="rgb(218,122,21)" fg:x="32931" fg:w="2345"/><text x="69.4081%" y="1391.50">sqlpar..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_word (492 samples, 1.03%)</title><rect x="73.0495%" y="1365" width="1.0332%" height="15" fill="rgb(223,224,47)" fg:x="34784" fg:w="492"/><text x="73.2995%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (12 samples, 0.03%)</title><rect x="74.0576%" y="1349" width="0.0252%" height="15" fill="rgb(238,102,44)" fg:x="35264" fg:w="12"/><text x="74.3076%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_with_location (4,225 samples, 8.87%)</title><rect x="65.2477%" y="1413" width="8.8729%" height="15" fill="rgb(236,46,40)" fg:x="31069" fg:w="4225"/><text x="65.4977%" y="1423.50">sqlparser_ben..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_with_location_into_buf (4,059 samples, 8.52%)</title><rect x="65.5963%" y="1397" width="8.5243%" height="15" fill="rgb(247,202,50)" fg:x="31235" fg:w="4059"/><text x="65.8463%" y="1407.50">sqlparser_be..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_word (18 samples, 0.04%)</title><rect x="74.0828%" y="1381" width="0.0378%" height="15" fill="rgb(209,99,20)" fg:x="35276" fg:w="18"/><text x="74.3328%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::try_with_sql (4,258 samples, 8.94%)</title><rect x="65.1931%" y="1429" width="8.9422%" height="15" fill="rgb(252,27,34)" fg:x="31043" fg:w="4258"/><text x="65.4431%" y="1439.50">sqlparser_ben..</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::tokenizer::Tokenizer::tokenize_with_location_into_buf (7 samples, 0.01%)</title><rect x="74.1206%" y="1413" width="0.0147%" height="15" fill="rgb(215,206,23)" fg:x="35294" fg:w="7"/><text x="74.3706%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_sql (12,017 samples, 25.24%)</title><rect x="48.9069%" y="1445" width="25.2368%" height="15" fill="rgb(212,135,36)" fg:x="23288" fg:w="12017"/><text x="49.1569%" y="1455.50">sqlparser_bench-959bc5267970ca34`sqlpars..</text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::bencher::Bencher&lt;M&gt;::iter (16,292 samples, 34.21%)</title><rect x="39.9374%" y="1461" width="34.2147%" height="15" fill="rgb(240,189,1)" fg:x="19017" fg:w="16292"/><text x="40.1874%" y="1471.50">sqlparser_bench-959bc5267970ca34`criterion::bencher::Be..</text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function (35,307 samples, 74.15%)</title><rect x="0.0063%" y="1525" width="74.1479%" height="15" fill="rgb(242,56,20)" fg:x="3" fg:w="35307"/><text x="0.2563%" y="1535.50">sqlparser_bench-959bc5267970ca34`criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function</text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::common (35,307 samples, 74.15%)</title><rect x="0.0063%" y="1509" width="74.1479%" height="15" fill="rgb(247,132,33)" fg:x="3" fg:w="35307"/><text x="0.2563%" y="1519.50">sqlparser_bench-959bc5267970ca34`criterion::analysis::common</text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::routine::Routine::sample (35,254 samples, 74.04%)</title><rect x="0.1176%" y="1493" width="74.0366%" height="15" fill="rgb(208,149,11)" fg:x="56" fg:w="35254"/><text x="0.3676%" y="1503.50">sqlparser_bench-959bc5267970ca34`criterion::routine::Routine::sample</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;criterion::routine::Function&lt;M,F,T&gt; as criterion::routine::Routine&lt;M,T&gt;&gt;::warm_up (16,308 samples, 34.25%)</title><rect x="39.9059%" y="1477" width="34.2483%" height="15" fill="rgb(211,33,11)" fg:x="19002" fg:w="16308"/><text x="40.1559%" y="1487.50">sqlparser_bench-959bc5267970ca34`&lt;criterion::routine::Fu..</text></g><g><title>dyld`start (35,315 samples, 74.16%)</title><rect x="0.0000%" y="1621" width="74.1647%" height="15" fill="rgb(221,29,38)" fg:x="0" fg:w="35315"/><text x="0.2500%" y="1631.50">dyld`start</text></g><g><title>sqlparser_bench-959bc5267970ca34`main (35,314 samples, 74.16%)</title><rect x="0.0021%" y="1605" width="74.1626%" height="15" fill="rgb(206,182,49)" fg:x="1" fg:w="35314"/><text x="0.2521%" y="1615.50">sqlparser_bench-959bc5267970ca34`main</text></g><g><title>sqlparser_bench-959bc5267970ca34`std::rt::lang_start_internal (35,314 samples, 74.16%)</title><rect x="0.0021%" y="1589" width="74.1626%" height="15" fill="rgb(216,140,1)" fg:x="1" fg:w="35314"/><text x="0.2521%" y="1599.50">sqlparser_bench-959bc5267970ca34`std::rt::lang_start_internal</text></g><g><title>sqlparser_bench-959bc5267970ca34`std::rt::lang_start::_{{closure}} (35,314 samples, 74.16%)</title><rect x="0.0021%" y="1573" width="74.1626%" height="15" fill="rgb(232,57,40)" fg:x="1" fg:w="35314"/><text x="0.2521%" y="1583.50">sqlparser_bench-959bc5267970ca34`std::rt::lang_start::_{{closure}}</text></g><g><title>sqlparser_bench-959bc5267970ca34`std::sys::backtrace::__rust_begin_short_backtrace (35,314 samples, 74.16%)</title><rect x="0.0021%" y="1557" width="74.1626%" height="15" fill="rgb(224,186,18)" fg:x="1" fg:w="35314"/><text x="0.2521%" y="1567.50">sqlparser_bench-959bc5267970ca34`std::sys::backtrace::__rust_begin_short_backtrace</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser_bench::main (35,314 samples, 74.16%)</title><rect x="0.0021%" y="1541" width="74.1626%" height="15" fill="rgb(215,121,11)" fg:x="1" fg:w="35314"/><text x="0.2521%" y="1551.50">sqlparser_bench-959bc5267970ca34`sqlparser_bench::main</text></g><g><title>sqlparser_bench-959bc5267970ca34`sqlparser::parser::Parser::parse_sql (5 samples, 0.01%)</title><rect x="74.1542%" y="1525" width="0.0105%" height="15" fill="rgb(245,147,10)" fg:x="35310" fg:w="5"/><text x="74.4042%" y="1535.50"></text></g><g><title>libsystem_kernel.dylib`swtch_pri (133 samples, 0.28%)</title><rect x="74.1710%" y="1509" width="0.2793%" height="15" fill="rgb(238,153,13)" fg:x="35318" fg:w="133"/><text x="74.4210%" y="1519.50"></text></g><g><title>libsystem_m.dylib`exp (23 samples, 0.05%)</title><rect x="74.4734%" y="1477" width="0.0483%" height="15" fill="rgb(233,108,0)" fg:x="35462" fg:w="23"/><text x="74.7234%" y="1487.50"></text></g><g><title>libsystem_m.dylib`exp (43 samples, 0.09%)</title><rect x="74.5574%" y="1445" width="0.0903%" height="15" fill="rgb(212,157,17)" fg:x="35502" fg:w="43"/><text x="74.8074%" y="1455.50"></text></g><g><title>libsystem_m.dylib`exp (47 samples, 0.10%)</title><rect x="74.6813%" y="1413" width="0.0987%" height="15" fill="rgb(225,213,38)" fg:x="35561" fg:w="47"/><text x="74.9313%" y="1423.50"></text></g><g><title>libsystem_m.dylib`exp (46 samples, 0.10%)</title><rect x="74.8136%" y="1381" width="0.0966%" height="15" fill="rgb(248,16,11)" fg:x="35624" fg:w="46"/><text x="75.0636%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (6 samples, 0.01%)</title><rect x="74.9102%" y="1381" width="0.0126%" height="15" fill="rgb(241,33,4)" fg:x="35670" fg:w="6"/><text x="75.1602%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (6 samples, 0.01%)</title><rect x="74.9102%" y="1365" width="0.0126%" height="15" fill="rgb(222,26,43)" fg:x="35670" fg:w="6"/><text x="75.1602%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (6 samples, 0.01%)</title><rect x="74.9102%" y="1349" width="0.0126%" height="15" fill="rgb(243,29,36)" fg:x="35670" fg:w="6"/><text x="75.1602%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="74.9102%" y="1333" width="0.0126%" height="15" fill="rgb(241,9,27)" fg:x="35670" fg:w="6"/><text x="75.1602%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="74.9102%" y="1317" width="0.0126%" height="15" fill="rgb(205,117,26)" fg:x="35670" fg:w="6"/><text x="75.1602%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (8 samples, 0.02%)</title><rect x="74.9270%" y="1365" width="0.0168%" height="15" fill="rgb(209,80,39)" fg:x="35678" fg:w="8"/><text x="75.1770%" y="1375.50"></text></g><g><title>libsystem_m.dylib`exp (57 samples, 0.12%)</title><rect x="74.9690%" y="1349" width="0.1197%" height="15" fill="rgb(239,155,6)" fg:x="35698" fg:w="57"/><text x="75.2190%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (10 samples, 0.02%)</title><rect x="75.0929%" y="1301" width="0.0210%" height="15" fill="rgb(212,104,12)" fg:x="35757" fg:w="10"/><text x="75.3429%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (10 samples, 0.02%)</title><rect x="75.0929%" y="1285" width="0.0210%" height="15" fill="rgb(234,204,3)" fg:x="35757" fg:w="10"/><text x="75.3429%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="75.1013%" y="1269" width="0.0126%" height="15" fill="rgb(251,218,7)" fg:x="35761" fg:w="6"/><text x="75.3513%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (12 samples, 0.03%)</title><rect x="75.0908%" y="1317" width="0.0252%" height="15" fill="rgb(221,81,32)" fg:x="35756" fg:w="12"/><text x="75.3408%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (13 samples, 0.03%)</title><rect x="75.0908%" y="1349" width="0.0273%" height="15" fill="rgb(214,152,26)" fg:x="35756" fg:w="13"/><text x="75.3408%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (13 samples, 0.03%)</title><rect x="75.0908%" y="1333" width="0.0273%" height="15" fill="rgb(223,22,3)" fg:x="35756" fg:w="13"/><text x="75.3408%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (6 samples, 0.01%)</title><rect x="75.1181%" y="1333" width="0.0126%" height="15" fill="rgb(207,174,7)" fg:x="35769" fg:w="6"/><text x="75.3681%" y="1343.50"></text></g><g><title>libsystem_m.dylib`exp (37 samples, 0.08%)</title><rect x="75.1454%" y="1317" width="0.0777%" height="15" fill="rgb(224,19,52)" fg:x="35782" fg:w="37"/><text x="75.3954%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (5 samples, 0.01%)</title><rect x="75.2252%" y="1285" width="0.0105%" height="15" fill="rgb(228,24,14)" fg:x="35820" fg:w="5"/><text x="75.4752%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="75.2252%" y="1269" width="0.0105%" height="15" fill="rgb(230,153,43)" fg:x="35820" fg:w="5"/><text x="75.4752%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="75.2252%" y="1253" width="0.0105%" height="15" fill="rgb(231,106,12)" fg:x="35820" fg:w="5"/><text x="75.4752%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="75.2252%" y="1237" width="0.0105%" height="15" fill="rgb(215,92,2)" fg:x="35820" fg:w="5"/><text x="75.4752%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (7 samples, 0.01%)</title><rect x="75.2252%" y="1317" width="0.0147%" height="15" fill="rgb(249,143,25)" fg:x="35820" fg:w="7"/><text x="75.4752%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (7 samples, 0.01%)</title><rect x="75.2252%" y="1301" width="0.0147%" height="15" fill="rgb(252,7,35)" fg:x="35820" fg:w="7"/><text x="75.4752%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (5 samples, 0.01%)</title><rect x="75.2420%" y="1301" width="0.0105%" height="15" fill="rgb(216,69,40)" fg:x="35828" fg:w="5"/><text x="75.4920%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (40 samples, 0.08%)</title><rect x="75.2714%" y="1285" width="0.0840%" height="15" fill="rgb(240,36,33)" fg:x="35842" fg:w="40"/><text x="75.5214%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (16 samples, 0.03%)</title><rect x="75.4163%" y="1253" width="0.0336%" height="15" fill="rgb(231,128,14)" fg:x="35911" fg:w="16"/><text x="75.6663%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (108 samples, 0.23%)</title><rect x="75.3722%" y="1269" width="0.2268%" height="15" fill="rgb(245,143,14)" fg:x="35890" fg:w="108"/><text x="75.6222%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`oorandom::Rand64::rand_range (71 samples, 0.15%)</title><rect x="75.4499%" y="1253" width="0.1491%" height="15" fill="rgb(222,130,28)" fg:x="35927" fg:w="71"/><text x="75.6999%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (17 samples, 0.04%)</title><rect x="75.6033%" y="1253" width="0.0357%" height="15" fill="rgb(212,10,48)" fg:x="36000" fg:w="17"/><text x="75.8533%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (17 samples, 0.04%)</title><rect x="75.6033%" y="1237" width="0.0357%" height="15" fill="rgb(254,118,45)" fg:x="36000" fg:w="17"/><text x="75.8533%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (17 samples, 0.04%)</title><rect x="75.6033%" y="1221" width="0.0357%" height="15" fill="rgb(228,6,45)" fg:x="36000" fg:w="17"/><text x="75.8533%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="75.6285%" y="1205" width="0.0105%" height="15" fill="rgb(241,18,35)" fg:x="36012" fg:w="5"/><text x="75.8785%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (32 samples, 0.07%)</title><rect x="75.5991%" y="1269" width="0.0672%" height="15" fill="rgb(227,214,53)" fg:x="35998" fg:w="32"/><text x="75.8491%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (13 samples, 0.03%)</title><rect x="75.6390%" y="1253" width="0.0273%" height="15" fill="rgb(224,107,51)" fg:x="36017" fg:w="13"/><text x="75.8890%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (13 samples, 0.03%)</title><rect x="75.6390%" y="1237" width="0.0273%" height="15" fill="rgb(248,60,28)" fg:x="36017" fg:w="13"/><text x="75.8890%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="75.6537%" y="1221" width="0.0126%" height="15" fill="rgb(249,101,23)" fg:x="36024" fg:w="6"/><text x="75.9037%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::bivariate::resamples::Resamples&lt;X,Y&gt;::next (30 samples, 0.06%)</title><rect x="75.6663%" y="1269" width="0.0630%" height="15" fill="rgb(228,51,19)" fg:x="36030" fg:w="30"/><text x="75.9163%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (224 samples, 0.47%)</title><rect x="75.3554%" y="1285" width="0.4704%" height="15" fill="rgb(213,20,6)" fg:x="35882" fg:w="224"/><text x="75.6054%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`oorandom::Rand64::rand_range (45 samples, 0.09%)</title><rect x="75.7314%" y="1269" width="0.0945%" height="15" fill="rgb(212,124,10)" fg:x="36061" fg:w="45"/><text x="75.9814%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (7 samples, 0.01%)</title><rect x="75.8280%" y="1253" width="0.0147%" height="15" fill="rgb(248,3,40)" fg:x="36107" fg:w="7"/><text x="76.0780%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (7 samples, 0.01%)</title><rect x="75.8280%" y="1237" width="0.0147%" height="15" fill="rgb(223,178,23)" fg:x="36107" fg:w="7"/><text x="76.0780%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="75.8280%" y="1221" width="0.0147%" height="15" fill="rgb(240,132,45)" fg:x="36107" fg:w="7"/><text x="76.0780%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="75.8322%" y="1205" width="0.0105%" height="15" fill="rgb(245,164,36)" fg:x="36109" fg:w="5"/><text x="76.0822%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (283 samples, 0.59%)</title><rect x="75.2525%" y="1301" width="0.5943%" height="15" fill="rgb(231,188,53)" fg:x="35833" fg:w="283"/><text x="75.5025%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (9 samples, 0.02%)</title><rect x="75.8280%" y="1285" width="0.0189%" height="15" fill="rgb(237,198,39)" fg:x="36107" fg:w="9"/><text x="76.0780%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (9 samples, 0.02%)</title><rect x="75.8280%" y="1269" width="0.0189%" height="15" fill="rgb(223,120,35)" fg:x="36107" fg:w="9"/><text x="76.0780%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (12 samples, 0.03%)</title><rect x="75.8490%" y="1285" width="0.0252%" height="15" fill="rgb(253,107,49)" fg:x="36117" fg:w="12"/><text x="76.0990%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (61 samples, 0.13%)</title><rect x="75.8994%" y="1269" width="0.1281%" height="15" fill="rgb(216,44,31)" fg:x="36141" fg:w="61"/><text x="76.1494%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (16 samples, 0.03%)</title><rect x="76.0359%" y="1237" width="0.0336%" height="15" fill="rgb(253,87,21)" fg:x="36206" fg:w="16"/><text x="76.2859%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (12 samples, 0.03%)</title><rect x="76.0443%" y="1221" width="0.0252%" height="15" fill="rgb(226,18,2)" fg:x="36210" fg:w="12"/><text x="76.2943%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (12 samples, 0.03%)</title><rect x="76.0443%" y="1205" width="0.0252%" height="15" fill="rgb(216,8,46)" fg:x="36210" fg:w="12"/><text x="76.2943%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="76.0527%" y="1189" width="0.0168%" height="15" fill="rgb(226,140,39)" fg:x="36214" fg:w="8"/><text x="76.3027%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (35 samples, 0.07%)</title><rect x="76.0275%" y="1253" width="0.0735%" height="15" fill="rgb(221,194,54)" fg:x="36202" fg:w="35"/><text x="76.2775%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (15 samples, 0.03%)</title><rect x="76.0695%" y="1237" width="0.0315%" height="15" fill="rgb(213,92,11)" fg:x="36222" fg:w="15"/><text x="76.3195%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (15 samples, 0.03%)</title><rect x="76.0695%" y="1221" width="0.0315%" height="15" fill="rgb(229,162,46)" fg:x="36222" fg:w="15"/><text x="76.3195%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (13 samples, 0.03%)</title><rect x="76.0737%" y="1205" width="0.0273%" height="15" fill="rgb(214,111,36)" fg:x="36224" fg:w="13"/><text x="76.3237%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (41 samples, 0.09%)</title><rect x="76.0275%" y="1269" width="0.0861%" height="15" fill="rgb(207,6,21)" fg:x="36202" fg:w="41"/><text x="76.2775%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`oorandom::Rand64::rand_range (5 samples, 0.01%)</title><rect x="76.1031%" y="1253" width="0.0105%" height="15" fill="rgb(213,127,38)" fg:x="36238" fg:w="5"/><text x="76.3531%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (5 samples, 0.01%)</title><rect x="76.1157%" y="1237" width="0.0105%" height="15" fill="rgb(238,118,32)" fg:x="36244" fg:w="5"/><text x="76.3657%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="76.1157%" y="1221" width="0.0105%" height="15" fill="rgb(240,139,39)" fg:x="36244" fg:w="5"/><text x="76.3657%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (134 samples, 0.28%)</title><rect x="75.8469%" y="1301" width="0.2814%" height="15" fill="rgb(235,10,37)" fg:x="36116" fg:w="134"/><text x="76.0969%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (121 samples, 0.25%)</title><rect x="75.8742%" y="1285" width="0.2541%" height="15" fill="rgb(249,171,38)" fg:x="36129" fg:w="121"/><text x="76.1242%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (6 samples, 0.01%)</title><rect x="76.1157%" y="1269" width="0.0126%" height="15" fill="rgb(242,144,32)" fg:x="36244" fg:w="6"/><text x="76.3657%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (6 samples, 0.01%)</title><rect x="76.1157%" y="1253" width="0.0126%" height="15" fill="rgb(217,117,21)" fg:x="36244" fg:w="6"/><text x="76.3657%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="76.1283%" y="1237" width="0.0168%" height="15" fill="rgb(249,87,1)" fg:x="36250" fg:w="8"/><text x="76.3783%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="76.1283%" y="1221" width="0.0168%" height="15" fill="rgb(248,196,48)" fg:x="36250" fg:w="8"/><text x="76.3783%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="76.1451%" y="1173" width="0.0105%" height="15" fill="rgb(251,206,33)" fg:x="36258" fg:w="5"/><text x="76.3951%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="76.1451%" y="1157" width="0.0105%" height="15" fill="rgb(232,141,28)" fg:x="36258" fg:w="5"/><text x="76.3951%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (492 samples, 1.03%)</title><rect x="75.1307%" y="1333" width="1.0332%" height="15" fill="rgb(209,167,14)" fg:x="35775" fg:w="492"/><text x="75.3807%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (440 samples, 0.92%)</title><rect x="75.2399%" y="1317" width="0.9240%" height="15" fill="rgb(225,11,50)" fg:x="35827" fg:w="440"/><text x="75.4899%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.04%)</title><rect x="76.1283%" y="1301" width="0.0357%" height="15" fill="rgb(209,50,20)" fg:x="36250" fg:w="17"/><text x="76.3783%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.04%)</title><rect x="76.1283%" y="1285" width="0.0357%" height="15" fill="rgb(212,17,46)" fg:x="36250" fg:w="17"/><text x="76.3783%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.04%)</title><rect x="76.1283%" y="1269" width="0.0357%" height="15" fill="rgb(216,101,39)" fg:x="36250" fg:w="17"/><text x="76.3783%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (17 samples, 0.04%)</title><rect x="76.1283%" y="1253" width="0.0357%" height="15" fill="rgb(212,228,48)" fg:x="36250" fg:w="17"/><text x="76.3783%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="76.1451%" y="1237" width="0.0189%" height="15" fill="rgb(250,6,50)" fg:x="36258" fg:w="9"/><text x="76.3951%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="76.1451%" y="1221" width="0.0189%" height="15" fill="rgb(250,160,48)" fg:x="36258" fg:w="9"/><text x="76.3951%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="76.1451%" y="1205" width="0.0189%" height="15" fill="rgb(244,216,33)" fg:x="36258" fg:w="9"/><text x="76.3951%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="76.1451%" y="1189" width="0.0189%" height="15" fill="rgb(207,157,5)" fg:x="36258" fg:w="9"/><text x="76.3951%" y="1199.50"></text></g><g><title>libsystem_m.dylib`exp (15 samples, 0.03%)</title><rect x="76.1745%" y="1301" width="0.0315%" height="15" fill="rgb(228,199,8)" fg:x="36272" fg:w="15"/><text x="76.4245%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (7 samples, 0.01%)</title><rect x="76.2060%" y="1301" width="0.0147%" height="15" fill="rgb(227,80,20)" fg:x="36287" fg:w="7"/><text x="76.4560%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (7 samples, 0.01%)</title><rect x="76.2060%" y="1285" width="0.0147%" height="15" fill="rgb(222,9,33)" fg:x="36287" fg:w="7"/><text x="76.4560%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (7 samples, 0.01%)</title><rect x="76.2060%" y="1269" width="0.0147%" height="15" fill="rgb(239,44,28)" fg:x="36287" fg:w="7"/><text x="76.4560%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (7 samples, 0.01%)</title><rect x="76.2060%" y="1253" width="0.0147%" height="15" fill="rgb(249,187,43)" fg:x="36287" fg:w="7"/><text x="76.4560%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="76.2060%" y="1237" width="0.0147%" height="15" fill="rgb(216,141,28)" fg:x="36287" fg:w="7"/><text x="76.4560%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (11 samples, 0.02%)</title><rect x="76.2270%" y="1285" width="0.0231%" height="15" fill="rgb(230,154,53)" fg:x="36297" fg:w="11"/><text x="76.4770%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (70 samples, 0.15%)</title><rect x="76.2921%" y="1269" width="0.1470%" height="15" fill="rgb(227,82,4)" fg:x="36328" fg:w="70"/><text x="76.5421%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (12 samples, 0.03%)</title><rect x="76.4412%" y="1237" width="0.0252%" height="15" fill="rgb(220,107,16)" fg:x="36399" fg:w="12"/><text x="76.6912%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (12 samples, 0.03%)</title><rect x="76.4412%" y="1221" width="0.0252%" height="15" fill="rgb(207,187,2)" fg:x="36399" fg:w="12"/><text x="76.6912%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (12 samples, 0.03%)</title><rect x="76.4412%" y="1205" width="0.0252%" height="15" fill="rgb(210,162,52)" fg:x="36399" fg:w="12"/><text x="76.6912%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="76.4496%" y="1189" width="0.0168%" height="15" fill="rgb(217,216,49)" fg:x="36403" fg:w="8"/><text x="76.6996%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (24 samples, 0.05%)</title><rect x="76.4391%" y="1253" width="0.0504%" height="15" fill="rgb(218,146,49)" fg:x="36398" fg:w="24"/><text x="76.6891%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (11 samples, 0.02%)</title><rect x="76.4664%" y="1237" width="0.0231%" height="15" fill="rgb(216,55,40)" fg:x="36411" fg:w="11"/><text x="76.7164%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (11 samples, 0.02%)</title><rect x="76.4664%" y="1221" width="0.0231%" height="15" fill="rgb(208,196,21)" fg:x="36411" fg:w="11"/><text x="76.7164%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="76.4748%" y="1205" width="0.0147%" height="15" fill="rgb(242,117,42)" fg:x="36415" fg:w="7"/><text x="76.7248%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (31 samples, 0.07%)</title><rect x="76.4391%" y="1269" width="0.0651%" height="15" fill="rgb(210,11,23)" fg:x="36398" fg:w="31"/><text x="76.6891%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`oorandom::Rand64::rand_range (5 samples, 0.01%)</title><rect x="76.4937%" y="1253" width="0.0105%" height="15" fill="rgb(217,110,2)" fg:x="36424" fg:w="5"/><text x="76.7437%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (126 samples, 0.26%)</title><rect x="76.2501%" y="1285" width="0.2646%" height="15" fill="rgb(229,77,54)" fg:x="36308" fg:w="126"/><text x="76.5001%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (5 samples, 0.01%)</title><rect x="76.5042%" y="1269" width="0.0105%" height="15" fill="rgb(218,53,16)" fg:x="36429" fg:w="5"/><text x="76.7542%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.01%)</title><rect x="76.5042%" y="1253" width="0.0105%" height="15" fill="rgb(215,38,13)" fg:x="36429" fg:w="5"/><text x="76.7542%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (9 samples, 0.02%)</title><rect x="76.5210%" y="1269" width="0.0189%" height="15" fill="rgb(235,42,18)" fg:x="36437" fg:w="9"/><text x="76.7710%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (62 samples, 0.13%)</title><rect x="76.5819%" y="1253" width="0.1302%" height="15" fill="rgb(219,66,54)" fg:x="36466" fg:w="62"/><text x="76.8319%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (14 samples, 0.03%)</title><rect x="76.7163%" y="1221" width="0.0294%" height="15" fill="rgb(222,205,4)" fg:x="36530" fg:w="14"/><text x="76.9663%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (12 samples, 0.03%)</title><rect x="76.7205%" y="1205" width="0.0252%" height="15" fill="rgb(227,213,46)" fg:x="36532" fg:w="12"/><text x="76.9705%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (12 samples, 0.03%)</title><rect x="76.7205%" y="1189" width="0.0252%" height="15" fill="rgb(250,145,42)" fg:x="36532" fg:w="12"/><text x="76.9705%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="76.7331%" y="1173" width="0.0126%" height="15" fill="rgb(219,15,2)" fg:x="36538" fg:w="6"/><text x="76.9831%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (33 samples, 0.07%)</title><rect x="76.7121%" y="1237" width="0.0693%" height="15" fill="rgb(231,181,52)" fg:x="36528" fg:w="33"/><text x="76.9621%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (17 samples, 0.04%)</title><rect x="76.7457%" y="1221" width="0.0357%" height="15" fill="rgb(235,1,42)" fg:x="36544" fg:w="17"/><text x="76.9957%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (17 samples, 0.04%)</title><rect x="76.7457%" y="1205" width="0.0357%" height="15" fill="rgb(249,88,27)" fg:x="36544" fg:w="17"/><text x="76.9957%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (12 samples, 0.03%)</title><rect x="76.7562%" y="1189" width="0.0252%" height="15" fill="rgb(235,145,16)" fg:x="36549" fg:w="12"/><text x="77.0062%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (38 samples, 0.08%)</title><rect x="76.7121%" y="1253" width="0.0798%" height="15" fill="rgb(237,114,19)" fg:x="36528" fg:w="38"/><text x="76.9621%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`oorandom::Rand64::rand_range (5 samples, 0.01%)</title><rect x="76.7814%" y="1237" width="0.0105%" height="15" fill="rgb(238,51,50)" fg:x="36561" fg:w="5"/><text x="77.0314%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (137 samples, 0.29%)</title><rect x="76.5147%" y="1285" width="0.2877%" height="15" fill="rgb(205,194,25)" fg:x="36434" fg:w="137"/><text x="76.7647%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (125 samples, 0.26%)</title><rect x="76.5399%" y="1269" width="0.2625%" height="15" fill="rgb(215,203,17)" fg:x="36446" fg:w="125"/><text x="76.7899%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (5 samples, 0.01%)</title><rect x="76.7919%" y="1253" width="0.0105%" height="15" fill="rgb(233,112,49)" fg:x="36566" fg:w="5"/><text x="77.0419%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.01%)</title><rect x="76.7919%" y="1237" width="0.0105%" height="15" fill="rgb(241,130,26)" fg:x="36566" fg:w="5"/><text x="77.0419%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (5 samples, 0.01%)</title><rect x="76.7919%" y="1221" width="0.0105%" height="15" fill="rgb(252,223,19)" fg:x="36566" fg:w="5"/><text x="77.0419%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="76.7919%" y="1205" width="0.0105%" height="15" fill="rgb(211,95,25)" fg:x="36566" fg:w="5"/><text x="77.0419%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="76.7919%" y="1189" width="0.0105%" height="15" fill="rgb(251,182,27)" fg:x="36566" fg:w="5"/><text x="77.0419%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (311 samples, 0.65%)</title><rect x="76.1640%" y="1333" width="0.6531%" height="15" fill="rgb(238,24,4)" fg:x="36267" fg:w="311"/><text x="76.4140%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (309 samples, 0.65%)</title><rect x="76.1682%" y="1317" width="0.6489%" height="15" fill="rgb(224,220,25)" fg:x="36269" fg:w="309"/><text x="76.4182%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (284 samples, 0.60%)</title><rect x="76.2207%" y="1301" width="0.5964%" height="15" fill="rgb(239,133,26)" fg:x="36294" fg:w="284"/><text x="76.4707%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="76.8024%" y="1285" width="0.0147%" height="15" fill="rgb(211,94,48)" fg:x="36571" fg:w="7"/><text x="77.0524%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="76.8024%" y="1269" width="0.0147%" height="15" fill="rgb(239,87,6)" fg:x="36571" fg:w="7"/><text x="77.0524%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="76.8024%" y="1253" width="0.0147%" height="15" fill="rgb(227,62,0)" fg:x="36571" fg:w="7"/><text x="77.0524%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="76.8066%" y="1237" width="0.0105%" height="15" fill="rgb(211,226,4)" fg:x="36573" fg:w="5"/><text x="77.0566%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="76.8276%" y="1173" width="0.0126%" height="15" fill="rgb(253,38,52)" fg:x="36583" fg:w="6"/><text x="77.0776%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="76.8276%" y="1157" width="0.0126%" height="15" fill="rgb(229,126,40)" fg:x="36583" fg:w="6"/><text x="77.0776%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="76.8276%" y="1141" width="0.0126%" height="15" fill="rgb(229,165,44)" fg:x="36583" fg:w="6"/><text x="77.0776%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="76.8276%" y="1125" width="0.0126%" height="15" fill="rgb(247,95,47)" fg:x="36583" fg:w="6"/><text x="77.0776%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="76.8276%" y="1109" width="0.0126%" height="15" fill="rgb(216,140,30)" fg:x="36583" fg:w="6"/><text x="77.0776%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.01%)</title><rect x="76.8276%" y="1093" width="0.0126%" height="15" fill="rgb(246,214,8)" fg:x="36583" fg:w="6"/><text x="77.0776%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="76.8276%" y="1205" width="0.0147%" height="15" fill="rgb(227,224,15)" fg:x="36583" fg:w="7"/><text x="77.0776%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="76.8276%" y="1189" width="0.0147%" height="15" fill="rgb(233,175,4)" fg:x="36583" fg:w="7"/><text x="77.0776%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="76.8276%" y="1237" width="0.0294%" height="15" fill="rgb(221,66,45)" fg:x="36583" fg:w="14"/><text x="77.0776%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="76.8276%" y="1221" width="0.0294%" height="15" fill="rgb(221,178,18)" fg:x="36583" fg:w="14"/><text x="77.0776%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="76.8465%" y="1205" width="0.0105%" height="15" fill="rgb(213,81,29)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="76.8465%" y="1189" width="0.0105%" height="15" fill="rgb(220,89,49)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="76.8465%" y="1173" width="0.0105%" height="15" fill="rgb(227,60,33)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="76.8465%" y="1157" width="0.0105%" height="15" fill="rgb(205,113,12)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="76.8465%" y="1141" width="0.0105%" height="15" fill="rgb(211,32,1)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="76.8465%" y="1125" width="0.0105%" height="15" fill="rgb(246,2,12)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="76.8465%" y="1109" width="0.0105%" height="15" fill="rgb(243,37,27)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="76.8465%" y="1093" width="0.0105%" height="15" fill="rgb(248,211,31)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="76.8465%" y="1077" width="0.0105%" height="15" fill="rgb(242,146,47)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="76.8465%" y="1061" width="0.0105%" height="15" fill="rgb(206,70,20)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="76.8465%" y="1045" width="0.0105%" height="15" fill="rgb(215,10,51)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="76.8465%" y="1029" width="0.0105%" height="15" fill="rgb(243,178,53)" fg:x="36592" fg:w="5"/><text x="77.0965%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.05%)</title><rect x="76.8213%" y="1269" width="0.0462%" height="15" fill="rgb(233,221,20)" fg:x="36580" fg:w="22"/><text x="77.0713%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="76.8276%" y="1253" width="0.0399%" height="15" fill="rgb(218,95,35)" fg:x="36583" fg:w="19"/><text x="77.0776%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="76.8570%" y="1237" width="0.0105%" height="15" fill="rgb(229,13,5)" fg:x="36597" fg:w="5"/><text x="77.1070%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="76.8570%" y="1221" width="0.0105%" height="15" fill="rgb(252,164,30)" fg:x="36597" fg:w="5"/><text x="77.1070%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="76.8801%" y="1205" width="0.0210%" height="15" fill="rgb(232,68,36)" fg:x="36608" fg:w="10"/><text x="77.1301%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="76.8801%" y="1189" width="0.0210%" height="15" fill="rgb(219,59,54)" fg:x="36608" fg:w="10"/><text x="77.1301%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="76.8822%" y="1173" width="0.0189%" height="15" fill="rgb(250,92,33)" fg:x="36609" fg:w="9"/><text x="77.1322%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="76.8843%" y="1157" width="0.0168%" height="15" fill="rgb(229,162,54)" fg:x="36610" fg:w="8"/><text x="77.1343%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.02%)</title><rect x="76.8843%" y="1141" width="0.0168%" height="15" fill="rgb(244,114,52)" fg:x="36610" fg:w="8"/><text x="77.1343%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="76.8843%" y="1125" width="0.0168%" height="15" fill="rgb(212,211,43)" fg:x="36610" fg:w="8"/><text x="77.1343%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="76.8843%" y="1109" width="0.0168%" height="15" fill="rgb(226,147,8)" fg:x="36610" fg:w="8"/><text x="77.1343%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="76.8864%" y="1093" width="0.0147%" height="15" fill="rgb(226,23,13)" fg:x="36611" fg:w="7"/><text x="77.1364%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="76.8864%" y="1077" width="0.0147%" height="15" fill="rgb(240,63,4)" fg:x="36611" fg:w="7"/><text x="77.1364%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="76.8864%" y="1061" width="0.0147%" height="15" fill="rgb(221,1,32)" fg:x="36611" fg:w="7"/><text x="77.1364%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="76.8864%" y="1045" width="0.0147%" height="15" fill="rgb(242,117,10)" fg:x="36611" fg:w="7"/><text x="77.1364%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="76.9032%" y="1109" width="0.0126%" height="15" fill="rgb(249,172,44)" fg:x="36619" fg:w="6"/><text x="77.1532%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="76.9032%" y="1093" width="0.0126%" height="15" fill="rgb(244,46,45)" fg:x="36619" fg:w="6"/><text x="77.1532%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (943 samples, 1.98%)</title><rect x="74.9438%" y="1365" width="1.9804%" height="15" fill="rgb(206,43,17)" fg:x="35686" fg:w="943"/><text x="75.1938%" y="1375.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (860 samples, 1.81%)</title><rect x="75.1181%" y="1349" width="1.8061%" height="15" fill="rgb(239,218,39)" fg:x="35769" fg:w="860"/><text x="75.3681%" y="1359.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (51 samples, 0.11%)</title><rect x="76.8171%" y="1333" width="0.1071%" height="15" fill="rgb(208,169,54)" fg:x="36578" fg:w="51"/><text x="77.0671%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (50 samples, 0.11%)</title><rect x="76.8192%" y="1317" width="0.1050%" height="15" fill="rgb(247,25,42)" fg:x="36579" fg:w="50"/><text x="77.0692%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.11%)</title><rect x="76.8192%" y="1301" width="0.1050%" height="15" fill="rgb(226,23,31)" fg:x="36579" fg:w="50"/><text x="77.0692%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (49 samples, 0.10%)</title><rect x="76.8213%" y="1285" width="0.1029%" height="15" fill="rgb(247,16,28)" fg:x="36580" fg:w="49"/><text x="77.0713%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (24 samples, 0.05%)</title><rect x="76.8738%" y="1269" width="0.0504%" height="15" fill="rgb(231,147,38)" fg:x="36605" fg:w="24"/><text x="77.1238%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (24 samples, 0.05%)</title><rect x="76.8738%" y="1253" width="0.0504%" height="15" fill="rgb(253,81,48)" fg:x="36605" fg:w="24"/><text x="77.1238%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.05%)</title><rect x="76.8738%" y="1237" width="0.0504%" height="15" fill="rgb(249,222,43)" fg:x="36605" fg:w="24"/><text x="77.1238%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (24 samples, 0.05%)</title><rect x="76.8738%" y="1221" width="0.0504%" height="15" fill="rgb(221,3,27)" fg:x="36605" fg:w="24"/><text x="77.1238%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.02%)</title><rect x="76.9011%" y="1205" width="0.0231%" height="15" fill="rgb(228,180,5)" fg:x="36618" fg:w="11"/><text x="77.1511%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.02%)</title><rect x="76.9011%" y="1189" width="0.0231%" height="15" fill="rgb(227,131,42)" fg:x="36618" fg:w="11"/><text x="77.1511%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="76.9011%" y="1173" width="0.0231%" height="15" fill="rgb(212,3,39)" fg:x="36618" fg:w="11"/><text x="77.1511%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="76.9032%" y="1157" width="0.0210%" height="15" fill="rgb(226,45,5)" fg:x="36619" fg:w="10"/><text x="77.1532%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="76.9032%" y="1141" width="0.0210%" height="15" fill="rgb(215,167,45)" fg:x="36619" fg:w="10"/><text x="77.1532%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="76.9032%" y="1125" width="0.0210%" height="15" fill="rgb(250,218,53)" fg:x="36619" fg:w="10"/><text x="77.1532%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (6 samples, 0.01%)</title><rect x="76.9242%" y="1349" width="0.0126%" height="15" fill="rgb(207,140,0)" fg:x="36629" fg:w="6"/><text x="77.1742%" y="1359.50"></text></g><g><title>libsystem_m.dylib`exp (35 samples, 0.07%)</title><rect x="76.9536%" y="1333" width="0.0735%" height="15" fill="rgb(238,133,51)" fg:x="36643" fg:w="35"/><text x="77.2036%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (11 samples, 0.02%)</title><rect x="77.0271%" y="1301" width="0.0231%" height="15" fill="rgb(218,203,53)" fg:x="36678" fg:w="11"/><text x="77.2771%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (10 samples, 0.02%)</title><rect x="77.0292%" y="1285" width="0.0210%" height="15" fill="rgb(226,184,25)" fg:x="36679" fg:w="10"/><text x="77.2792%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (10 samples, 0.02%)</title><rect x="77.0292%" y="1269" width="0.0210%" height="15" fill="rgb(231,121,21)" fg:x="36679" fg:w="10"/><text x="77.2792%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (9 samples, 0.02%)</title><rect x="77.0313%" y="1253" width="0.0189%" height="15" fill="rgb(251,14,34)" fg:x="36680" fg:w="9"/><text x="77.2813%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (12 samples, 0.03%)</title><rect x="77.0271%" y="1333" width="0.0252%" height="15" fill="rgb(249,193,11)" fg:x="36678" fg:w="12"/><text x="77.2771%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (12 samples, 0.03%)</title><rect x="77.0271%" y="1317" width="0.0252%" height="15" fill="rgb(220,172,37)" fg:x="36678" fg:w="12"/><text x="77.2771%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (6 samples, 0.01%)</title><rect x="77.0565%" y="1317" width="0.0126%" height="15" fill="rgb(231,229,43)" fg:x="36692" fg:w="6"/><text x="77.3065%" y="1327.50"></text></g><g><title>libsystem_m.dylib`exp (37 samples, 0.08%)</title><rect x="77.0775%" y="1301" width="0.0777%" height="15" fill="rgb(250,161,5)" fg:x="36702" fg:w="37"/><text x="77.3275%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (8 samples, 0.02%)</title><rect x="77.1552%" y="1301" width="0.0168%" height="15" fill="rgb(218,225,18)" fg:x="36739" fg:w="8"/><text x="77.4052%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (8 samples, 0.02%)</title><rect x="77.1552%" y="1285" width="0.0168%" height="15" fill="rgb(245,45,42)" fg:x="36739" fg:w="8"/><text x="77.4052%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (8 samples, 0.02%)</title><rect x="77.1552%" y="1269" width="0.0168%" height="15" fill="rgb(211,115,1)" fg:x="36739" fg:w="8"/><text x="77.4052%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (8 samples, 0.02%)</title><rect x="77.1552%" y="1253" width="0.0168%" height="15" fill="rgb(248,133,52)" fg:x="36739" fg:w="8"/><text x="77.4052%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="77.1552%" y="1237" width="0.0168%" height="15" fill="rgb(238,100,21)" fg:x="36739" fg:w="8"/><text x="77.4052%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (7 samples, 0.01%)</title><rect x="77.1741%" y="1285" width="0.0147%" height="15" fill="rgb(247,144,11)" fg:x="36748" fg:w="7"/><text x="77.4241%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (57 samples, 0.12%)</title><rect x="77.2098%" y="1269" width="0.1197%" height="15" fill="rgb(206,164,16)" fg:x="36765" fg:w="57"/><text x="77.4598%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (15 samples, 0.03%)</title><rect x="77.3337%" y="1237" width="0.0315%" height="15" fill="rgb(222,34,3)" fg:x="36824" fg:w="15"/><text x="77.5837%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (12 samples, 0.03%)</title><rect x="77.3400%" y="1221" width="0.0252%" height="15" fill="rgb(248,82,4)" fg:x="36827" fg:w="12"/><text x="77.5900%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (12 samples, 0.03%)</title><rect x="77.3400%" y="1205" width="0.0252%" height="15" fill="rgb(228,81,46)" fg:x="36827" fg:w="12"/><text x="77.5900%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="77.3526%" y="1189" width="0.0126%" height="15" fill="rgb(227,67,47)" fg:x="36833" fg:w="6"/><text x="77.6026%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (30 samples, 0.06%)</title><rect x="77.3295%" y="1253" width="0.0630%" height="15" fill="rgb(215,93,53)" fg:x="36822" fg:w="30"/><text x="77.5795%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (13 samples, 0.03%)</title><rect x="77.3652%" y="1237" width="0.0273%" height="15" fill="rgb(248,194,39)" fg:x="36839" fg:w="13"/><text x="77.6152%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (12 samples, 0.03%)</title><rect x="77.3673%" y="1221" width="0.0252%" height="15" fill="rgb(215,5,19)" fg:x="36840" fg:w="12"/><text x="77.6173%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="77.3757%" y="1205" width="0.0168%" height="15" fill="rgb(226,215,51)" fg:x="36844" fg:w="8"/><text x="77.6257%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (34 samples, 0.07%)</title><rect x="77.3295%" y="1269" width="0.0714%" height="15" fill="rgb(225,56,26)" fg:x="36822" fg:w="34"/><text x="77.5795%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (105 samples, 0.22%)</title><rect x="77.1888%" y="1285" width="0.2205%" height="15" fill="rgb(222,75,29)" fg:x="36755" fg:w="105"/><text x="77.4388%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (8 samples, 0.02%)</title><rect x="77.4114%" y="1269" width="0.0168%" height="15" fill="rgb(236,139,6)" fg:x="36861" fg:w="8"/><text x="77.6614%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (55 samples, 0.12%)</title><rect x="77.4618%" y="1253" width="0.1155%" height="15" fill="rgb(223,137,36)" fg:x="36885" fg:w="55"/><text x="77.7118%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (14 samples, 0.03%)</title><rect x="77.5794%" y="1221" width="0.0294%" height="15" fill="rgb(226,99,2)" fg:x="36941" fg:w="14"/><text x="77.8294%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (14 samples, 0.03%)</title><rect x="77.5794%" y="1205" width="0.0294%" height="15" fill="rgb(206,133,23)" fg:x="36941" fg:w="14"/><text x="77.8294%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (14 samples, 0.03%)</title><rect x="77.5794%" y="1189" width="0.0294%" height="15" fill="rgb(243,173,15)" fg:x="36941" fg:w="14"/><text x="77.8294%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (9 samples, 0.02%)</title><rect x="77.5899%" y="1173" width="0.0189%" height="15" fill="rgb(228,69,28)" fg:x="36946" fg:w="9"/><text x="77.8399%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (24 samples, 0.05%)</title><rect x="77.5773%" y="1237" width="0.0504%" height="15" fill="rgb(212,51,22)" fg:x="36940" fg:w="24"/><text x="77.8273%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (9 samples, 0.02%)</title><rect x="77.6088%" y="1221" width="0.0189%" height="15" fill="rgb(227,113,0)" fg:x="36955" fg:w="9"/><text x="77.8588%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (9 samples, 0.02%)</title><rect x="77.6088%" y="1205" width="0.0189%" height="15" fill="rgb(252,84,27)" fg:x="36955" fg:w="9"/><text x="77.8588%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="77.6130%" y="1189" width="0.0147%" height="15" fill="rgb(223,145,39)" fg:x="36957" fg:w="7"/><text x="77.8630%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (31 samples, 0.07%)</title><rect x="77.5773%" y="1253" width="0.0651%" height="15" fill="rgb(239,219,30)" fg:x="36940" fg:w="31"/><text x="77.8273%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`oorandom::Rand64::rand_range (6 samples, 0.01%)</title><rect x="77.6298%" y="1237" width="0.0126%" height="15" fill="rgb(224,196,39)" fg:x="36965" fg:w="6"/><text x="77.8798%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (115 samples, 0.24%)</title><rect x="77.4093%" y="1285" width="0.2415%" height="15" fill="rgb(205,35,43)" fg:x="36860" fg:w="115"/><text x="77.6593%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (106 samples, 0.22%)</title><rect x="77.4282%" y="1269" width="0.2226%" height="15" fill="rgb(228,201,21)" fg:x="36869" fg:w="106"/><text x="77.6782%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (278 samples, 0.58%)</title><rect x="77.0691%" y="1317" width="0.5838%" height="15" fill="rgb(237,118,16)" fg:x="36698" fg:w="278"/><text x="77.3191%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (229 samples, 0.48%)</title><rect x="77.1720%" y="1301" width="0.4809%" height="15" fill="rgb(241,17,19)" fg:x="36747" fg:w="229"/><text x="77.4220%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (6 samples, 0.01%)</title><rect x="77.6529%" y="1301" width="0.0126%" height="15" fill="rgb(214,10,25)" fg:x="36976" fg:w="6"/><text x="77.9029%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (37 samples, 0.08%)</title><rect x="77.6760%" y="1285" width="0.0777%" height="15" fill="rgb(238,37,29)" fg:x="36987" fg:w="37"/><text x="77.9260%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (6 samples, 0.01%)</title><rect x="77.7579%" y="1269" width="0.0126%" height="15" fill="rgb(253,83,25)" fg:x="37026" fg:w="6"/><text x="78.0079%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (56 samples, 0.12%)</title><rect x="77.7915%" y="1253" width="0.1176%" height="15" fill="rgb(234,192,12)" fg:x="37042" fg:w="56"/><text x="78.0415%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (13 samples, 0.03%)</title><rect x="77.9134%" y="1221" width="0.0273%" height="15" fill="rgb(241,216,45)" fg:x="37100" fg:w="13"/><text x="78.1634%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (12 samples, 0.03%)</title><rect x="77.9155%" y="1205" width="0.0252%" height="15" fill="rgb(242,22,33)" fg:x="37101" fg:w="12"/><text x="78.1655%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (12 samples, 0.03%)</title><rect x="77.9155%" y="1189" width="0.0252%" height="15" fill="rgb(231,105,49)" fg:x="37101" fg:w="12"/><text x="78.1655%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="77.9302%" y="1173" width="0.0105%" height="15" fill="rgb(218,204,15)" fg:x="37108" fg:w="5"/><text x="78.1802%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (29 samples, 0.06%)</title><rect x="77.9113%" y="1237" width="0.0609%" height="15" fill="rgb(235,138,41)" fg:x="37099" fg:w="29"/><text x="78.1613%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (15 samples, 0.03%)</title><rect x="77.9407%" y="1221" width="0.0315%" height="15" fill="rgb(246,0,9)" fg:x="37113" fg:w="15"/><text x="78.1907%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (14 samples, 0.03%)</title><rect x="77.9428%" y="1205" width="0.0294%" height="15" fill="rgb(210,74,4)" fg:x="37114" fg:w="14"/><text x="78.1928%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="77.9596%" y="1189" width="0.0126%" height="15" fill="rgb(250,60,41)" fg:x="37122" fg:w="6"/><text x="78.2096%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (32 samples, 0.07%)</title><rect x="77.9092%" y="1253" width="0.0672%" height="15" fill="rgb(220,115,12)" fg:x="37098" fg:w="32"/><text x="78.1592%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (103 samples, 0.22%)</title><rect x="77.7705%" y="1269" width="0.2163%" height="15" fill="rgb(237,100,13)" fg:x="37032" fg:w="103"/><text x="78.0205%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (5 samples, 0.01%)</title><rect x="77.9764%" y="1253" width="0.0105%" height="15" fill="rgb(213,55,26)" fg:x="37130" fg:w="5"/><text x="78.2264%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.01%)</title><rect x="77.9764%" y="1237" width="0.0105%" height="15" fill="rgb(216,17,4)" fg:x="37130" fg:w="5"/><text x="78.2264%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (6 samples, 0.01%)</title><rect x="77.9911%" y="1253" width="0.0126%" height="15" fill="rgb(220,153,47)" fg:x="37137" fg:w="6"/><text x="78.2411%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (52 samples, 0.11%)</title><rect x="78.0226%" y="1237" width="0.1092%" height="15" fill="rgb(215,131,9)" fg:x="37152" fg:w="52"/><text x="78.2726%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (10 samples, 0.02%)</title><rect x="78.1402%" y="1205" width="0.0210%" height="15" fill="rgb(233,46,42)" fg:x="37208" fg:w="10"/><text x="78.3902%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (9 samples, 0.02%)</title><rect x="78.1423%" y="1189" width="0.0189%" height="15" fill="rgb(226,86,7)" fg:x="37209" fg:w="9"/><text x="78.3923%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (9 samples, 0.02%)</title><rect x="78.1423%" y="1173" width="0.0189%" height="15" fill="rgb(239,226,21)" fg:x="37209" fg:w="9"/><text x="78.3923%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="78.1465%" y="1157" width="0.0147%" height="15" fill="rgb(244,137,22)" fg:x="37211" fg:w="7"/><text x="78.3965%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (18 samples, 0.04%)</title><rect x="78.1339%" y="1221" width="0.0378%" height="15" fill="rgb(211,139,35)" fg:x="37205" fg:w="18"/><text x="78.3839%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="78.1612%" y="1205" width="0.0105%" height="15" fill="rgb(214,62,50)" fg:x="37218" fg:w="5"/><text x="78.4112%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="78.1612%" y="1189" width="0.0105%" height="15" fill="rgb(212,113,44)" fg:x="37218" fg:w="5"/><text x="78.4112%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (23 samples, 0.05%)</title><rect x="78.1318%" y="1237" width="0.0483%" height="15" fill="rgb(226,150,43)" fg:x="37204" fg:w="23"/><text x="78.3818%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (10 samples, 0.02%)</title><rect x="78.1801%" y="1205" width="0.0210%" height="15" fill="rgb(250,71,37)" fg:x="37227" fg:w="10"/><text x="78.4301%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (8 samples, 0.02%)</title><rect x="78.1843%" y="1189" width="0.0168%" height="15" fill="rgb(219,76,19)" fg:x="37229" fg:w="8"/><text x="78.4343%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="78.1843%" y="1173" width="0.0168%" height="15" fill="rgb(250,39,11)" fg:x="37229" fg:w="8"/><text x="78.4343%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="78.1885%" y="1157" width="0.0126%" height="15" fill="rgb(230,64,31)" fg:x="37231" fg:w="6"/><text x="78.4385%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (104 samples, 0.22%)</title><rect x="77.9869%" y="1269" width="0.2184%" height="15" fill="rgb(208,222,23)" fg:x="37135" fg:w="104"/><text x="78.2369%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (96 samples, 0.20%)</title><rect x="78.0037%" y="1253" width="0.2016%" height="15" fill="rgb(227,125,18)" fg:x="37143" fg:w="96"/><text x="78.2537%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (12 samples, 0.03%)</title><rect x="78.1801%" y="1237" width="0.0252%" height="15" fill="rgb(234,210,9)" fg:x="37227" fg:w="12"/><text x="78.4301%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (12 samples, 0.03%)</title><rect x="78.1801%" y="1221" width="0.0252%" height="15" fill="rgb(217,127,24)" fg:x="37227" fg:w="12"/><text x="78.4301%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="78.2074%" y="1205" width="0.0168%" height="15" fill="rgb(239,141,48)" fg:x="37240" fg:w="8"/><text x="78.4574%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="78.2095%" y="1189" width="0.0147%" height="15" fill="rgb(227,109,8)" fg:x="37241" fg:w="7"/><text x="78.4595%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (276 samples, 0.58%)</title><rect x="77.6529%" y="1317" width="0.5796%" height="15" fill="rgb(235,184,23)" fg:x="36976" fg:w="276"/><text x="77.9029%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (270 samples, 0.57%)</title><rect x="77.6655%" y="1301" width="0.5670%" height="15" fill="rgb(227,226,48)" fg:x="36982" fg:w="270"/><text x="77.9155%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (228 samples, 0.48%)</title><rect x="77.7537%" y="1285" width="0.4788%" height="15" fill="rgb(206,150,11)" fg:x="37024" fg:w="228"/><text x="78.0037%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="78.2053%" y="1269" width="0.0273%" height="15" fill="rgb(254,2,33)" fg:x="37239" fg:w="13"/><text x="78.4553%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="78.2053%" y="1253" width="0.0273%" height="15" fill="rgb(243,160,20)" fg:x="37239" fg:w="13"/><text x="78.4553%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="78.2053%" y="1237" width="0.0273%" height="15" fill="rgb(218,208,30)" fg:x="37239" fg:w="13"/><text x="78.4553%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="78.2074%" y="1221" width="0.0252%" height="15" fill="rgb(224,120,49)" fg:x="37240" fg:w="12"/><text x="78.4574%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="78.2347%" y="1221" width="0.0105%" height="15" fill="rgb(246,12,2)" fg:x="37253" fg:w="5"/><text x="78.4847%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="78.2326%" y="1253" width="0.0210%" height="15" fill="rgb(236,117,3)" fg:x="37252" fg:w="10"/><text x="78.4826%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="78.2347%" y="1237" width="0.0189%" height="15" fill="rgb(216,128,52)" fg:x="37253" fg:w="9"/><text x="78.4847%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="78.2536%" y="1253" width="0.0168%" height="15" fill="rgb(246,145,19)" fg:x="37262" fg:w="8"/><text x="78.5036%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="78.2536%" y="1237" width="0.0168%" height="15" fill="rgb(222,11,46)" fg:x="37262" fg:w="8"/><text x="78.5036%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="78.2536%" y="1221" width="0.0168%" height="15" fill="rgb(245,82,36)" fg:x="37262" fg:w="8"/><text x="78.5036%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="78.2704%" y="1189" width="0.0105%" height="15" fill="rgb(250,73,51)" fg:x="37270" fg:w="5"/><text x="78.5204%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="78.2704%" y="1173" width="0.0105%" height="15" fill="rgb(221,189,23)" fg:x="37270" fg:w="5"/><text x="78.5204%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (653 samples, 1.37%)</title><rect x="76.9242%" y="1365" width="1.3714%" height="15" fill="rgb(210,33,7)" fg:x="36629" fg:w="653"/><text x="77.1742%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (647 samples, 1.36%)</title><rect x="76.9368%" y="1349" width="1.3588%" height="15" fill="rgb(210,107,22)" fg:x="36635" fg:w="647"/><text x="77.1868%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (592 samples, 1.24%)</title><rect x="77.0523%" y="1333" width="1.2433%" height="15" fill="rgb(222,116,37)" fg:x="36690" fg:w="592"/><text x="77.3023%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (30 samples, 0.06%)</title><rect x="78.2326%" y="1317" width="0.0630%" height="15" fill="rgb(254,17,48)" fg:x="37252" fg:w="30"/><text x="78.4826%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (30 samples, 0.06%)</title><rect x="78.2326%" y="1301" width="0.0630%" height="15" fill="rgb(224,36,32)" fg:x="37252" fg:w="30"/><text x="78.4826%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.06%)</title><rect x="78.2326%" y="1285" width="0.0630%" height="15" fill="rgb(232,90,46)" fg:x="37252" fg:w="30"/><text x="78.4826%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (30 samples, 0.06%)</title><rect x="78.2326%" y="1269" width="0.0630%" height="15" fill="rgb(241,66,40)" fg:x="37252" fg:w="30"/><text x="78.4826%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.03%)</title><rect x="78.2704%" y="1253" width="0.0252%" height="15" fill="rgb(249,184,29)" fg:x="37270" fg:w="12"/><text x="78.5204%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.03%)</title><rect x="78.2704%" y="1237" width="0.0252%" height="15" fill="rgb(231,181,1)" fg:x="37270" fg:w="12"/><text x="78.5204%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="78.2704%" y="1221" width="0.0252%" height="15" fill="rgb(224,94,2)" fg:x="37270" fg:w="12"/><text x="78.5204%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="78.2704%" y="1205" width="0.0252%" height="15" fill="rgb(229,170,15)" fg:x="37270" fg:w="12"/><text x="78.5204%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="78.2809%" y="1189" width="0.0147%" height="15" fill="rgb(240,127,35)" fg:x="37275" fg:w="7"/><text x="78.5309%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="78.2809%" y="1173" width="0.0147%" height="15" fill="rgb(248,196,34)" fg:x="37275" fg:w="7"/><text x="78.5309%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="78.2809%" y="1157" width="0.0147%" height="15" fill="rgb(236,137,7)" fg:x="37275" fg:w="7"/><text x="78.5309%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="78.2809%" y="1141" width="0.0147%" height="15" fill="rgb(235,127,16)" fg:x="37275" fg:w="7"/><text x="78.5309%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="78.2830%" y="1125" width="0.0126%" height="15" fill="rgb(250,192,54)" fg:x="37276" fg:w="6"/><text x="78.5330%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="78.2830%" y="1109" width="0.0126%" height="15" fill="rgb(218,98,20)" fg:x="37276" fg:w="6"/><text x="78.5330%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="78.2830%" y="1093" width="0.0126%" height="15" fill="rgb(230,176,47)" fg:x="37276" fg:w="6"/><text x="78.5330%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="78.2851%" y="1077" width="0.0105%" height="15" fill="rgb(244,2,33)" fg:x="37277" fg:w="5"/><text x="78.5351%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="78.2851%" y="1061" width="0.0105%" height="15" fill="rgb(231,100,17)" fg:x="37277" fg:w="5"/><text x="78.5351%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="78.2851%" y="1045" width="0.0105%" height="15" fill="rgb(245,23,12)" fg:x="37277" fg:w="5"/><text x="78.5351%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="78.2851%" y="1029" width="0.0105%" height="15" fill="rgb(249,55,22)" fg:x="37277" fg:w="5"/><text x="78.5351%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="78.2851%" y="1013" width="0.0105%" height="15" fill="rgb(207,134,9)" fg:x="37277" fg:w="5"/><text x="78.5351%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="78.2851%" y="997" width="0.0105%" height="15" fill="rgb(218,134,0)" fg:x="37277" fg:w="5"/><text x="78.5351%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="78.2851%" y="981" width="0.0105%" height="15" fill="rgb(213,212,33)" fg:x="37277" fg:w="5"/><text x="78.5351%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::bivariate::resamples::Resamples&lt;X,Y&gt;::next (5 samples, 0.01%)</title><rect x="78.3334%" y="1109" width="0.0105%" height="15" fill="rgb(252,106,18)" fg:x="37300" fg:w="5"/><text x="78.5834%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="78.3229%" y="1173" width="0.0273%" height="15" fill="rgb(208,126,42)" fg:x="37295" fg:w="13"/><text x="78.5729%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="78.3271%" y="1157" width="0.0231%" height="15" fill="rgb(246,175,29)" fg:x="37297" fg:w="11"/><text x="78.5771%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="78.3271%" y="1141" width="0.0231%" height="15" fill="rgb(215,13,50)" fg:x="37297" fg:w="11"/><text x="78.5771%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (11 samples, 0.02%)</title><rect x="78.3271%" y="1125" width="0.0231%" height="15" fill="rgb(216,172,15)" fg:x="37297" fg:w="11"/><text x="78.5771%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.05%)</title><rect x="78.3166%" y="1205" width="0.0462%" height="15" fill="rgb(212,103,13)" fg:x="37292" fg:w="22"/><text x="78.5666%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="78.3229%" y="1189" width="0.0399%" height="15" fill="rgb(231,171,36)" fg:x="37295" fg:w="19"/><text x="78.5729%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="78.3628%" y="1205" width="0.0147%" height="15" fill="rgb(250,123,20)" fg:x="37314" fg:w="7"/><text x="78.6128%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="78.3628%" y="1189" width="0.0147%" height="15" fill="rgb(212,53,50)" fg:x="37314" fg:w="7"/><text x="78.6128%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="78.3649%" y="1173" width="0.0126%" height="15" fill="rgb(243,54,12)" fg:x="37315" fg:w="6"/><text x="78.6149%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.07%)</title><rect x="78.3103%" y="1237" width="0.0714%" height="15" fill="rgb(234,101,34)" fg:x="37289" fg:w="34"/><text x="78.5603%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (32 samples, 0.07%)</title><rect x="78.3145%" y="1221" width="0.0672%" height="15" fill="rgb(254,67,22)" fg:x="37291" fg:w="32"/><text x="78.5645%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.03%)</title><rect x="78.3817%" y="1237" width="0.0294%" height="15" fill="rgb(250,35,47)" fg:x="37323" fg:w="14"/><text x="78.6317%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="78.3817%" y="1221" width="0.0294%" height="15" fill="rgb(226,126,38)" fg:x="37323" fg:w="14"/><text x="78.6317%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="78.3901%" y="1205" width="0.0210%" height="15" fill="rgb(216,138,53)" fg:x="37327" fg:w="10"/><text x="78.6401%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="78.3985%" y="1189" width="0.0126%" height="15" fill="rgb(246,199,43)" fg:x="37331" fg:w="6"/><text x="78.6485%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="78.3985%" y="1173" width="0.0126%" height="15" fill="rgb(232,125,11)" fg:x="37331" fg:w="6"/><text x="78.6485%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.12%)</title><rect x="78.3103%" y="1269" width="0.1155%" height="15" fill="rgb(218,219,45)" fg:x="37289" fg:w="55"/><text x="78.5603%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (55 samples, 0.12%)</title><rect x="78.3103%" y="1253" width="0.1155%" height="15" fill="rgb(216,102,54)" fg:x="37289" fg:w="55"/><text x="78.5603%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="78.4111%" y="1237" width="0.0147%" height="15" fill="rgb(250,228,7)" fg:x="37337" fg:w="7"/><text x="78.6611%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="78.4111%" y="1221" width="0.0147%" height="15" fill="rgb(226,125,25)" fg:x="37337" fg:w="7"/><text x="78.6611%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="78.4111%" y="1205" width="0.0147%" height="15" fill="rgb(224,165,27)" fg:x="37337" fg:w="7"/><text x="78.6611%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="78.4132%" y="1189" width="0.0126%" height="15" fill="rgb(233,86,3)" fg:x="37338" fg:w="6"/><text x="78.6632%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="78.4132%" y="1173" width="0.0126%" height="15" fill="rgb(228,116,20)" fg:x="37338" fg:w="6"/><text x="78.6632%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="78.4132%" y="1157" width="0.0126%" height="15" fill="rgb(209,192,17)" fg:x="37338" fg:w="6"/><text x="78.6632%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="78.4153%" y="1141" width="0.0105%" height="15" fill="rgb(224,88,34)" fg:x="37339" fg:w="5"/><text x="78.6653%" y="1151.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="78.4258%" y="1237" width="0.0105%" height="15" fill="rgb(233,38,6)" fg:x="37344" fg:w="5"/><text x="78.6758%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="78.4405%" y="1221" width="0.0168%" height="15" fill="rgb(212,59,30)" fg:x="37351" fg:w="8"/><text x="78.6905%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="78.4468%" y="1205" width="0.0105%" height="15" fill="rgb(213,80,3)" fg:x="37354" fg:w="5"/><text x="78.6968%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="78.4573%" y="1221" width="0.0147%" height="15" fill="rgb(251,178,7)" fg:x="37359" fg:w="7"/><text x="78.7073%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="78.4573%" y="1205" width="0.0147%" height="15" fill="rgb(213,154,26)" fg:x="37359" fg:w="7"/><text x="78.7073%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="78.4594%" y="1189" width="0.0126%" height="15" fill="rgb(238,165,49)" fg:x="37360" fg:w="6"/><text x="78.7094%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="78.4615%" y="1173" width="0.0105%" height="15" fill="rgb(248,91,46)" fg:x="37361" fg:w="5"/><text x="78.7115%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="78.4615%" y="1157" width="0.0105%" height="15" fill="rgb(244,21,52)" fg:x="37361" fg:w="5"/><text x="78.7115%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (24 samples, 0.05%)</title><rect x="78.4258%" y="1269" width="0.0504%" height="15" fill="rgb(247,122,20)" fg:x="37344" fg:w="24"/><text x="78.6758%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.05%)</title><rect x="78.4258%" y="1253" width="0.0504%" height="15" fill="rgb(218,27,9)" fg:x="37344" fg:w="24"/><text x="78.6758%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="78.4363%" y="1237" width="0.0399%" height="15" fill="rgb(246,7,6)" fg:x="37349" fg:w="19"/><text x="78.6863%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="78.4825%" y="1173" width="0.0126%" height="15" fill="rgb(227,135,54)" fg:x="37371" fg:w="6"/><text x="78.7325%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="78.4846%" y="1157" width="0.0105%" height="15" fill="rgb(247,14,11)" fg:x="37372" fg:w="5"/><text x="78.7346%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="78.4783%" y="1205" width="0.0273%" height="15" fill="rgb(206,149,34)" fg:x="37369" fg:w="13"/><text x="78.7283%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="78.4825%" y="1189" width="0.0231%" height="15" fill="rgb(227,228,4)" fg:x="37371" fg:w="11"/><text x="78.7325%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (104 samples, 0.22%)</title><rect x="78.3019%" y="1301" width="0.2184%" height="15" fill="rgb(238,218,28)" fg:x="37285" fg:w="104"/><text x="78.5519%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (100 samples, 0.21%)</title><rect x="78.3103%" y="1285" width="0.2100%" height="15" fill="rgb(252,86,40)" fg:x="37289" fg:w="100"/><text x="78.5603%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.04%)</title><rect x="78.4762%" y="1269" width="0.0441%" height="15" fill="rgb(251,225,11)" fg:x="37368" fg:w="21"/><text x="78.7262%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (21 samples, 0.04%)</title><rect x="78.4762%" y="1253" width="0.0441%" height="15" fill="rgb(206,46,49)" fg:x="37368" fg:w="21"/><text x="78.7262%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="78.4762%" y="1237" width="0.0441%" height="15" fill="rgb(245,128,24)" fg:x="37368" fg:w="21"/><text x="78.7262%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (20 samples, 0.04%)</title><rect x="78.4783%" y="1221" width="0.0420%" height="15" fill="rgb(219,177,34)" fg:x="37369" fg:w="20"/><text x="78.7283%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="78.5098%" y="1205" width="0.0105%" height="15" fill="rgb(218,60,48)" fg:x="37384" fg:w="5"/><text x="78.7598%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="78.5245%" y="1221" width="0.0105%" height="15" fill="rgb(221,11,5)" fg:x="37391" fg:w="5"/><text x="78.7745%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="78.5224%" y="1253" width="0.0252%" height="15" fill="rgb(220,148,13)" fg:x="37390" fg:w="12"/><text x="78.7724%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="78.5245%" y="1237" width="0.0231%" height="15" fill="rgb(210,16,3)" fg:x="37391" fg:w="11"/><text x="78.7745%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="78.5350%" y="1221" width="0.0126%" height="15" fill="rgb(236,80,2)" fg:x="37396" fg:w="6"/><text x="78.7850%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="78.5350%" y="1205" width="0.0126%" height="15" fill="rgb(239,129,19)" fg:x="37396" fg:w="6"/><text x="78.7850%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="78.5497%" y="1205" width="0.0105%" height="15" fill="rgb(220,106,35)" fg:x="37403" fg:w="5"/><text x="78.7997%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="78.5497%" y="1189" width="0.0105%" height="15" fill="rgb(252,139,45)" fg:x="37403" fg:w="5"/><text x="78.7997%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="78.5476%" y="1253" width="0.0147%" height="15" fill="rgb(229,8,36)" fg:x="37402" fg:w="7"/><text x="78.7976%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="78.5476%" y="1237" width="0.0147%" height="15" fill="rgb(230,126,33)" fg:x="37402" fg:w="7"/><text x="78.7976%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="78.5497%" y="1221" width="0.0126%" height="15" fill="rgb(239,140,21)" fg:x="37403" fg:w="6"/><text x="78.7997%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="78.5644%" y="1189" width="0.0105%" height="15" fill="rgb(254,104,9)" fg:x="37410" fg:w="5"/><text x="78.8144%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="78.5644%" y="1173" width="0.0105%" height="15" fill="rgb(239,52,14)" fg:x="37410" fg:w="5"/><text x="78.8144%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="78.5791%" y="1125" width="0.0126%" height="15" fill="rgb(208,227,44)" fg:x="37417" fg:w="6"/><text x="78.8291%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="78.5791%" y="1109" width="0.0126%" height="15" fill="rgb(246,18,19)" fg:x="37417" fg:w="6"/><text x="78.8291%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (35 samples, 0.07%)</title><rect x="78.5203%" y="1301" width="0.0735%" height="15" fill="rgb(235,228,25)" fg:x="37389" fg:w="35"/><text x="78.7703%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.07%)</title><rect x="78.5203%" y="1285" width="0.0735%" height="15" fill="rgb(240,156,20)" fg:x="37389" fg:w="35"/><text x="78.7703%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (34 samples, 0.07%)</title><rect x="78.5224%" y="1269" width="0.0714%" height="15" fill="rgb(224,8,20)" fg:x="37390" fg:w="34"/><text x="78.7724%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.03%)</title><rect x="78.5623%" y="1253" width="0.0315%" height="15" fill="rgb(214,12,52)" fg:x="37409" fg:w="15"/><text x="78.8123%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.03%)</title><rect x="78.5623%" y="1237" width="0.0315%" height="15" fill="rgb(211,220,47)" fg:x="37409" fg:w="15"/><text x="78.8123%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="78.5623%" y="1221" width="0.0315%" height="15" fill="rgb(250,173,5)" fg:x="37409" fg:w="15"/><text x="78.8123%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="78.5644%" y="1205" width="0.0294%" height="15" fill="rgb(250,125,52)" fg:x="37410" fg:w="14"/><text x="78.8144%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="78.5770%" y="1189" width="0.0168%" height="15" fill="rgb(209,133,18)" fg:x="37416" fg:w="8"/><text x="78.8270%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.02%)</title><rect x="78.5770%" y="1173" width="0.0168%" height="15" fill="rgb(216,173,22)" fg:x="37416" fg:w="8"/><text x="78.8270%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="78.5770%" y="1157" width="0.0168%" height="15" fill="rgb(205,3,22)" fg:x="37416" fg:w="8"/><text x="78.8270%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="78.5791%" y="1141" width="0.0147%" height="15" fill="rgb(248,22,20)" fg:x="37417" fg:w="7"/><text x="78.8291%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="78.6043%" y="1173" width="0.0126%" height="15" fill="rgb(233,6,29)" fg:x="37429" fg:w="6"/><text x="78.8543%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="78.6064%" y="1157" width="0.0105%" height="15" fill="rgb(240,22,54)" fg:x="37430" fg:w="5"/><text x="78.8564%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="78.6022%" y="1205" width="0.0168%" height="15" fill="rgb(231,133,32)" fg:x="37428" fg:w="8"/><text x="78.8522%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="78.6043%" y="1189" width="0.0147%" height="15" fill="rgb(248,193,4)" fg:x="37429" fg:w="7"/><text x="78.8543%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="78.5980%" y="1237" width="0.0252%" height="15" fill="rgb(211,178,46)" fg:x="37426" fg:w="12"/><text x="78.8480%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="78.6022%" y="1221" width="0.0210%" height="15" fill="rgb(224,5,42)" fg:x="37428" fg:w="10"/><text x="78.8522%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="78.6253%" y="1173" width="0.0147%" height="15" fill="rgb(239,176,25)" fg:x="37439" fg:w="7"/><text x="78.8753%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="78.6295%" y="1157" width="0.0105%" height="15" fill="rgb(245,187,50)" fg:x="37441" fg:w="5"/><text x="78.8795%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (1,836 samples, 3.86%)</title><rect x="74.7947%" y="1397" width="3.8558%" height="15" fill="rgb(248,24,15)" fg:x="35615" fg:w="1836"/><text x="75.0447%" y="1407.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (1,775 samples, 3.73%)</title><rect x="74.9228%" y="1381" width="3.7277%" height="15" fill="rgb(205,166,13)" fg:x="35676" fg:w="1775"/><text x="75.1728%" y="1391.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (169 samples, 0.35%)</title><rect x="78.2956%" y="1365" width="0.3549%" height="15" fill="rgb(208,114,23)" fg:x="37282" fg:w="169"/><text x="78.5456%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (168 samples, 0.35%)</title><rect x="78.2977%" y="1349" width="0.3528%" height="15" fill="rgb(239,127,18)" fg:x="37283" fg:w="168"/><text x="78.5477%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (168 samples, 0.35%)</title><rect x="78.2977%" y="1333" width="0.3528%" height="15" fill="rgb(219,154,28)" fg:x="37283" fg:w="168"/><text x="78.5477%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (166 samples, 0.35%)</title><rect x="78.3019%" y="1317" width="0.3486%" height="15" fill="rgb(225,157,23)" fg:x="37285" fg:w="166"/><text x="78.5519%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (27 samples, 0.06%)</title><rect x="78.5938%" y="1301" width="0.0567%" height="15" fill="rgb(219,8,6)" fg:x="37424" fg:w="27"/><text x="78.8438%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (27 samples, 0.06%)</title><rect x="78.5938%" y="1285" width="0.0567%" height="15" fill="rgb(212,47,6)" fg:x="37424" fg:w="27"/><text x="78.8438%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.06%)</title><rect x="78.5938%" y="1269" width="0.0567%" height="15" fill="rgb(224,190,4)" fg:x="37424" fg:w="27"/><text x="78.8438%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="78.5980%" y="1253" width="0.0525%" height="15" fill="rgb(239,183,29)" fg:x="37426" fg:w="25"/><text x="78.8480%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.03%)</title><rect x="78.6253%" y="1237" width="0.0252%" height="15" fill="rgb(213,57,7)" fg:x="37439" fg:w="12"/><text x="78.8753%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.03%)</title><rect x="78.6253%" y="1221" width="0.0252%" height="15" fill="rgb(216,148,1)" fg:x="37439" fg:w="12"/><text x="78.8753%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="78.6253%" y="1205" width="0.0252%" height="15" fill="rgb(236,182,29)" fg:x="37439" fg:w="12"/><text x="78.8753%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="78.6253%" y="1189" width="0.0252%" height="15" fill="rgb(244,120,48)" fg:x="37439" fg:w="12"/><text x="78.8753%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (5 samples, 0.01%)</title><rect x="78.6547%" y="1381" width="0.0105%" height="15" fill="rgb(206,71,34)" fg:x="37453" fg:w="5"/><text x="78.9047%" y="1391.50"></text></g><g><title>libsystem_m.dylib`exp (33 samples, 0.07%)</title><rect x="78.6862%" y="1365" width="0.0693%" height="15" fill="rgb(242,32,6)" fg:x="37468" fg:w="33"/><text x="78.9362%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (6 samples, 0.01%)</title><rect x="78.7555%" y="1333" width="0.0126%" height="15" fill="rgb(241,35,3)" fg:x="37501" fg:w="6"/><text x="79.0055%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="78.7555%" y="1317" width="0.0126%" height="15" fill="rgb(222,62,19)" fg:x="37501" fg:w="6"/><text x="79.0055%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="78.7555%" y="1301" width="0.0126%" height="15" fill="rgb(223,110,41)" fg:x="37501" fg:w="6"/><text x="79.0055%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (10 samples, 0.02%)</title><rect x="78.7555%" y="1365" width="0.0210%" height="15" fill="rgb(208,224,4)" fg:x="37501" fg:w="10"/><text x="79.0055%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (10 samples, 0.02%)</title><rect x="78.7555%" y="1349" width="0.0210%" height="15" fill="rgb(241,137,19)" fg:x="37501" fg:w="10"/><text x="79.0055%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (13 samples, 0.03%)</title><rect x="78.7786%" y="1349" width="0.0273%" height="15" fill="rgb(244,24,17)" fg:x="37512" fg:w="13"/><text x="79.0286%" y="1359.50"></text></g><g><title>libsystem_m.dylib`exp (32 samples, 0.07%)</title><rect x="78.8143%" y="1333" width="0.0672%" height="15" fill="rgb(245,178,49)" fg:x="37529" fg:w="32"/><text x="79.0643%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (6 samples, 0.01%)</title><rect x="78.8836%" y="1301" width="0.0126%" height="15" fill="rgb(219,160,38)" fg:x="37562" fg:w="6"/><text x="79.1336%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="78.8857%" y="1285" width="0.0105%" height="15" fill="rgb(228,137,14)" fg:x="37563" fg:w="5"/><text x="79.1357%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="78.8857%" y="1269" width="0.0105%" height="15" fill="rgb(237,134,11)" fg:x="37563" fg:w="5"/><text x="79.1357%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (7 samples, 0.01%)</title><rect x="78.8836%" y="1333" width="0.0147%" height="15" fill="rgb(211,126,44)" fg:x="37562" fg:w="7"/><text x="79.1336%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (7 samples, 0.01%)</title><rect x="78.8836%" y="1317" width="0.0147%" height="15" fill="rgb(226,171,33)" fg:x="37562" fg:w="7"/><text x="79.1336%" y="1327.50"></text></g><g><title>libsystem_m.dylib`exp (21 samples, 0.04%)</title><rect x="78.9193%" y="1301" width="0.0441%" height="15" fill="rgb(253,99,13)" fg:x="37579" fg:w="21"/><text x="79.1693%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (6 samples, 0.01%)</title><rect x="78.9634%" y="1269" width="0.0126%" height="15" fill="rgb(244,48,7)" fg:x="37600" fg:w="6"/><text x="79.2134%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="78.9634%" y="1253" width="0.0126%" height="15" fill="rgb(244,217,54)" fg:x="37600" fg:w="6"/><text x="79.2134%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="78.9655%" y="1237" width="0.0105%" height="15" fill="rgb(224,15,18)" fg:x="37601" fg:w="5"/><text x="79.2155%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (7 samples, 0.01%)</title><rect x="78.9634%" y="1301" width="0.0147%" height="15" fill="rgb(244,99,12)" fg:x="37600" fg:w="7"/><text x="79.2134%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (7 samples, 0.01%)</title><rect x="78.9634%" y="1285" width="0.0147%" height="15" fill="rgb(233,226,8)" fg:x="37600" fg:w="7"/><text x="79.2134%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (6 samples, 0.01%)</title><rect x="78.9781%" y="1285" width="0.0126%" height="15" fill="rgb(229,211,3)" fg:x="37607" fg:w="6"/><text x="79.2281%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (27 samples, 0.06%)</title><rect x="79.0033%" y="1269" width="0.0567%" height="15" fill="rgb(216,140,21)" fg:x="37619" fg:w="27"/><text x="79.2533%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (9 samples, 0.02%)</title><rect x="79.0621%" y="1237" width="0.0189%" height="15" fill="rgb(234,122,30)" fg:x="37647" fg:w="9"/><text x="79.3121%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="79.0684%" y="1221" width="0.0126%" height="15" fill="rgb(236,25,46)" fg:x="37650" fg:w="6"/><text x="79.3184%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="79.0684%" y="1205" width="0.0126%" height="15" fill="rgb(217,52,54)" fg:x="37650" fg:w="6"/><text x="79.3184%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (21 samples, 0.04%)</title><rect x="79.0600%" y="1269" width="0.0441%" height="15" fill="rgb(222,29,26)" fg:x="37646" fg:w="21"/><text x="79.3100%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (20 samples, 0.04%)</title><rect x="79.0621%" y="1253" width="0.0420%" height="15" fill="rgb(216,177,29)" fg:x="37647" fg:w="20"/><text x="79.3121%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (11 samples, 0.02%)</title><rect x="79.0810%" y="1237" width="0.0231%" height="15" fill="rgb(247,136,51)" fg:x="37656" fg:w="11"/><text x="79.3310%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (11 samples, 0.02%)</title><rect x="79.0810%" y="1221" width="0.0231%" height="15" fill="rgb(231,47,47)" fg:x="37656" fg:w="11"/><text x="79.3310%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.12%)</title><rect x="78.9907%" y="1285" width="0.1155%" height="15" fill="rgb(211,192,36)" fg:x="37613" fg:w="55"/><text x="79.2407%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (7 samples, 0.01%)</title><rect x="79.1083%" y="1269" width="0.0147%" height="15" fill="rgb(229,156,32)" fg:x="37669" fg:w="7"/><text x="79.3583%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (31 samples, 0.07%)</title><rect x="79.1293%" y="1253" width="0.0651%" height="15" fill="rgb(248,213,20)" fg:x="37679" fg:w="31"/><text x="79.3793%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (10 samples, 0.02%)</title><rect x="79.2028%" y="1221" width="0.0210%" height="15" fill="rgb(217,64,7)" fg:x="37714" fg:w="10"/><text x="79.4528%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="79.2112%" y="1205" width="0.0126%" height="15" fill="rgb(232,142,8)" fg:x="37718" fg:w="6"/><text x="79.4612%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="79.2112%" y="1189" width="0.0126%" height="15" fill="rgb(224,92,44)" fg:x="37718" fg:w="6"/><text x="79.4612%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="79.2112%" y="1173" width="0.0126%" height="15" fill="rgb(214,169,17)" fg:x="37718" fg:w="6"/><text x="79.4612%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (19 samples, 0.04%)</title><rect x="79.1944%" y="1253" width="0.0399%" height="15" fill="rgb(210,59,37)" fg:x="37710" fg:w="19"/><text x="79.4444%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (19 samples, 0.04%)</title><rect x="79.1944%" y="1237" width="0.0399%" height="15" fill="rgb(214,116,48)" fg:x="37710" fg:w="19"/><text x="79.4444%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="79.2238%" y="1221" width="0.0105%" height="15" fill="rgb(244,191,6)" fg:x="37724" fg:w="5"/><text x="79.4738%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="79.2238%" y="1205" width="0.0105%" height="15" fill="rgb(241,50,52)" fg:x="37724" fg:w="5"/><text x="79.4738%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="79.2238%" y="1189" width="0.0105%" height="15" fill="rgb(236,75,39)" fg:x="37724" fg:w="5"/><text x="79.4738%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (159 samples, 0.33%)</title><rect x="78.9025%" y="1317" width="0.3339%" height="15" fill="rgb(236,99,0)" fg:x="37571" fg:w="159"/><text x="79.1525%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (123 samples, 0.26%)</title><rect x="78.9781%" y="1301" width="0.2583%" height="15" fill="rgb(207,202,15)" fg:x="37607" fg:w="123"/><text x="79.2281%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (62 samples, 0.13%)</title><rect x="79.1062%" y="1285" width="0.1302%" height="15" fill="rgb(233,207,14)" fg:x="37668" fg:w="62"/><text x="79.3562%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (54 samples, 0.11%)</title><rect x="79.1230%" y="1269" width="0.1134%" height="15" fill="rgb(226,27,51)" fg:x="37676" fg:w="54"/><text x="79.3730%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (30 samples, 0.06%)</title><rect x="79.2511%" y="1285" width="0.0630%" height="15" fill="rgb(206,104,42)" fg:x="37737" fg:w="30"/><text x="79.5011%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (38 samples, 0.08%)</title><rect x="79.3393%" y="1253" width="0.0798%" height="15" fill="rgb(212,225,4)" fg:x="37779" fg:w="38"/><text x="79.5893%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (5 samples, 0.01%)</title><rect x="79.4191%" y="1221" width="0.0105%" height="15" fill="rgb(233,96,42)" fg:x="37817" fg:w="5"/><text x="79.6691%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (10 samples, 0.02%)</title><rect x="79.4191%" y="1237" width="0.0210%" height="15" fill="rgb(229,21,32)" fg:x="37817" fg:w="10"/><text x="79.6691%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="79.4296%" y="1221" width="0.0105%" height="15" fill="rgb(226,216,24)" fg:x="37822" fg:w="5"/><text x="79.6796%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (14 samples, 0.03%)</title><rect x="79.4191%" y="1253" width="0.0294%" height="15" fill="rgb(221,163,17)" fg:x="37817" fg:w="14"/><text x="79.6691%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (60 samples, 0.13%)</title><rect x="79.3267%" y="1269" width="0.1260%" height="15" fill="rgb(216,216,42)" fg:x="37773" fg:w="60"/><text x="79.5767%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (31 samples, 0.07%)</title><rect x="79.4674%" y="1237" width="0.0651%" height="15" fill="rgb(240,118,7)" fg:x="37840" fg:w="31"/><text x="79.7174%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (12 samples, 0.03%)</title><rect x="79.5325%" y="1221" width="0.0252%" height="15" fill="rgb(221,67,37)" fg:x="37871" fg:w="12"/><text x="79.7825%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (7 samples, 0.01%)</title><rect x="79.5430%" y="1205" width="0.0147%" height="15" fill="rgb(241,32,44)" fg:x="37876" fg:w="7"/><text x="79.7930%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="79.5430%" y="1189" width="0.0147%" height="15" fill="rgb(235,204,43)" fg:x="37876" fg:w="7"/><text x="79.7930%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="79.5472%" y="1173" width="0.0105%" height="15" fill="rgb(213,116,10)" fg:x="37878" fg:w="5"/><text x="79.7972%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (14 samples, 0.03%)</title><rect x="79.5325%" y="1237" width="0.0294%" height="15" fill="rgb(239,15,48)" fg:x="37871" fg:w="14"/><text x="79.7825%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (54 samples, 0.11%)</title><rect x="79.4527%" y="1269" width="0.1134%" height="15" fill="rgb(207,123,36)" fg:x="37833" fg:w="54"/><text x="79.7027%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.11%)</title><rect x="79.4611%" y="1253" width="0.1050%" height="15" fill="rgb(209,103,30)" fg:x="37837" fg:w="50"/><text x="79.7111%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="79.5661%" y="1173" width="0.0126%" height="15" fill="rgb(238,100,19)" fg:x="37887" fg:w="6"/><text x="79.8161%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="79.5661%" y="1157" width="0.0126%" height="15" fill="rgb(244,30,14)" fg:x="37887" fg:w="6"/><text x="79.8161%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="79.5661%" y="1205" width="0.0189%" height="15" fill="rgb(249,174,6)" fg:x="37887" fg:w="9"/><text x="79.8161%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="79.5661%" y="1189" width="0.0189%" height="15" fill="rgb(235,213,41)" fg:x="37887" fg:w="9"/><text x="79.8161%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (169 samples, 0.35%)</title><rect x="79.2364%" y="1317" width="0.3549%" height="15" fill="rgb(213,118,6)" fg:x="37730" fg:w="169"/><text x="79.4864%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (167 samples, 0.35%)</title><rect x="79.2406%" y="1301" width="0.3507%" height="15" fill="rgb(235,44,51)" fg:x="37732" fg:w="167"/><text x="79.4906%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (129 samples, 0.27%)</title><rect x="79.3204%" y="1285" width="0.2709%" height="15" fill="rgb(217,9,53)" fg:x="37770" fg:w="129"/><text x="79.5704%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.03%)</title><rect x="79.5661%" y="1269" width="0.0252%" height="15" fill="rgb(237,172,34)" fg:x="37887" fg:w="12"/><text x="79.8161%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.03%)</title><rect x="79.5661%" y="1253" width="0.0252%" height="15" fill="rgb(206,206,11)" fg:x="37887" fg:w="12"/><text x="79.8161%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="79.5661%" y="1237" width="0.0252%" height="15" fill="rgb(214,149,29)" fg:x="37887" fg:w="12"/><text x="79.8161%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="79.5661%" y="1221" width="0.0252%" height="15" fill="rgb(208,123,3)" fg:x="37887" fg:w="12"/><text x="79.8161%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="79.5997%" y="1221" width="0.0105%" height="15" fill="rgb(229,126,4)" fg:x="37903" fg:w="5"/><text x="79.8497%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="79.5997%" y="1205" width="0.0105%" height="15" fill="rgb(222,92,36)" fg:x="37903" fg:w="5"/><text x="79.8497%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="79.6186%" y="1157" width="0.0210%" height="15" fill="rgb(216,39,41)" fg:x="37912" fg:w="10"/><text x="79.8686%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="79.6228%" y="1141" width="0.0168%" height="15" fill="rgb(253,127,28)" fg:x="37914" fg:w="8"/><text x="79.8728%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.05%)</title><rect x="79.5976%" y="1253" width="0.0462%" height="15" fill="rgb(249,152,51)" fg:x="37902" fg:w="22"/><text x="79.8476%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (21 samples, 0.04%)</title><rect x="79.5997%" y="1237" width="0.0441%" height="15" fill="rgb(209,123,42)" fg:x="37903" fg:w="21"/><text x="79.8497%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="79.6165%" y="1221" width="0.0273%" height="15" fill="rgb(241,118,22)" fg:x="37911" fg:w="13"/><text x="79.8665%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="79.6165%" y="1205" width="0.0273%" height="15" fill="rgb(208,25,7)" fg:x="37911" fg:w="13"/><text x="79.8665%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="79.6165%" y="1189" width="0.0273%" height="15" fill="rgb(243,144,39)" fg:x="37911" fg:w="13"/><text x="79.8665%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="79.6186%" y="1173" width="0.0252%" height="15" fill="rgb(250,50,5)" fg:x="37912" fg:w="12"/><text x="79.8686%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="79.6438%" y="1253" width="0.0105%" height="15" fill="rgb(207,67,11)" fg:x="37924" fg:w="5"/><text x="79.8938%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="79.6438%" y="1237" width="0.0105%" height="15" fill="rgb(245,204,40)" fg:x="37924" fg:w="5"/><text x="79.8938%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="79.6438%" y="1221" width="0.0105%" height="15" fill="rgb(238,228,24)" fg:x="37924" fg:w="5"/><text x="79.8938%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="79.6438%" y="1205" width="0.0105%" height="15" fill="rgb(217,116,22)" fg:x="37924" fg:w="5"/><text x="79.8938%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="79.6438%" y="1189" width="0.0105%" height="15" fill="rgb(234,98,12)" fg:x="37924" fg:w="5"/><text x="79.8938%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (408 samples, 0.86%)</title><rect x="78.8059%" y="1349" width="0.8568%" height="15" fill="rgb(242,170,50)" fg:x="37525" fg:w="408"/><text x="79.0559%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (364 samples, 0.76%)</title><rect x="78.8983%" y="1333" width="0.7644%" height="15" fill="rgb(235,7,5)" fg:x="37569" fg:w="364"/><text x="79.1483%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (34 samples, 0.07%)</title><rect x="79.5913%" y="1317" width="0.0714%" height="15" fill="rgb(241,114,28)" fg:x="37899" fg:w="34"/><text x="79.8413%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34 samples, 0.07%)</title><rect x="79.5913%" y="1301" width="0.0714%" height="15" fill="rgb(246,112,42)" fg:x="37899" fg:w="34"/><text x="79.8413%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.07%)</title><rect x="79.5913%" y="1285" width="0.0714%" height="15" fill="rgb(248,228,14)" fg:x="37899" fg:w="34"/><text x="79.8413%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (32 samples, 0.07%)</title><rect x="79.5955%" y="1269" width="0.0672%" height="15" fill="rgb(208,133,18)" fg:x="37901" fg:w="32"/><text x="79.8455%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (8 samples, 0.02%)</title><rect x="79.6627%" y="1333" width="0.0168%" height="15" fill="rgb(207,35,49)" fg:x="37933" fg:w="8"/><text x="79.9127%" y="1343.50"></text></g><g><title>libsystem_m.dylib`exp (29 samples, 0.06%)</title><rect x="79.6921%" y="1317" width="0.0609%" height="15" fill="rgb(205,68,36)" fg:x="37947" fg:w="29"/><text x="79.9421%" y="1327.50"></text></g><g><title>libsystem_m.dylib`exp (25 samples, 0.05%)</title><rect x="79.7677%" y="1285" width="0.0525%" height="15" fill="rgb(245,62,40)" fg:x="37983" fg:w="25"/><text x="80.0177%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (10 samples, 0.02%)</title><rect x="79.8202%" y="1253" width="0.0210%" height="15" fill="rgb(228,27,24)" fg:x="38008" fg:w="10"/><text x="80.0702%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (8 samples, 0.02%)</title><rect x="79.8244%" y="1237" width="0.0168%" height="15" fill="rgb(253,19,12)" fg:x="38010" fg:w="8"/><text x="80.0744%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="79.8244%" y="1221" width="0.0168%" height="15" fill="rgb(232,28,20)" fg:x="38010" fg:w="8"/><text x="80.0744%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="79.8307%" y="1205" width="0.0105%" height="15" fill="rgb(218,35,51)" fg:x="38013" fg:w="5"/><text x="80.0807%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (13 samples, 0.03%)</title><rect x="79.8202%" y="1285" width="0.0273%" height="15" fill="rgb(212,90,40)" fg:x="38008" fg:w="13"/><text x="80.0702%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (13 samples, 0.03%)</title><rect x="79.8202%" y="1269" width="0.0273%" height="15" fill="rgb(220,172,12)" fg:x="38008" fg:w="13"/><text x="80.0702%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (19 samples, 0.04%)</title><rect x="79.8706%" y="1253" width="0.0399%" height="15" fill="rgb(226,159,20)" fg:x="38032" fg:w="19"/><text x="80.1206%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (9 samples, 0.02%)</title><rect x="79.9105%" y="1221" width="0.0189%" height="15" fill="rgb(234,205,16)" fg:x="38051" fg:w="9"/><text x="80.1605%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (8 samples, 0.02%)</title><rect x="79.9126%" y="1205" width="0.0168%" height="15" fill="rgb(207,9,39)" fg:x="38052" fg:w="8"/><text x="80.1626%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="79.9126%" y="1189" width="0.0168%" height="15" fill="rgb(249,143,15)" fg:x="38052" fg:w="8"/><text x="80.1626%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="79.9147%" y="1173" width="0.0147%" height="15" fill="rgb(253,133,29)" fg:x="38053" fg:w="7"/><text x="80.1647%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (16 samples, 0.03%)</title><rect x="79.9105%" y="1237" width="0.0336%" height="15" fill="rgb(221,187,0)" fg:x="38051" fg:w="16"/><text x="80.1605%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (7 samples, 0.01%)</title><rect x="79.9294%" y="1221" width="0.0147%" height="15" fill="rgb(205,204,26)" fg:x="38060" fg:w="7"/><text x="80.1794%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="79.9294%" y="1205" width="0.0147%" height="15" fill="rgb(224,68,54)" fg:x="38060" fg:w="7"/><text x="80.1794%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (18 samples, 0.04%)</title><rect x="79.9105%" y="1253" width="0.0378%" height="15" fill="rgb(209,67,4)" fg:x="38051" fg:w="18"/><text x="80.1605%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.10%)</title><rect x="79.8538%" y="1269" width="0.0966%" height="15" fill="rgb(228,229,18)" fg:x="38024" fg:w="46"/><text x="80.1038%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (19 samples, 0.04%)</title><rect x="79.9630%" y="1237" width="0.0399%" height="15" fill="rgb(231,89,13)" fg:x="38076" fg:w="19"/><text x="80.2130%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (6 samples, 0.01%)</title><rect x="80.0029%" y="1205" width="0.0126%" height="15" fill="rgb(210,182,18)" fg:x="38095" fg:w="6"/><text x="80.2529%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="80.0029%" y="1189" width="0.0126%" height="15" fill="rgb(240,105,2)" fg:x="38095" fg:w="6"/><text x="80.2529%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="80.0050%" y="1173" width="0.0105%" height="15" fill="rgb(207,170,50)" fg:x="38096" fg:w="5"/><text x="80.2550%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (11 samples, 0.02%)</title><rect x="80.0029%" y="1221" width="0.0231%" height="15" fill="rgb(232,133,24)" fg:x="38095" fg:w="11"/><text x="80.2529%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="80.0155%" y="1205" width="0.0105%" height="15" fill="rgb(235,166,27)" fg:x="38101" fg:w="5"/><text x="80.2655%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="80.0155%" y="1189" width="0.0105%" height="15" fill="rgb(209,19,13)" fg:x="38101" fg:w="5"/><text x="80.2655%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="80.0155%" y="1173" width="0.0105%" height="15" fill="rgb(226,79,39)" fg:x="38101" fg:w="5"/><text x="80.2655%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (13 samples, 0.03%)</title><rect x="80.0029%" y="1237" width="0.0273%" height="15" fill="rgb(222,163,10)" fg:x="38095" fg:w="13"/><text x="80.2529%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (129 samples, 0.27%)</title><rect x="79.7614%" y="1301" width="0.2709%" height="15" fill="rgb(214,44,19)" fg:x="37980" fg:w="129"/><text x="80.0114%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (88 samples, 0.18%)</title><rect x="79.8475%" y="1285" width="0.1848%" height="15" fill="rgb(210,217,13)" fg:x="38021" fg:w="88"/><text x="80.0975%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (39 samples, 0.08%)</title><rect x="79.9504%" y="1269" width="0.0819%" height="15" fill="rgb(237,61,54)" fg:x="38070" fg:w="39"/><text x="80.2004%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.07%)</title><rect x="79.9588%" y="1253" width="0.0735%" height="15" fill="rgb(226,184,24)" fg:x="38074" fg:w="35"/><text x="80.2088%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (5 samples, 0.01%)</title><rect x="80.0344%" y="1285" width="0.0105%" height="15" fill="rgb(223,226,4)" fg:x="38110" fg:w="5"/><text x="80.2844%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (25 samples, 0.05%)</title><rect x="80.0512%" y="1269" width="0.0525%" height="15" fill="rgb(210,26,41)" fg:x="38118" fg:w="25"/><text x="80.3012%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (8 samples, 0.02%)</title><rect x="80.1079%" y="1221" width="0.0168%" height="15" fill="rgb(220,221,6)" fg:x="38145" fg:w="8"/><text x="80.3579%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="80.1079%" y="1205" width="0.0168%" height="15" fill="rgb(225,89,49)" fg:x="38145" fg:w="8"/><text x="80.3579%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="80.1142%" y="1189" width="0.0105%" height="15" fill="rgb(218,70,45)" fg:x="38148" fg:w="5"/><text x="80.3642%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (11 samples, 0.02%)</title><rect x="80.1037%" y="1237" width="0.0231%" height="15" fill="rgb(238,166,21)" fg:x="38143" fg:w="11"/><text x="80.3537%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (12 samples, 0.03%)</title><rect x="80.1037%" y="1269" width="0.0252%" height="15" fill="rgb(224,141,44)" fg:x="38143" fg:w="12"/><text x="80.3537%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (12 samples, 0.03%)</title><rect x="80.1037%" y="1253" width="0.0252%" height="15" fill="rgb(230,12,49)" fg:x="38143" fg:w="12"/><text x="80.3537%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (6 samples, 0.01%)</title><rect x="80.1310%" y="1253" width="0.0126%" height="15" fill="rgb(212,174,12)" fg:x="38156" fg:w="6"/><text x="80.3810%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (22 samples, 0.05%)</title><rect x="80.1478%" y="1237" width="0.0462%" height="15" fill="rgb(246,67,9)" fg:x="38164" fg:w="22"/><text x="80.3978%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (6 samples, 0.01%)</title><rect x="80.1961%" y="1205" width="0.0126%" height="15" fill="rgb(239,35,23)" fg:x="38187" fg:w="6"/><text x="80.4461%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="80.1961%" y="1189" width="0.0126%" height="15" fill="rgb(211,167,0)" fg:x="38187" fg:w="6"/><text x="80.4461%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="80.1961%" y="1173" width="0.0126%" height="15" fill="rgb(225,119,45)" fg:x="38187" fg:w="6"/><text x="80.4461%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (11 samples, 0.02%)</title><rect x="80.1940%" y="1221" width="0.0231%" height="15" fill="rgb(210,162,6)" fg:x="38186" fg:w="11"/><text x="80.4440%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (13 samples, 0.03%)</title><rect x="80.1940%" y="1237" width="0.0273%" height="15" fill="rgb(208,118,35)" fg:x="38186" fg:w="13"/><text x="80.4440%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.09%)</title><rect x="80.1436%" y="1253" width="0.0861%" height="15" fill="rgb(239,4,53)" fg:x="38162" fg:w="41"/><text x="80.3936%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (15 samples, 0.03%)</title><rect x="80.2403%" y="1221" width="0.0315%" height="15" fill="rgb(213,130,21)" fg:x="38208" fg:w="15"/><text x="80.4903%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (8 samples, 0.02%)</title><rect x="80.2718%" y="1205" width="0.0168%" height="15" fill="rgb(235,148,0)" fg:x="38223" fg:w="8"/><text x="80.5218%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (10 samples, 0.02%)</title><rect x="80.2718%" y="1221" width="0.0210%" height="15" fill="rgb(244,224,18)" fg:x="38223" fg:w="10"/><text x="80.5218%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (35 samples, 0.07%)</title><rect x="80.2297%" y="1253" width="0.0735%" height="15" fill="rgb(211,214,4)" fg:x="38203" fg:w="35"/><text x="80.4797%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.07%)</title><rect x="80.2340%" y="1237" width="0.0693%" height="15" fill="rgb(206,119,25)" fg:x="38205" fg:w="33"/><text x="80.4840%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (5 samples, 0.01%)</title><rect x="80.2928%" y="1221" width="0.0105%" height="15" fill="rgb(243,93,47)" fg:x="38233" fg:w="5"/><text x="80.5428%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.01%)</title><rect x="80.2928%" y="1205" width="0.0105%" height="15" fill="rgb(224,194,6)" fg:x="38233" fg:w="5"/><text x="80.5428%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (5 samples, 0.01%)</title><rect x="80.2928%" y="1189" width="0.0105%" height="15" fill="rgb(243,229,6)" fg:x="38233" fg:w="5"/><text x="80.5428%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="80.2928%" y="1173" width="0.0105%" height="15" fill="rgb(207,23,50)" fg:x="38233" fg:w="5"/><text x="80.5428%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.3033%" y="1189" width="0.0105%" height="15" fill="rgb(253,192,32)" fg:x="38238" fg:w="5"/><text x="80.5533%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.3033%" y="1173" width="0.0105%" height="15" fill="rgb(213,21,6)" fg:x="38238" fg:w="5"/><text x="80.5533%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="80.3138%" y="1189" width="0.0126%" height="15" fill="rgb(243,151,13)" fg:x="38243" fg:w="6"/><text x="80.5638%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="80.3138%" y="1173" width="0.0126%" height="15" fill="rgb(233,165,41)" fg:x="38243" fg:w="6"/><text x="80.5638%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="80.3138%" y="1157" width="0.0126%" height="15" fill="rgb(246,176,45)" fg:x="38243" fg:w="6"/><text x="80.5638%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="80.3138%" y="1141" width="0.0126%" height="15" fill="rgb(217,170,52)" fg:x="38243" fg:w="6"/><text x="80.5638%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="80.3138%" y="1125" width="0.0126%" height="15" fill="rgb(214,203,54)" fg:x="38243" fg:w="6"/><text x="80.5638%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="80.3138%" y="1109" width="0.0126%" height="15" fill="rgb(248,215,49)" fg:x="38243" fg:w="6"/><text x="80.5638%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="80.3138%" y="1093" width="0.0126%" height="15" fill="rgb(208,46,10)" fg:x="38243" fg:w="6"/><text x="80.5638%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (142 samples, 0.30%)</title><rect x="80.0323%" y="1301" width="0.2982%" height="15" fill="rgb(254,5,31)" fg:x="38109" fg:w="142"/><text x="80.2823%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (136 samples, 0.29%)</title><rect x="80.0449%" y="1285" width="0.2856%" height="15" fill="rgb(222,104,33)" fg:x="38115" fg:w="136"/><text x="80.2949%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (96 samples, 0.20%)</title><rect x="80.1289%" y="1269" width="0.2016%" height="15" fill="rgb(248,49,16)" fg:x="38155" fg:w="96"/><text x="80.3789%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="80.3033%" y="1253" width="0.0273%" height="15" fill="rgb(232,198,41)" fg:x="38238" fg:w="13"/><text x="80.5533%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="80.3033%" y="1237" width="0.0273%" height="15" fill="rgb(214,125,3)" fg:x="38238" fg:w="13"/><text x="80.5533%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="80.3033%" y="1221" width="0.0273%" height="15" fill="rgb(229,220,28)" fg:x="38238" fg:w="13"/><text x="80.5533%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="80.3033%" y="1205" width="0.0273%" height="15" fill="rgb(222,64,37)" fg:x="38238" fg:w="13"/><text x="80.5533%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="80.3390%" y="1173" width="0.0147%" height="15" fill="rgb(249,184,13)" fg:x="38255" fg:w="7"/><text x="80.5890%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="80.3390%" y="1157" width="0.0147%" height="15" fill="rgb(252,176,6)" fg:x="38255" fg:w="7"/><text x="80.5890%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="80.3390%" y="1205" width="0.0294%" height="15" fill="rgb(228,153,7)" fg:x="38255" fg:w="14"/><text x="80.5890%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="80.3390%" y="1189" width="0.0294%" height="15" fill="rgb(242,193,5)" fg:x="38255" fg:w="14"/><text x="80.5890%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="80.3537%" y="1173" width="0.0147%" height="15" fill="rgb(232,140,9)" fg:x="38262" fg:w="7"/><text x="80.6037%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="80.3537%" y="1157" width="0.0147%" height="15" fill="rgb(213,222,16)" fg:x="38262" fg:w="7"/><text x="80.6037%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="80.3537%" y="1141" width="0.0147%" height="15" fill="rgb(222,75,50)" fg:x="38262" fg:w="7"/><text x="80.6037%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="80.3747%" y="1157" width="0.0168%" height="15" fill="rgb(205,180,2)" fg:x="38272" fg:w="8"/><text x="80.6247%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="80.3747%" y="1141" width="0.0168%" height="15" fill="rgb(216,34,7)" fg:x="38272" fg:w="8"/><text x="80.6247%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.03%)</title><rect x="80.3684%" y="1205" width="0.0294%" height="15" fill="rgb(253,16,32)" fg:x="38269" fg:w="14"/><text x="80.6184%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="80.3705%" y="1189" width="0.0273%" height="15" fill="rgb(208,97,28)" fg:x="38270" fg:w="13"/><text x="80.6205%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="80.3747%" y="1173" width="0.0231%" height="15" fill="rgb(225,92,11)" fg:x="38272" fg:w="11"/><text x="80.6247%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.07%)</title><rect x="80.3348%" y="1237" width="0.0672%" height="15" fill="rgb(243,38,12)" fg:x="38253" fg:w="32"/><text x="80.5848%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (30 samples, 0.06%)</title><rect x="80.3390%" y="1221" width="0.0630%" height="15" fill="rgb(208,139,16)" fg:x="38255" fg:w="30"/><text x="80.5890%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="80.4020%" y="1237" width="0.0168%" height="15" fill="rgb(227,24,9)" fg:x="38285" fg:w="8"/><text x="80.6520%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="80.4020%" y="1221" width="0.0168%" height="15" fill="rgb(206,62,11)" fg:x="38285" fg:w="8"/><text x="80.6520%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="80.4020%" y="1205" width="0.0168%" height="15" fill="rgb(228,134,27)" fg:x="38285" fg:w="8"/><text x="80.6520%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="80.4083%" y="1189" width="0.0105%" height="15" fill="rgb(205,55,33)" fg:x="38288" fg:w="5"/><text x="80.6583%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="80.4083%" y="1173" width="0.0105%" height="15" fill="rgb(243,75,43)" fg:x="38288" fg:w="5"/><text x="80.6583%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.4083%" y="1157" width="0.0105%" height="15" fill="rgb(223,27,42)" fg:x="38288" fg:w="5"/><text x="80.6583%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="80.4314%" y="1109" width="0.0168%" height="15" fill="rgb(232,189,33)" fg:x="38299" fg:w="8"/><text x="80.6814%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="80.4335%" y="1093" width="0.0147%" height="15" fill="rgb(210,9,39)" fg:x="38300" fg:w="7"/><text x="80.6835%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="80.4377%" y="1077" width="0.0105%" height="15" fill="rgb(242,85,26)" fg:x="38302" fg:w="5"/><text x="80.6877%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.4377%" y="1061" width="0.0105%" height="15" fill="rgb(248,44,4)" fg:x="38302" fg:w="5"/><text x="80.6877%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.4377%" y="1045" width="0.0105%" height="15" fill="rgb(250,96,46)" fg:x="38302" fg:w="5"/><text x="80.6877%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (375 samples, 0.79%)</title><rect x="79.6627%" y="1349" width="0.7875%" height="15" fill="rgb(229,116,26)" fg:x="37933" fg:w="375"/><text x="79.9127%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (367 samples, 0.77%)</title><rect x="79.6795%" y="1333" width="0.7707%" height="15" fill="rgb(246,94,34)" fg:x="37941" fg:w="367"/><text x="79.9295%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (332 samples, 0.70%)</title><rect x="79.7530%" y="1317" width="0.6972%" height="15" fill="rgb(251,73,21)" fg:x="37976" fg:w="332"/><text x="80.0030%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (57 samples, 0.12%)</title><rect x="80.3306%" y="1301" width="0.1197%" height="15" fill="rgb(254,121,25)" fg:x="38251" fg:w="57"/><text x="80.5806%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (57 samples, 0.12%)</title><rect x="80.3306%" y="1285" width="0.1197%" height="15" fill="rgb(215,161,49)" fg:x="38251" fg:w="57"/><text x="80.5806%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (57 samples, 0.12%)</title><rect x="80.3306%" y="1269" width="0.1197%" height="15" fill="rgb(221,43,13)" fg:x="38251" fg:w="57"/><text x="80.5806%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (55 samples, 0.12%)</title><rect x="80.3348%" y="1253" width="0.1155%" height="15" fill="rgb(249,5,37)" fg:x="38253" fg:w="55"/><text x="80.5848%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.03%)</title><rect x="80.4188%" y="1237" width="0.0315%" height="15" fill="rgb(226,25,44)" fg:x="38293" fg:w="15"/><text x="80.6688%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.03%)</title><rect x="80.4188%" y="1221" width="0.0315%" height="15" fill="rgb(238,189,16)" fg:x="38293" fg:w="15"/><text x="80.6688%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="80.4209%" y="1205" width="0.0294%" height="15" fill="rgb(251,186,8)" fg:x="38294" fg:w="14"/><text x="80.6709%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="80.4230%" y="1189" width="0.0273%" height="15" fill="rgb(254,34,31)" fg:x="38295" fg:w="13"/><text x="80.6730%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="80.4314%" y="1173" width="0.0189%" height="15" fill="rgb(225,215,27)" fg:x="38299" fg:w="9"/><text x="80.6814%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="80.4314%" y="1157" width="0.0189%" height="15" fill="rgb(221,192,48)" fg:x="38299" fg:w="9"/><text x="80.6814%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="80.4314%" y="1141" width="0.0189%" height="15" fill="rgb(219,137,20)" fg:x="38299" fg:w="9"/><text x="80.6814%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="80.4314%" y="1125" width="0.0189%" height="15" fill="rgb(219,84,11)" fg:x="38299" fg:w="9"/><text x="80.6814%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="80.4734%" y="1221" width="0.0168%" height="15" fill="rgb(224,10,23)" fg:x="38319" fg:w="8"/><text x="80.7234%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.4797%" y="1205" width="0.0105%" height="15" fill="rgb(248,22,39)" fg:x="38322" fg:w="5"/><text x="80.7297%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.5028%" y="1173" width="0.0105%" height="15" fill="rgb(212,154,20)" fg:x="38333" fg:w="5"/><text x="80.7528%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.06%)</title><rect x="80.4608%" y="1253" width="0.0609%" height="15" fill="rgb(236,199,50)" fg:x="38313" fg:w="29"/><text x="80.7108%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (24 samples, 0.05%)</title><rect x="80.4713%" y="1237" width="0.0504%" height="15" fill="rgb(211,9,17)" fg:x="38318" fg:w="24"/><text x="80.7213%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="80.4902%" y="1221" width="0.0315%" height="15" fill="rgb(243,216,36)" fg:x="38327" fg:w="15"/><text x="80.7402%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="80.4923%" y="1205" width="0.0294%" height="15" fill="rgb(250,2,10)" fg:x="38328" fg:w="14"/><text x="80.7423%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="80.5028%" y="1189" width="0.0189%" height="15" fill="rgb(226,50,48)" fg:x="38333" fg:w="9"/><text x="80.7528%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="80.5238%" y="1205" width="0.0189%" height="15" fill="rgb(243,81,16)" fg:x="38343" fg:w="9"/><text x="80.7738%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="80.5280%" y="1189" width="0.0147%" height="15" fill="rgb(250,14,2)" fg:x="38345" fg:w="7"/><text x="80.7780%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="80.5427%" y="1205" width="0.0168%" height="15" fill="rgb(233,135,29)" fg:x="38352" fg:w="8"/><text x="80.7927%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="80.5448%" y="1189" width="0.0147%" height="15" fill="rgb(224,64,43)" fg:x="38353" fg:w="7"/><text x="80.7948%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.5490%" y="1173" width="0.0105%" height="15" fill="rgb(238,84,13)" fg:x="38355" fg:w="5"/><text x="80.7990%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="80.5742%" y="981" width="0.0147%" height="15" fill="rgb(253,48,26)" fg:x="38367" fg:w="7"/><text x="80.8242%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="80.5742%" y="965" width="0.0147%" height="15" fill="rgb(205,223,31)" fg:x="38367" fg:w="7"/><text x="80.8242%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="80.5595%" y="1141" width="0.0378%" height="15" fill="rgb(221,41,32)" fg:x="38360" fg:w="18"/><text x="80.8095%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (17 samples, 0.04%)</title><rect x="80.5616%" y="1125" width="0.0357%" height="15" fill="rgb(213,158,31)" fg:x="38361" fg:w="17"/><text x="80.8116%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.02%)</title><rect x="80.5742%" y="1109" width="0.0231%" height="15" fill="rgb(245,126,43)" fg:x="38367" fg:w="11"/><text x="80.8242%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.02%)</title><rect x="80.5742%" y="1093" width="0.0231%" height="15" fill="rgb(227,7,22)" fg:x="38367" fg:w="11"/><text x="80.8242%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="80.5742%" y="1077" width="0.0231%" height="15" fill="rgb(252,90,44)" fg:x="38367" fg:w="11"/><text x="80.8242%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="80.5742%" y="1061" width="0.0231%" height="15" fill="rgb(253,91,0)" fg:x="38367" fg:w="11"/><text x="80.8242%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="80.5742%" y="1045" width="0.0231%" height="15" fill="rgb(252,175,49)" fg:x="38367" fg:w="11"/><text x="80.8242%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="80.5742%" y="1029" width="0.0231%" height="15" fill="rgb(246,150,1)" fg:x="38367" fg:w="11"/><text x="80.8242%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="80.5742%" y="1013" width="0.0231%" height="15" fill="rgb(241,192,25)" fg:x="38367" fg:w="11"/><text x="80.8242%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="80.5742%" y="997" width="0.0231%" height="15" fill="rgb(239,187,11)" fg:x="38367" fg:w="11"/><text x="80.8242%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (37 samples, 0.08%)</title><rect x="80.5217%" y="1253" width="0.0777%" height="15" fill="rgb(218,202,51)" fg:x="38342" fg:w="37"/><text x="80.7717%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (37 samples, 0.08%)</title><rect x="80.5217%" y="1237" width="0.0777%" height="15" fill="rgb(225,176,8)" fg:x="38342" fg:w="37"/><text x="80.7717%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (36 samples, 0.08%)</title><rect x="80.5238%" y="1221" width="0.0756%" height="15" fill="rgb(219,122,41)" fg:x="38343" fg:w="36"/><text x="80.7738%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (19 samples, 0.04%)</title><rect x="80.5595%" y="1205" width="0.0399%" height="15" fill="rgb(248,140,20)" fg:x="38360" fg:w="19"/><text x="80.8095%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (19 samples, 0.04%)</title><rect x="80.5595%" y="1189" width="0.0399%" height="15" fill="rgb(245,41,37)" fg:x="38360" fg:w="19"/><text x="80.8095%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="80.5595%" y="1173" width="0.0399%" height="15" fill="rgb(235,82,39)" fg:x="38360" fg:w="19"/><text x="80.8095%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="80.5595%" y="1157" width="0.0399%" height="15" fill="rgb(230,108,42)" fg:x="38360" fg:w="19"/><text x="80.8095%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.5994%" y="1189" width="0.0105%" height="15" fill="rgb(215,150,50)" fg:x="38379" fg:w="5"/><text x="80.8494%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (73 samples, 0.15%)</title><rect x="80.4587%" y="1285" width="0.1533%" height="15" fill="rgb(233,212,5)" fg:x="38312" fg:w="73"/><text x="80.7087%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (72 samples, 0.15%)</title><rect x="80.4608%" y="1269" width="0.1512%" height="15" fill="rgb(245,80,22)" fg:x="38313" fg:w="72"/><text x="80.7108%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="80.5994%" y="1253" width="0.0126%" height="15" fill="rgb(238,129,16)" fg:x="38379" fg:w="6"/><text x="80.8494%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="80.5994%" y="1237" width="0.0126%" height="15" fill="rgb(240,19,0)" fg:x="38379" fg:w="6"/><text x="80.8494%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="80.5994%" y="1221" width="0.0126%" height="15" fill="rgb(232,42,35)" fg:x="38379" fg:w="6"/><text x="80.8494%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="80.5994%" y="1205" width="0.0126%" height="15" fill="rgb(223,130,24)" fg:x="38379" fg:w="6"/><text x="80.8494%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.6141%" y="1237" width="0.0105%" height="15" fill="rgb(237,16,22)" fg:x="38386" fg:w="5"/><text x="80.8641%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.6141%" y="1221" width="0.0105%" height="15" fill="rgb(248,192,20)" fg:x="38386" fg:w="5"/><text x="80.8641%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="80.6267%" y="1189" width="0.0126%" height="15" fill="rgb(233,167,2)" fg:x="38392" fg:w="6"/><text x="80.8767%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="80.6540%" y="1061" width="0.0168%" height="15" fill="rgb(252,71,44)" fg:x="38405" fg:w="8"/><text x="80.9040%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.6603%" y="1045" width="0.0105%" height="15" fill="rgb(238,37,47)" fg:x="38408" fg:w="5"/><text x="80.9103%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (23 samples, 0.05%)</title><rect x="80.6246%" y="1237" width="0.0483%" height="15" fill="rgb(214,202,54)" fg:x="38391" fg:w="23"/><text x="80.8746%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.05%)</title><rect x="80.6267%" y="1221" width="0.0462%" height="15" fill="rgb(254,165,40)" fg:x="38392" fg:w="22"/><text x="80.8767%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (22 samples, 0.05%)</title><rect x="80.6267%" y="1205" width="0.0462%" height="15" fill="rgb(246,173,38)" fg:x="38392" fg:w="22"/><text x="80.8767%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="80.6456%" y="1189" width="0.0273%" height="15" fill="rgb(215,3,27)" fg:x="38401" fg:w="13"/><text x="80.8956%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="80.6456%" y="1173" width="0.0273%" height="15" fill="rgb(239,169,51)" fg:x="38401" fg:w="13"/><text x="80.8956%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="80.6456%" y="1157" width="0.0273%" height="15" fill="rgb(212,5,25)" fg:x="38401" fg:w="13"/><text x="80.8956%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="80.6456%" y="1141" width="0.0273%" height="15" fill="rgb(243,45,17)" fg:x="38401" fg:w="13"/><text x="80.8956%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.02%)</title><rect x="80.6519%" y="1125" width="0.0210%" height="15" fill="rgb(242,97,9)" fg:x="38404" fg:w="10"/><text x="80.9019%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.02%)</title><rect x="80.6519%" y="1109" width="0.0210%" height="15" fill="rgb(228,71,31)" fg:x="38404" fg:w="10"/><text x="80.9019%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="80.6519%" y="1093" width="0.0210%" height="15" fill="rgb(252,184,16)" fg:x="38404" fg:w="10"/><text x="80.9019%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="80.6540%" y="1077" width="0.0189%" height="15" fill="rgb(236,169,46)" fg:x="38405" fg:w="9"/><text x="80.9040%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (32 samples, 0.07%)</title><rect x="80.6120%" y="1285" width="0.0672%" height="15" fill="rgb(207,17,47)" fg:x="38385" fg:w="32"/><text x="80.8620%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.07%)</title><rect x="80.6120%" y="1269" width="0.0672%" height="15" fill="rgb(206,201,28)" fg:x="38385" fg:w="32"/><text x="80.8620%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (31 samples, 0.07%)</title><rect x="80.6141%" y="1253" width="0.0651%" height="15" fill="rgb(224,184,23)" fg:x="38386" fg:w="31"/><text x="80.8641%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.6876%" y="1189" width="0.0105%" height="15" fill="rgb(208,139,48)" fg:x="38421" fg:w="5"/><text x="80.9376%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="80.6834%" y="1221" width="0.0315%" height="15" fill="rgb(208,130,10)" fg:x="38419" fg:w="15"/><text x="80.9334%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="80.6876%" y="1205" width="0.0273%" height="15" fill="rgb(211,213,45)" fg:x="38421" fg:w="13"/><text x="80.9376%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="80.7002%" y="1189" width="0.0147%" height="15" fill="rgb(235,100,30)" fg:x="38427" fg:w="7"/><text x="80.9502%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="80.7002%" y="1173" width="0.0147%" height="15" fill="rgb(206,144,31)" fg:x="38427" fg:w="7"/><text x="80.9502%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="80.7002%" y="1157" width="0.0147%" height="15" fill="rgb(224,200,26)" fg:x="38427" fg:w="7"/><text x="80.9502%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="80.7002%" y="1141" width="0.0147%" height="15" fill="rgb(247,104,53)" fg:x="38427" fg:w="7"/><text x="80.9502%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="80.7023%" y="1125" width="0.0126%" height="15" fill="rgb(220,14,17)" fg:x="38428" fg:w="6"/><text x="80.9523%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="80.7023%" y="1109" width="0.0126%" height="15" fill="rgb(230,140,40)" fg:x="38428" fg:w="6"/><text x="80.9523%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="80.7023%" y="1093" width="0.0126%" height="15" fill="rgb(229,2,41)" fg:x="38428" fg:w="6"/><text x="80.9523%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="80.7149%" y="1221" width="0.0168%" height="15" fill="rgb(232,89,16)" fg:x="38434" fg:w="8"/><text x="80.9649%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="80.7149%" y="1205" width="0.0168%" height="15" fill="rgb(247,59,52)" fg:x="38434" fg:w="8"/><text x="80.9649%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="80.7170%" y="1189" width="0.0147%" height="15" fill="rgb(226,110,21)" fg:x="38435" fg:w="7"/><text x="80.9670%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="80.7191%" y="1173" width="0.0126%" height="15" fill="rgb(224,176,43)" fg:x="38436" fg:w="6"/><text x="80.9691%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="80.7191%" y="1157" width="0.0126%" height="15" fill="rgb(221,73,6)" fg:x="38436" fg:w="6"/><text x="80.9691%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="80.7191%" y="1141" width="0.0126%" height="15" fill="rgb(232,78,19)" fg:x="38436" fg:w="6"/><text x="80.9691%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="80.7191%" y="1125" width="0.0126%" height="15" fill="rgb(233,112,48)" fg:x="38436" fg:w="6"/><text x="80.9691%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="80.7191%" y="1109" width="0.0126%" height="15" fill="rgb(243,131,47)" fg:x="38436" fg:w="6"/><text x="80.9691%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="80.7191%" y="1093" width="0.0126%" height="15" fill="rgb(226,51,1)" fg:x="38436" fg:w="6"/><text x="80.9691%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="80.7212%" y="1077" width="0.0105%" height="15" fill="rgb(247,58,7)" fg:x="38437" fg:w="5"/><text x="80.9712%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="80.7212%" y="1061" width="0.0105%" height="15" fill="rgb(209,7,32)" fg:x="38437" fg:w="5"/><text x="80.9712%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.7212%" y="1045" width="0.0105%" height="15" fill="rgb(209,39,41)" fg:x="38437" fg:w="5"/><text x="80.9712%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.7212%" y="1029" width="0.0105%" height="15" fill="rgb(226,182,46)" fg:x="38437" fg:w="5"/><text x="80.9712%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.7212%" y="1013" width="0.0105%" height="15" fill="rgb(230,219,10)" fg:x="38437" fg:w="5"/><text x="80.9712%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.7212%" y="997" width="0.0105%" height="15" fill="rgb(227,175,30)" fg:x="38437" fg:w="5"/><text x="80.9712%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (147 samples, 0.31%)</title><rect x="80.4503%" y="1333" width="0.3087%" height="15" fill="rgb(217,2,50)" fg:x="38308" fg:w="147"/><text x="80.7003%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (147 samples, 0.31%)</title><rect x="80.4503%" y="1317" width="0.3087%" height="15" fill="rgb(229,160,0)" fg:x="38308" fg:w="147"/><text x="80.7003%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (143 samples, 0.30%)</title><rect x="80.4587%" y="1301" width="0.3003%" height="15" fill="rgb(207,78,37)" fg:x="38312" fg:w="143"/><text x="80.7087%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (38 samples, 0.08%)</title><rect x="80.6792%" y="1285" width="0.0798%" height="15" fill="rgb(225,57,0)" fg:x="38417" fg:w="38"/><text x="80.9292%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (38 samples, 0.08%)</title><rect x="80.6792%" y="1269" width="0.0798%" height="15" fill="rgb(232,154,2)" fg:x="38417" fg:w="38"/><text x="80.9292%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.08%)</title><rect x="80.6792%" y="1253" width="0.0798%" height="15" fill="rgb(241,212,25)" fg:x="38417" fg:w="38"/><text x="80.9292%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (36 samples, 0.08%)</title><rect x="80.6834%" y="1237" width="0.0756%" height="15" fill="rgb(226,69,20)" fg:x="38419" fg:w="36"/><text x="80.9334%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="80.7317%" y="1221" width="0.0273%" height="15" fill="rgb(247,184,54)" fg:x="38442" fg:w="13"/><text x="80.9817%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="80.7317%" y="1205" width="0.0273%" height="15" fill="rgb(210,145,0)" fg:x="38442" fg:w="13"/><text x="80.9817%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="80.7317%" y="1189" width="0.0273%" height="15" fill="rgb(253,82,12)" fg:x="38442" fg:w="13"/><text x="80.9817%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="80.7338%" y="1173" width="0.0252%" height="15" fill="rgb(245,42,11)" fg:x="38443" fg:w="12"/><text x="80.9838%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="80.7485%" y="1157" width="0.0105%" height="15" fill="rgb(219,147,32)" fg:x="38450" fg:w="5"/><text x="80.9985%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="80.7485%" y="1141" width="0.0105%" height="15" fill="rgb(246,12,7)" fg:x="38450" fg:w="5"/><text x="80.9985%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.7485%" y="1125" width="0.0105%" height="15" fill="rgb(243,50,9)" fg:x="38450" fg:w="5"/><text x="80.9985%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (1,005 samples, 2.11%)</title><rect x="78.6505%" y="1397" width="2.1106%" height="15" fill="rgb(219,149,6)" fg:x="37451" fg:w="1005"/><text x="78.9005%" y="1407.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (998 samples, 2.10%)</title><rect x="78.6652%" y="1381" width="2.0959%" height="15" fill="rgb(241,51,42)" fg:x="37458" fg:w="998"/><text x="78.9152%" y="1391.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (945 samples, 1.98%)</title><rect x="78.7765%" y="1365" width="1.9846%" height="15" fill="rgb(226,128,27)" fg:x="37511" fg:w="945"/><text x="79.0265%" y="1375.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (148 samples, 0.31%)</title><rect x="80.4503%" y="1349" width="0.3108%" height="15" fill="rgb(244,144,4)" fg:x="38308" fg:w="148"/><text x="80.7003%" y="1359.50"></text></g><g><title>libsystem_m.dylib`exp (9 samples, 0.02%)</title><rect x="80.7737%" y="1349" width="0.0189%" height="15" fill="rgb(221,4,13)" fg:x="38462" fg:w="9"/><text x="81.0237%" y="1359.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="80.7968%" y="1317" width="0.0126%" height="15" fill="rgb(208,170,28)" fg:x="38473" fg:w="6"/><text x="81.0468%" y="1327.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="80.8136%" y="1285" width="0.0126%" height="15" fill="rgb(226,131,13)" fg:x="38481" fg:w="6"/><text x="81.0636%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (10 samples, 0.02%)</title><rect x="80.8493%" y="1141" width="0.0210%" height="15" fill="rgb(215,72,41)" fg:x="38498" fg:w="10"/><text x="81.0993%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`oorandom::Rand64::rand_range (6 samples, 0.01%)</title><rect x="80.8577%" y="1125" width="0.0126%" height="15" fill="rgb(243,108,20)" fg:x="38502" fg:w="6"/><text x="81.1077%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="80.8472%" y="1173" width="0.0294%" height="15" fill="rgb(230,189,17)" fg:x="38497" fg:w="14"/><text x="81.0972%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (14 samples, 0.03%)</title><rect x="80.8472%" y="1157" width="0.0294%" height="15" fill="rgb(220,50,17)" fg:x="38497" fg:w="14"/><text x="81.0972%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="80.8430%" y="1205" width="0.0378%" height="15" fill="rgb(248,152,48)" fg:x="38495" fg:w="18"/><text x="81.0930%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (16 samples, 0.03%)</title><rect x="80.8472%" y="1189" width="0.0336%" height="15" fill="rgb(244,91,11)" fg:x="38497" fg:w="16"/><text x="81.0972%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="80.8808%" y="1205" width="0.0147%" height="15" fill="rgb(220,157,5)" fg:x="38513" fg:w="7"/><text x="81.1308%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="80.8808%" y="1189" width="0.0147%" height="15" fill="rgb(253,137,8)" fg:x="38513" fg:w="7"/><text x="81.1308%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.8850%" y="1173" width="0.0105%" height="15" fill="rgb(217,137,51)" fg:x="38515" fg:w="5"/><text x="81.1350%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.07%)</title><rect x="80.8346%" y="1237" width="0.0714%" height="15" fill="rgb(218,209,53)" fg:x="38491" fg:w="34"/><text x="81.0846%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (31 samples, 0.07%)</title><rect x="80.8409%" y="1221" width="0.0651%" height="15" fill="rgb(249,137,25)" fg:x="38494" fg:w="31"/><text x="81.0909%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="80.8955%" y="1205" width="0.0105%" height="15" fill="rgb(239,155,26)" fg:x="38520" fg:w="5"/><text x="81.1455%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="80.8955%" y="1189" width="0.0105%" height="15" fill="rgb(227,85,46)" fg:x="38520" fg:w="5"/><text x="81.1455%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.8955%" y="1173" width="0.0105%" height="15" fill="rgb(251,107,43)" fg:x="38520" fg:w="5"/><text x="81.1455%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.8955%" y="1157" width="0.0105%" height="15" fill="rgb(234,170,33)" fg:x="38520" fg:w="5"/><text x="81.1455%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="80.8955%" y="1141" width="0.0105%" height="15" fill="rgb(206,29,35)" fg:x="38520" fg:w="5"/><text x="81.1455%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.8955%" y="1125" width="0.0105%" height="15" fill="rgb(227,138,25)" fg:x="38520" fg:w="5"/><text x="81.1455%" y="1135.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="80.9123%" y="1205" width="0.0147%" height="15" fill="rgb(249,131,35)" fg:x="38528" fg:w="7"/><text x="81.1623%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="80.9270%" y="1189" width="0.0147%" height="15" fill="rgb(239,6,40)" fg:x="38535" fg:w="7"/><text x="81.1770%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="80.9312%" y="1173" width="0.0105%" height="15" fill="rgb(246,136,47)" fg:x="38537" fg:w="5"/><text x="81.1812%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (20 samples, 0.04%)</title><rect x="80.9060%" y="1237" width="0.0420%" height="15" fill="rgb(253,58,26)" fg:x="38525" fg:w="20"/><text x="81.1560%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="80.9102%" y="1221" width="0.0378%" height="15" fill="rgb(237,141,10)" fg:x="38527" fg:w="18"/><text x="81.1602%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="80.9270%" y="1205" width="0.0210%" height="15" fill="rgb(234,156,12)" fg:x="38535" fg:w="10"/><text x="81.1770%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (58 samples, 0.12%)</title><rect x="80.8283%" y="1269" width="0.1218%" height="15" fill="rgb(243,224,36)" fg:x="38488" fg:w="58"/><text x="81.0783%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (55 samples, 0.12%)</title><rect x="80.8346%" y="1253" width="0.1155%" height="15" fill="rgb(205,229,51)" fg:x="38491" fg:w="55"/><text x="81.0846%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.03%)</title><rect x="80.9627%" y="1221" width="0.0336%" height="15" fill="rgb(223,189,4)" fg:x="38552" fg:w="16"/><text x="81.2127%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="80.9732%" y="1205" width="0.0231%" height="15" fill="rgb(249,167,54)" fg:x="38557" fg:w="11"/><text x="81.2232%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="80.9837%" y="1189" width="0.0126%" height="15" fill="rgb(218,34,28)" fg:x="38562" fg:w="6"/><text x="81.2337%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="80.9837%" y="1173" width="0.0126%" height="15" fill="rgb(232,109,42)" fg:x="38562" fg:w="6"/><text x="81.2337%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="80.9963%" y="1221" width="0.0210%" height="15" fill="rgb(248,214,46)" fg:x="38568" fg:w="10"/><text x="81.2463%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="80.9984%" y="1205" width="0.0189%" height="15" fill="rgb(244,216,40)" fg:x="38569" fg:w="9"/><text x="81.2484%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="81.0005%" y="1189" width="0.0168%" height="15" fill="rgb(231,226,31)" fg:x="38570" fg:w="8"/><text x="81.2505%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (39 samples, 0.08%)</title><rect x="80.9501%" y="1269" width="0.0819%" height="15" fill="rgb(238,38,43)" fg:x="38546" fg:w="39"/><text x="81.2001%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.08%)</title><rect x="80.9501%" y="1253" width="0.0819%" height="15" fill="rgb(208,88,43)" fg:x="38546" fg:w="39"/><text x="81.2001%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (34 samples, 0.07%)</title><rect x="80.9606%" y="1237" width="0.0714%" height="15" fill="rgb(205,136,37)" fg:x="38551" fg:w="34"/><text x="81.2106%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="81.0173%" y="1221" width="0.0147%" height="15" fill="rgb(237,34,14)" fg:x="38578" fg:w="7"/><text x="81.2673%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="81.0173%" y="1205" width="0.0147%" height="15" fill="rgb(236,193,44)" fg:x="38578" fg:w="7"/><text x="81.2673%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="81.0173%" y="1189" width="0.0147%" height="15" fill="rgb(231,48,10)" fg:x="38578" fg:w="7"/><text x="81.2673%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="81.0173%" y="1173" width="0.0147%" height="15" fill="rgb(213,141,34)" fg:x="38578" fg:w="7"/><text x="81.2673%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="81.0194%" y="1157" width="0.0126%" height="15" fill="rgb(249,130,34)" fg:x="38579" fg:w="6"/><text x="81.2694%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="81.0194%" y="1141" width="0.0126%" height="15" fill="rgb(219,42,41)" fg:x="38579" fg:w="6"/><text x="81.2694%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="81.0194%" y="1125" width="0.0126%" height="15" fill="rgb(224,100,54)" fg:x="38579" fg:w="6"/><text x="81.2694%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="81.0194%" y="1109" width="0.0126%" height="15" fill="rgb(229,200,27)" fg:x="38579" fg:w="6"/><text x="81.2694%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="81.0341%" y="1141" width="0.0126%" height="15" fill="rgb(217,118,10)" fg:x="38586" fg:w="6"/><text x="81.2841%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.0362%" y="1125" width="0.0105%" height="15" fill="rgb(206,22,3)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="81.0362%" y="1109" width="0.0105%" height="15" fill="rgb(232,163,46)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="81.0362%" y="1093" width="0.0105%" height="15" fill="rgb(206,95,13)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.0362%" y="1077" width="0.0105%" height="15" fill="rgb(253,154,18)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.0362%" y="1061" width="0.0105%" height="15" fill="rgb(219,32,23)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.0362%" y="1045" width="0.0105%" height="15" fill="rgb(230,191,45)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.0362%" y="1029" width="0.0105%" height="15" fill="rgb(229,64,36)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="81.0362%" y="1013" width="0.0105%" height="15" fill="rgb(205,129,25)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="81.0362%" y="997" width="0.0105%" height="15" fill="rgb(254,112,7)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.0362%" y="981" width="0.0105%" height="15" fill="rgb(226,53,48)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.0362%" y="965" width="0.0105%" height="15" fill="rgb(214,153,38)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.0362%" y="949" width="0.0105%" height="15" fill="rgb(243,101,7)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.0362%" y="933" width="0.0105%" height="15" fill="rgb(240,140,22)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.0362%" y="917" width="0.0105%" height="15" fill="rgb(235,114,2)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.0362%" y="901" width="0.0105%" height="15" fill="rgb(242,59,12)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.0362%" y="885" width="0.0105%" height="15" fill="rgb(252,134,9)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.0362%" y="869" width="0.0105%" height="15" fill="rgb(236,4,44)" fg:x="38587" fg:w="5"/><text x="81.2862%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="81.0320%" y="1205" width="0.0168%" height="15" fill="rgb(254,172,41)" fg:x="38585" fg:w="8"/><text x="81.2820%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="81.0341%" y="1189" width="0.0147%" height="15" fill="rgb(244,63,20)" fg:x="38586" fg:w="7"/><text x="81.2841%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="81.0341%" y="1173" width="0.0147%" height="15" fill="rgb(250,73,31)" fg:x="38586" fg:w="7"/><text x="81.2841%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="81.0341%" y="1157" width="0.0147%" height="15" fill="rgb(241,38,36)" fg:x="38586" fg:w="7"/><text x="81.2841%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (114 samples, 0.24%)</title><rect x="80.8115%" y="1301" width="0.2394%" height="15" fill="rgb(245,211,2)" fg:x="38480" fg:w="114"/><text x="81.0615%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (107 samples, 0.22%)</title><rect x="80.8262%" y="1285" width="0.2247%" height="15" fill="rgb(206,120,28)" fg:x="38487" fg:w="107"/><text x="81.0762%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="81.0320%" y="1269" width="0.0189%" height="15" fill="rgb(211,59,34)" fg:x="38585" fg:w="9"/><text x="81.2820%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="81.0320%" y="1253" width="0.0189%" height="15" fill="rgb(233,168,5)" fg:x="38585" fg:w="9"/><text x="81.2820%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="81.0320%" y="1237" width="0.0189%" height="15" fill="rgb(234,33,13)" fg:x="38585" fg:w="9"/><text x="81.2820%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="81.0320%" y="1221" width="0.0189%" height="15" fill="rgb(231,150,26)" fg:x="38585" fg:w="9"/><text x="81.2820%" y="1231.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="81.0614%" y="1269" width="0.0126%" height="15" fill="rgb(217,191,4)" fg:x="38599" fg:w="6"/><text x="81.3114%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="81.0803%" y="1221" width="0.0168%" height="15" fill="rgb(246,198,38)" fg:x="38608" fg:w="8"/><text x="81.3303%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.0866%" y="1205" width="0.0105%" height="15" fill="rgb(245,64,37)" fg:x="38611" fg:w="5"/><text x="81.3366%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="81.0740%" y="1253" width="0.0399%" height="15" fill="rgb(250,30,36)" fg:x="38605" fg:w="19"/><text x="81.3240%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (16 samples, 0.03%)</title><rect x="81.0803%" y="1237" width="0.0336%" height="15" fill="rgb(217,86,53)" fg:x="38608" fg:w="16"/><text x="81.3303%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="81.0971%" y="1221" width="0.0168%" height="15" fill="rgb(228,157,16)" fg:x="38616" fg:w="8"/><text x="81.3471%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="81.0971%" y="1205" width="0.0168%" height="15" fill="rgb(217,59,31)" fg:x="38616" fg:w="8"/><text x="81.3471%" y="1215.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="81.1139%" y="1189" width="0.0105%" height="15" fill="rgb(237,138,41)" fg:x="38624" fg:w="5"/><text x="81.3639%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="81.1139%" y="1205" width="0.0168%" height="15" fill="rgb(227,91,49)" fg:x="38624" fg:w="8"/><text x="81.3639%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.03%)</title><rect x="81.1139%" y="1253" width="0.0294%" height="15" fill="rgb(247,21,44)" fg:x="38624" fg:w="14"/><text x="81.3639%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="81.1139%" y="1237" width="0.0294%" height="15" fill="rgb(219,210,51)" fg:x="38624" fg:w="14"/><text x="81.3639%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="81.1139%" y="1221" width="0.0294%" height="15" fill="rgb(209,140,6)" fg:x="38624" fg:w="14"/><text x="81.3639%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (49 samples, 0.10%)</title><rect x="81.0509%" y="1301" width="0.1029%" height="15" fill="rgb(221,188,24)" fg:x="38594" fg:w="49"/><text x="81.3009%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (47 samples, 0.10%)</title><rect x="81.0551%" y="1285" width="0.0987%" height="15" fill="rgb(232,154,20)" fg:x="38596" fg:w="47"/><text x="81.3051%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (38 samples, 0.08%)</title><rect x="81.0740%" y="1269" width="0.0798%" height="15" fill="rgb(244,137,50)" fg:x="38605" fg:w="38"/><text x="81.3240%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="81.1433%" y="1253" width="0.0105%" height="15" fill="rgb(225,185,43)" fg:x="38638" fg:w="5"/><text x="81.3933%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="81.1433%" y="1237" width="0.0105%" height="15" fill="rgb(213,205,38)" fg:x="38638" fg:w="5"/><text x="81.3933%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.1433%" y="1221" width="0.0105%" height="15" fill="rgb(236,73,12)" fg:x="38638" fg:w="5"/><text x="81.3933%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.1433%" y="1205" width="0.0105%" height="15" fill="rgb(235,219,13)" fg:x="38638" fg:w="5"/><text x="81.3933%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="81.1559%" y="1205" width="0.0147%" height="15" fill="rgb(218,59,36)" fg:x="38644" fg:w="7"/><text x="81.4059%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="81.1538%" y="1237" width="0.0189%" height="15" fill="rgb(205,110,39)" fg:x="38643" fg:w="9"/><text x="81.4038%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="81.1559%" y="1221" width="0.0168%" height="15" fill="rgb(218,206,42)" fg:x="38644" fg:w="8"/><text x="81.4059%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (185 samples, 0.39%)</title><rect x="80.7968%" y="1333" width="0.3885%" height="15" fill="rgb(248,125,24)" fg:x="38473" fg:w="185"/><text x="81.0468%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (178 samples, 0.37%)</title><rect x="80.8115%" y="1317" width="0.3738%" height="15" fill="rgb(242,28,27)" fg:x="38480" fg:w="178"/><text x="81.0615%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.03%)</title><rect x="81.1538%" y="1301" width="0.0315%" height="15" fill="rgb(216,228,15)" fg:x="38643" fg:w="15"/><text x="81.4038%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.03%)</title><rect x="81.1538%" y="1285" width="0.0315%" height="15" fill="rgb(235,116,46)" fg:x="38643" fg:w="15"/><text x="81.4038%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="81.1538%" y="1269" width="0.0315%" height="15" fill="rgb(224,18,32)" fg:x="38643" fg:w="15"/><text x="81.4038%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="81.1538%" y="1253" width="0.0315%" height="15" fill="rgb(252,5,12)" fg:x="38643" fg:w="15"/><text x="81.4038%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="81.1748%" y="1237" width="0.0105%" height="15" fill="rgb(251,36,5)" fg:x="38653" fg:w="5"/><text x="81.4248%" y="1247.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="81.1958%" y="1269" width="0.0105%" height="15" fill="rgb(217,53,14)" fg:x="38663" fg:w="5"/><text x="81.4458%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="81.2084%" y="1253" width="0.0189%" height="15" fill="rgb(215,86,45)" fg:x="38669" fg:w="9"/><text x="81.4584%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.2168%" y="1237" width="0.0105%" height="15" fill="rgb(242,169,11)" fg:x="38673" fg:w="5"/><text x="81.4668%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="81.1958%" y="1285" width="0.0420%" height="15" fill="rgb(211,213,45)" fg:x="38663" fg:w="20"/><text x="81.4458%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="81.2084%" y="1269" width="0.0294%" height="15" fill="rgb(205,88,11)" fg:x="38669" fg:w="14"/><text x="81.4584%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="81.2273%" y="1253" width="0.0105%" height="15" fill="rgb(252,69,26)" fg:x="38678" fg:w="5"/><text x="81.4773%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="81.2378%" y="1285" width="0.0210%" height="15" fill="rgb(246,123,37)" fg:x="38683" fg:w="10"/><text x="81.4878%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="81.2378%" y="1269" width="0.0210%" height="15" fill="rgb(212,205,5)" fg:x="38683" fg:w="10"/><text x="81.4878%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="81.2399%" y="1253" width="0.0189%" height="15" fill="rgb(253,148,0)" fg:x="38684" fg:w="9"/><text x="81.4899%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="81.2483%" y="1237" width="0.0105%" height="15" fill="rgb(239,22,4)" fg:x="38688" fg:w="5"/><text x="81.4983%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="81.2483%" y="1221" width="0.0105%" height="15" fill="rgb(226,26,53)" fg:x="38688" fg:w="5"/><text x="81.4983%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.2483%" y="1205" width="0.0105%" height="15" fill="rgb(225,229,45)" fg:x="38688" fg:w="5"/><text x="81.4983%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.2483%" y="1189" width="0.0105%" height="15" fill="rgb(220,60,37)" fg:x="38688" fg:w="5"/><text x="81.4983%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="81.2609%" y="1157" width="0.0126%" height="15" fill="rgb(217,180,35)" fg:x="38694" fg:w="6"/><text x="81.5109%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.2630%" y="1141" width="0.0105%" height="15" fill="rgb(229,7,53)" fg:x="38695" fg:w="5"/><text x="81.5130%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="81.2609%" y="1189" width="0.0210%" height="15" fill="rgb(254,137,3)" fg:x="38694" fg:w="10"/><text x="81.5109%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="81.2609%" y="1173" width="0.0210%" height="15" fill="rgb(215,140,41)" fg:x="38694" fg:w="10"/><text x="81.5109%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="81.2819%" y="1189" width="0.0147%" height="15" fill="rgb(250,80,15)" fg:x="38704" fg:w="7"/><text x="81.5319%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="81.2819%" y="1173" width="0.0147%" height="15" fill="rgb(252,191,6)" fg:x="38704" fg:w="7"/><text x="81.5319%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="81.2819%" y="1157" width="0.0147%" height="15" fill="rgb(246,217,18)" fg:x="38704" fg:w="7"/><text x="81.5319%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="81.2609%" y="1221" width="0.0378%" height="15" fill="rgb(223,93,7)" fg:x="38694" fg:w="18"/><text x="81.5109%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="81.2609%" y="1205" width="0.0378%" height="15" fill="rgb(225,55,52)" fg:x="38694" fg:w="18"/><text x="81.5109%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="81.3071%" y="1125" width="0.0189%" height="15" fill="rgb(240,31,24)" fg:x="38716" fg:w="9"/><text x="81.5571%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="81.3071%" y="1109" width="0.0189%" height="15" fill="rgb(205,56,52)" fg:x="38716" fg:w="9"/><text x="81.5571%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.03%)</title><rect x="81.3050%" y="1157" width="0.0336%" height="15" fill="rgb(246,146,12)" fg:x="38715" fg:w="16"/><text x="81.5550%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="81.3071%" y="1141" width="0.0315%" height="15" fill="rgb(239,84,36)" fg:x="38716" fg:w="15"/><text x="81.5571%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="81.3260%" y="1125" width="0.0126%" height="15" fill="rgb(207,41,40)" fg:x="38725" fg:w="6"/><text x="81.5760%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="81.3260%" y="1109" width="0.0126%" height="15" fill="rgb(241,179,25)" fg:x="38725" fg:w="6"/><text x="81.5760%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="81.3260%" y="1093" width="0.0126%" height="15" fill="rgb(210,0,34)" fg:x="38725" fg:w="6"/><text x="81.5760%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="81.3281%" y="1077" width="0.0105%" height="15" fill="rgb(225,217,29)" fg:x="38726" fg:w="5"/><text x="81.5781%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="81.3281%" y="1061" width="0.0105%" height="15" fill="rgb(216,191,38)" fg:x="38726" fg:w="5"/><text x="81.5781%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.3281%" y="1045" width="0.0105%" height="15" fill="rgb(232,140,52)" fg:x="38726" fg:w="5"/><text x="81.5781%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.3281%" y="1029" width="0.0105%" height="15" fill="rgb(223,158,51)" fg:x="38726" fg:w="5"/><text x="81.5781%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.3281%" y="1013" width="0.0105%" height="15" fill="rgb(235,29,51)" fg:x="38726" fg:w="5"/><text x="81.5781%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.3281%" y="997" width="0.0105%" height="15" fill="rgb(215,181,18)" fg:x="38726" fg:w="5"/><text x="81.5781%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (75 samples, 0.16%)</title><rect x="81.1853%" y="1333" width="0.1575%" height="15" fill="rgb(227,125,34)" fg:x="38658" fg:w="75"/><text x="81.4353%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (75 samples, 0.16%)</title><rect x="81.1853%" y="1317" width="0.1575%" height="15" fill="rgb(230,197,49)" fg:x="38658" fg:w="75"/><text x="81.4353%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (71 samples, 0.15%)</title><rect x="81.1937%" y="1301" width="0.1491%" height="15" fill="rgb(239,141,16)" fg:x="38662" fg:w="71"/><text x="81.4437%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (40 samples, 0.08%)</title><rect x="81.2588%" y="1285" width="0.0840%" height="15" fill="rgb(225,105,43)" fg:x="38693" fg:w="40"/><text x="81.5088%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (40 samples, 0.08%)</title><rect x="81.2588%" y="1269" width="0.0840%" height="15" fill="rgb(214,131,14)" fg:x="38693" fg:w="40"/><text x="81.5088%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (40 samples, 0.08%)</title><rect x="81.2588%" y="1253" width="0.0840%" height="15" fill="rgb(229,177,11)" fg:x="38693" fg:w="40"/><text x="81.5088%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (39 samples, 0.08%)</title><rect x="81.2609%" y="1237" width="0.0819%" height="15" fill="rgb(231,180,14)" fg:x="38694" fg:w="39"/><text x="81.5109%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (19 samples, 0.04%)</title><rect x="81.3029%" y="1221" width="0.0399%" height="15" fill="rgb(232,88,2)" fg:x="38714" fg:w="19"/><text x="81.5529%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (19 samples, 0.04%)</title><rect x="81.3029%" y="1205" width="0.0399%" height="15" fill="rgb(205,220,8)" fg:x="38714" fg:w="19"/><text x="81.5529%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="81.3029%" y="1189" width="0.0399%" height="15" fill="rgb(225,23,53)" fg:x="38714" fg:w="19"/><text x="81.5529%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="81.3050%" y="1173" width="0.0378%" height="15" fill="rgb(213,62,29)" fg:x="38715" fg:w="18"/><text x="81.5550%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="81.3680%" y="1173" width="0.0147%" height="15" fill="rgb(227,75,7)" fg:x="38745" fg:w="7"/><text x="81.6180%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="81.3680%" y="1157" width="0.0147%" height="15" fill="rgb(207,105,14)" fg:x="38745" fg:w="7"/><text x="81.6180%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="81.3680%" y="1205" width="0.0252%" height="15" fill="rgb(245,62,29)" fg:x="38745" fg:w="12"/><text x="81.6180%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="81.3680%" y="1189" width="0.0252%" height="15" fill="rgb(236,202,4)" fg:x="38745" fg:w="12"/><text x="81.6180%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="81.3827%" y="1173" width="0.0105%" height="15" fill="rgb(250,67,1)" fg:x="38752" fg:w="5"/><text x="81.6327%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.3827%" y="1157" width="0.0105%" height="15" fill="rgb(253,115,44)" fg:x="38752" fg:w="5"/><text x="81.6327%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="81.3932%" y="1205" width="0.0168%" height="15" fill="rgb(251,139,18)" fg:x="38757" fg:w="8"/><text x="81.6432%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="81.3932%" y="1189" width="0.0168%" height="15" fill="rgb(218,22,32)" fg:x="38757" fg:w="8"/><text x="81.6432%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="81.3932%" y="1173" width="0.0168%" height="15" fill="rgb(243,53,5)" fg:x="38757" fg:w="8"/><text x="81.6432%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.05%)</title><rect x="81.3617%" y="1237" width="0.0504%" height="15" fill="rgb(227,56,16)" fg:x="38742" fg:w="24"/><text x="81.6117%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (21 samples, 0.04%)</title><rect x="81.3680%" y="1221" width="0.0441%" height="15" fill="rgb(245,53,0)" fg:x="38745" fg:w="21"/><text x="81.6180%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.4142%" y="1189" width="0.0105%" height="15" fill="rgb(216,170,35)" fg:x="38767" fg:w="5"/><text x="81.6642%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.4142%" y="1173" width="0.0105%" height="15" fill="rgb(211,200,8)" fg:x="38767" fg:w="5"/><text x="81.6642%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="81.4247%" y="1189" width="0.0126%" height="15" fill="rgb(228,204,44)" fg:x="38772" fg:w="6"/><text x="81.6747%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="81.4247%" y="1173" width="0.0126%" height="15" fill="rgb(214,121,17)" fg:x="38772" fg:w="6"/><text x="81.6747%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="81.4247%" y="1157" width="0.0126%" height="15" fill="rgb(233,64,38)" fg:x="38772" fg:w="6"/><text x="81.6747%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.03%)</title><rect x="81.4121%" y="1237" width="0.0336%" height="15" fill="rgb(253,54,19)" fg:x="38766" fg:w="16"/><text x="81.6621%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.03%)</title><rect x="81.4121%" y="1221" width="0.0336%" height="15" fill="rgb(253,94,18)" fg:x="38766" fg:w="16"/><text x="81.6621%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="81.4142%" y="1205" width="0.0315%" height="15" fill="rgb(227,57,52)" fg:x="38767" fg:w="15"/><text x="81.6642%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (51 samples, 0.11%)</title><rect x="81.3533%" y="1269" width="0.1071%" height="15" fill="rgb(230,228,50)" fg:x="38738" fg:w="51"/><text x="81.6033%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (48 samples, 0.10%)</title><rect x="81.3596%" y="1253" width="0.1008%" height="15" fill="rgb(217,205,27)" fg:x="38741" fg:w="48"/><text x="81.6096%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="81.4457%" y="1237" width="0.0147%" height="15" fill="rgb(252,71,50)" fg:x="38782" fg:w="7"/><text x="81.6957%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="81.4457%" y="1221" width="0.0147%" height="15" fill="rgb(209,86,4)" fg:x="38782" fg:w="7"/><text x="81.6957%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="81.4457%" y="1205" width="0.0147%" height="15" fill="rgb(229,94,0)" fg:x="38782" fg:w="7"/><text x="81.6957%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="81.4604%" y="1269" width="0.0147%" height="15" fill="rgb(252,223,21)" fg:x="38789" fg:w="7"/><text x="81.7104%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="81.4604%" y="1253" width="0.0147%" height="15" fill="rgb(230,210,4)" fg:x="38789" fg:w="7"/><text x="81.7104%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.4814%" y="1109" width="0.0105%" height="15" fill="rgb(240,149,38)" fg:x="38799" fg:w="5"/><text x="81.7314%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="81.4814%" y="1141" width="0.0126%" height="15" fill="rgb(254,105,20)" fg:x="38799" fg:w="6"/><text x="81.7314%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="81.4814%" y="1125" width="0.0126%" height="15" fill="rgb(253,87,46)" fg:x="38799" fg:w="6"/><text x="81.7314%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="81.4814%" y="1173" width="0.0189%" height="15" fill="rgb(253,116,33)" fg:x="38799" fg:w="9"/><text x="81.7314%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="81.4814%" y="1157" width="0.0189%" height="15" fill="rgb(229,198,5)" fg:x="38799" fg:w="9"/><text x="81.7314%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="81.4772%" y="1205" width="0.0294%" height="15" fill="rgb(242,38,37)" fg:x="38797" fg:w="14"/><text x="81.7272%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="81.4814%" y="1189" width="0.0252%" height="15" fill="rgb(242,69,53)" fg:x="38799" fg:w="12"/><text x="81.7314%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (23 samples, 0.05%)</title><rect x="81.4751%" y="1253" width="0.0483%" height="15" fill="rgb(249,80,16)" fg:x="38796" fg:w="23"/><text x="81.7251%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.05%)</title><rect x="81.4751%" y="1237" width="0.0483%" height="15" fill="rgb(206,128,11)" fg:x="38796" fg:w="23"/><text x="81.7251%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (22 samples, 0.05%)</title><rect x="81.4772%" y="1221" width="0.0462%" height="15" fill="rgb(212,35,20)" fg:x="38797" fg:w="22"/><text x="81.7272%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="81.5108%" y="1205" width="0.0126%" height="15" fill="rgb(236,79,13)" fg:x="38813" fg:w="6"/><text x="81.7608%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="81.5108%" y="1189" width="0.0126%" height="15" fill="rgb(233,123,3)" fg:x="38813" fg:w="6"/><text x="81.7608%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="81.5108%" y="1173" width="0.0126%" height="15" fill="rgb(214,93,52)" fg:x="38813" fg:w="6"/><text x="81.7608%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="81.5108%" y="1157" width="0.0126%" height="15" fill="rgb(251,37,40)" fg:x="38813" fg:w="6"/><text x="81.7608%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="81.5129%" y="1141" width="0.0105%" height="15" fill="rgb(227,80,54)" fg:x="38814" fg:w="5"/><text x="81.7629%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="81.5129%" y="1125" width="0.0105%" height="15" fill="rgb(254,48,11)" fg:x="38814" fg:w="5"/><text x="81.7629%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="81.5129%" y="1109" width="0.0105%" height="15" fill="rgb(235,193,26)" fg:x="38814" fg:w="5"/><text x="81.7629%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="81.5129%" y="1093" width="0.0105%" height="15" fill="rgb(229,99,21)" fg:x="38814" fg:w="5"/><text x="81.7629%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (3,267 samples, 6.86%)</title><rect x="74.6645%" y="1429" width="6.8610%" height="15" fill="rgb(211,140,41)" fg:x="35553" fg:w="3267"/><text x="74.9145%" y="1439.50">sqlparser..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (3,209 samples, 6.74%)</title><rect x="74.7863%" y="1413" width="6.7392%" height="15" fill="rgb(240,227,30)" fg:x="35611" fg:w="3209"/><text x="75.0363%" y="1423.50">sqlparser..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (364 samples, 0.76%)</title><rect x="80.7611%" y="1397" width="0.7644%" height="15" fill="rgb(215,224,45)" fg:x="38456" fg:w="364"/><text x="81.0111%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (362 samples, 0.76%)</title><rect x="80.7653%" y="1381" width="0.7602%" height="15" fill="rgb(206,123,31)" fg:x="38458" fg:w="362"/><text x="81.0153%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (360 samples, 0.76%)</title><rect x="80.7695%" y="1365" width="0.7560%" height="15" fill="rgb(210,138,16)" fg:x="38460" fg:w="360"/><text x="81.0195%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (348 samples, 0.73%)</title><rect x="80.7947%" y="1349" width="0.7308%" height="15" fill="rgb(228,57,28)" fg:x="38472" fg:w="348"/><text x="81.0447%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (87 samples, 0.18%)</title><rect x="81.3428%" y="1333" width="0.1827%" height="15" fill="rgb(242,170,10)" fg:x="38733" fg:w="87"/><text x="81.5928%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (87 samples, 0.18%)</title><rect x="81.3428%" y="1317" width="0.1827%" height="15" fill="rgb(228,214,39)" fg:x="38733" fg:w="87"/><text x="81.5928%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (86 samples, 0.18%)</title><rect x="81.3449%" y="1301" width="0.1806%" height="15" fill="rgb(218,179,33)" fg:x="38734" fg:w="86"/><text x="81.5949%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (82 samples, 0.17%)</title><rect x="81.3533%" y="1285" width="0.1722%" height="15" fill="rgb(235,193,39)" fg:x="38738" fg:w="82"/><text x="81.6033%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (24 samples, 0.05%)</title><rect x="81.4751%" y="1269" width="0.0504%" height="15" fill="rgb(219,221,36)" fg:x="38796" fg:w="24"/><text x="81.7251%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (33 samples, 0.07%)</title><rect x="81.5444%" y="1397" width="0.0693%" height="15" fill="rgb(248,218,19)" fg:x="38829" fg:w="33"/><text x="81.7944%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (5 samples, 0.01%)</title><rect x="81.6263%" y="1381" width="0.0105%" height="15" fill="rgb(205,50,9)" fg:x="38868" fg:w="5"/><text x="81.8763%" y="1391.50"></text></g><g><title>libsystem_m.dylib`exp (40 samples, 0.08%)</title><rect x="81.6536%" y="1365" width="0.0840%" height="15" fill="rgb(238,81,28)" fg:x="38881" fg:w="40"/><text x="81.9036%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (9 samples, 0.02%)</title><rect x="81.7376%" y="1365" width="0.0189%" height="15" fill="rgb(235,110,19)" fg:x="38921" fg:w="9"/><text x="81.9876%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (9 samples, 0.02%)</title><rect x="81.7376%" y="1349" width="0.0189%" height="15" fill="rgb(214,7,14)" fg:x="38921" fg:w="9"/><text x="81.9876%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (9 samples, 0.02%)</title><rect x="81.7376%" y="1333" width="0.0189%" height="15" fill="rgb(211,77,3)" fg:x="38921" fg:w="9"/><text x="81.9876%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (8 samples, 0.02%)</title><rect x="81.7397%" y="1317" width="0.0168%" height="15" fill="rgb(229,5,9)" fg:x="38922" fg:w="8"/><text x="81.9897%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="81.7397%" y="1301" width="0.0168%" height="15" fill="rgb(225,90,11)" fg:x="38922" fg:w="8"/><text x="81.9897%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="81.7418%" y="1285" width="0.0147%" height="15" fill="rgb(242,56,8)" fg:x="38923" fg:w="7"/><text x="81.9918%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (20 samples, 0.04%)</title><rect x="81.7754%" y="1333" width="0.0420%" height="15" fill="rgb(249,212,39)" fg:x="38939" fg:w="20"/><text x="82.0254%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (7 samples, 0.01%)</title><rect x="81.8174%" y="1301" width="0.0147%" height="15" fill="rgb(236,90,9)" fg:x="38959" fg:w="7"/><text x="82.0674%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="81.8195%" y="1285" width="0.0126%" height="15" fill="rgb(206,88,35)" fg:x="38960" fg:w="6"/><text x="82.0695%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="81.8195%" y="1269" width="0.0126%" height="15" fill="rgb(205,126,30)" fg:x="38960" fg:w="6"/><text x="82.0695%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="81.8216%" y="1253" width="0.0105%" height="15" fill="rgb(230,176,12)" fg:x="38961" fg:w="5"/><text x="82.0716%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (9 samples, 0.02%)</title><rect x="81.8174%" y="1333" width="0.0189%" height="15" fill="rgb(243,19,9)" fg:x="38959" fg:w="9"/><text x="82.0674%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (9 samples, 0.02%)</title><rect x="81.8174%" y="1317" width="0.0189%" height="15" fill="rgb(245,171,17)" fg:x="38959" fg:w="9"/><text x="82.0674%" y="1327.50"></text></g><g><title>libsystem_m.dylib`exp (15 samples, 0.03%)</title><rect x="81.8447%" y="1301" width="0.0315%" height="15" fill="rgb(227,52,21)" fg:x="38972" fg:w="15"/><text x="82.0947%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (11 samples, 0.02%)</title><rect x="81.8804%" y="1269" width="0.0231%" height="15" fill="rgb(238,69,14)" fg:x="38989" fg:w="11"/><text x="82.1304%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (6 samples, 0.01%)</title><rect x="81.9035%" y="1253" width="0.0126%" height="15" fill="rgb(241,156,39)" fg:x="39000" fg:w="6"/><text x="82.1535%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="81.8804%" y="1285" width="0.0399%" height="15" fill="rgb(212,227,28)" fg:x="38989" fg:w="19"/><text x="82.1304%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (8 samples, 0.02%)</title><rect x="81.9035%" y="1269" width="0.0168%" height="15" fill="rgb(209,118,27)" fg:x="39000" fg:w="8"/><text x="82.1535%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (10 samples, 0.02%)</title><rect x="81.9308%" y="1253" width="0.0210%" height="15" fill="rgb(226,102,5)" fg:x="39013" fg:w="10"/><text x="82.1808%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (5 samples, 0.01%)</title><rect x="81.9539%" y="1221" width="0.0105%" height="15" fill="rgb(223,34,3)" fg:x="39024" fg:w="5"/><text x="82.2039%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="81.9539%" y="1205" width="0.0105%" height="15" fill="rgb(221,81,38)" fg:x="39024" fg:w="5"/><text x="82.2039%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="81.9539%" y="1189" width="0.0105%" height="15" fill="rgb(236,219,28)" fg:x="39024" fg:w="5"/><text x="82.2039%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (61 samples, 0.13%)</title><rect x="81.8405%" y="1317" width="0.1281%" height="15" fill="rgb(213,200,14)" fg:x="38970" fg:w="61"/><text x="82.0905%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (44 samples, 0.09%)</title><rect x="81.8762%" y="1301" width="0.0924%" height="15" fill="rgb(240,33,19)" fg:x="38987" fg:w="44"/><text x="82.1262%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (23 samples, 0.05%)</title><rect x="81.9203%" y="1285" width="0.0483%" height="15" fill="rgb(233,113,27)" fg:x="39008" fg:w="23"/><text x="82.1703%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="81.9266%" y="1269" width="0.0420%" height="15" fill="rgb(220,221,18)" fg:x="39011" fg:w="20"/><text x="82.1766%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (8 samples, 0.02%)</title><rect x="81.9518%" y="1253" width="0.0168%" height="15" fill="rgb(238,92,8)" fg:x="39023" fg:w="8"/><text x="82.2018%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (8 samples, 0.02%)</title><rect x="81.9518%" y="1237" width="0.0168%" height="15" fill="rgb(222,164,16)" fg:x="39023" fg:w="8"/><text x="82.2018%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (5 samples, 0.01%)</title><rect x="81.9686%" y="1301" width="0.0105%" height="15" fill="rgb(241,119,3)" fg:x="39031" fg:w="5"/><text x="82.2186%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (14 samples, 0.03%)</title><rect x="81.9917%" y="1285" width="0.0294%" height="15" fill="rgb(241,44,8)" fg:x="39042" fg:w="14"/><text x="82.2417%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (13 samples, 0.03%)</title><rect x="82.0358%" y="1253" width="0.0273%" height="15" fill="rgb(230,36,40)" fg:x="39063" fg:w="13"/><text x="82.2858%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (6 samples, 0.01%)</title><rect x="82.0652%" y="1221" width="0.0126%" height="15" fill="rgb(243,16,36)" fg:x="39077" fg:w="6"/><text x="82.3152%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="82.0652%" y="1205" width="0.0126%" height="15" fill="rgb(231,4,26)" fg:x="39077" fg:w="6"/><text x="82.3152%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="82.0652%" y="1189" width="0.0126%" height="15" fill="rgb(240,9,31)" fg:x="39077" fg:w="6"/><text x="82.3152%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="82.0673%" y="1173" width="0.0105%" height="15" fill="rgb(207,173,15)" fg:x="39078" fg:w="5"/><text x="82.3173%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (11 samples, 0.02%)</title><rect x="82.0631%" y="1237" width="0.0231%" height="15" fill="rgb(224,192,53)" fg:x="39076" fg:w="11"/><text x="82.3131%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.06%)</title><rect x="82.0295%" y="1269" width="0.0609%" height="15" fill="rgb(223,67,28)" fg:x="39060" fg:w="29"/><text x="82.2795%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (13 samples, 0.03%)</title><rect x="82.0631%" y="1253" width="0.0273%" height="15" fill="rgb(211,20,47)" fg:x="39076" fg:w="13"/><text x="82.3131%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (8 samples, 0.02%)</title><rect x="82.0946%" y="1237" width="0.0168%" height="15" fill="rgb(240,228,2)" fg:x="39091" fg:w="8"/><text x="82.3446%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (7 samples, 0.01%)</title><rect x="82.1135%" y="1205" width="0.0147%" height="15" fill="rgb(248,151,12)" fg:x="39100" fg:w="7"/><text x="82.3635%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="82.1156%" y="1189" width="0.0126%" height="15" fill="rgb(244,8,39)" fg:x="39101" fg:w="6"/><text x="82.3656%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="82.1156%" y="1173" width="0.0126%" height="15" fill="rgb(222,26,8)" fg:x="39101" fg:w="6"/><text x="82.3656%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="82.1177%" y="1157" width="0.0105%" height="15" fill="rgb(213,106,44)" fg:x="39102" fg:w="5"/><text x="82.3677%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (177 samples, 0.37%)</title><rect x="81.7628%" y="1349" width="0.3717%" height="15" fill="rgb(214,129,20)" fg:x="38933" fg:w="177"/><text x="82.0128%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (142 samples, 0.30%)</title><rect x="81.8363%" y="1333" width="0.2982%" height="15" fill="rgb(212,32,13)" fg:x="38968" fg:w="142"/><text x="82.0863%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (79 samples, 0.17%)</title><rect x="81.9686%" y="1317" width="0.1659%" height="15" fill="rgb(208,168,33)" fg:x="39031" fg:w="79"/><text x="82.2186%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (74 samples, 0.16%)</title><rect x="81.9791%" y="1301" width="0.1554%" height="15" fill="rgb(231,207,8)" fg:x="39036" fg:w="74"/><text x="82.2291%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (51 samples, 0.11%)</title><rect x="82.0274%" y="1285" width="0.1071%" height="15" fill="rgb(235,219,23)" fg:x="39059" fg:w="51"/><text x="82.2774%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.04%)</title><rect x="82.0904%" y="1269" width="0.0441%" height="15" fill="rgb(226,216,26)" fg:x="39089" fg:w="21"/><text x="82.3404%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="82.0925%" y="1253" width="0.0420%" height="15" fill="rgb(239,137,16)" fg:x="39090" fg:w="20"/><text x="82.3425%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (11 samples, 0.02%)</title><rect x="82.1114%" y="1237" width="0.0231%" height="15" fill="rgb(207,12,36)" fg:x="39099" fg:w="11"/><text x="82.3614%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (11 samples, 0.02%)</title><rect x="82.1114%" y="1221" width="0.0231%" height="15" fill="rgb(210,214,24)" fg:x="39099" fg:w="11"/><text x="82.3614%" y="1231.50"></text></g><g><title>libsystem_m.dylib`exp (28 samples, 0.06%)</title><rect x="82.1492%" y="1317" width="0.0588%" height="15" fill="rgb(206,56,30)" fg:x="39117" fg:w="28"/><text x="82.3992%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (5 samples, 0.01%)</title><rect x="82.2080%" y="1317" width="0.0105%" height="15" fill="rgb(228,143,26)" fg:x="39145" fg:w="5"/><text x="82.4580%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.01%)</title><rect x="82.2080%" y="1301" width="0.0105%" height="15" fill="rgb(216,218,46)" fg:x="39145" fg:w="5"/><text x="82.4580%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (5 samples, 0.01%)</title><rect x="82.2080%" y="1285" width="0.0105%" height="15" fill="rgb(206,6,19)" fg:x="39145" fg:w="5"/><text x="82.4580%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="82.2080%" y="1269" width="0.0105%" height="15" fill="rgb(239,177,51)" fg:x="39145" fg:w="5"/><text x="82.4580%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="82.2080%" y="1253" width="0.0105%" height="15" fill="rgb(216,55,25)" fg:x="39145" fg:w="5"/><text x="82.4580%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (19 samples, 0.04%)</title><rect x="82.2269%" y="1285" width="0.0399%" height="15" fill="rgb(231,163,29)" fg:x="39154" fg:w="19"/><text x="82.4769%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (11 samples, 0.02%)</title><rect x="82.2815%" y="1253" width="0.0231%" height="15" fill="rgb(232,149,50)" fg:x="39180" fg:w="11"/><text x="82.5315%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (7 samples, 0.01%)</title><rect x="82.3046%" y="1237" width="0.0147%" height="15" fill="rgb(223,142,48)" fg:x="39191" fg:w="7"/><text x="82.5546%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="82.2794%" y="1269" width="0.0420%" height="15" fill="rgb(245,83,23)" fg:x="39179" fg:w="20"/><text x="82.5294%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (8 samples, 0.02%)</title><rect x="82.3046%" y="1253" width="0.0168%" height="15" fill="rgb(224,63,2)" fg:x="39191" fg:w="8"/><text x="82.5546%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (9 samples, 0.02%)</title><rect x="82.3277%" y="1237" width="0.0189%" height="15" fill="rgb(218,65,53)" fg:x="39202" fg:w="9"/><text x="82.5777%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (7 samples, 0.01%)</title><rect x="82.3466%" y="1221" width="0.0147%" height="15" fill="rgb(221,84,29)" fg:x="39211" fg:w="7"/><text x="82.5966%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (20 samples, 0.04%)</title><rect x="82.3214%" y="1269" width="0.0420%" height="15" fill="rgb(234,0,32)" fg:x="39199" fg:w="20"/><text x="82.5714%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="82.3214%" y="1253" width="0.0420%" height="15" fill="rgb(206,20,16)" fg:x="39199" fg:w="20"/><text x="82.5714%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (8 samples, 0.02%)</title><rect x="82.3466%" y="1237" width="0.0168%" height="15" fill="rgb(244,172,18)" fg:x="39211" fg:w="8"/><text x="82.5966%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (74 samples, 0.16%)</title><rect x="82.2185%" y="1301" width="0.1554%" height="15" fill="rgb(254,133,1)" fg:x="39150" fg:w="74"/><text x="82.4685%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (47 samples, 0.10%)</title><rect x="82.2752%" y="1285" width="0.0987%" height="15" fill="rgb(222,206,41)" fg:x="39177" fg:w="47"/><text x="82.5252%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="82.3634%" y="1269" width="0.0105%" height="15" fill="rgb(212,3,42)" fg:x="39219" fg:w="5"/><text x="82.6134%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="82.3634%" y="1253" width="0.0105%" height="15" fill="rgb(241,11,4)" fg:x="39219" fg:w="5"/><text x="82.6134%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="82.3634%" y="1237" width="0.0105%" height="15" fill="rgb(205,19,26)" fg:x="39219" fg:w="5"/><text x="82.6134%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="82.3634%" y="1221" width="0.0105%" height="15" fill="rgb(210,179,32)" fg:x="39219" fg:w="5"/><text x="82.6134%" y="1231.50"></text></g><g><title>libsystem_m.dylib`exp (15 samples, 0.03%)</title><rect x="82.3907%" y="1269" width="0.0315%" height="15" fill="rgb(227,116,49)" fg:x="39232" fg:w="15"/><text x="82.6407%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (10 samples, 0.02%)</title><rect x="82.4285%" y="1237" width="0.0210%" height="15" fill="rgb(211,146,6)" fg:x="39250" fg:w="10"/><text x="82.6785%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (11 samples, 0.02%)</title><rect x="82.4495%" y="1237" width="0.0231%" height="15" fill="rgb(219,44,39)" fg:x="39260" fg:w="11"/><text x="82.6995%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (11 samples, 0.02%)</title><rect x="82.4495%" y="1221" width="0.0231%" height="15" fill="rgb(234,128,11)" fg:x="39260" fg:w="11"/><text x="82.6995%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (8 samples, 0.02%)</title><rect x="82.4558%" y="1205" width="0.0168%" height="15" fill="rgb(220,183,53)" fg:x="39263" fg:w="8"/><text x="82.7058%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="82.4558%" y="1189" width="0.0168%" height="15" fill="rgb(213,219,32)" fg:x="39263" fg:w="8"/><text x="82.7058%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="82.4621%" y="1173" width="0.0105%" height="15" fill="rgb(232,156,16)" fg:x="39266" fg:w="5"/><text x="82.7121%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.05%)</title><rect x="82.4222%" y="1253" width="0.0525%" height="15" fill="rgb(246,135,34)" fg:x="39247" fg:w="25"/><text x="82.6722%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="82.4852%" y="1221" width="0.0147%" height="15" fill="rgb(241,99,0)" fg:x="39277" fg:w="7"/><text x="82.7352%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (7 samples, 0.01%)</title><rect x="82.4999%" y="1205" width="0.0147%" height="15" fill="rgb(222,103,45)" fg:x="39284" fg:w="7"/><text x="82.7499%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (9 samples, 0.02%)</title><rect x="82.4999%" y="1221" width="0.0189%" height="15" fill="rgb(212,57,4)" fg:x="39284" fg:w="9"/><text x="82.7499%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (23 samples, 0.05%)</title><rect x="82.4747%" y="1253" width="0.0483%" height="15" fill="rgb(215,68,47)" fg:x="39272" fg:w="23"/><text x="82.7247%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="82.4789%" y="1237" width="0.0441%" height="15" fill="rgb(230,84,2)" fg:x="39274" fg:w="21"/><text x="82.7289%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (73 samples, 0.15%)</title><rect x="82.3739%" y="1301" width="0.1533%" height="15" fill="rgb(220,102,14)" fg:x="39224" fg:w="73"/><text x="82.6239%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (69 samples, 0.14%)</title><rect x="82.3823%" y="1285" width="0.1449%" height="15" fill="rgb(240,10,32)" fg:x="39228" fg:w="69"/><text x="82.6323%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (50 samples, 0.11%)</title><rect x="82.4222%" y="1269" width="0.1050%" height="15" fill="rgb(215,47,27)" fg:x="39247" fg:w="50"/><text x="82.6722%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="82.5272%" y="1205" width="0.0189%" height="15" fill="rgb(233,188,43)" fg:x="39297" fg:w="9"/><text x="82.7772%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="82.5293%" y="1189" width="0.0168%" height="15" fill="rgb(253,190,1)" fg:x="39298" fg:w="8"/><text x="82.7793%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="82.5272%" y="1237" width="0.0399%" height="15" fill="rgb(206,114,52)" fg:x="39297" fg:w="19"/><text x="82.7772%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="82.5272%" y="1221" width="0.0399%" height="15" fill="rgb(233,120,37)" fg:x="39297" fg:w="19"/><text x="82.7772%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="82.5461%" y="1205" width="0.0210%" height="15" fill="rgb(214,52,39)" fg:x="39306" fg:w="10"/><text x="82.7961%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="82.5461%" y="1189" width="0.0210%" height="15" fill="rgb(223,80,29)" fg:x="39306" fg:w="10"/><text x="82.7961%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="82.5461%" y="1173" width="0.0210%" height="15" fill="rgb(230,101,40)" fg:x="39306" fg:w="10"/><text x="82.7961%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="82.5672%" y="1237" width="0.0147%" height="15" fill="rgb(219,211,8)" fg:x="39316" fg:w="7"/><text x="82.8172%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="82.5672%" y="1221" width="0.0147%" height="15" fill="rgb(252,126,28)" fg:x="39316" fg:w="7"/><text x="82.8172%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="82.5672%" y="1205" width="0.0147%" height="15" fill="rgb(215,56,38)" fg:x="39316" fg:w="7"/><text x="82.8172%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (223 samples, 0.47%)</title><rect x="82.1345%" y="1349" width="0.4683%" height="15" fill="rgb(249,55,44)" fg:x="39110" fg:w="223"/><text x="82.3845%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (219 samples, 0.46%)</title><rect x="82.1429%" y="1333" width="0.4599%" height="15" fill="rgb(220,221,32)" fg:x="39114" fg:w="219"/><text x="82.3929%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (183 samples, 0.38%)</title><rect x="82.2185%" y="1317" width="0.3843%" height="15" fill="rgb(212,216,41)" fg:x="39150" fg:w="183"/><text x="82.4685%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (36 samples, 0.08%)</title><rect x="82.5272%" y="1301" width="0.0756%" height="15" fill="rgb(228,213,43)" fg:x="39297" fg:w="36"/><text x="82.7772%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (36 samples, 0.08%)</title><rect x="82.5272%" y="1285" width="0.0756%" height="15" fill="rgb(211,31,26)" fg:x="39297" fg:w="36"/><text x="82.7772%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.08%)</title><rect x="82.5272%" y="1269" width="0.0756%" height="15" fill="rgb(229,202,19)" fg:x="39297" fg:w="36"/><text x="82.7772%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (36 samples, 0.08%)</title><rect x="82.5272%" y="1253" width="0.0756%" height="15" fill="rgb(229,105,46)" fg:x="39297" fg:w="36"/><text x="82.7772%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.02%)</title><rect x="82.5819%" y="1237" width="0.0210%" height="15" fill="rgb(235,108,1)" fg:x="39323" fg:w="10"/><text x="82.8319%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.02%)</title><rect x="82.5819%" y="1221" width="0.0210%" height="15" fill="rgb(245,111,35)" fg:x="39323" fg:w="10"/><text x="82.8319%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="82.5840%" y="1205" width="0.0189%" height="15" fill="rgb(219,185,31)" fg:x="39324" fg:w="9"/><text x="82.8340%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="82.5840%" y="1189" width="0.0189%" height="15" fill="rgb(214,4,43)" fg:x="39324" fg:w="9"/><text x="82.8340%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="82.5903%" y="1173" width="0.0126%" height="15" fill="rgb(235,227,40)" fg:x="39327" fg:w="6"/><text x="82.8403%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="82.5903%" y="1157" width="0.0126%" height="15" fill="rgb(230,88,30)" fg:x="39327" fg:w="6"/><text x="82.8403%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="82.5903%" y="1141" width="0.0126%" height="15" fill="rgb(216,217,1)" fg:x="39327" fg:w="6"/><text x="82.8403%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="82.5903%" y="1125" width="0.0126%" height="15" fill="rgb(248,139,50)" fg:x="39327" fg:w="6"/><text x="82.8403%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (466 samples, 0.98%)</title><rect x="81.6368%" y="1381" width="0.9786%" height="15" fill="rgb(233,1,21)" fg:x="38873" fg:w="466"/><text x="81.8868%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (409 samples, 0.86%)</title><rect x="81.7565%" y="1365" width="0.8589%" height="15" fill="rgb(215,183,12)" fg:x="38930" fg:w="409"/><text x="82.0065%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="82.6029%" y="1349" width="0.0126%" height="15" fill="rgb(229,104,42)" fg:x="39333" fg:w="6"/><text x="82.8529%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="82.6029%" y="1333" width="0.0126%" height="15" fill="rgb(243,34,48)" fg:x="39333" fg:w="6"/><text x="82.8529%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="82.6029%" y="1317" width="0.0126%" height="15" fill="rgb(239,11,44)" fg:x="39333" fg:w="6"/><text x="82.8529%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="82.6050%" y="1301" width="0.0105%" height="15" fill="rgb(231,98,35)" fg:x="39334" fg:w="5"/><text x="82.8550%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (52 samples, 0.11%)</title><rect x="82.6428%" y="1349" width="0.1092%" height="15" fill="rgb(233,28,25)" fg:x="39352" fg:w="52"/><text x="82.8928%" y="1359.50"></text></g><g><title>libsystem_m.dylib`exp (31 samples, 0.07%)</title><rect x="82.7688%" y="1317" width="0.0651%" height="15" fill="rgb(234,123,11)" fg:x="39412" fg:w="31"/><text x="83.0188%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (7 samples, 0.01%)</title><rect x="82.8339%" y="1285" width="0.0147%" height="15" fill="rgb(220,69,3)" fg:x="39443" fg:w="7"/><text x="83.0839%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (7 samples, 0.01%)</title><rect x="82.8339%" y="1269" width="0.0147%" height="15" fill="rgb(214,64,36)" fg:x="39443" fg:w="7"/><text x="83.0839%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="82.8339%" y="1253" width="0.0147%" height="15" fill="rgb(211,138,32)" fg:x="39443" fg:w="7"/><text x="83.0839%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (9 samples, 0.02%)</title><rect x="82.8339%" y="1317" width="0.0189%" height="15" fill="rgb(213,118,47)" fg:x="39443" fg:w="9"/><text x="83.0839%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (9 samples, 0.02%)</title><rect x="82.8339%" y="1301" width="0.0189%" height="15" fill="rgb(243,124,49)" fg:x="39443" fg:w="9"/><text x="83.0839%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (19 samples, 0.04%)</title><rect x="82.8570%" y="1285" width="0.0399%" height="15" fill="rgb(221,30,28)" fg:x="39454" fg:w="19"/><text x="83.1070%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="82.9053%" y="1253" width="0.0126%" height="15" fill="rgb(246,37,13)" fg:x="39477" fg:w="6"/><text x="83.1553%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="82.9032%" y="1269" width="0.0252%" height="15" fill="rgb(249,66,14)" fg:x="39476" fg:w="12"/><text x="83.1532%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.01%)</title><rect x="82.9179%" y="1253" width="0.0105%" height="15" fill="rgb(213,166,5)" fg:x="39483" fg:w="5"/><text x="83.1679%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (7 samples, 0.01%)</title><rect x="82.9347%" y="1221" width="0.0147%" height="15" fill="rgb(221,66,24)" fg:x="39491" fg:w="7"/><text x="83.1847%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="82.9389%" y="1205" width="0.0105%" height="15" fill="rgb(210,132,17)" fg:x="39493" fg:w="5"/><text x="83.1889%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="82.9389%" y="1189" width="0.0105%" height="15" fill="rgb(243,202,5)" fg:x="39493" fg:w="5"/><text x="83.1889%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.11%)</title><rect x="82.8528%" y="1301" width="0.1050%" height="15" fill="rgb(233,70,48)" fg:x="39452" fg:w="50"/><text x="83.1028%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (27 samples, 0.06%)</title><rect x="82.9011%" y="1285" width="0.0567%" height="15" fill="rgb(238,41,26)" fg:x="39475" fg:w="27"/><text x="83.1511%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.03%)</title><rect x="82.9284%" y="1269" width="0.0294%" height="15" fill="rgb(241,19,31)" fg:x="39488" fg:w="14"/><text x="83.1784%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="82.9284%" y="1253" width="0.0294%" height="15" fill="rgb(214,76,10)" fg:x="39488" fg:w="14"/><text x="83.1784%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (11 samples, 0.02%)</title><rect x="82.9347%" y="1237" width="0.0231%" height="15" fill="rgb(254,202,22)" fg:x="39491" fg:w="11"/><text x="83.1847%" y="1247.50"></text></g><g><title>libsystem_m.dylib`exp (12 samples, 0.03%)</title><rect x="82.9620%" y="1269" width="0.0252%" height="15" fill="rgb(214,72,24)" fg:x="39504" fg:w="12"/><text x="83.2120%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (10 samples, 0.02%)</title><rect x="82.9956%" y="1237" width="0.0210%" height="15" fill="rgb(221,92,46)" fg:x="39520" fg:w="10"/><text x="83.2456%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (5 samples, 0.01%)</title><rect x="83.0166%" y="1205" width="0.0105%" height="15" fill="rgb(246,13,50)" fg:x="39530" fg:w="5"/><text x="83.2666%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="83.0166%" y="1189" width="0.0105%" height="15" fill="rgb(240,165,38)" fg:x="39530" fg:w="5"/><text x="83.2666%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (11 samples, 0.02%)</title><rect x="83.0166%" y="1221" width="0.0231%" height="15" fill="rgb(241,24,51)" fg:x="39530" fg:w="11"/><text x="83.2666%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="83.0271%" y="1205" width="0.0126%" height="15" fill="rgb(227,51,44)" fg:x="39535" fg:w="6"/><text x="83.2771%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="83.0271%" y="1189" width="0.0126%" height="15" fill="rgb(231,121,3)" fg:x="39535" fg:w="6"/><text x="83.2771%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.05%)</title><rect x="82.9956%" y="1253" width="0.0462%" height="15" fill="rgb(245,3,41)" fg:x="39520" fg:w="22"/><text x="83.2456%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (12 samples, 0.03%)</title><rect x="83.0166%" y="1237" width="0.0252%" height="15" fill="rgb(214,13,26)" fg:x="39530" fg:w="12"/><text x="83.2666%" y="1247.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="83.0460%" y="1221" width="0.0126%" height="15" fill="rgb(252,75,11)" fg:x="39544" fg:w="6"/><text x="83.2960%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (150 samples, 0.32%)</title><rect x="82.7583%" y="1333" width="0.3150%" height="15" fill="rgb(218,226,17)" fg:x="39407" fg:w="150"/><text x="83.0083%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (105 samples, 0.22%)</title><rect x="82.8528%" y="1317" width="0.2205%" height="15" fill="rgb(248,89,38)" fg:x="39452" fg:w="105"/><text x="83.1028%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (55 samples, 0.12%)</title><rect x="82.9578%" y="1301" width="0.1155%" height="15" fill="rgb(237,73,46)" fg:x="39502" fg:w="55"/><text x="83.2078%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.12%)</title><rect x="82.9578%" y="1285" width="0.1155%" height="15" fill="rgb(242,78,33)" fg:x="39502" fg:w="55"/><text x="83.2078%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (39 samples, 0.08%)</title><rect x="82.9914%" y="1269" width="0.0819%" height="15" fill="rgb(235,60,3)" fg:x="39518" fg:w="39"/><text x="83.2414%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="83.0418%" y="1253" width="0.0315%" height="15" fill="rgb(216,172,19)" fg:x="39542" fg:w="15"/><text x="83.2918%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="83.0460%" y="1237" width="0.0273%" height="15" fill="rgb(227,6,42)" fg:x="39544" fg:w="13"/><text x="83.2960%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.01%)</title><rect x="83.0586%" y="1221" width="0.0147%" height="15" fill="rgb(223,207,42)" fg:x="39550" fg:w="7"/><text x="83.3086%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (7 samples, 0.01%)</title><rect x="83.0586%" y="1205" width="0.0147%" height="15" fill="rgb(246,138,30)" fg:x="39550" fg:w="7"/><text x="83.3086%" y="1215.50"></text></g><g><title>libsystem_m.dylib`exp (16 samples, 0.03%)</title><rect x="83.0901%" y="1301" width="0.0336%" height="15" fill="rgb(251,199,47)" fg:x="39565" fg:w="16"/><text x="83.3401%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (8 samples, 0.02%)</title><rect x="83.1237%" y="1301" width="0.0168%" height="15" fill="rgb(228,218,44)" fg:x="39581" fg:w="8"/><text x="83.3737%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (8 samples, 0.02%)</title><rect x="83.1237%" y="1285" width="0.0168%" height="15" fill="rgb(220,68,6)" fg:x="39581" fg:w="8"/><text x="83.3737%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (8 samples, 0.02%)</title><rect x="83.1237%" y="1269" width="0.0168%" height="15" fill="rgb(240,60,26)" fg:x="39581" fg:w="8"/><text x="83.3737%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (7 samples, 0.01%)</title><rect x="83.1258%" y="1253" width="0.0147%" height="15" fill="rgb(211,200,19)" fg:x="39582" fg:w="7"/><text x="83.3758%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="83.1258%" y="1237" width="0.0147%" height="15" fill="rgb(242,145,30)" fg:x="39582" fg:w="7"/><text x="83.3758%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="83.1300%" y="1221" width="0.0105%" height="15" fill="rgb(225,64,13)" fg:x="39584" fg:w="5"/><text x="83.3800%" y="1231.50"></text></g><g><title>libsystem_m.dylib`exp (11 samples, 0.02%)</title><rect x="83.1489%" y="1269" width="0.0231%" height="15" fill="rgb(218,103,35)" fg:x="39593" fg:w="11"/><text x="83.3989%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (8 samples, 0.02%)</title><rect x="83.1720%" y="1237" width="0.0168%" height="15" fill="rgb(216,93,46)" fg:x="39604" fg:w="8"/><text x="83.4220%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (8 samples, 0.02%)</title><rect x="83.1720%" y="1221" width="0.0168%" height="15" fill="rgb(225,159,27)" fg:x="39604" fg:w="8"/><text x="83.4220%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="83.1720%" y="1205" width="0.0168%" height="15" fill="rgb(225,204,11)" fg:x="39604" fg:w="8"/><text x="83.4220%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (9 samples, 0.02%)</title><rect x="83.1720%" y="1269" width="0.0189%" height="15" fill="rgb(205,56,4)" fg:x="39604" fg:w="9"/><text x="83.4220%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (9 samples, 0.02%)</title><rect x="83.1720%" y="1253" width="0.0189%" height="15" fill="rgb(206,6,35)" fg:x="39604" fg:w="9"/><text x="83.4220%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="83.1930%" y="1253" width="0.0126%" height="15" fill="rgb(247,73,52)" fg:x="39614" fg:w="6"/><text x="83.4430%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.01%)</title><rect x="83.1951%" y="1237" width="0.0105%" height="15" fill="rgb(246,97,4)" fg:x="39615" fg:w="5"/><text x="83.4451%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (5 samples, 0.01%)</title><rect x="83.1951%" y="1221" width="0.0105%" height="15" fill="rgb(212,37,15)" fg:x="39615" fg:w="5"/><text x="83.4451%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (7 samples, 0.01%)</title><rect x="83.2140%" y="1205" width="0.0147%" height="15" fill="rgb(208,130,40)" fg:x="39624" fg:w="7"/><text x="83.4640%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.09%)</title><rect x="83.1447%" y="1285" width="0.0861%" height="15" fill="rgb(236,55,29)" fg:x="39591" fg:w="41"/><text x="83.3947%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="83.1909%" y="1269" width="0.0399%" height="15" fill="rgb(209,156,45)" fg:x="39613" fg:w="19"/><text x="83.4409%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.03%)</title><rect x="83.2056%" y="1253" width="0.0252%" height="15" fill="rgb(249,107,4)" fg:x="39620" fg:w="12"/><text x="83.4556%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="83.2056%" y="1237" width="0.0252%" height="15" fill="rgb(227,7,13)" fg:x="39620" fg:w="12"/><text x="83.4556%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (8 samples, 0.02%)</title><rect x="83.2140%" y="1221" width="0.0168%" height="15" fill="rgb(250,129,14)" fg:x="39624" fg:w="8"/><text x="83.4640%" y="1231.50"></text></g><g><title>libsystem_m.dylib`exp (15 samples, 0.03%)</title><rect x="83.2413%" y="1253" width="0.0315%" height="15" fill="rgb(229,92,13)" fg:x="39637" fg:w="15"/><text x="83.4913%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (5 samples, 0.01%)</title><rect x="83.2728%" y="1253" width="0.0105%" height="15" fill="rgb(245,98,39)" fg:x="39652" fg:w="5"/><text x="83.5228%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.01%)</title><rect x="83.2728%" y="1237" width="0.0105%" height="15" fill="rgb(234,135,48)" fg:x="39652" fg:w="5"/><text x="83.5228%" y="1247.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="83.2854%" y="1221" width="0.0105%" height="15" fill="rgb(230,98,28)" fg:x="39658" fg:w="5"/><text x="83.5354%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.01%)</title><rect x="83.2959%" y="1221" width="0.0105%" height="15" fill="rgb(223,121,0)" fg:x="39663" fg:w="5"/><text x="83.5459%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="83.2833%" y="1237" width="0.0252%" height="15" fill="rgb(234,173,33)" fg:x="39657" fg:w="12"/><text x="83.5333%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.01%)</title><rect x="83.3127%" y="1205" width="0.0126%" height="15" fill="rgb(245,47,8)" fg:x="39671" fg:w="6"/><text x="83.5627%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (6 samples, 0.01%)</title><rect x="83.3127%" y="1189" width="0.0126%" height="15" fill="rgb(205,17,20)" fg:x="39671" fg:w="6"/><text x="83.5627%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="83.3085%" y="1237" width="0.0189%" height="15" fill="rgb(232,151,16)" fg:x="39669" fg:w="9"/><text x="83.5585%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="83.3106%" y="1221" width="0.0168%" height="15" fill="rgb(208,30,32)" fg:x="39670" fg:w="8"/><text x="83.5606%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (47 samples, 0.10%)</title><rect x="83.2308%" y="1285" width="0.0987%" height="15" fill="rgb(254,26,3)" fg:x="39632" fg:w="47"/><text x="83.4808%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.09%)</title><rect x="83.2350%" y="1269" width="0.0945%" height="15" fill="rgb(240,177,30)" fg:x="39634" fg:w="45"/><text x="83.4850%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (22 samples, 0.05%)</title><rect x="83.2833%" y="1253" width="0.0462%" height="15" fill="rgb(248,76,44)" fg:x="39657" fg:w="22"/><text x="83.5333%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="83.3442%" y="1189" width="0.0105%" height="15" fill="rgb(241,186,54)" fg:x="39686" fg:w="5"/><text x="83.5942%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="83.3316%" y="1221" width="0.0252%" height="15" fill="rgb(249,171,29)" fg:x="39680" fg:w="12"/><text x="83.5816%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="83.3358%" y="1205" width="0.0210%" height="15" fill="rgb(237,151,44)" fg:x="39682" fg:w="10"/><text x="83.5858%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="83.3568%" y="1221" width="0.0189%" height="15" fill="rgb(228,174,30)" fg:x="39692" fg:w="9"/><text x="83.6068%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="83.3568%" y="1205" width="0.0189%" height="15" fill="rgb(252,14,37)" fg:x="39692" fg:w="9"/><text x="83.6068%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="83.3568%" y="1189" width="0.0189%" height="15" fill="rgb(207,111,40)" fg:x="39692" fg:w="9"/><text x="83.6068%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="83.3631%" y="1173" width="0.0126%" height="15" fill="rgb(248,171,54)" fg:x="39695" fg:w="6"/><text x="83.6131%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="83.3631%" y="1157" width="0.0126%" height="15" fill="rgb(211,127,2)" fg:x="39695" fg:w="6"/><text x="83.6131%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="83.3631%" y="1141" width="0.0126%" height="15" fill="rgb(236,87,47)" fg:x="39695" fg:w="6"/><text x="83.6131%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="83.3652%" y="1125" width="0.0105%" height="15" fill="rgb(223,190,45)" fg:x="39696" fg:w="5"/><text x="83.6152%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (145 samples, 0.30%)</title><rect x="83.0733%" y="1333" width="0.3045%" height="15" fill="rgb(215,5,16)" fg:x="39557" fg:w="145"/><text x="83.3233%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (141 samples, 0.30%)</title><rect x="83.0817%" y="1317" width="0.2961%" height="15" fill="rgb(252,82,33)" fg:x="39561" fg:w="141"/><text x="83.3317%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (113 samples, 0.24%)</title><rect x="83.1405%" y="1301" width="0.2373%" height="15" fill="rgb(247,213,44)" fg:x="39589" fg:w="113"/><text x="83.3905%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (23 samples, 0.05%)</title><rect x="83.3295%" y="1285" width="0.0483%" height="15" fill="rgb(205,196,44)" fg:x="39679" fg:w="23"/><text x="83.5795%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (23 samples, 0.05%)</title><rect x="83.3295%" y="1269" width="0.0483%" height="15" fill="rgb(237,96,54)" fg:x="39679" fg:w="23"/><text x="83.5795%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.05%)</title><rect x="83.3295%" y="1253" width="0.0483%" height="15" fill="rgb(230,113,34)" fg:x="39679" fg:w="23"/><text x="83.5795%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (22 samples, 0.05%)</title><rect x="83.3316%" y="1237" width="0.0462%" height="15" fill="rgb(221,224,12)" fg:x="39680" fg:w="22"/><text x="83.5816%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="83.3862%" y="1205" width="0.0126%" height="15" fill="rgb(219,112,44)" fg:x="39706" fg:w="6"/><text x="83.6362%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="83.3883%" y="1189" width="0.0105%" height="15" fill="rgb(210,31,13)" fg:x="39707" fg:w="5"/><text x="83.6383%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="83.3841%" y="1237" width="0.0252%" height="15" fill="rgb(230,25,16)" fg:x="39705" fg:w="12"/><text x="83.6341%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="83.3862%" y="1221" width="0.0231%" height="15" fill="rgb(246,108,53)" fg:x="39706" fg:w="11"/><text x="83.6362%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="83.3988%" y="1205" width="0.0105%" height="15" fill="rgb(241,172,50)" fg:x="39712" fg:w="5"/><text x="83.6488%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="83.3988%" y="1189" width="0.0105%" height="15" fill="rgb(235,141,10)" fg:x="39712" fg:w="5"/><text x="83.6488%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="83.4093%" y="1189" width="0.0147%" height="15" fill="rgb(220,174,43)" fg:x="39717" fg:w="7"/><text x="83.6593%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="83.4114%" y="1173" width="0.0126%" height="15" fill="rgb(215,181,40)" fg:x="39718" fg:w="6"/><text x="83.6614%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="83.4093%" y="1237" width="0.0189%" height="15" fill="rgb(230,97,2)" fg:x="39717" fg:w="9"/><text x="83.6593%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="83.4093%" y="1221" width="0.0189%" height="15" fill="rgb(211,25,27)" fg:x="39717" fg:w="9"/><text x="83.6593%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="83.4093%" y="1205" width="0.0189%" height="15" fill="rgb(230,87,26)" fg:x="39717" fg:w="9"/><text x="83.6593%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="83.4282%" y="1173" width="0.0126%" height="15" fill="rgb(227,160,17)" fg:x="39726" fg:w="6"/><text x="83.6782%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="83.4282%" y="1157" width="0.0126%" height="15" fill="rgb(244,85,34)" fg:x="39726" fg:w="6"/><text x="83.6782%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.06%)</title><rect x="83.3820%" y="1269" width="0.0630%" height="15" fill="rgb(207,70,0)" fg:x="39704" fg:w="30"/><text x="83.6320%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (29 samples, 0.06%)</title><rect x="83.3841%" y="1253" width="0.0609%" height="15" fill="rgb(223,129,7)" fg:x="39705" fg:w="29"/><text x="83.6341%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="83.4282%" y="1237" width="0.0168%" height="15" fill="rgb(246,105,7)" fg:x="39726" fg:w="8"/><text x="83.6782%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.02%)</title><rect x="83.4282%" y="1221" width="0.0168%" height="15" fill="rgb(215,154,42)" fg:x="39726" fg:w="8"/><text x="83.6782%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="83.4282%" y="1205" width="0.0168%" height="15" fill="rgb(220,215,30)" fg:x="39726" fg:w="8"/><text x="83.6782%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="83.4282%" y="1189" width="0.0168%" height="15" fill="rgb(228,81,51)" fg:x="39726" fg:w="8"/><text x="83.6782%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="83.4450%" y="1269" width="0.0168%" height="15" fill="rgb(247,71,54)" fg:x="39734" fg:w="8"/><text x="83.6950%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="83.4471%" y="1253" width="0.0147%" height="15" fill="rgb(234,176,34)" fg:x="39735" fg:w="7"/><text x="83.6971%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="83.4513%" y="1237" width="0.0105%" height="15" fill="rgb(241,103,54)" fg:x="39737" fg:w="5"/><text x="83.7013%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="83.4660%" y="1141" width="0.0168%" height="15" fill="rgb(228,22,34)" fg:x="39744" fg:w="8"/><text x="83.7160%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="83.4681%" y="1125" width="0.0147%" height="15" fill="rgb(241,179,48)" fg:x="39745" fg:w="7"/><text x="83.7181%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.04%)</title><rect x="83.4660%" y="1173" width="0.0357%" height="15" fill="rgb(235,167,37)" fg:x="39744" fg:w="17"/><text x="83.7160%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (17 samples, 0.04%)</title><rect x="83.4660%" y="1157" width="0.0357%" height="15" fill="rgb(213,109,30)" fg:x="39744" fg:w="17"/><text x="83.7160%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="83.4828%" y="1141" width="0.0189%" height="15" fill="rgb(222,172,16)" fg:x="39752" fg:w="9"/><text x="83.7328%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="83.4828%" y="1125" width="0.0189%" height="15" fill="rgb(233,192,5)" fg:x="39752" fg:w="9"/><text x="83.7328%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="83.4828%" y="1109" width="0.0189%" height="15" fill="rgb(247,189,41)" fg:x="39752" fg:w="9"/><text x="83.7328%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="83.4912%" y="1093" width="0.0105%" height="15" fill="rgb(218,134,47)" fg:x="39756" fg:w="5"/><text x="83.7412%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="83.4912%" y="1077" width="0.0105%" height="15" fill="rgb(216,29,3)" fg:x="39756" fg:w="5"/><text x="83.7412%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="83.4912%" y="1061" width="0.0105%" height="15" fill="rgb(246,140,12)" fg:x="39756" fg:w="5"/><text x="83.7412%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="83.5017%" y="1173" width="0.0126%" height="15" fill="rgb(230,136,11)" fg:x="39761" fg:w="6"/><text x="83.7517%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="83.5017%" y="1157" width="0.0126%" height="15" fill="rgb(247,22,47)" fg:x="39761" fg:w="6"/><text x="83.7517%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="83.5017%" y="1141" width="0.0126%" height="15" fill="rgb(218,84,22)" fg:x="39761" fg:w="6"/><text x="83.7517%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.05%)</title><rect x="83.4660%" y="1205" width="0.0525%" height="15" fill="rgb(216,87,39)" fg:x="39744" fg:w="25"/><text x="83.7160%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="83.4660%" y="1189" width="0.0525%" height="15" fill="rgb(221,178,8)" fg:x="39744" fg:w="25"/><text x="83.7160%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (71 samples, 0.15%)</title><rect x="83.3778%" y="1317" width="0.1491%" height="15" fill="rgb(230,42,11)" fg:x="39702" fg:w="71"/><text x="83.6278%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (71 samples, 0.15%)</title><rect x="83.3778%" y="1301" width="0.1491%" height="15" fill="rgb(237,229,4)" fg:x="39702" fg:w="71"/><text x="83.6278%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (70 samples, 0.15%)</title><rect x="83.3799%" y="1285" width="0.1470%" height="15" fill="rgb(222,31,33)" fg:x="39703" fg:w="70"/><text x="83.6299%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (31 samples, 0.07%)</title><rect x="83.4618%" y="1269" width="0.0651%" height="15" fill="rgb(210,17,39)" fg:x="39742" fg:w="31"/><text x="83.7118%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31 samples, 0.07%)</title><rect x="83.4618%" y="1253" width="0.0651%" height="15" fill="rgb(244,93,20)" fg:x="39742" fg:w="31"/><text x="83.7118%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.07%)</title><rect x="83.4618%" y="1237" width="0.0651%" height="15" fill="rgb(210,40,47)" fg:x="39742" fg:w="31"/><text x="83.7118%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (29 samples, 0.06%)</title><rect x="83.4660%" y="1221" width="0.0609%" height="15" fill="rgb(239,211,47)" fg:x="39744" fg:w="29"/><text x="83.7160%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (435 samples, 0.91%)</title><rect x="82.6155%" y="1381" width="0.9135%" height="15" fill="rgb(251,223,49)" fg:x="39339" fg:w="435"/><text x="82.8655%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (431 samples, 0.91%)</title><rect x="82.6239%" y="1365" width="0.9051%" height="15" fill="rgb(221,149,5)" fg:x="39343" fg:w="431"/><text x="82.8739%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (370 samples, 0.78%)</title><rect x="82.7520%" y="1349" width="0.7770%" height="15" fill="rgb(219,224,51)" fg:x="39404" fg:w="370"/><text x="83.0020%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (72 samples, 0.15%)</title><rect x="83.3778%" y="1333" width="0.1512%" height="15" fill="rgb(223,7,8)" fg:x="39702" fg:w="72"/><text x="83.6278%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="83.5605%" y="1221" width="0.0105%" height="15" fill="rgb(241,217,22)" fg:x="39789" fg:w="5"/><text x="83.8105%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="83.5584%" y="1253" width="0.0273%" height="15" fill="rgb(248,209,0)" fg:x="39788" fg:w="13"/><text x="83.8084%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="83.5605%" y="1237" width="0.0252%" height="15" fill="rgb(217,205,4)" fg:x="39789" fg:w="12"/><text x="83.8105%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="83.5710%" y="1221" width="0.0147%" height="15" fill="rgb(228,124,39)" fg:x="39794" fg:w="7"/><text x="83.8210%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="83.5731%" y="1205" width="0.0126%" height="15" fill="rgb(250,116,42)" fg:x="39795" fg:w="6"/><text x="83.8231%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="83.5752%" y="1189" width="0.0105%" height="15" fill="rgb(223,202,9)" fg:x="39796" fg:w="5"/><text x="83.8252%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.06%)</title><rect x="83.5521%" y="1285" width="0.0567%" height="15" fill="rgb(242,222,40)" fg:x="39785" fg:w="27"/><text x="83.8021%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="83.5563%" y="1269" width="0.0525%" height="15" fill="rgb(229,99,46)" fg:x="39787" fg:w="25"/><text x="83.8063%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.02%)</title><rect x="83.5857%" y="1253" width="0.0231%" height="15" fill="rgb(225,56,46)" fg:x="39801" fg:w="11"/><text x="83.8357%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="83.5878%" y="1237" width="0.0210%" height="15" fill="rgb(227,94,5)" fg:x="39802" fg:w="10"/><text x="83.8378%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="83.5899%" y="1221" width="0.0189%" height="15" fill="rgb(205,112,38)" fg:x="39803" fg:w="9"/><text x="83.8399%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="83.6172%" y="1237" width="0.0189%" height="15" fill="rgb(231,133,46)" fg:x="39816" fg:w="9"/><text x="83.8672%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="83.6193%" y="1221" width="0.0168%" height="15" fill="rgb(217,16,9)" fg:x="39817" fg:w="8"/><text x="83.8693%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="83.6235%" y="1205" width="0.0126%" height="15" fill="rgb(249,173,9)" fg:x="39819" fg:w="6"/><text x="83.8735%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="83.6235%" y="1189" width="0.0126%" height="15" fill="rgb(205,163,53)" fg:x="39819" fg:w="6"/><text x="83.8735%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="83.6256%" y="1173" width="0.0105%" height="15" fill="rgb(217,54,41)" fg:x="39820" fg:w="5"/><text x="83.8756%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="83.6361%" y="1237" width="0.0105%" height="15" fill="rgb(228,216,12)" fg:x="39825" fg:w="5"/><text x="83.8861%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="83.6361%" y="1221" width="0.0105%" height="15" fill="rgb(244,228,15)" fg:x="39825" fg:w="5"/><text x="83.8861%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.06%)</title><rect x="83.6088%" y="1285" width="0.0567%" height="15" fill="rgb(221,176,53)" fg:x="39812" fg:w="27"/><text x="83.8588%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.05%)</title><rect x="83.6109%" y="1269" width="0.0546%" height="15" fill="rgb(205,94,34)" fg:x="39813" fg:w="26"/><text x="83.8609%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (23 samples, 0.05%)</title><rect x="83.6172%" y="1253" width="0.0483%" height="15" fill="rgb(213,110,48)" fg:x="39816" fg:w="23"/><text x="83.8672%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="83.6466%" y="1237" width="0.0189%" height="15" fill="rgb(236,142,28)" fg:x="39830" fg:w="9"/><text x="83.8966%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="83.6466%" y="1221" width="0.0189%" height="15" fill="rgb(225,135,29)" fg:x="39830" fg:w="9"/><text x="83.8966%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="83.6466%" y="1205" width="0.0189%" height="15" fill="rgb(252,45,31)" fg:x="39830" fg:w="9"/><text x="83.8966%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="83.6466%" y="1189" width="0.0189%" height="15" fill="rgb(211,187,50)" fg:x="39830" fg:w="9"/><text x="83.8966%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="83.6550%" y="1173" width="0.0105%" height="15" fill="rgb(229,109,7)" fg:x="39834" fg:w="5"/><text x="83.9050%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="83.6550%" y="1157" width="0.0105%" height="15" fill="rgb(251,131,51)" fg:x="39834" fg:w="5"/><text x="83.9050%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="83.6550%" y="1141" width="0.0105%" height="15" fill="rgb(251,180,35)" fg:x="39834" fg:w="5"/><text x="83.9050%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="83.6697%" y="1221" width="0.0294%" height="15" fill="rgb(211,46,32)" fg:x="39841" fg:w="14"/><text x="83.9197%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="83.6718%" y="1205" width="0.0273%" height="15" fill="rgb(248,123,17)" fg:x="39842" fg:w="13"/><text x="83.9218%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="83.6802%" y="1189" width="0.0189%" height="15" fill="rgb(227,141,18)" fg:x="39846" fg:w="9"/><text x="83.9302%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="83.6802%" y="1173" width="0.0189%" height="15" fill="rgb(216,102,9)" fg:x="39846" fg:w="9"/><text x="83.9302%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="83.6802%" y="1157" width="0.0189%" height="15" fill="rgb(253,47,13)" fg:x="39846" fg:w="9"/><text x="83.9302%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (88 samples, 0.18%)</title><rect x="83.5353%" y="1317" width="0.1848%" height="15" fill="rgb(226,93,23)" fg:x="39777" fg:w="88"/><text x="83.7853%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (81 samples, 0.17%)</title><rect x="83.5500%" y="1301" width="0.1701%" height="15" fill="rgb(247,104,17)" fg:x="39784" fg:w="81"/><text x="83.8000%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (26 samples, 0.05%)</title><rect x="83.6655%" y="1285" width="0.0546%" height="15" fill="rgb(233,203,26)" fg:x="39839" fg:w="26"/><text x="83.9155%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (26 samples, 0.05%)</title><rect x="83.6655%" y="1269" width="0.0546%" height="15" fill="rgb(244,98,49)" fg:x="39839" fg:w="26"/><text x="83.9155%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.05%)</title><rect x="83.6655%" y="1253" width="0.0546%" height="15" fill="rgb(235,134,22)" fg:x="39839" fg:w="26"/><text x="83.9155%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (24 samples, 0.05%)</title><rect x="83.6697%" y="1237" width="0.0504%" height="15" fill="rgb(221,70,32)" fg:x="39841" fg:w="24"/><text x="83.9197%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.02%)</title><rect x="83.6991%" y="1221" width="0.0210%" height="15" fill="rgb(238,15,50)" fg:x="39855" fg:w="10"/><text x="83.9491%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.02%)</title><rect x="83.6991%" y="1205" width="0.0210%" height="15" fill="rgb(215,221,48)" fg:x="39855" fg:w="10"/><text x="83.9491%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="83.6991%" y="1189" width="0.0210%" height="15" fill="rgb(236,73,3)" fg:x="39855" fg:w="10"/><text x="83.9491%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="83.7033%" y="1173" width="0.0168%" height="15" fill="rgb(250,107,11)" fg:x="39857" fg:w="8"/><text x="83.9533%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="83.7390%" y="1141" width="0.0168%" height="15" fill="rgb(242,39,14)" fg:x="39874" fg:w="8"/><text x="83.9890%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="83.7411%" y="1125" width="0.0147%" height="15" fill="rgb(248,164,37)" fg:x="39875" fg:w="7"/><text x="83.9911%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="83.7285%" y="1237" width="0.0294%" height="15" fill="rgb(217,60,12)" fg:x="39869" fg:w="14"/><text x="83.9785%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="83.7327%" y="1221" width="0.0252%" height="15" fill="rgb(240,125,29)" fg:x="39871" fg:w="12"/><text x="83.9827%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="83.7390%" y="1205" width="0.0189%" height="15" fill="rgb(208,207,28)" fg:x="39874" fg:w="9"/><text x="83.9890%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="83.7390%" y="1189" width="0.0189%" height="15" fill="rgb(209,159,27)" fg:x="39874" fg:w="9"/><text x="83.9890%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="83.7390%" y="1173" width="0.0189%" height="15" fill="rgb(251,176,53)" fg:x="39874" fg:w="9"/><text x="83.9890%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="83.7390%" y="1157" width="0.0189%" height="15" fill="rgb(211,85,7)" fg:x="39874" fg:w="9"/><text x="83.9890%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="83.7222%" y="1269" width="0.0378%" height="15" fill="rgb(216,64,54)" fg:x="39866" fg:w="18"/><text x="83.9722%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="83.7285%" y="1253" width="0.0315%" height="15" fill="rgb(217,54,24)" fg:x="39869" fg:w="15"/><text x="83.9785%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="83.7663%" y="1173" width="0.0126%" height="15" fill="rgb(208,206,53)" fg:x="39887" fg:w="6"/><text x="84.0163%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="83.7663%" y="1157" width="0.0126%" height="15" fill="rgb(251,74,39)" fg:x="39887" fg:w="6"/><text x="84.0163%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="83.7663%" y="1205" width="0.0252%" height="15" fill="rgb(226,47,5)" fg:x="39887" fg:w="12"/><text x="84.0163%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="83.7663%" y="1189" width="0.0252%" height="15" fill="rgb(234,111,33)" fg:x="39887" fg:w="12"/><text x="84.0163%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="83.7810%" y="1173" width="0.0105%" height="15" fill="rgb(251,14,10)" fg:x="39894" fg:w="5"/><text x="84.0310%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="83.7810%" y="1157" width="0.0105%" height="15" fill="rgb(232,43,0)" fg:x="39894" fg:w="5"/><text x="84.0310%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="83.7810%" y="1141" width="0.0105%" height="15" fill="rgb(222,68,43)" fg:x="39894" fg:w="5"/><text x="84.0310%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (35 samples, 0.07%)</title><rect x="83.7201%" y="1317" width="0.0735%" height="15" fill="rgb(217,24,23)" fg:x="39865" fg:w="35"/><text x="83.9701%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.07%)</title><rect x="83.7201%" y="1301" width="0.0735%" height="15" fill="rgb(229,209,14)" fg:x="39865" fg:w="35"/><text x="83.9701%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (34 samples, 0.07%)</title><rect x="83.7222%" y="1285" width="0.0714%" height="15" fill="rgb(250,149,48)" fg:x="39866" fg:w="34"/><text x="83.9722%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="83.7663%" y="1269" width="0.0273%" height="15" fill="rgb(210,120,37)" fg:x="39887" fg:w="13"/><text x="84.0163%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="83.7663%" y="1253" width="0.0273%" height="15" fill="rgb(210,21,8)" fg:x="39887" fg:w="13"/><text x="84.0163%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="83.7663%" y="1237" width="0.0273%" height="15" fill="rgb(243,145,7)" fg:x="39887" fg:w="13"/><text x="84.0163%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="83.7663%" y="1221" width="0.0273%" height="15" fill="rgb(238,178,32)" fg:x="39887" fg:w="13"/><text x="84.0163%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="83.7978%" y="1253" width="0.0378%" height="15" fill="rgb(222,4,10)" fg:x="39902" fg:w="18"/><text x="84.0478%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="83.8062%" y="1237" width="0.0294%" height="15" fill="rgb(239,7,37)" fg:x="39906" fg:w="14"/><text x="84.0562%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="83.8209%" y="1221" width="0.0147%" height="15" fill="rgb(215,31,37)" fg:x="39913" fg:w="7"/><text x="84.0709%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="83.8209%" y="1205" width="0.0147%" height="15" fill="rgb(224,83,33)" fg:x="39913" fg:w="7"/><text x="84.0709%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="83.8209%" y="1189" width="0.0147%" height="15" fill="rgb(239,55,3)" fg:x="39913" fg:w="7"/><text x="84.0709%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="83.8230%" y="1173" width="0.0126%" height="15" fill="rgb(247,92,11)" fg:x="39914" fg:w="6"/><text x="84.0730%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="83.8230%" y="1157" width="0.0126%" height="15" fill="rgb(239,200,7)" fg:x="39914" fg:w="6"/><text x="84.0730%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="83.8230%" y="1141" width="0.0126%" height="15" fill="rgb(227,115,8)" fg:x="39914" fg:w="6"/><text x="84.0730%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="83.8440%" y="1189" width="0.0105%" height="15" fill="rgb(215,189,27)" fg:x="39924" fg:w="5"/><text x="84.0940%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (1,110 samples, 2.33%)</title><rect x="81.5255%" y="1429" width="2.3311%" height="15" fill="rgb(251,216,39)" fg:x="38820" fg:w="1110"/><text x="81.7755%" y="1439.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (1,106 samples, 2.32%)</title><rect x="81.5339%" y="1413" width="2.3227%" height="15" fill="rgb(207,29,47)" fg:x="38824" fg:w="1106"/><text x="81.7839%" y="1423.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (1,064 samples, 2.23%)</title><rect x="81.6221%" y="1397" width="2.2345%" height="15" fill="rgb(210,71,34)" fg:x="38866" fg:w="1064"/><text x="81.8721%" y="1407.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (156 samples, 0.33%)</title><rect x="83.5290%" y="1381" width="0.3276%" height="15" fill="rgb(253,217,51)" fg:x="39774" fg:w="156"/><text x="83.7790%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (155 samples, 0.33%)</title><rect x="83.5311%" y="1365" width="0.3255%" height="15" fill="rgb(222,117,46)" fg:x="39775" fg:w="155"/><text x="83.7811%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (155 samples, 0.33%)</title><rect x="83.5311%" y="1349" width="0.3255%" height="15" fill="rgb(226,132,6)" fg:x="39775" fg:w="155"/><text x="83.7811%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (153 samples, 0.32%)</title><rect x="83.5353%" y="1333" width="0.3213%" height="15" fill="rgb(254,145,51)" fg:x="39777" fg:w="153"/><text x="83.7853%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (30 samples, 0.06%)</title><rect x="83.7936%" y="1317" width="0.0630%" height="15" fill="rgb(231,199,27)" fg:x="39900" fg:w="30"/><text x="84.0436%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (30 samples, 0.06%)</title><rect x="83.7936%" y="1301" width="0.0630%" height="15" fill="rgb(245,158,14)" fg:x="39900" fg:w="30"/><text x="84.0436%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.06%)</title><rect x="83.7957%" y="1285" width="0.0609%" height="15" fill="rgb(240,113,14)" fg:x="39901" fg:w="29"/><text x="84.0457%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (28 samples, 0.06%)</title><rect x="83.7978%" y="1269" width="0.0588%" height="15" fill="rgb(210,20,13)" fg:x="39902" fg:w="28"/><text x="84.0478%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="83.8440%" y="1253" width="0.0126%" height="15" fill="rgb(241,144,13)" fg:x="39924" fg:w="6"/><text x="84.0940%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="83.8440%" y="1237" width="0.0126%" height="15" fill="rgb(235,43,34)" fg:x="39924" fg:w="6"/><text x="84.0940%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="83.8440%" y="1221" width="0.0126%" height="15" fill="rgb(208,36,20)" fg:x="39924" fg:w="6"/><text x="84.0940%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="83.8440%" y="1205" width="0.0126%" height="15" fill="rgb(239,204,10)" fg:x="39924" fg:w="6"/><text x="84.0940%" y="1215.50"></text></g><g><title>libsystem_kernel.dylib`swtch_pri (5 samples, 0.01%)</title><rect x="83.8566%" y="1413" width="0.0105%" height="15" fill="rgb(217,84,43)" fg:x="39930" fg:w="5"/><text x="84.1066%" y="1423.50"></text></g><g><title>libsystem_m.dylib`exp (12 samples, 0.03%)</title><rect x="83.8776%" y="1381" width="0.0252%" height="15" fill="rgb(241,170,50)" fg:x="39940" fg:w="12"/><text x="84.1276%" y="1391.50"></text></g><g><title>libsystem_m.dylib`exp (11 samples, 0.02%)</title><rect x="83.9091%" y="1349" width="0.0231%" height="15" fill="rgb(226,205,29)" fg:x="39955" fg:w="11"/><text x="84.1591%" y="1359.50"></text></g><g><title>libsystem_m.dylib`exp (14 samples, 0.03%)</title><rect x="83.9448%" y="1317" width="0.0294%" height="15" fill="rgb(233,113,1)" fg:x="39972" fg:w="14"/><text x="84.1948%" y="1327.50"></text></g><g><title>libsystem_m.dylib`exp (10 samples, 0.02%)</title><rect x="83.9826%" y="1285" width="0.0210%" height="15" fill="rgb(253,98,13)" fg:x="39990" fg:w="10"/><text x="84.2326%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (9 samples, 0.02%)</title><rect x="84.0120%" y="1253" width="0.0189%" height="15" fill="rgb(211,115,12)" fg:x="40004" fg:w="9"/><text x="84.2620%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (11 samples, 0.02%)</title><rect x="84.0435%" y="1173" width="0.0231%" height="15" fill="rgb(208,12,16)" fg:x="40019" fg:w="11"/><text x="84.2935%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`oorandom::Rand64::rand_range (9 samples, 0.02%)</title><rect x="84.0477%" y="1157" width="0.0189%" height="15" fill="rgb(237,193,54)" fg:x="40021" fg:w="9"/><text x="84.2977%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (5 samples, 0.01%)</title><rect x="84.0666%" y="1173" width="0.0105%" height="15" fill="rgb(243,22,42)" fg:x="40030" fg:w="5"/><text x="84.3166%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (23 samples, 0.05%)</title><rect x="84.0393%" y="1189" width="0.0483%" height="15" fill="rgb(233,151,36)" fg:x="40017" fg:w="23"/><text x="84.2893%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.05%)</title><rect x="84.0372%" y="1205" width="0.0525%" height="15" fill="rgb(237,57,45)" fg:x="40016" fg:w="25"/><text x="84.2872%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.06%)</title><rect x="84.0330%" y="1237" width="0.0630%" height="15" fill="rgb(221,88,17)" fg:x="40014" fg:w="30"/><text x="84.2830%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (28 samples, 0.06%)</title><rect x="84.0372%" y="1221" width="0.0588%" height="15" fill="rgb(230,79,15)" fg:x="40016" fg:w="28"/><text x="84.2872%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="84.1002%" y="1189" width="0.0147%" height="15" fill="rgb(213,57,13)" fg:x="40046" fg:w="7"/><text x="84.3502%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (56 samples, 0.12%)</title><rect x="84.0078%" y="1269" width="0.1176%" height="15" fill="rgb(222,116,39)" fg:x="40002" fg:w="56"/><text x="84.2578%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (45 samples, 0.09%)</title><rect x="84.0309%" y="1253" width="0.0945%" height="15" fill="rgb(245,107,2)" fg:x="40013" fg:w="45"/><text x="84.2809%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.03%)</title><rect x="84.0960%" y="1237" width="0.0294%" height="15" fill="rgb(238,1,10)" fg:x="40044" fg:w="14"/><text x="84.3460%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="84.0960%" y="1221" width="0.0294%" height="15" fill="rgb(249,4,48)" fg:x="40044" fg:w="14"/><text x="84.3460%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="84.1002%" y="1205" width="0.0252%" height="15" fill="rgb(223,151,18)" fg:x="40046" fg:w="12"/><text x="84.3502%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="84.1149%" y="1189" width="0.0105%" height="15" fill="rgb(227,65,43)" fg:x="40053" fg:w="5"/><text x="84.3649%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.1149%" y="1173" width="0.0105%" height="15" fill="rgb(218,40,45)" fg:x="40053" fg:w="5"/><text x="84.3649%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.01%)</title><rect x="84.1149%" y="1157" width="0.0105%" height="15" fill="rgb(252,121,31)" fg:x="40053" fg:w="5"/><text x="84.3649%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (5 samples, 0.01%)</title><rect x="84.1275%" y="1253" width="0.0105%" height="15" fill="rgb(219,158,43)" fg:x="40059" fg:w="5"/><text x="84.3775%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="84.1485%" y="1221" width="0.0189%" height="15" fill="rgb(231,162,42)" fg:x="40069" fg:w="9"/><text x="84.3985%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="84.1485%" y="1205" width="0.0189%" height="15" fill="rgb(217,179,25)" fg:x="40069" fg:w="9"/><text x="84.3985%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="84.1548%" y="1189" width="0.0126%" height="15" fill="rgb(206,212,31)" fg:x="40072" fg:w="6"/><text x="84.4048%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.1548%" y="1173" width="0.0126%" height="15" fill="rgb(235,144,12)" fg:x="40072" fg:w="6"/><text x="84.4048%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="84.1674%" y="1221" width="0.0126%" height="15" fill="rgb(213,51,10)" fg:x="40078" fg:w="6"/><text x="84.4174%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.1674%" y="1205" width="0.0126%" height="15" fill="rgb(231,145,14)" fg:x="40078" fg:w="6"/><text x="84.4174%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (31 samples, 0.07%)</title><rect x="84.1254%" y="1269" width="0.0651%" height="15" fill="rgb(235,15,28)" fg:x="40058" fg:w="31"/><text x="84.3754%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.05%)</title><rect x="84.1380%" y="1253" width="0.0525%" height="15" fill="rgb(237,206,10)" fg:x="40064" fg:w="25"/><text x="84.3880%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (20 samples, 0.04%)</title><rect x="84.1485%" y="1237" width="0.0420%" height="15" fill="rgb(236,227,27)" fg:x="40069" fg:w="20"/><text x="84.3985%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="84.1800%" y="1221" width="0.0105%" height="15" fill="rgb(246,83,35)" fg:x="40084" fg:w="5"/><text x="84.4300%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="84.1800%" y="1205" width="0.0105%" height="15" fill="rgb(220,136,24)" fg:x="40084" fg:w="5"/><text x="84.4300%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.1800%" y="1189" width="0.0105%" height="15" fill="rgb(217,3,25)" fg:x="40084" fg:w="5"/><text x="84.4300%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.1800%" y="1173" width="0.0105%" height="15" fill="rgb(239,24,14)" fg:x="40084" fg:w="5"/><text x="84.4300%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (103 samples, 0.22%)</title><rect x="83.9784%" y="1301" width="0.2163%" height="15" fill="rgb(244,16,53)" fg:x="39988" fg:w="103"/><text x="84.2284%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (91 samples, 0.19%)</title><rect x="84.0036%" y="1285" width="0.1911%" height="15" fill="rgb(208,175,44)" fg:x="40000" fg:w="91"/><text x="84.2536%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="84.1989%" y="1269" width="0.0126%" height="15" fill="rgb(252,18,48)" fg:x="40093" fg:w="6"/><text x="84.4489%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="84.2178%" y="1237" width="0.0126%" height="15" fill="rgb(234,199,32)" fg:x="40102" fg:w="6"/><text x="84.4678%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="84.2346%" y="1221" width="0.0168%" height="15" fill="rgb(225,77,54)" fg:x="40110" fg:w="8"/><text x="84.4846%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.2409%" y="1205" width="0.0105%" height="15" fill="rgb(225,42,25)" fg:x="40113" fg:w="5"/><text x="84.4909%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.06%)</title><rect x="84.2115%" y="1253" width="0.0588%" height="15" fill="rgb(242,227,46)" fg:x="40099" fg:w="28"/><text x="84.4615%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="84.2304%" y="1237" width="0.0399%" height="15" fill="rgb(246,197,35)" fg:x="40108" fg:w="19"/><text x="84.4804%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="84.2514%" y="1221" width="0.0189%" height="15" fill="rgb(215,159,26)" fg:x="40118" fg:w="9"/><text x="84.5014%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="84.2514%" y="1205" width="0.0189%" height="15" fill="rgb(212,194,50)" fg:x="40118" fg:w="9"/><text x="84.5014%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="84.2577%" y="1189" width="0.0126%" height="15" fill="rgb(246,132,1)" fg:x="40121" fg:w="6"/><text x="84.5077%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (54 samples, 0.11%)</title><rect x="84.1947%" y="1301" width="0.1134%" height="15" fill="rgb(217,71,7)" fg:x="40091" fg:w="54"/><text x="84.4447%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.11%)</title><rect x="84.1989%" y="1285" width="0.1092%" height="15" fill="rgb(252,59,32)" fg:x="40093" fg:w="52"/><text x="84.4489%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (46 samples, 0.10%)</title><rect x="84.2115%" y="1269" width="0.0966%" height="15" fill="rgb(253,204,25)" fg:x="40099" fg:w="46"/><text x="84.4615%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.04%)</title><rect x="84.2703%" y="1253" width="0.0378%" height="15" fill="rgb(232,21,16)" fg:x="40127" fg:w="18"/><text x="84.5203%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="84.2703%" y="1237" width="0.0378%" height="15" fill="rgb(248,90,29)" fg:x="40127" fg:w="18"/><text x="84.5203%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="84.2808%" y="1221" width="0.0273%" height="15" fill="rgb(249,223,7)" fg:x="40132" fg:w="13"/><text x="84.5308%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="84.2892%" y="1205" width="0.0189%" height="15" fill="rgb(231,119,42)" fg:x="40136" fg:w="9"/><text x="84.5392%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="84.2913%" y="1189" width="0.0168%" height="15" fill="rgb(215,41,35)" fg:x="40137" fg:w="8"/><text x="84.5413%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="84.2955%" y="1173" width="0.0126%" height="15" fill="rgb(220,44,45)" fg:x="40139" fg:w="6"/><text x="84.5455%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.3102%" y="1205" width="0.0126%" height="15" fill="rgb(253,197,36)" fg:x="40146" fg:w="6"/><text x="84.5602%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="84.3102%" y="1189" width="0.0126%" height="15" fill="rgb(245,225,54)" fg:x="40146" fg:w="6"/><text x="84.5602%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="84.3102%" y="1237" width="0.0210%" height="15" fill="rgb(239,94,37)" fg:x="40146" fg:w="10"/><text x="84.5602%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="84.3102%" y="1221" width="0.0210%" height="15" fill="rgb(242,217,10)" fg:x="40146" fg:w="10"/><text x="84.5602%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="1173" width="0.0105%" height="15" fill="rgb(250,193,7)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="1157" width="0.0105%" height="15" fill="rgb(230,104,19)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="1141" width="0.0105%" height="15" fill="rgb(230,181,4)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="1125" width="0.0105%" height="15" fill="rgb(216,219,49)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="1109" width="0.0105%" height="15" fill="rgb(254,144,0)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="1093" width="0.0105%" height="15" fill="rgb(205,209,38)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="84.3333%" y="1077" width="0.0105%" height="15" fill="rgb(240,21,42)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="84.3333%" y="1061" width="0.0105%" height="15" fill="rgb(241,132,3)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="1045" width="0.0105%" height="15" fill="rgb(225,14,2)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="1029" width="0.0105%" height="15" fill="rgb(210,141,35)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="84.3333%" y="1013" width="0.0105%" height="15" fill="rgb(251,14,44)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="84.3333%" y="997" width="0.0105%" height="15" fill="rgb(247,48,18)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="981" width="0.0105%" height="15" fill="rgb(225,0,40)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="965" width="0.0105%" height="15" fill="rgb(221,31,33)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="949" width="0.0105%" height="15" fill="rgb(237,42,40)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="933" width="0.0105%" height="15" fill="rgb(233,51,29)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="917" width="0.0105%" height="15" fill="rgb(226,58,20)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="901" width="0.0105%" height="15" fill="rgb(208,98,7)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="84.3333%" y="885" width="0.0105%" height="15" fill="rgb(228,143,44)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="84.3333%" y="869" width="0.0105%" height="15" fill="rgb(246,55,38)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="853" width="0.0105%" height="15" fill="rgb(247,87,16)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="837" width="0.0105%" height="15" fill="rgb(234,129,42)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="821" width="0.0105%" height="15" fill="rgb(220,82,16)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="805" width="0.0105%" height="15" fill="rgb(211,88,4)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="815.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="84.3333%" y="789" width="0.0105%" height="15" fill="rgb(248,151,21)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="799.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="84.3333%" y="773" width="0.0105%" height="15" fill="rgb(238,163,6)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="783.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="757" width="0.0105%" height="15" fill="rgb(209,183,11)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="767.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="741" width="0.0105%" height="15" fill="rgb(219,37,20)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="751.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="84.3333%" y="725" width="0.0105%" height="15" fill="rgb(210,158,4)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="735.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="84.3333%" y="709" width="0.0105%" height="15" fill="rgb(221,167,53)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="719.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.3333%" y="693" width="0.0105%" height="15" fill="rgb(237,151,45)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="703.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.3333%" y="677" width="0.0105%" height="15" fill="rgb(231,39,3)" fg:x="40157" fg:w="5"/><text x="84.5833%" y="687.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (194 samples, 0.41%)</title><rect x="83.9406%" y="1333" width="0.4074%" height="15" fill="rgb(212,167,28)" fg:x="39970" fg:w="194"/><text x="84.1906%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (178 samples, 0.37%)</title><rect x="83.9742%" y="1317" width="0.3738%" height="15" fill="rgb(232,178,8)" fg:x="39986" fg:w="178"/><text x="84.2242%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (19 samples, 0.04%)</title><rect x="84.3081%" y="1301" width="0.0399%" height="15" fill="rgb(225,151,20)" fg:x="40145" fg:w="19"/><text x="84.5581%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (19 samples, 0.04%)</title><rect x="84.3081%" y="1285" width="0.0399%" height="15" fill="rgb(238,3,37)" fg:x="40145" fg:w="19"/><text x="84.5581%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="84.3081%" y="1269" width="0.0399%" height="15" fill="rgb(251,147,42)" fg:x="40145" fg:w="19"/><text x="84.5581%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="84.3102%" y="1253" width="0.0378%" height="15" fill="rgb(208,173,10)" fg:x="40146" fg:w="18"/><text x="84.5602%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="84.3312%" y="1237" width="0.0168%" height="15" fill="rgb(246,225,4)" fg:x="40156" fg:w="8"/><text x="84.5812%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.02%)</title><rect x="84.3312%" y="1221" width="0.0168%" height="15" fill="rgb(248,102,6)" fg:x="40156" fg:w="8"/><text x="84.5812%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="84.3312%" y="1205" width="0.0168%" height="15" fill="rgb(232,6,21)" fg:x="40156" fg:w="8"/><text x="84.5812%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="84.3333%" y="1189" width="0.0147%" height="15" fill="rgb(221,179,22)" fg:x="40157" fg:w="7"/><text x="84.5833%" y="1199.50"></text></g><g><title>libsystem_m.dylib`exp (10 samples, 0.02%)</title><rect x="84.3501%" y="1301" width="0.0210%" height="15" fill="rgb(252,50,20)" fg:x="40165" fg:w="10"/><text x="84.6001%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="84.3984%" y="1237" width="0.0105%" height="15" fill="rgb(222,56,38)" fg:x="40188" fg:w="5"/><text x="84.6484%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="84.4131%" y="1221" width="0.0168%" height="15" fill="rgb(206,193,29)" fg:x="40195" fg:w="8"/><text x="84.6631%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.4194%" y="1205" width="0.0105%" height="15" fill="rgb(239,192,45)" fg:x="40198" fg:w="5"/><text x="84.6694%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="84.4299%" y="1221" width="0.0147%" height="15" fill="rgb(254,18,36)" fg:x="40203" fg:w="7"/><text x="84.6799%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.4320%" y="1205" width="0.0126%" height="15" fill="rgb(221,127,11)" fg:x="40204" fg:w="6"/><text x="84.6820%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.05%)</title><rect x="84.3942%" y="1253" width="0.0525%" height="15" fill="rgb(234,146,35)" fg:x="40186" fg:w="25"/><text x="84.6442%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (17 samples, 0.04%)</title><rect x="84.4110%" y="1237" width="0.0357%" height="15" fill="rgb(254,201,37)" fg:x="40194" fg:w="17"/><text x="84.6610%" y="1247.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="84.4509%" y="1221" width="0.0126%" height="15" fill="rgb(211,202,23)" fg:x="40213" fg:w="6"/><text x="84.7009%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="84.4467%" y="1253" width="0.0315%" height="15" fill="rgb(237,91,2)" fg:x="40211" fg:w="15"/><text x="84.6967%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="84.4488%" y="1237" width="0.0294%" height="15" fill="rgb(226,228,36)" fg:x="40212" fg:w="14"/><text x="84.6988%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="84.4635%" y="1221" width="0.0147%" height="15" fill="rgb(213,63,50)" fg:x="40219" fg:w="7"/><text x="84.7135%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="84.4656%" y="1205" width="0.0126%" height="15" fill="rgb(235,194,19)" fg:x="40220" fg:w="6"/><text x="84.7156%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.4656%" y="1189" width="0.0126%" height="15" fill="rgb(207,204,18)" fg:x="40220" fg:w="6"/><text x="84.7156%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.4677%" y="1173" width="0.0105%" height="15" fill="rgb(248,8,7)" fg:x="40221" fg:w="5"/><text x="84.7177%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.11%)</title><rect x="84.3753%" y="1285" width="0.1092%" height="15" fill="rgb(223,145,47)" fg:x="40177" fg:w="52"/><text x="84.6253%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (47 samples, 0.10%)</title><rect x="84.3858%" y="1269" width="0.0987%" height="15" fill="rgb(228,84,11)" fg:x="40182" fg:w="47"/><text x="84.6358%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.5160%" y="1205" width="0.0105%" height="15" fill="rgb(218,76,45)" fg:x="40244" fg:w="5"/><text x="84.7660%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.05%)</title><rect x="84.5013%" y="1237" width="0.0504%" height="15" fill="rgb(223,80,15)" fg:x="40237" fg:w="24"/><text x="84.7513%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="84.5118%" y="1221" width="0.0399%" height="15" fill="rgb(219,218,33)" fg:x="40242" fg:w="19"/><text x="84.7618%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="84.5328%" y="1205" width="0.0189%" height="15" fill="rgb(208,51,11)" fg:x="40252" fg:w="9"/><text x="84.7828%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="84.5328%" y="1189" width="0.0189%" height="15" fill="rgb(229,165,39)" fg:x="40252" fg:w="9"/><text x="84.7828%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="84.5328%" y="1173" width="0.0189%" height="15" fill="rgb(241,100,24)" fg:x="40252" fg:w="9"/><text x="84.7828%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="84.5328%" y="1157" width="0.0189%" height="15" fill="rgb(228,14,23)" fg:x="40252" fg:w="9"/><text x="84.7828%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="84.5391%" y="1141" width="0.0126%" height="15" fill="rgb(247,116,52)" fg:x="40255" fg:w="6"/><text x="84.7891%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.5391%" y="1125" width="0.0126%" height="15" fill="rgb(216,149,33)" fg:x="40255" fg:w="6"/><text x="84.7891%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="84.5391%" y="1109" width="0.0126%" height="15" fill="rgb(238,142,29)" fg:x="40255" fg:w="6"/><text x="84.7891%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="84.5517%" y="1237" width="0.0105%" height="15" fill="rgb(224,83,40)" fg:x="40261" fg:w="5"/><text x="84.8017%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (49 samples, 0.10%)</title><rect x="84.4845%" y="1285" width="0.1029%" height="15" fill="rgb(234,165,11)" fg:x="40229" fg:w="49"/><text x="84.7345%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (47 samples, 0.10%)</title><rect x="84.4887%" y="1269" width="0.0987%" height="15" fill="rgb(215,96,23)" fg:x="40231" fg:w="47"/><text x="84.7387%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (41 samples, 0.09%)</title><rect x="84.5013%" y="1253" width="0.0861%" height="15" fill="rgb(233,179,26)" fg:x="40237" fg:w="41"/><text x="84.7513%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.03%)</title><rect x="84.5622%" y="1237" width="0.0252%" height="15" fill="rgb(225,129,33)" fg:x="40266" fg:w="12"/><text x="84.8122%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.02%)</title><rect x="84.5643%" y="1221" width="0.0231%" height="15" fill="rgb(237,49,13)" fg:x="40267" fg:w="11"/><text x="84.8143%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="84.5643%" y="1205" width="0.0231%" height="15" fill="rgb(211,3,31)" fg:x="40267" fg:w="11"/><text x="84.8143%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="84.5643%" y="1189" width="0.0231%" height="15" fill="rgb(216,152,19)" fg:x="40267" fg:w="11"/><text x="84.8143%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="84.5748%" y="1173" width="0.0126%" height="15" fill="rgb(251,121,35)" fg:x="40272" fg:w="6"/><text x="84.8248%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="84.5748%" y="1157" width="0.0126%" height="15" fill="rgb(210,217,47)" fg:x="40272" fg:w="6"/><text x="84.8248%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.5748%" y="1141" width="0.0126%" height="15" fill="rgb(244,116,22)" fg:x="40272" fg:w="6"/><text x="84.8248%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="84.5748%" y="1125" width="0.0126%" height="15" fill="rgb(228,17,21)" fg:x="40272" fg:w="6"/><text x="84.8248%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.6000%" y="1157" width="0.0105%" height="15" fill="rgb(240,149,34)" fg:x="40284" fg:w="5"/><text x="84.8500%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.6000%" y="1141" width="0.0105%" height="15" fill="rgb(208,125,47)" fg:x="40284" fg:w="5"/><text x="84.8500%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (129 samples, 0.27%)</title><rect x="84.3480%" y="1333" width="0.2709%" height="15" fill="rgb(249,186,39)" fg:x="40164" fg:w="129"/><text x="84.5980%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (128 samples, 0.27%)</title><rect x="84.3501%" y="1317" width="0.2688%" height="15" fill="rgb(240,220,33)" fg:x="40165" fg:w="128"/><text x="84.6001%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (117 samples, 0.25%)</title><rect x="84.3732%" y="1301" width="0.2457%" height="15" fill="rgb(243,110,23)" fg:x="40176" fg:w="117"/><text x="84.6232%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.03%)</title><rect x="84.5874%" y="1285" width="0.0315%" height="15" fill="rgb(219,163,46)" fg:x="40278" fg:w="15"/><text x="84.8374%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.03%)</title><rect x="84.5874%" y="1269" width="0.0315%" height="15" fill="rgb(216,126,30)" fg:x="40278" fg:w="15"/><text x="84.8374%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="84.5874%" y="1253" width="0.0315%" height="15" fill="rgb(208,139,11)" fg:x="40278" fg:w="15"/><text x="84.8374%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="84.5895%" y="1237" width="0.0294%" height="15" fill="rgb(213,118,36)" fg:x="40279" fg:w="14"/><text x="84.8395%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="84.6000%" y="1221" width="0.0189%" height="15" fill="rgb(226,43,17)" fg:x="40284" fg:w="9"/><text x="84.8500%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="84.6000%" y="1205" width="0.0189%" height="15" fill="rgb(254,217,4)" fg:x="40284" fg:w="9"/><text x="84.8500%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="84.6000%" y="1189" width="0.0189%" height="15" fill="rgb(210,134,47)" fg:x="40284" fg:w="9"/><text x="84.8500%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="84.6000%" y="1173" width="0.0189%" height="15" fill="rgb(237,24,49)" fg:x="40284" fg:w="9"/><text x="84.8500%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.6315%" y="1205" width="0.0105%" height="15" fill="rgb(251,39,46)" fg:x="40299" fg:w="5"/><text x="84.8815%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="84.6294%" y="1237" width="0.0231%" height="15" fill="rgb(251,220,3)" fg:x="40298" fg:w="11"/><text x="84.8794%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="84.6315%" y="1221" width="0.0210%" height="15" fill="rgb(228,105,12)" fg:x="40299" fg:w="10"/><text x="84.8815%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="84.6252%" y="1269" width="0.0378%" height="15" fill="rgb(215,196,1)" fg:x="40296" fg:w="18"/><text x="84.8752%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (16 samples, 0.03%)</title><rect x="84.6294%" y="1253" width="0.0336%" height="15" fill="rgb(214,33,39)" fg:x="40298" fg:w="16"/><text x="84.8794%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="84.6735%" y="1173" width="0.0168%" height="15" fill="rgb(220,19,52)" fg:x="40319" fg:w="8"/><text x="84.9235%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="84.6735%" y="1157" width="0.0168%" height="15" fill="rgb(221,78,38)" fg:x="40319" fg:w="8"/><text x="84.9235%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="84.6798%" y="1141" width="0.0105%" height="15" fill="rgb(253,30,16)" fg:x="40322" fg:w="5"/><text x="84.9298%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.6798%" y="1125" width="0.0105%" height="15" fill="rgb(242,65,0)" fg:x="40322" fg:w="5"/><text x="84.9298%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="84.6693%" y="1205" width="0.0315%" height="15" fill="rgb(235,201,12)" fg:x="40317" fg:w="15"/><text x="84.9193%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="84.6735%" y="1189" width="0.0273%" height="15" fill="rgb(233,161,9)" fg:x="40319" fg:w="13"/><text x="84.9235%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (385 samples, 0.81%)</title><rect x="83.9049%" y="1365" width="0.8085%" height="15" fill="rgb(241,207,41)" fg:x="39953" fg:w="385"/><text x="84.1549%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (369 samples, 0.77%)</title><rect x="83.9385%" y="1349" width="0.7749%" height="15" fill="rgb(212,69,46)" fg:x="39969" fg:w="369"/><text x="84.1885%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (45 samples, 0.09%)</title><rect x="84.6189%" y="1333" width="0.0945%" height="15" fill="rgb(239,69,45)" fg:x="40293" fg:w="45"/><text x="84.8689%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (44 samples, 0.09%)</title><rect x="84.6210%" y="1317" width="0.0924%" height="15" fill="rgb(242,117,48)" fg:x="40294" fg:w="44"/><text x="84.8710%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (44 samples, 0.09%)</title><rect x="84.6210%" y="1301" width="0.0924%" height="15" fill="rgb(228,41,36)" fg:x="40294" fg:w="44"/><text x="84.8710%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (42 samples, 0.09%)</title><rect x="84.6252%" y="1285" width="0.0882%" height="15" fill="rgb(212,3,32)" fg:x="40296" fg:w="42"/><text x="84.8752%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.05%)</title><rect x="84.6672%" y="1269" width="0.0462%" height="15" fill="rgb(233,41,49)" fg:x="40316" fg:w="22"/><text x="84.9172%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (21 samples, 0.04%)</title><rect x="84.6693%" y="1253" width="0.0441%" height="15" fill="rgb(252,170,49)" fg:x="40317" fg:w="21"/><text x="84.9193%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="84.6693%" y="1237" width="0.0441%" height="15" fill="rgb(229,53,26)" fg:x="40317" fg:w="21"/><text x="84.9193%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (21 samples, 0.04%)</title><rect x="84.6693%" y="1221" width="0.0441%" height="15" fill="rgb(217,157,12)" fg:x="40317" fg:w="21"/><text x="84.9193%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="84.7008%" y="1205" width="0.0126%" height="15" fill="rgb(227,17,9)" fg:x="40332" fg:w="6"/><text x="84.9508%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="84.7008%" y="1189" width="0.0126%" height="15" fill="rgb(218,84,12)" fg:x="40332" fg:w="6"/><text x="84.9508%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.7029%" y="1173" width="0.0105%" height="15" fill="rgb(212,79,24)" fg:x="40333" fg:w="5"/><text x="84.9529%" y="1183.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="84.7407%" y="1269" width="0.0105%" height="15" fill="rgb(217,222,37)" fg:x="40351" fg:w="5"/><text x="84.9907%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.7533%" y="1253" width="0.0126%" height="15" fill="rgb(246,208,8)" fg:x="40357" fg:w="6"/><text x="85.0033%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="84.7407%" y="1285" width="0.0378%" height="15" fill="rgb(244,133,10)" fg:x="40351" fg:w="18"/><text x="84.9907%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="84.7512%" y="1269" width="0.0273%" height="15" fill="rgb(209,219,41)" fg:x="40356" fg:w="13"/><text x="85.0012%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="84.7659%" y="1253" width="0.0126%" height="15" fill="rgb(253,175,45)" fg:x="40363" fg:w="6"/><text x="85.0159%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="84.7995%" y="1189" width="0.0105%" height="15" fill="rgb(235,100,37)" fg:x="40379" fg:w="5"/><text x="85.0495%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.7995%" y="1173" width="0.0105%" height="15" fill="rgb(225,87,19)" fg:x="40379" fg:w="5"/><text x="85.0495%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (47 samples, 0.10%)</title><rect x="84.7239%" y="1317" width="0.0987%" height="15" fill="rgb(217,152,17)" fg:x="40343" fg:w="47"/><text x="84.9739%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (41 samples, 0.09%)</title><rect x="84.7365%" y="1301" width="0.0861%" height="15" fill="rgb(235,72,13)" fg:x="40349" fg:w="41"/><text x="84.9865%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.04%)</title><rect x="84.7785%" y="1285" width="0.0441%" height="15" fill="rgb(233,140,18)" fg:x="40369" fg:w="21"/><text x="85.0285%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="84.7785%" y="1269" width="0.0441%" height="15" fill="rgb(207,212,28)" fg:x="40369" fg:w="21"/><text x="85.0285%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="84.7848%" y="1253" width="0.0378%" height="15" fill="rgb(220,130,25)" fg:x="40372" fg:w="18"/><text x="85.0348%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="84.7911%" y="1237" width="0.0315%" height="15" fill="rgb(205,55,34)" fg:x="40375" fg:w="15"/><text x="85.0411%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="84.7932%" y="1221" width="0.0294%" height="15" fill="rgb(237,54,35)" fg:x="40376" fg:w="14"/><text x="85.0432%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="84.7995%" y="1205" width="0.0231%" height="15" fill="rgb(208,67,23)" fg:x="40379" fg:w="11"/><text x="85.0495%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="84.8100%" y="1189" width="0.0126%" height="15" fill="rgb(206,207,50)" fg:x="40384" fg:w="6"/><text x="85.0600%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="84.8100%" y="1173" width="0.0126%" height="15" fill="rgb(213,211,42)" fg:x="40384" fg:w="6"/><text x="85.0600%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.8100%" y="1157" width="0.0126%" height="15" fill="rgb(252,197,50)" fg:x="40384" fg:w="6"/><text x="85.0600%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="84.8100%" y="1141" width="0.0126%" height="15" fill="rgb(251,211,41)" fg:x="40384" fg:w="6"/><text x="85.0600%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="84.8121%" y="1125" width="0.0105%" height="15" fill="rgb(229,211,5)" fg:x="40385" fg:w="5"/><text x="85.0621%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="84.8121%" y="1109" width="0.0105%" height="15" fill="rgb(239,36,31)" fg:x="40385" fg:w="5"/><text x="85.0621%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.8121%" y="1093" width="0.0105%" height="15" fill="rgb(248,67,31)" fg:x="40385" fg:w="5"/><text x="85.0621%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="84.8310%" y="1269" width="0.0231%" height="15" fill="rgb(249,55,44)" fg:x="40394" fg:w="11"/><text x="85.0810%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="84.8373%" y="1253" width="0.0168%" height="15" fill="rgb(216,82,12)" fg:x="40397" fg:w="8"/><text x="85.0873%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="84.8583%" y="1237" width="0.0105%" height="15" fill="rgb(242,174,1)" fg:x="40407" fg:w="5"/><text x="85.1083%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (28 samples, 0.06%)</title><rect x="84.8226%" y="1317" width="0.0588%" height="15" fill="rgb(208,120,29)" fg:x="40390" fg:w="28"/><text x="85.0726%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.06%)</title><rect x="84.8247%" y="1301" width="0.0567%" height="15" fill="rgb(221,105,43)" fg:x="40391" fg:w="27"/><text x="85.0747%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (24 samples, 0.05%)</title><rect x="84.8310%" y="1285" width="0.0504%" height="15" fill="rgb(234,124,22)" fg:x="40394" fg:w="24"/><text x="85.0810%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.03%)</title><rect x="84.8541%" y="1269" width="0.0273%" height="15" fill="rgb(212,23,30)" fg:x="40405" fg:w="13"/><text x="85.1041%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="84.8541%" y="1253" width="0.0273%" height="15" fill="rgb(219,122,53)" fg:x="40405" fg:w="13"/><text x="85.1041%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="84.8688%" y="1237" width="0.0126%" height="15" fill="rgb(248,84,24)" fg:x="40412" fg:w="6"/><text x="85.1188%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="84.8857%" y="1189" width="0.0252%" height="15" fill="rgb(245,115,18)" fg:x="40420" fg:w="12"/><text x="85.1357%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="84.8878%" y="1173" width="0.0231%" height="15" fill="rgb(227,176,51)" fg:x="40421" fg:w="11"/><text x="85.1378%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="84.8962%" y="1157" width="0.0147%" height="15" fill="rgb(229,63,42)" fg:x="40425" fg:w="7"/><text x="85.1462%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="84.8962%" y="1141" width="0.0147%" height="15" fill="rgb(247,202,24)" fg:x="40425" fg:w="7"/><text x="85.1462%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="84.8962%" y="1125" width="0.0147%" height="15" fill="rgb(244,173,20)" fg:x="40425" fg:w="7"/><text x="85.1462%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.9109%" y="1141" width="0.0105%" height="15" fill="rgb(242,81,47)" fg:x="40432" fg:w="5"/><text x="85.1609%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.9109%" y="1125" width="0.0105%" height="15" fill="rgb(231,185,54)" fg:x="40432" fg:w="5"/><text x="85.1609%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="84.9214%" y="1141" width="0.0105%" height="15" fill="rgb(243,55,32)" fg:x="40437" fg:w="5"/><text x="85.1714%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.9214%" y="1125" width="0.0105%" height="15" fill="rgb(208,167,19)" fg:x="40437" fg:w="5"/><text x="85.1714%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.9214%" y="1109" width="0.0105%" height="15" fill="rgb(231,72,35)" fg:x="40437" fg:w="5"/><text x="85.1714%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.05%)</title><rect x="84.8835%" y="1221" width="0.0525%" height="15" fill="rgb(250,173,51)" fg:x="40419" fg:w="25"/><text x="85.1335%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="84.8835%" y="1205" width="0.0525%" height="15" fill="rgb(209,5,22)" fg:x="40419" fg:w="25"/><text x="85.1335%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.03%)</title><rect x="84.9109%" y="1189" width="0.0252%" height="15" fill="rgb(250,174,19)" fg:x="40432" fg:w="12"/><text x="85.1609%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="84.9109%" y="1173" width="0.0252%" height="15" fill="rgb(217,3,49)" fg:x="40432" fg:w="12"/><text x="85.1609%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="84.9109%" y="1157" width="0.0252%" height="15" fill="rgb(218,225,5)" fg:x="40432" fg:w="12"/><text x="85.1609%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.04%)</title><rect x="84.9361%" y="1221" width="0.0357%" height="15" fill="rgb(236,89,11)" fg:x="40444" fg:w="17"/><text x="85.1861%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.04%)</title><rect x="84.9361%" y="1205" width="0.0357%" height="15" fill="rgb(206,33,28)" fg:x="40444" fg:w="17"/><text x="85.1861%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (16 samples, 0.03%)</title><rect x="84.9382%" y="1189" width="0.0336%" height="15" fill="rgb(241,56,42)" fg:x="40445" fg:w="16"/><text x="85.1882%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.03%)</title><rect x="84.9466%" y="1173" width="0.0252%" height="15" fill="rgb(222,44,11)" fg:x="40449" fg:w="12"/><text x="85.1966%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.03%)</title><rect x="84.9466%" y="1157" width="0.0252%" height="15" fill="rgb(234,111,20)" fg:x="40449" fg:w="12"/><text x="85.1966%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="84.9466%" y="1141" width="0.0252%" height="15" fill="rgb(237,77,6)" fg:x="40449" fg:w="12"/><text x="85.1966%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="84.9508%" y="1125" width="0.0210%" height="15" fill="rgb(235,111,23)" fg:x="40451" fg:w="10"/><text x="85.2008%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="84.9592%" y="1109" width="0.0126%" height="15" fill="rgb(251,135,29)" fg:x="40455" fg:w="6"/><text x="85.2092%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="84.9592%" y="1093" width="0.0126%" height="15" fill="rgb(217,57,1)" fg:x="40455" fg:w="6"/><text x="85.2092%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.9592%" y="1077" width="0.0126%" height="15" fill="rgb(249,119,31)" fg:x="40455" fg:w="6"/><text x="85.2092%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="84.9592%" y="1061" width="0.0126%" height="15" fill="rgb(233,164,33)" fg:x="40455" fg:w="6"/><text x="85.2092%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="84.9592%" y="1045" width="0.0126%" height="15" fill="rgb(250,217,43)" fg:x="40455" fg:w="6"/><text x="85.2092%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="84.9592%" y="1029" width="0.0126%" height="15" fill="rgb(232,154,50)" fg:x="40455" fg:w="6"/><text x="85.2092%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="84.9592%" y="1013" width="0.0126%" height="15" fill="rgb(227,190,8)" fg:x="40455" fg:w="6"/><text x="85.2092%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="84.9592%" y="997" width="0.0126%" height="15" fill="rgb(209,217,32)" fg:x="40455" fg:w="6"/><text x="85.2092%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (44 samples, 0.09%)</title><rect x="84.8835%" y="1253" width="0.0924%" height="15" fill="rgb(243,203,50)" fg:x="40419" fg:w="44"/><text x="85.1335%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (44 samples, 0.09%)</title><rect x="84.8835%" y="1237" width="0.0924%" height="15" fill="rgb(232,152,27)" fg:x="40419" fg:w="44"/><text x="85.1335%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="84.9760%" y="1253" width="0.0105%" height="15" fill="rgb(240,34,29)" fg:x="40463" fg:w="5"/><text x="85.2260%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.9760%" y="1237" width="0.0105%" height="15" fill="rgb(215,185,52)" fg:x="40463" fg:w="5"/><text x="85.2260%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (136 samples, 0.29%)</title><rect x="84.7134%" y="1365" width="0.2856%" height="15" fill="rgb(240,89,49)" fg:x="40338" fg:w="136"/><text x="84.9634%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (136 samples, 0.29%)</title><rect x="84.7134%" y="1349" width="0.2856%" height="15" fill="rgb(225,12,52)" fg:x="40338" fg:w="136"/><text x="84.9634%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (132 samples, 0.28%)</title><rect x="84.7218%" y="1333" width="0.2772%" height="15" fill="rgb(239,128,45)" fg:x="40342" fg:w="132"/><text x="84.9718%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (56 samples, 0.12%)</title><rect x="84.8814%" y="1317" width="0.1176%" height="15" fill="rgb(211,78,47)" fg:x="40418" fg:w="56"/><text x="85.1314%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (56 samples, 0.12%)</title><rect x="84.8814%" y="1301" width="0.1176%" height="15" fill="rgb(232,31,21)" fg:x="40418" fg:w="56"/><text x="85.1314%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (56 samples, 0.12%)</title><rect x="84.8814%" y="1285" width="0.1176%" height="15" fill="rgb(222,168,14)" fg:x="40418" fg:w="56"/><text x="85.1314%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (55 samples, 0.12%)</title><rect x="84.8835%" y="1269" width="0.1155%" height="15" fill="rgb(209,128,24)" fg:x="40419" fg:w="55"/><text x="85.1335%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="84.9865%" y="1253" width="0.0126%" height="15" fill="rgb(249,35,13)" fg:x="40468" fg:w="6"/><text x="85.2365%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="84.9886%" y="1237" width="0.0105%" height="15" fill="rgb(218,7,2)" fg:x="40469" fg:w="5"/><text x="85.2386%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.9886%" y="1221" width="0.0105%" height="15" fill="rgb(238,107,27)" fg:x="40469" fg:w="5"/><text x="85.2386%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.9886%" y="1205" width="0.0105%" height="15" fill="rgb(217,88,38)" fg:x="40469" fg:w="5"/><text x="85.2386%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="84.9886%" y="1189" width="0.0105%" height="15" fill="rgb(230,207,0)" fg:x="40469" fg:w="5"/><text x="85.2386%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="84.9886%" y="1173" width="0.0105%" height="15" fill="rgb(249,64,54)" fg:x="40469" fg:w="5"/><text x="85.2386%" y="1183.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="85.0096%" y="1317" width="0.0126%" height="15" fill="rgb(231,7,11)" fg:x="40479" fg:w="6"/><text x="85.2596%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="85.0579%" y="1141" width="0.0147%" height="15" fill="rgb(205,149,21)" fg:x="40502" fg:w="7"/><text x="85.3079%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.01%)</title><rect x="85.0579%" y="1125" width="0.0147%" height="15" fill="rgb(215,126,34)" fg:x="40502" fg:w="7"/><text x="85.3079%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="85.0558%" y="1173" width="0.0189%" height="15" fill="rgb(241,132,45)" fg:x="40501" fg:w="9"/><text x="85.3058%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="85.0579%" y="1157" width="0.0168%" height="15" fill="rgb(252,69,32)" fg:x="40502" fg:w="8"/><text x="85.3079%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="85.0537%" y="1205" width="0.0294%" height="15" fill="rgb(232,204,19)" fg:x="40500" fg:w="14"/><text x="85.3037%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="85.0558%" y="1189" width="0.0273%" height="15" fill="rgb(249,15,47)" fg:x="40501" fg:w="13"/><text x="85.3058%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="85.0495%" y="1237" width="0.0399%" height="15" fill="rgb(209,227,23)" fg:x="40498" fg:w="19"/><text x="85.2995%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (17 samples, 0.04%)</title><rect x="85.0537%" y="1221" width="0.0357%" height="15" fill="rgb(248,92,24)" fg:x="40500" fg:w="17"/><text x="85.3037%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="85.0957%" y="1189" width="0.0126%" height="15" fill="rgb(247,59,2)" fg:x="40520" fg:w="6"/><text x="85.3457%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.0978%" y="1173" width="0.0105%" height="15" fill="rgb(221,30,5)" fg:x="40521" fg:w="5"/><text x="85.3478%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.08%)</title><rect x="85.0411%" y="1269" width="0.0756%" height="15" fill="rgb(208,108,53)" fg:x="40494" fg:w="36"/><text x="85.2911%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (32 samples, 0.07%)</title><rect x="85.0495%" y="1253" width="0.0672%" height="15" fill="rgb(211,183,26)" fg:x="40498" fg:w="32"/><text x="85.2995%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.03%)</title><rect x="85.0894%" y="1237" width="0.0273%" height="15" fill="rgb(232,132,4)" fg:x="40517" fg:w="13"/><text x="85.3394%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="85.0894%" y="1221" width="0.0273%" height="15" fill="rgb(253,128,37)" fg:x="40517" fg:w="13"/><text x="85.3394%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="85.0957%" y="1205" width="0.0210%" height="15" fill="rgb(221,58,24)" fg:x="40520" fg:w="10"/><text x="85.3457%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="85.1251%" y="1221" width="0.0168%" height="15" fill="rgb(230,54,45)" fg:x="40534" fg:w="8"/><text x="85.3751%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="85.1293%" y="1205" width="0.0126%" height="15" fill="rgb(254,21,18)" fg:x="40536" fg:w="6"/><text x="85.3793%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.04%)</title><rect x="85.1167%" y="1269" width="0.0441%" height="15" fill="rgb(221,108,0)" fg:x="40530" fg:w="21"/><text x="85.3667%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="85.1167%" y="1253" width="0.0441%" height="15" fill="rgb(206,95,1)" fg:x="40530" fg:w="21"/><text x="85.3667%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="85.1230%" y="1237" width="0.0378%" height="15" fill="rgb(237,52,5)" fg:x="40533" fg:w="18"/><text x="85.3730%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="85.1503%" y="1221" width="0.0105%" height="15" fill="rgb(218,150,34)" fg:x="40546" fg:w="5"/><text x="85.4003%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="85.1503%" y="1205" width="0.0105%" height="15" fill="rgb(235,194,28)" fg:x="40546" fg:w="5"/><text x="85.4003%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.1503%" y="1189" width="0.0105%" height="15" fill="rgb(245,92,18)" fg:x="40546" fg:w="5"/><text x="85.4003%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.1503%" y="1173" width="0.0105%" height="15" fill="rgb(253,203,53)" fg:x="40546" fg:w="5"/><text x="85.4003%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (70 samples, 0.15%)</title><rect x="85.0264%" y="1301" width="0.1470%" height="15" fill="rgb(249,185,47)" fg:x="40487" fg:w="70"/><text x="85.2764%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (64 samples, 0.13%)</title><rect x="85.0390%" y="1285" width="0.1344%" height="15" fill="rgb(252,194,52)" fg:x="40493" fg:w="64"/><text x="85.2890%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="85.1608%" y="1269" width="0.0126%" height="15" fill="rgb(210,53,36)" fg:x="40551" fg:w="6"/><text x="85.4108%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="85.1629%" y="1253" width="0.0105%" height="15" fill="rgb(237,37,25)" fg:x="40552" fg:w="5"/><text x="85.4129%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.1629%" y="1237" width="0.0105%" height="15" fill="rgb(242,116,27)" fg:x="40552" fg:w="5"/><text x="85.4129%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.03%)</title><rect x="85.1734%" y="1301" width="0.0336%" height="15" fill="rgb(213,185,26)" fg:x="40557" fg:w="16"/><text x="85.4234%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.03%)</title><rect x="85.1734%" y="1285" width="0.0336%" height="15" fill="rgb(225,204,8)" fg:x="40557" fg:w="16"/><text x="85.4234%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="85.1818%" y="1269" width="0.0252%" height="15" fill="rgb(254,111,37)" fg:x="40561" fg:w="12"/><text x="85.4318%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="85.2196%" y="1173" width="0.0147%" height="15" fill="rgb(242,35,9)" fg:x="40579" fg:w="7"/><text x="85.4696%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2238%" y="1157" width="0.0105%" height="15" fill="rgb(232,138,49)" fg:x="40581" fg:w="5"/><text x="85.4738%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="85.2175%" y="1205" width="0.0273%" height="15" fill="rgb(247,56,4)" fg:x="40578" fg:w="13"/><text x="85.4675%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="85.2196%" y="1189" width="0.0252%" height="15" fill="rgb(226,179,17)" fg:x="40579" fg:w="12"/><text x="85.4696%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.03%)</title><rect x="85.2448%" y="1205" width="0.0252%" height="15" fill="rgb(216,163,45)" fg:x="40591" fg:w="12"/><text x="85.4948%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="85.2469%" y="1189" width="0.0231%" height="15" fill="rgb(211,157,3)" fg:x="40592" fg:w="11"/><text x="85.4969%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="85.2553%" y="1173" width="0.0147%" height="15" fill="rgb(234,44,20)" fg:x="40596" fg:w="7"/><text x="85.5053%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="85.2595%" y="1157" width="0.0105%" height="15" fill="rgb(254,138,23)" fg:x="40598" fg:w="5"/><text x="85.5095%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="85.2595%" y="1141" width="0.0105%" height="15" fill="rgb(206,119,39)" fg:x="40598" fg:w="5"/><text x="85.5095%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2595%" y="1125" width="0.0105%" height="15" fill="rgb(231,105,52)" fg:x="40598" fg:w="5"/><text x="85.5095%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2595%" y="1109" width="0.0105%" height="15" fill="rgb(250,20,5)" fg:x="40598" fg:w="5"/><text x="85.5095%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.07%)</title><rect x="85.2175%" y="1237" width="0.0672%" height="15" fill="rgb(215,198,30)" fg:x="40578" fg:w="32"/><text x="85.4675%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (32 samples, 0.07%)</title><rect x="85.2175%" y="1221" width="0.0672%" height="15" fill="rgb(246,142,8)" fg:x="40578" fg:w="32"/><text x="85.4675%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="85.2700%" y="1205" width="0.0147%" height="15" fill="rgb(243,26,38)" fg:x="40603" fg:w="7"/><text x="85.5200%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="85.2700%" y="1189" width="0.0147%" height="15" fill="rgb(205,133,28)" fg:x="40603" fg:w="7"/><text x="85.5200%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="85.2700%" y="1173" width="0.0147%" height="15" fill="rgb(212,34,0)" fg:x="40603" fg:w="7"/><text x="85.5200%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="85.2700%" y="1157" width="0.0147%" height="15" fill="rgb(251,226,22)" fg:x="40603" fg:w="7"/><text x="85.5200%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="85.2700%" y="1141" width="0.0147%" height="15" fill="rgb(252,119,9)" fg:x="40603" fg:w="7"/><text x="85.5200%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="85.2721%" y="1125" width="0.0126%" height="15" fill="rgb(213,150,50)" fg:x="40604" fg:w="6"/><text x="85.5221%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="85.2742%" y="1109" width="0.0105%" height="15" fill="rgb(212,24,39)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="85.2742%" y="1093" width="0.0105%" height="15" fill="rgb(213,46,39)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2742%" y="1077" width="0.0105%" height="15" fill="rgb(239,106,12)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2742%" y="1061" width="0.0105%" height="15" fill="rgb(249,229,21)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2742%" y="1045" width="0.0105%" height="15" fill="rgb(212,158,3)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2742%" y="1029" width="0.0105%" height="15" fill="rgb(253,26,48)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2742%" y="1013" width="0.0105%" height="15" fill="rgb(238,178,20)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2742%" y="997" width="0.0105%" height="15" fill="rgb(208,86,15)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2742%" y="981" width="0.0105%" height="15" fill="rgb(239,42,53)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2742%" y="965" width="0.0105%" height="15" fill="rgb(245,226,8)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="85.2742%" y="949" width="0.0105%" height="15" fill="rgb(216,176,32)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="85.2742%" y="933" width="0.0105%" height="15" fill="rgb(231,186,21)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2742%" y="917" width="0.0105%" height="15" fill="rgb(205,95,49)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2742%" y="901" width="0.0105%" height="15" fill="rgb(217,145,8)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="85.2742%" y="885" width="0.0105%" height="15" fill="rgb(239,144,48)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="85.2742%" y="869" width="0.0105%" height="15" fill="rgb(214,189,23)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2742%" y="853" width="0.0105%" height="15" fill="rgb(229,157,17)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2742%" y="837" width="0.0105%" height="15" fill="rgb(230,5,48)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2742%" y="821" width="0.0105%" height="15" fill="rgb(224,156,48)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2742%" y="805" width="0.0105%" height="15" fill="rgb(223,14,29)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="815.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2742%" y="789" width="0.0105%" height="15" fill="rgb(229,96,36)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="799.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2742%" y="773" width="0.0105%" height="15" fill="rgb(231,102,53)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="783.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2742%" y="757" width="0.0105%" height="15" fill="rgb(210,77,38)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="767.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2742%" y="741" width="0.0105%" height="15" fill="rgb(235,131,6)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="751.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.2742%" y="725" width="0.0105%" height="15" fill="rgb(252,55,38)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="735.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.2742%" y="709" width="0.0105%" height="15" fill="rgb(246,38,14)" fg:x="40605" fg:w="5"/><text x="85.5242%" y="719.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (44 samples, 0.09%)</title><rect x="85.2070%" y="1285" width="0.0924%" height="15" fill="rgb(242,27,5)" fg:x="40573" fg:w="44"/><text x="85.4570%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.09%)</title><rect x="85.2091%" y="1269" width="0.0903%" height="15" fill="rgb(228,65,35)" fg:x="40574" fg:w="43"/><text x="85.4591%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (39 samples, 0.08%)</title><rect x="85.2175%" y="1253" width="0.0819%" height="15" fill="rgb(245,93,11)" fg:x="40578" fg:w="39"/><text x="85.4675%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (142 samples, 0.30%)</title><rect x="85.0033%" y="1349" width="0.2982%" height="15" fill="rgb(213,1,31)" fg:x="40476" fg:w="142"/><text x="85.2533%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (140 samples, 0.29%)</title><rect x="85.0075%" y="1333" width="0.2940%" height="15" fill="rgb(237,205,14)" fg:x="40478" fg:w="140"/><text x="85.2575%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (133 samples, 0.28%)</title><rect x="85.0222%" y="1317" width="0.2793%" height="15" fill="rgb(232,118,45)" fg:x="40485" fg:w="133"/><text x="85.2722%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (45 samples, 0.09%)</title><rect x="85.2070%" y="1301" width="0.0945%" height="15" fill="rgb(218,5,6)" fg:x="40573" fg:w="45"/><text x="85.4570%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (684 samples, 1.44%)</title><rect x="83.8671%" y="1413" width="1.4365%" height="15" fill="rgb(251,87,51)" fg:x="39935" fg:w="684"/><text x="84.1171%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (681 samples, 1.43%)</title><rect x="83.8734%" y="1397" width="1.4302%" height="15" fill="rgb(207,225,20)" fg:x="39938" fg:w="681"/><text x="84.1234%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (667 samples, 1.40%)</title><rect x="83.9028%" y="1381" width="1.4008%" height="15" fill="rgb(222,78,54)" fg:x="39952" fg:w="667"/><text x="84.1528%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (145 samples, 0.30%)</title><rect x="84.9991%" y="1365" width="0.3045%" height="15" fill="rgb(232,85,16)" fg:x="40474" fg:w="145"/><text x="85.2491%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (690 samples, 1.45%)</title><rect x="83.8566%" y="1429" width="1.4491%" height="15" fill="rgb(244,25,33)" fg:x="39930" fg:w="690"/><text x="84.1066%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5,126 samples, 10.77%)</title><rect x="74.5427%" y="1461" width="10.7651%" height="15" fill="rgb(233,24,36)" fg:x="35495" fg:w="5126"/><text x="74.7927%" y="1471.50">sqlparser_bench-..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5,072 samples, 10.65%)</title><rect x="74.6561%" y="1445" width="10.6517%" height="15" fill="rgb(253,49,54)" fg:x="35549" fg:w="5072"/><text x="74.9061%" y="1455.50">sqlparser_bench-..</text></g><g><title>libsystem_m.dylib`exp (24 samples, 0.05%)</title><rect x="85.3267%" y="1429" width="0.0504%" height="15" fill="rgb(245,12,22)" fg:x="40630" fg:w="24"/><text x="85.5767%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (7 samples, 0.01%)</title><rect x="85.3771%" y="1413" width="0.0147%" height="15" fill="rgb(253,141,28)" fg:x="40654" fg:w="7"/><text x="85.6271%" y="1423.50"></text></g><g><title>libsystem_m.dylib`exp (18 samples, 0.04%)</title><rect x="85.4023%" y="1397" width="0.0378%" height="15" fill="rgb(225,207,27)" fg:x="40666" fg:w="18"/><text x="85.6523%" y="1407.50"></text></g><g><title>libsystem_m.dylib`exp (19 samples, 0.04%)</title><rect x="85.4590%" y="1365" width="0.0399%" height="15" fill="rgb(220,84,2)" fg:x="40693" fg:w="19"/><text x="85.7090%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (5 samples, 0.01%)</title><rect x="85.4989%" y="1365" width="0.0105%" height="15" fill="rgb(224,37,37)" fg:x="40712" fg:w="5"/><text x="85.7489%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.01%)</title><rect x="85.4989%" y="1349" width="0.0105%" height="15" fill="rgb(220,143,18)" fg:x="40712" fg:w="5"/><text x="85.7489%" y="1359.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="85.5157%" y="1333" width="0.0126%" height="15" fill="rgb(210,88,33)" fg:x="40720" fg:w="6"/><text x="85.7657%" y="1343.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="85.5325%" y="1301" width="0.0126%" height="15" fill="rgb(219,87,51)" fg:x="40728" fg:w="6"/><text x="85.7825%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.5451%" y="1285" width="0.0105%" height="15" fill="rgb(211,7,35)" fg:x="40734" fg:w="5"/><text x="85.7951%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="85.5325%" y="1317" width="0.0273%" height="15" fill="rgb(232,77,2)" fg:x="40728" fg:w="13"/><text x="85.7825%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="85.5451%" y="1301" width="0.0147%" height="15" fill="rgb(249,94,25)" fg:x="40734" fg:w="7"/><text x="85.7951%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="85.5640%" y="1285" width="0.0105%" height="15" fill="rgb(215,112,2)" fg:x="40743" fg:w="5"/><text x="85.8140%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="85.5745%" y="1269" width="0.0126%" height="15" fill="rgb(226,115,48)" fg:x="40748" fg:w="6"/><text x="85.8245%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (37 samples, 0.08%)</title><rect x="85.5136%" y="1349" width="0.0777%" height="15" fill="rgb(249,196,10)" fg:x="40719" fg:w="37"/><text x="85.7636%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (28 samples, 0.06%)</title><rect x="85.5325%" y="1333" width="0.0588%" height="15" fill="rgb(237,109,14)" fg:x="40728" fg:w="28"/><text x="85.7825%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="85.5598%" y="1317" width="0.0315%" height="15" fill="rgb(217,103,53)" fg:x="40741" fg:w="15"/><text x="85.8098%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="85.5640%" y="1301" width="0.0273%" height="15" fill="rgb(244,137,9)" fg:x="40743" fg:w="13"/><text x="85.8140%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="85.5745%" y="1285" width="0.0168%" height="15" fill="rgb(227,201,3)" fg:x="40748" fg:w="8"/><text x="85.8245%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (9 samples, 0.02%)</title><rect x="85.5976%" y="1317" width="0.0189%" height="15" fill="rgb(243,94,6)" fg:x="40759" fg:w="9"/><text x="85.8476%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (5 samples, 0.01%)</title><rect x="85.6165%" y="1317" width="0.0105%" height="15" fill="rgb(235,118,5)" fg:x="40768" fg:w="5"/><text x="85.8665%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.01%)</title><rect x="85.6165%" y="1301" width="0.0105%" height="15" fill="rgb(247,10,30)" fg:x="40768" fg:w="5"/><text x="85.8665%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="85.6333%" y="1285" width="0.0126%" height="15" fill="rgb(205,26,28)" fg:x="40776" fg:w="6"/><text x="85.8833%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="85.6291%" y="1301" width="0.0294%" height="15" fill="rgb(206,99,35)" fg:x="40774" fg:w="14"/><text x="85.8791%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="85.6459%" y="1285" width="0.0126%" height="15" fill="rgb(238,130,40)" fg:x="40782" fg:w="6"/><text x="85.8959%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="85.6669%" y="1253" width="0.0168%" height="15" fill="rgb(224,126,31)" fg:x="40792" fg:w="8"/><text x="85.9169%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.01%)</title><rect x="85.6732%" y="1237" width="0.0105%" height="15" fill="rgb(254,105,17)" fg:x="40795" fg:w="5"/><text x="85.9232%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (5 samples, 0.01%)</title><rect x="85.6732%" y="1221" width="0.0105%" height="15" fill="rgb(216,87,36)" fg:x="40795" fg:w="5"/><text x="85.9232%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (5 samples, 0.01%)</title><rect x="85.6837%" y="1205" width="0.0105%" height="15" fill="rgb(240,21,12)" fg:x="40800" fg:w="5"/><text x="85.9337%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.04%)</title><rect x="85.6585%" y="1301" width="0.0378%" height="15" fill="rgb(245,192,34)" fg:x="40788" fg:w="18"/><text x="85.9085%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="85.6585%" y="1285" width="0.0378%" height="15" fill="rgb(226,100,49)" fg:x="40788" fg:w="18"/><text x="85.9085%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="85.6669%" y="1269" width="0.0294%" height="15" fill="rgb(245,188,27)" fg:x="40792" fg:w="14"/><text x="85.9169%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="85.6837%" y="1253" width="0.0126%" height="15" fill="rgb(212,170,8)" fg:x="40800" fg:w="6"/><text x="85.9337%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="85.6837%" y="1237" width="0.0126%" height="15" fill="rgb(217,113,29)" fg:x="40800" fg:w="6"/><text x="85.9337%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.01%)</title><rect x="85.6837%" y="1221" width="0.0126%" height="15" fill="rgb(237,30,3)" fg:x="40800" fg:w="6"/><text x="85.9337%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (55 samples, 0.12%)</title><rect x="85.5913%" y="1349" width="0.1155%" height="15" fill="rgb(227,19,28)" fg:x="40756" fg:w="55"/><text x="85.8413%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.12%)</title><rect x="85.5913%" y="1333" width="0.1155%" height="15" fill="rgb(239,172,45)" fg:x="40756" fg:w="55"/><text x="85.8413%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (38 samples, 0.08%)</title><rect x="85.6270%" y="1317" width="0.0798%" height="15" fill="rgb(254,55,39)" fg:x="40773" fg:w="38"/><text x="85.8770%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="85.6963%" y="1301" width="0.0105%" height="15" fill="rgb(249,208,12)" fg:x="40806" fg:w="5"/><text x="85.9463%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="85.6963%" y="1285" width="0.0105%" height="15" fill="rgb(240,52,13)" fg:x="40806" fg:w="5"/><text x="85.9463%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.6963%" y="1269" width="0.0105%" height="15" fill="rgb(252,149,13)" fg:x="40806" fg:w="5"/><text x="85.9463%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.6963%" y="1253" width="0.0105%" height="15" fill="rgb(232,81,48)" fg:x="40806" fg:w="5"/><text x="85.9463%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (124 samples, 0.26%)</title><rect x="85.4485%" y="1381" width="0.2604%" height="15" fill="rgb(222,144,2)" fg:x="40688" fg:w="124"/><text x="85.6985%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (95 samples, 0.20%)</title><rect x="85.5094%" y="1365" width="0.1995%" height="15" fill="rgb(216,81,32)" fg:x="40717" fg:w="95"/><text x="85.7594%" y="1375.50"></text></g><g><title>libsystem_m.dylib`exp (18 samples, 0.04%)</title><rect x="85.7236%" y="1349" width="0.0378%" height="15" fill="rgb(244,78,51)" fg:x="40819" fg:w="18"/><text x="85.9736%" y="1359.50"></text></g><g><title>libsystem_m.dylib`exp (10 samples, 0.02%)</title><rect x="85.7719%" y="1317" width="0.0210%" height="15" fill="rgb(217,66,21)" fg:x="40842" fg:w="10"/><text x="86.0219%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="85.8034%" y="1301" width="0.0231%" height="15" fill="rgb(247,101,42)" fg:x="40857" fg:w="11"/><text x="86.0534%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="85.8139%" y="1285" width="0.0126%" height="15" fill="rgb(227,81,39)" fg:x="40862" fg:w="6"/><text x="86.0639%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="85.8160%" y="1269" width="0.0105%" height="15" fill="rgb(220,223,44)" fg:x="40863" fg:w="5"/><text x="86.0660%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.8160%" y="1253" width="0.0105%" height="15" fill="rgb(205,218,2)" fg:x="40863" fg:w="5"/><text x="86.0660%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.01%)</title><rect x="85.8160%" y="1237" width="0.0105%" height="15" fill="rgb(212,207,28)" fg:x="40863" fg:w="5"/><text x="86.0660%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.8391%" y="1253" width="0.0105%" height="15" fill="rgb(224,12,41)" fg:x="40874" fg:w="5"/><text x="86.0891%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.09%)</title><rect x="85.7677%" y="1333" width="0.0861%" height="15" fill="rgb(216,118,12)" fg:x="40840" fg:w="41"/><text x="86.0177%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="85.8013%" y="1317" width="0.0525%" height="15" fill="rgb(252,97,46)" fg:x="40856" fg:w="25"/><text x="86.0513%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.03%)</title><rect x="85.8265%" y="1301" width="0.0273%" height="15" fill="rgb(244,206,19)" fg:x="40868" fg:w="13"/><text x="86.0765%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="85.8307%" y="1285" width="0.0231%" height="15" fill="rgb(231,84,31)" fg:x="40870" fg:w="11"/><text x="86.0807%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="85.8391%" y="1269" width="0.0147%" height="15" fill="rgb(244,133,0)" fg:x="40874" fg:w="7"/><text x="86.0891%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="85.8664%" y="1269" width="0.0105%" height="15" fill="rgb(223,15,50)" fg:x="40887" fg:w="5"/><text x="86.1164%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (5 samples, 0.01%)</title><rect x="85.8769%" y="1221" width="0.0105%" height="15" fill="rgb(250,118,49)" fg:x="40892" fg:w="5"/><text x="86.1269%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="85.8769%" y="1253" width="0.0126%" height="15" fill="rgb(248,25,38)" fg:x="40892" fg:w="6"/><text x="86.1269%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.01%)</title><rect x="85.8769%" y="1237" width="0.0126%" height="15" fill="rgb(215,70,14)" fg:x="40892" fg:w="6"/><text x="86.1269%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="85.8643%" y="1285" width="0.0273%" height="15" fill="rgb(215,28,15)" fg:x="40886" fg:w="13"/><text x="86.1143%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="85.8769%" y="1269" width="0.0147%" height="15" fill="rgb(243,6,28)" fg:x="40892" fg:w="7"/><text x="86.1269%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="85.8916%" y="1285" width="0.0168%" height="15" fill="rgb(222,130,1)" fg:x="40899" fg:w="8"/><text x="86.1416%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="85.8937%" y="1269" width="0.0147%" height="15" fill="rgb(236,166,44)" fg:x="40900" fg:w="7"/><text x="86.1437%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="85.9084%" y="1221" width="0.0231%" height="15" fill="rgb(221,108,14)" fg:x="40907" fg:w="11"/><text x="86.1584%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="85.9105%" y="1205" width="0.0210%" height="15" fill="rgb(252,3,45)" fg:x="40908" fg:w="10"/><text x="86.1605%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="85.9147%" y="1189" width="0.0168%" height="15" fill="rgb(237,68,30)" fg:x="40910" fg:w="8"/><text x="86.1647%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="85.9147%" y="1173" width="0.0168%" height="15" fill="rgb(211,79,22)" fg:x="40910" fg:w="8"/><text x="86.1647%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="85.9147%" y="1157" width="0.0168%" height="15" fill="rgb(252,185,21)" fg:x="40910" fg:w="8"/><text x="86.1647%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="85.9168%" y="1141" width="0.0147%" height="15" fill="rgb(225,189,26)" fg:x="40911" fg:w="7"/><text x="86.1668%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="85.9168%" y="1125" width="0.0147%" height="15" fill="rgb(241,30,40)" fg:x="40911" fg:w="7"/><text x="86.1668%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="85.9168%" y="1109" width="0.0147%" height="15" fill="rgb(235,215,44)" fg:x="40911" fg:w="7"/><text x="86.1668%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="85.9168%" y="1093" width="0.0147%" height="15" fill="rgb(205,8,29)" fg:x="40911" fg:w="7"/><text x="86.1668%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="85.9168%" y="1077" width="0.0147%" height="15" fill="rgb(241,137,42)" fg:x="40911" fg:w="7"/><text x="86.1668%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="85.9168%" y="1061" width="0.0147%" height="15" fill="rgb(237,155,2)" fg:x="40911" fg:w="7"/><text x="86.1668%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="85.9168%" y="1045" width="0.0147%" height="15" fill="rgb(245,29,42)" fg:x="40911" fg:w="7"/><text x="86.1668%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="85.9168%" y="1029" width="0.0147%" height="15" fill="rgb(234,101,35)" fg:x="40911" fg:w="7"/><text x="86.1668%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (38 samples, 0.08%)</title><rect x="85.8538%" y="1333" width="0.0798%" height="15" fill="rgb(228,64,37)" fg:x="40881" fg:w="38"/><text x="86.1038%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (37 samples, 0.08%)</title><rect x="85.8559%" y="1317" width="0.0777%" height="15" fill="rgb(217,214,36)" fg:x="40882" fg:w="37"/><text x="86.1059%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (34 samples, 0.07%)</title><rect x="85.8622%" y="1301" width="0.0714%" height="15" fill="rgb(243,70,3)" fg:x="40885" fg:w="34"/><text x="86.1122%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.03%)</title><rect x="85.9084%" y="1285" width="0.0252%" height="15" fill="rgb(253,158,52)" fg:x="40907" fg:w="12"/><text x="86.1584%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.03%)</title><rect x="85.9084%" y="1269" width="0.0252%" height="15" fill="rgb(234,111,54)" fg:x="40907" fg:w="12"/><text x="86.1584%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="85.9084%" y="1253" width="0.0252%" height="15" fill="rgb(217,70,32)" fg:x="40907" fg:w="12"/><text x="86.1584%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="85.9084%" y="1237" width="0.0252%" height="15" fill="rgb(234,18,33)" fg:x="40907" fg:w="12"/><text x="86.1584%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (112 samples, 0.24%)</title><rect x="85.7089%" y="1381" width="0.2352%" height="15" fill="rgb(234,12,49)" fg:x="40812" fg:w="112"/><text x="85.9589%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (109 samples, 0.23%)</title><rect x="85.7152%" y="1365" width="0.2289%" height="15" fill="rgb(236,10,21)" fg:x="40815" fg:w="109"/><text x="85.9652%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (86 samples, 0.18%)</title><rect x="85.7635%" y="1349" width="0.1806%" height="15" fill="rgb(248,182,45)" fg:x="40838" fg:w="86"/><text x="86.0135%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="85.9336%" y="1333" width="0.0105%" height="15" fill="rgb(217,95,36)" fg:x="40919" fg:w="5"/><text x="86.1836%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="85.9336%" y="1317" width="0.0105%" height="15" fill="rgb(212,110,31)" fg:x="40919" fg:w="5"/><text x="86.1836%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.9336%" y="1301" width="0.0105%" height="15" fill="rgb(206,32,53)" fg:x="40919" fg:w="5"/><text x="86.1836%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.9336%" y="1285" width="0.0105%" height="15" fill="rgb(246,141,37)" fg:x="40919" fg:w="5"/><text x="86.1836%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.9336%" y="1269" width="0.0105%" height="15" fill="rgb(219,16,7)" fg:x="40919" fg:w="5"/><text x="86.1836%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.9483%" y="1285" width="0.0105%" height="15" fill="rgb(230,205,45)" fg:x="40926" fg:w="5"/><text x="86.1983%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="85.9588%" y="1285" width="0.0105%" height="15" fill="rgb(231,43,49)" fg:x="40931" fg:w="5"/><text x="86.2088%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.9588%" y="1269" width="0.0105%" height="15" fill="rgb(212,106,34)" fg:x="40931" fg:w="5"/><text x="86.2088%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="85.9483%" y="1317" width="0.0315%" height="15" fill="rgb(206,83,17)" fg:x="40926" fg:w="15"/><text x="86.1983%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="85.9483%" y="1301" width="0.0315%" height="15" fill="rgb(244,154,49)" fg:x="40926" fg:w="15"/><text x="86.1983%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="85.9693%" y="1285" width="0.0105%" height="15" fill="rgb(244,149,49)" fg:x="40936" fg:w="5"/><text x="86.2193%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="85.9693%" y="1269" width="0.0105%" height="15" fill="rgb(227,134,18)" fg:x="40936" fg:w="5"/><text x="86.2193%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.9693%" y="1253" width="0.0105%" height="15" fill="rgb(237,116,36)" fg:x="40936" fg:w="5"/><text x="86.2193%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.9693%" y="1237" width="0.0105%" height="15" fill="rgb(205,129,40)" fg:x="40936" fg:w="5"/><text x="86.2193%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="85.9693%" y="1221" width="0.0105%" height="15" fill="rgb(236,178,4)" fg:x="40936" fg:w="5"/><text x="86.2193%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="85.9693%" y="1205" width="0.0105%" height="15" fill="rgb(251,76,53)" fg:x="40936" fg:w="5"/><text x="86.2193%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (285 samples, 0.60%)</title><rect x="85.3918%" y="1413" width="0.5985%" height="15" fill="rgb(242,92,40)" fg:x="40661" fg:w="285"/><text x="85.6418%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (260 samples, 0.55%)</title><rect x="85.4443%" y="1397" width="0.5460%" height="15" fill="rgb(209,45,30)" fg:x="40686" fg:w="260"/><text x="85.6943%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.05%)</title><rect x="85.9441%" y="1381" width="0.0462%" height="15" fill="rgb(218,157,36)" fg:x="40924" fg:w="22"/><text x="86.1941%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (22 samples, 0.05%)</title><rect x="85.9441%" y="1365" width="0.0462%" height="15" fill="rgb(222,186,16)" fg:x="40924" fg:w="22"/><text x="86.1941%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.05%)</title><rect x="85.9441%" y="1349" width="0.0462%" height="15" fill="rgb(254,72,35)" fg:x="40924" fg:w="22"/><text x="86.1941%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (20 samples, 0.04%)</title><rect x="85.9483%" y="1333" width="0.0420%" height="15" fill="rgb(224,25,35)" fg:x="40926" fg:w="20"/><text x="86.1983%" y="1343.50"></text></g><g><title>libsystem_m.dylib`exp (23 samples, 0.05%)</title><rect x="86.0008%" y="1381" width="0.0483%" height="15" fill="rgb(206,135,52)" fg:x="40951" fg:w="23"/><text x="86.2508%" y="1391.50"></text></g><g><title>libsystem_m.dylib`exp (19 samples, 0.04%)</title><rect x="86.0554%" y="1349" width="0.0399%" height="15" fill="rgb(229,174,47)" fg:x="40977" fg:w="19"/><text x="86.3054%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (5 samples, 0.01%)</title><rect x="86.0953%" y="1349" width="0.0105%" height="15" fill="rgb(242,184,21)" fg:x="40996" fg:w="5"/><text x="86.3453%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.01%)</title><rect x="86.0953%" y="1333" width="0.0105%" height="15" fill="rgb(213,22,45)" fg:x="40996" fg:w="5"/><text x="86.3453%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (5 samples, 0.01%)</title><rect x="86.0953%" y="1317" width="0.0105%" height="15" fill="rgb(237,81,54)" fg:x="40996" fg:w="5"/><text x="86.3453%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.1226%" y="1301" width="0.0105%" height="15" fill="rgb(248,177,18)" fg:x="41009" fg:w="5"/><text x="86.3726%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="86.1058%" y="1333" width="0.0441%" height="15" fill="rgb(254,31,16)" fg:x="41001" fg:w="21"/><text x="86.3558%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="86.1205%" y="1317" width="0.0294%" height="15" fill="rgb(235,20,31)" fg:x="41008" fg:w="14"/><text x="86.3705%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="86.1331%" y="1301" width="0.0168%" height="15" fill="rgb(240,56,43)" fg:x="41014" fg:w="8"/><text x="86.3831%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="86.1331%" y="1285" width="0.0168%" height="15" fill="rgb(237,197,51)" fg:x="41014" fg:w="8"/><text x="86.3831%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="86.1373%" y="1269" width="0.0126%" height="15" fill="rgb(241,162,44)" fg:x="41016" fg:w="6"/><text x="86.3873%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (9 samples, 0.02%)</title><rect x="86.1499%" y="1301" width="0.0189%" height="15" fill="rgb(224,23,20)" fg:x="41022" fg:w="9"/><text x="86.3999%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="86.1751%" y="1285" width="0.0147%" height="15" fill="rgb(250,109,34)" fg:x="41034" fg:w="7"/><text x="86.4251%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (75 samples, 0.16%)</title><rect x="86.0533%" y="1365" width="0.1575%" height="15" fill="rgb(214,175,50)" fg:x="40976" fg:w="75"/><text x="86.3033%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (50 samples, 0.11%)</title><rect x="86.1058%" y="1349" width="0.1050%" height="15" fill="rgb(213,182,5)" fg:x="41001" fg:w="50"/><text x="86.3558%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (29 samples, 0.06%)</title><rect x="86.1499%" y="1333" width="0.0609%" height="15" fill="rgb(209,199,19)" fg:x="41022" fg:w="29"/><text x="86.3999%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.06%)</title><rect x="86.1499%" y="1317" width="0.0609%" height="15" fill="rgb(236,224,42)" fg:x="41022" fg:w="29"/><text x="86.3999%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (17 samples, 0.04%)</title><rect x="86.1751%" y="1301" width="0.0357%" height="15" fill="rgb(246,226,29)" fg:x="41034" fg:w="17"/><text x="86.4251%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="86.1898%" y="1285" width="0.0210%" height="15" fill="rgb(227,223,11)" fg:x="41041" fg:w="10"/><text x="86.4398%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="86.1898%" y="1269" width="0.0210%" height="15" fill="rgb(219,7,51)" fg:x="41041" fg:w="10"/><text x="86.4398%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="86.1940%" y="1253" width="0.0168%" height="15" fill="rgb(245,167,10)" fg:x="41043" fg:w="8"/><text x="86.4440%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="86.2234%" y="1333" width="0.0147%" height="15" fill="rgb(237,224,16)" fg:x="41057" fg:w="7"/><text x="86.4734%" y="1343.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="86.2444%" y="1301" width="0.0105%" height="15" fill="rgb(226,132,13)" fg:x="41067" fg:w="5"/><text x="86.4944%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="86.2612%" y="1285" width="0.0126%" height="15" fill="rgb(214,140,3)" fg:x="41075" fg:w="6"/><text x="86.5112%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.2633%" y="1269" width="0.0105%" height="15" fill="rgb(221,177,4)" fg:x="41076" fg:w="5"/><text x="86.5133%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.03%)</title><rect x="86.2444%" y="1317" width="0.0336%" height="15" fill="rgb(238,139,3)" fg:x="41067" fg:w="16"/><text x="86.4944%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="86.2612%" y="1301" width="0.0168%" height="15" fill="rgb(216,17,39)" fg:x="41075" fg:w="8"/><text x="86.5112%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="86.2948%" y="1269" width="0.0147%" height="15" fill="rgb(238,120,9)" fg:x="41091" fg:w="7"/><text x="86.5448%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="86.2948%" y="1253" width="0.0147%" height="15" fill="rgb(244,92,53)" fg:x="41091" fg:w="7"/><text x="86.5448%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="86.2948%" y="1237" width="0.0147%" height="15" fill="rgb(224,148,33)" fg:x="41091" fg:w="7"/><text x="86.5448%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (20 samples, 0.04%)</title><rect x="86.2780%" y="1317" width="0.0420%" height="15" fill="rgb(243,6,36)" fg:x="41083" fg:w="20"/><text x="86.5280%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="86.2780%" y="1301" width="0.0420%" height="15" fill="rgb(230,102,11)" fg:x="41083" fg:w="20"/><text x="86.5280%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (16 samples, 0.03%)</title><rect x="86.2864%" y="1285" width="0.0336%" height="15" fill="rgb(234,148,36)" fg:x="41087" fg:w="16"/><text x="86.5364%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="86.3095%" y="1269" width="0.0105%" height="15" fill="rgb(251,153,25)" fg:x="41098" fg:w="5"/><text x="86.5595%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="86.3095%" y="1253" width="0.0105%" height="15" fill="rgb(215,129,8)" fg:x="41098" fg:w="5"/><text x="86.5595%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.3095%" y="1237" width="0.0105%" height="15" fill="rgb(224,128,35)" fg:x="41098" fg:w="5"/><text x="86.5595%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="86.3221%" y="1221" width="0.0147%" height="15" fill="rgb(237,56,52)" fg:x="41104" fg:w="7"/><text x="86.5721%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="86.3221%" y="1205" width="0.0147%" height="15" fill="rgb(234,213,19)" fg:x="41104" fg:w="7"/><text x="86.5721%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="86.3200%" y="1253" width="0.0231%" height="15" fill="rgb(252,82,23)" fg:x="41103" fg:w="11"/><text x="86.5700%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="86.3221%" y="1237" width="0.0210%" height="15" fill="rgb(254,201,21)" fg:x="41104" fg:w="10"/><text x="86.5721%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (72 samples, 0.15%)</title><rect x="86.2108%" y="1365" width="0.1512%" height="15" fill="rgb(250,186,11)" fg:x="41051" fg:w="72"/><text x="86.4608%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (69 samples, 0.14%)</title><rect x="86.2171%" y="1349" width="0.1449%" height="15" fill="rgb(211,174,5)" fg:x="41054" fg:w="69"/><text x="86.4671%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (57 samples, 0.12%)</title><rect x="86.2423%" y="1333" width="0.1197%" height="15" fill="rgb(214,121,10)" fg:x="41066" fg:w="57"/><text x="86.4923%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (20 samples, 0.04%)</title><rect x="86.3200%" y="1317" width="0.0420%" height="15" fill="rgb(241,66,2)" fg:x="41103" fg:w="20"/><text x="86.5700%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (20 samples, 0.04%)</title><rect x="86.3200%" y="1301" width="0.0420%" height="15" fill="rgb(220,167,19)" fg:x="41103" fg:w="20"/><text x="86.5700%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="86.3200%" y="1285" width="0.0420%" height="15" fill="rgb(231,54,50)" fg:x="41103" fg:w="20"/><text x="86.5700%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (20 samples, 0.04%)</title><rect x="86.3200%" y="1269" width="0.0420%" height="15" fill="rgb(239,217,53)" fg:x="41103" fg:w="20"/><text x="86.5700%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="86.3452%" y="1253" width="0.0168%" height="15" fill="rgb(248,8,0)" fg:x="41115" fg:w="8"/><text x="86.5952%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="86.3473%" y="1237" width="0.0147%" height="15" fill="rgb(229,118,37)" fg:x="41116" fg:w="7"/><text x="86.5973%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="86.3473%" y="1221" width="0.0147%" height="15" fill="rgb(253,223,43)" fg:x="41116" fg:w="7"/><text x="86.5973%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="86.3473%" y="1205" width="0.0147%" height="15" fill="rgb(211,77,36)" fg:x="41116" fg:w="7"/><text x="86.5973%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.3767%" y="1205" width="0.0105%" height="15" fill="rgb(219,3,53)" fg:x="41130" fg:w="5"/><text x="86.6267%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="86.3662%" y="1237" width="0.0294%" height="15" fill="rgb(244,45,42)" fg:x="41125" fg:w="14"/><text x="86.6162%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="86.3767%" y="1221" width="0.0189%" height="15" fill="rgb(225,95,27)" fg:x="41130" fg:w="9"/><text x="86.6267%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="86.4019%" y="1189" width="0.0168%" height="15" fill="rgb(207,74,8)" fg:x="41142" fg:w="8"/><text x="86.6519%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="86.4040%" y="1173" width="0.0147%" height="15" fill="rgb(243,63,36)" fg:x="41143" fg:w="7"/><text x="86.6540%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="86.4187%" y="1189" width="0.0105%" height="15" fill="rgb(211,180,12)" fg:x="41150" fg:w="5"/><text x="86.6687%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.4187%" y="1173" width="0.0105%" height="15" fill="rgb(254,166,49)" fg:x="41150" fg:w="5"/><text x="86.6687%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.07%)</title><rect x="86.3641%" y="1269" width="0.0672%" height="15" fill="rgb(205,19,0)" fg:x="41124" fg:w="32"/><text x="86.6141%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (31 samples, 0.07%)</title><rect x="86.3662%" y="1253" width="0.0651%" height="15" fill="rgb(224,172,32)" fg:x="41125" fg:w="31"/><text x="86.6162%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.04%)</title><rect x="86.3956%" y="1237" width="0.0357%" height="15" fill="rgb(254,136,30)" fg:x="41139" fg:w="17"/><text x="86.6456%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.04%)</title><rect x="86.3956%" y="1221" width="0.0357%" height="15" fill="rgb(246,19,35)" fg:x="41139" fg:w="17"/><text x="86.6456%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="86.4019%" y="1205" width="0.0294%" height="15" fill="rgb(219,24,36)" fg:x="41142" fg:w="14"/><text x="86.6519%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.4481%" y="965" width="0.0105%" height="15" fill="rgb(251,55,1)" fg:x="41164" fg:w="5"/><text x="86.6981%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.4481%" y="949" width="0.0105%" height="15" fill="rgb(218,117,39)" fg:x="41164" fg:w="5"/><text x="86.6981%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="86.4334%" y="1221" width="0.0378%" height="15" fill="rgb(248,169,11)" fg:x="41157" fg:w="18"/><text x="86.6834%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (16 samples, 0.03%)</title><rect x="86.4376%" y="1205" width="0.0336%" height="15" fill="rgb(244,40,44)" fg:x="41159" fg:w="16"/><text x="86.6876%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.03%)</title><rect x="86.4439%" y="1189" width="0.0273%" height="15" fill="rgb(234,62,37)" fg:x="41162" fg:w="13"/><text x="86.6939%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="86.4439%" y="1173" width="0.0273%" height="15" fill="rgb(207,117,42)" fg:x="41162" fg:w="13"/><text x="86.6939%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="86.4439%" y="1157" width="0.0273%" height="15" fill="rgb(213,43,2)" fg:x="41162" fg:w="13"/><text x="86.6939%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.02%)</title><rect x="86.4481%" y="1141" width="0.0231%" height="15" fill="rgb(244,202,51)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="86.4481%" y="1125" width="0.0231%" height="15" fill="rgb(253,174,46)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="86.4481%" y="1109" width="0.0231%" height="15" fill="rgb(251,23,1)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.02%)</title><rect x="86.4481%" y="1093" width="0.0231%" height="15" fill="rgb(253,26,1)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.02%)</title><rect x="86.4481%" y="1077" width="0.0231%" height="15" fill="rgb(216,89,31)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="86.4481%" y="1061" width="0.0231%" height="15" fill="rgb(209,109,5)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="86.4481%" y="1045" width="0.0231%" height="15" fill="rgb(229,63,13)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="86.4481%" y="1029" width="0.0231%" height="15" fill="rgb(238,137,54)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="86.4481%" y="1013" width="0.0231%" height="15" fill="rgb(228,1,9)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="86.4481%" y="997" width="0.0231%" height="15" fill="rgb(249,120,48)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="86.4481%" y="981" width="0.0231%" height="15" fill="rgb(209,72,36)" fg:x="41164" fg:w="11"/><text x="86.6981%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="86.4586%" y="965" width="0.0126%" height="15" fill="rgb(247,98,49)" fg:x="41169" fg:w="6"/><text x="86.7086%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="86.4586%" y="949" width="0.0126%" height="15" fill="rgb(233,75,36)" fg:x="41169" fg:w="6"/><text x="86.7086%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="86.4586%" y="933" width="0.0126%" height="15" fill="rgb(225,14,24)" fg:x="41169" fg:w="6"/><text x="86.7086%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="86.4712%" y="1221" width="0.0126%" height="15" fill="rgb(237,193,20)" fg:x="41175" fg:w="6"/><text x="86.7212%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="86.4712%" y="1205" width="0.0126%" height="15" fill="rgb(239,122,19)" fg:x="41175" fg:w="6"/><text x="86.7212%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.4733%" y="1189" width="0.0105%" height="15" fill="rgb(231,220,10)" fg:x="41176" fg:w="5"/><text x="86.7233%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (26 samples, 0.05%)</title><rect x="86.4313%" y="1269" width="0.0546%" height="15" fill="rgb(220,66,15)" fg:x="41156" fg:w="26"/><text x="86.6813%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.05%)</title><rect x="86.4313%" y="1253" width="0.0546%" height="15" fill="rgb(215,171,52)" fg:x="41156" fg:w="26"/><text x="86.6813%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="86.4334%" y="1237" width="0.0525%" height="15" fill="rgb(241,169,50)" fg:x="41157" fg:w="25"/><text x="86.6834%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (60 samples, 0.13%)</title><rect x="86.3620%" y="1301" width="0.1260%" height="15" fill="rgb(236,189,0)" fg:x="41123" fg:w="60"/><text x="86.6120%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (59 samples, 0.12%)</title><rect x="86.3641%" y="1285" width="0.1239%" height="15" fill="rgb(217,147,20)" fg:x="41124" fg:w="59"/><text x="86.6141%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.5069%" y="981" width="0.0105%" height="15" fill="rgb(206,188,39)" fg:x="41192" fg:w="5"/><text x="86.7569%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.5069%" y="965" width="0.0105%" height="15" fill="rgb(227,118,25)" fg:x="41192" fg:w="5"/><text x="86.7569%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="86.5006%" y="1205" width="0.0315%" height="15" fill="rgb(248,171,40)" fg:x="41189" fg:w="15"/><text x="86.7506%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="86.5006%" y="1189" width="0.0315%" height="15" fill="rgb(251,90,54)" fg:x="41189" fg:w="15"/><text x="86.7506%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="86.5006%" y="1173" width="0.0315%" height="15" fill="rgb(234,11,46)" fg:x="41189" fg:w="15"/><text x="86.7506%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="86.5006%" y="1157" width="0.0315%" height="15" fill="rgb(229,134,13)" fg:x="41189" fg:w="15"/><text x="86.7506%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="86.5006%" y="1141" width="0.0315%" height="15" fill="rgb(223,129,3)" fg:x="41189" fg:w="15"/><text x="86.7506%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="86.5006%" y="1125" width="0.0315%" height="15" fill="rgb(221,124,13)" fg:x="41189" fg:w="15"/><text x="86.7506%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.03%)</title><rect x="86.5006%" y="1109" width="0.0315%" height="15" fill="rgb(234,3,18)" fg:x="41189" fg:w="15"/><text x="86.7506%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.03%)</title><rect x="86.5006%" y="1093" width="0.0315%" height="15" fill="rgb(249,199,20)" fg:x="41189" fg:w="15"/><text x="86.7506%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="86.5006%" y="1077" width="0.0315%" height="15" fill="rgb(224,134,6)" fg:x="41189" fg:w="15"/><text x="86.7506%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="86.5006%" y="1061" width="0.0315%" height="15" fill="rgb(254,83,26)" fg:x="41189" fg:w="15"/><text x="86.7506%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.03%)</title><rect x="86.5069%" y="1045" width="0.0252%" height="15" fill="rgb(217,88,9)" fg:x="41192" fg:w="12"/><text x="86.7569%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.03%)</title><rect x="86.5069%" y="1029" width="0.0252%" height="15" fill="rgb(225,73,2)" fg:x="41192" fg:w="12"/><text x="86.7569%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="86.5069%" y="1013" width="0.0252%" height="15" fill="rgb(226,44,39)" fg:x="41192" fg:w="12"/><text x="86.7569%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="86.5069%" y="997" width="0.0252%" height="15" fill="rgb(228,53,17)" fg:x="41192" fg:w="12"/><text x="86.7569%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="86.5174%" y="981" width="0.0147%" height="15" fill="rgb(212,27,27)" fg:x="41197" fg:w="7"/><text x="86.7674%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="86.5174%" y="965" width="0.0147%" height="15" fill="rgb(241,50,6)" fg:x="41197" fg:w="7"/><text x="86.7674%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="86.5174%" y="949" width="0.0147%" height="15" fill="rgb(225,28,51)" fg:x="41197" fg:w="7"/><text x="86.7674%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.04%)</title><rect x="86.4964%" y="1253" width="0.0378%" height="15" fill="rgb(215,33,16)" fg:x="41187" fg:w="18"/><text x="86.7464%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="86.4964%" y="1237" width="0.0378%" height="15" fill="rgb(243,40,39)" fg:x="41187" fg:w="18"/><text x="86.7464%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="86.4964%" y="1221" width="0.0378%" height="15" fill="rgb(225,11,42)" fg:x="41187" fg:w="18"/><text x="86.7464%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (25 samples, 0.05%)</title><rect x="86.4880%" y="1301" width="0.0525%" height="15" fill="rgb(241,220,38)" fg:x="41183" fg:w="25"/><text x="86.7380%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.05%)</title><rect x="86.4880%" y="1285" width="0.0525%" height="15" fill="rgb(244,52,35)" fg:x="41183" fg:w="25"/><text x="86.7380%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="86.4880%" y="1269" width="0.0525%" height="15" fill="rgb(246,42,46)" fg:x="41183" fg:w="25"/><text x="86.7380%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (276 samples, 0.58%)</title><rect x="85.9903%" y="1413" width="0.5796%" height="15" fill="rgb(205,184,13)" fg:x="40946" fg:w="276"/><text x="86.2403%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (272 samples, 0.57%)</title><rect x="85.9987%" y="1397" width="0.5712%" height="15" fill="rgb(209,48,36)" fg:x="40950" fg:w="272"/><text x="86.2487%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (248 samples, 0.52%)</title><rect x="86.0491%" y="1381" width="0.5208%" height="15" fill="rgb(244,34,51)" fg:x="40974" fg:w="248"/><text x="86.2991%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (99 samples, 0.21%)</title><rect x="86.3620%" y="1365" width="0.2079%" height="15" fill="rgb(221,107,33)" fg:x="41123" fg:w="99"/><text x="86.6120%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (99 samples, 0.21%)</title><rect x="86.3620%" y="1349" width="0.2079%" height="15" fill="rgb(224,203,12)" fg:x="41123" fg:w="99"/><text x="86.6120%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (99 samples, 0.21%)</title><rect x="86.3620%" y="1333" width="0.2079%" height="15" fill="rgb(230,215,18)" fg:x="41123" fg:w="99"/><text x="86.6120%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (99 samples, 0.21%)</title><rect x="86.3620%" y="1317" width="0.2079%" height="15" fill="rgb(206,185,35)" fg:x="41123" fg:w="99"/><text x="86.6120%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.03%)</title><rect x="86.5405%" y="1301" width="0.0294%" height="15" fill="rgb(228,140,34)" fg:x="41208" fg:w="14"/><text x="86.7905%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.03%)</title><rect x="86.5405%" y="1285" width="0.0294%" height="15" fill="rgb(208,93,13)" fg:x="41208" fg:w="14"/><text x="86.7905%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="86.5405%" y="1269" width="0.0294%" height="15" fill="rgb(221,193,39)" fg:x="41208" fg:w="14"/><text x="86.7905%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="86.5468%" y="1253" width="0.0231%" height="15" fill="rgb(241,132,34)" fg:x="41211" fg:w="11"/><text x="86.7968%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="86.5594%" y="1237" width="0.0105%" height="15" fill="rgb(221,141,10)" fg:x="41217" fg:w="5"/><text x="86.8094%" y="1247.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="86.5762%" y="1365" width="0.0147%" height="15" fill="rgb(226,90,31)" fg:x="41225" fg:w="7"/><text x="86.8262%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="86.6224%" y="1253" width="0.0252%" height="15" fill="rgb(243,75,5)" fg:x="41247" fg:w="12"/><text x="86.8724%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="86.6308%" y="1237" width="0.0168%" height="15" fill="rgb(227,156,21)" fg:x="41251" fg:w="8"/><text x="86.8808%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="86.6371%" y="1221" width="0.0105%" height="15" fill="rgb(250,195,8)" fg:x="41254" fg:w="5"/><text x="86.8871%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="86.6581%" y="1205" width="0.0168%" height="15" fill="rgb(220,134,5)" fg:x="41264" fg:w="8"/><text x="86.9081%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.6644%" y="1189" width="0.0105%" height="15" fill="rgb(246,106,34)" fg:x="41267" fg:w="5"/><text x="86.9144%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="86.6476%" y="1253" width="0.0315%" height="15" fill="rgb(205,1,4)" fg:x="41259" fg:w="15"/><text x="86.8976%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="86.6476%" y="1237" width="0.0315%" height="15" fill="rgb(224,151,29)" fg:x="41259" fg:w="15"/><text x="86.8976%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="86.6581%" y="1221" width="0.0210%" height="15" fill="rgb(251,196,0)" fg:x="41264" fg:w="10"/><text x="86.9081%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.07%)</title><rect x="86.6161%" y="1285" width="0.0693%" height="15" fill="rgb(212,127,0)" fg:x="41244" fg:w="33"/><text x="86.8661%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (30 samples, 0.06%)</title><rect x="86.6224%" y="1269" width="0.0630%" height="15" fill="rgb(236,71,53)" fg:x="41247" fg:w="30"/><text x="86.8724%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.05%)</title><rect x="86.6980%" y="1237" width="0.0462%" height="15" fill="rgb(227,99,0)" fg:x="41283" fg:w="22"/><text x="86.9480%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="86.7043%" y="1221" width="0.0399%" height="15" fill="rgb(239,89,21)" fg:x="41286" fg:w="19"/><text x="86.9543%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="86.7127%" y="1205" width="0.0315%" height="15" fill="rgb(243,122,19)" fg:x="41290" fg:w="15"/><text x="86.9627%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="86.7127%" y="1189" width="0.0315%" height="15" fill="rgb(229,192,45)" fg:x="41290" fg:w="15"/><text x="86.9627%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="86.7148%" y="1173" width="0.0294%" height="15" fill="rgb(235,165,35)" fg:x="41291" fg:w="14"/><text x="86.9648%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.02%)</title><rect x="86.7211%" y="1157" width="0.0231%" height="15" fill="rgb(253,202,0)" fg:x="41294" fg:w="11"/><text x="86.9711%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.02%)</title><rect x="86.7211%" y="1141" width="0.0231%" height="15" fill="rgb(235,51,20)" fg:x="41294" fg:w="11"/><text x="86.9711%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="86.7211%" y="1125" width="0.0231%" height="15" fill="rgb(218,95,46)" fg:x="41294" fg:w="11"/><text x="86.9711%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="86.7211%" y="1109" width="0.0231%" height="15" fill="rgb(212,81,10)" fg:x="41294" fg:w="11"/><text x="86.9711%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="86.7295%" y="1093" width="0.0147%" height="15" fill="rgb(240,59,0)" fg:x="41298" fg:w="7"/><text x="86.9795%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="86.7295%" y="1077" width="0.0147%" height="15" fill="rgb(212,191,42)" fg:x="41298" fg:w="7"/><text x="86.9795%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="86.7295%" y="1061" width="0.0147%" height="15" fill="rgb(233,140,3)" fg:x="41298" fg:w="7"/><text x="86.9795%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="86.7337%" y="1045" width="0.0105%" height="15" fill="rgb(215,69,23)" fg:x="41300" fg:w="5"/><text x="86.9837%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="86.7337%" y="1029" width="0.0105%" height="15" fill="rgb(240,202,20)" fg:x="41300" fg:w="5"/><text x="86.9837%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.7337%" y="1013" width="0.0105%" height="15" fill="rgb(209,146,50)" fg:x="41300" fg:w="5"/><text x="86.9837%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.7337%" y="997" width="0.0105%" height="15" fill="rgb(253,102,54)" fg:x="41300" fg:w="5"/><text x="86.9837%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="86.7610%" y="1189" width="0.0105%" height="15" fill="rgb(250,173,47)" fg:x="41313" fg:w="5"/><text x="87.0110%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.7610%" y="1173" width="0.0105%" height="15" fill="rgb(232,142,7)" fg:x="41313" fg:w="5"/><text x="87.0110%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.03%)</title><rect x="86.7442%" y="1237" width="0.0294%" height="15" fill="rgb(230,157,47)" fg:x="41305" fg:w="14"/><text x="86.9942%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="86.7442%" y="1221" width="0.0294%" height="15" fill="rgb(214,177,35)" fg:x="41305" fg:w="14"/><text x="86.9942%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="86.7505%" y="1205" width="0.0231%" height="15" fill="rgb(234,119,46)" fg:x="41308" fg:w="11"/><text x="87.0005%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (43 samples, 0.09%)</title><rect x="86.6854%" y="1285" width="0.0903%" height="15" fill="rgb(241,180,50)" fg:x="41277" fg:w="43"/><text x="86.9354%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.09%)</title><rect x="86.6854%" y="1269" width="0.0903%" height="15" fill="rgb(221,54,25)" fg:x="41277" fg:w="43"/><text x="86.9354%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (38 samples, 0.08%)</title><rect x="86.6959%" y="1253" width="0.0798%" height="15" fill="rgb(209,157,44)" fg:x="41282" fg:w="38"/><text x="86.9459%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.7757%" y="1221" width="0.0105%" height="15" fill="rgb(246,115,41)" fg:x="41320" fg:w="5"/><text x="87.0257%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.7757%" y="1205" width="0.0105%" height="15" fill="rgb(229,86,1)" fg:x="41320" fg:w="5"/><text x="87.0257%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (86 samples, 0.18%)</title><rect x="86.6077%" y="1317" width="0.1806%" height="15" fill="rgb(240,108,53)" fg:x="41240" fg:w="86"/><text x="86.8577%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (84 samples, 0.18%)</title><rect x="86.6119%" y="1301" width="0.1764%" height="15" fill="rgb(227,134,2)" fg:x="41242" fg:w="84"/><text x="86.8619%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="86.7757%" y="1285" width="0.0126%" height="15" fill="rgb(213,129,25)" fg:x="41320" fg:w="6"/><text x="87.0257%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="86.7757%" y="1269" width="0.0126%" height="15" fill="rgb(226,35,21)" fg:x="41320" fg:w="6"/><text x="87.0257%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="86.7757%" y="1253" width="0.0126%" height="15" fill="rgb(208,129,26)" fg:x="41320" fg:w="6"/><text x="87.0257%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="86.7757%" y="1237" width="0.0126%" height="15" fill="rgb(224,83,6)" fg:x="41320" fg:w="6"/><text x="87.0257%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="86.8135%" y="1237" width="0.0105%" height="15" fill="rgb(227,52,39)" fg:x="41338" fg:w="5"/><text x="87.0635%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.8135%" y="1221" width="0.0105%" height="15" fill="rgb(241,30,17)" fg:x="41338" fg:w="5"/><text x="87.0635%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="86.7967%" y="1269" width="0.0294%" height="15" fill="rgb(246,186,42)" fg:x="41330" fg:w="14"/><text x="87.0467%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="86.8072%" y="1253" width="0.0189%" height="15" fill="rgb(221,169,15)" fg:x="41335" fg:w="9"/><text x="87.0572%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="86.8261%" y="1269" width="0.0168%" height="15" fill="rgb(235,108,21)" fg:x="41344" fg:w="8"/><text x="87.0761%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="86.8261%" y="1253" width="0.0168%" height="15" fill="rgb(219,148,30)" fg:x="41344" fg:w="8"/><text x="87.0761%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.8324%" y="1237" width="0.0105%" height="15" fill="rgb(220,109,5)" fg:x="41347" fg:w="5"/><text x="87.0824%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.8324%" y="1221" width="0.0105%" height="15" fill="rgb(213,203,48)" fg:x="41347" fg:w="5"/><text x="87.0824%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.06%)</title><rect x="86.7883%" y="1317" width="0.0567%" height="15" fill="rgb(244,71,33)" fg:x="41326" fg:w="27"/><text x="87.0383%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.06%)</title><rect x="86.7883%" y="1301" width="0.0567%" height="15" fill="rgb(209,23,2)" fg:x="41326" fg:w="27"/><text x="87.0383%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (24 samples, 0.05%)</title><rect x="86.7946%" y="1285" width="0.0504%" height="15" fill="rgb(219,97,7)" fg:x="41329" fg:w="24"/><text x="87.0446%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="86.8513%" y="1221" width="0.0210%" height="15" fill="rgb(216,161,23)" fg:x="41356" fg:w="10"/><text x="87.1013%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="86.8555%" y="1205" width="0.0168%" height="15" fill="rgb(207,45,42)" fg:x="41358" fg:w="8"/><text x="87.1055%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="86.8576%" y="1189" width="0.0147%" height="15" fill="rgb(241,61,4)" fg:x="41359" fg:w="7"/><text x="87.1076%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="86.8597%" y="1173" width="0.0126%" height="15" fill="rgb(236,170,1)" fg:x="41360" fg:w="6"/><text x="87.1097%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.8618%" y="1157" width="0.0105%" height="15" fill="rgb(239,72,5)" fg:x="41361" fg:w="5"/><text x="87.1118%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="86.8492%" y="1253" width="0.0294%" height="15" fill="rgb(214,13,50)" fg:x="41355" fg:w="14"/><text x="87.0992%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="86.8513%" y="1237" width="0.0273%" height="15" fill="rgb(224,88,9)" fg:x="41356" fg:w="13"/><text x="87.1013%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.8786%" y="1205" width="0.0105%" height="15" fill="rgb(238,192,34)" fg:x="41369" fg:w="5"/><text x="87.1286%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.8786%" y="1189" width="0.0105%" height="15" fill="rgb(217,203,50)" fg:x="41369" fg:w="5"/><text x="87.1286%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.03%)</title><rect x="86.8786%" y="1253" width="0.0336%" height="15" fill="rgb(241,123,32)" fg:x="41369" fg:w="16"/><text x="87.1286%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.03%)</title><rect x="86.8786%" y="1237" width="0.0336%" height="15" fill="rgb(248,151,39)" fg:x="41369" fg:w="16"/><text x="87.1286%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (16 samples, 0.03%)</title><rect x="86.8786%" y="1221" width="0.0336%" height="15" fill="rgb(208,89,6)" fg:x="41369" fg:w="16"/><text x="87.1286%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.02%)</title><rect x="86.8912%" y="1205" width="0.0210%" height="15" fill="rgb(254,43,26)" fg:x="41375" fg:w="10"/><text x="87.1412%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.02%)</title><rect x="86.8912%" y="1189" width="0.0210%" height="15" fill="rgb(216,158,13)" fg:x="41375" fg:w="10"/><text x="87.1412%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="86.8912%" y="1173" width="0.0210%" height="15" fill="rgb(212,47,37)" fg:x="41375" fg:w="10"/><text x="87.1412%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="86.8912%" y="1157" width="0.0210%" height="15" fill="rgb(254,16,10)" fg:x="41375" fg:w="10"/><text x="87.1412%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="86.8975%" y="1141" width="0.0147%" height="15" fill="rgb(223,228,16)" fg:x="41378" fg:w="7"/><text x="87.1475%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="86.8975%" y="1125" width="0.0147%" height="15" fill="rgb(249,108,50)" fg:x="41378" fg:w="7"/><text x="87.1475%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="86.8975%" y="1109" width="0.0147%" height="15" fill="rgb(208,220,5)" fg:x="41378" fg:w="7"/><text x="87.1475%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="86.8996%" y="1093" width="0.0126%" height="15" fill="rgb(217,89,48)" fg:x="41379" fg:w="6"/><text x="87.1496%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="86.8996%" y="1077" width="0.0126%" height="15" fill="rgb(212,113,41)" fg:x="41379" fg:w="6"/><text x="87.1496%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="86.8996%" y="1061" width="0.0126%" height="15" fill="rgb(231,127,5)" fg:x="41379" fg:w="6"/><text x="87.1496%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="86.8996%" y="1045" width="0.0126%" height="15" fill="rgb(217,141,17)" fg:x="41379" fg:w="6"/><text x="87.1496%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="86.8996%" y="1029" width="0.0126%" height="15" fill="rgb(245,125,54)" fg:x="41379" fg:w="6"/><text x="87.1496%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="86.8996%" y="1013" width="0.0126%" height="15" fill="rgb(248,125,3)" fg:x="41379" fg:w="6"/><text x="87.1496%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="86.8996%" y="997" width="0.0126%" height="15" fill="rgb(236,119,51)" fg:x="41379" fg:w="6"/><text x="87.1496%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="86.8996%" y="981" width="0.0126%" height="15" fill="rgb(239,99,8)" fg:x="41379" fg:w="6"/><text x="87.1496%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="86.9017%" y="965" width="0.0105%" height="15" fill="rgb(224,228,4)" fg:x="41380" fg:w="5"/><text x="87.1517%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="86.9017%" y="949" width="0.0105%" height="15" fill="rgb(220,131,45)" fg:x="41380" fg:w="5"/><text x="87.1517%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.9017%" y="933" width="0.0105%" height="15" fill="rgb(215,62,5)" fg:x="41380" fg:w="5"/><text x="87.1517%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.9017%" y="917" width="0.0105%" height="15" fill="rgb(253,12,24)" fg:x="41380" fg:w="5"/><text x="87.1517%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.9017%" y="901" width="0.0105%" height="15" fill="rgb(248,120,50)" fg:x="41380" fg:w="5"/><text x="87.1517%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.9017%" y="885" width="0.0105%" height="15" fill="rgb(245,194,10)" fg:x="41380" fg:w="5"/><text x="87.1517%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (159 samples, 0.33%)</title><rect x="86.5930%" y="1349" width="0.3339%" height="15" fill="rgb(241,149,38)" fg:x="41233" fg:w="159"/><text x="86.8430%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (155 samples, 0.33%)</title><rect x="86.6014%" y="1333" width="0.3255%" height="15" fill="rgb(219,215,7)" fg:x="41237" fg:w="155"/><text x="86.8514%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (39 samples, 0.08%)</title><rect x="86.8450%" y="1317" width="0.0819%" height="15" fill="rgb(208,120,31)" fg:x="41353" fg:w="39"/><text x="87.0950%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (39 samples, 0.08%)</title><rect x="86.8450%" y="1301" width="0.0819%" height="15" fill="rgb(244,30,8)" fg:x="41353" fg:w="39"/><text x="87.0950%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.08%)</title><rect x="86.8450%" y="1285" width="0.0819%" height="15" fill="rgb(238,35,44)" fg:x="41353" fg:w="39"/><text x="87.0950%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (38 samples, 0.08%)</title><rect x="86.8471%" y="1269" width="0.0798%" height="15" fill="rgb(243,218,37)" fg:x="41354" fg:w="38"/><text x="87.0971%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="86.9122%" y="1253" width="0.0147%" height="15" fill="rgb(218,169,10)" fg:x="41385" fg:w="7"/><text x="87.1622%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="86.9122%" y="1237" width="0.0147%" height="15" fill="rgb(221,144,10)" fg:x="41385" fg:w="7"/><text x="87.1622%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="86.9122%" y="1221" width="0.0147%" height="15" fill="rgb(226,41,38)" fg:x="41385" fg:w="7"/><text x="87.1622%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.9164%" y="1205" width="0.0105%" height="15" fill="rgb(228,3,1)" fg:x="41387" fg:w="5"/><text x="87.1664%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="86.9374%" y="1269" width="0.0147%" height="15" fill="rgb(209,129,12)" fg:x="41397" fg:w="7"/><text x="87.1874%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.9416%" y="1253" width="0.0105%" height="15" fill="rgb(213,136,33)" fg:x="41399" fg:w="5"/><text x="87.1916%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="86.9353%" y="1301" width="0.0273%" height="15" fill="rgb(209,181,29)" fg:x="41396" fg:w="13"/><text x="87.1853%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="86.9374%" y="1285" width="0.0252%" height="15" fill="rgb(234,173,18)" fg:x="41397" fg:w="12"/><text x="87.1874%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="86.9521%" y="1269" width="0.0105%" height="15" fill="rgb(227,73,47)" fg:x="41404" fg:w="5"/><text x="87.2021%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.9521%" y="1253" width="0.0105%" height="15" fill="rgb(234,9,34)" fg:x="41404" fg:w="5"/><text x="87.2021%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.02%)</title><rect x="86.9626%" y="1301" width="0.0231%" height="15" fill="rgb(235,172,15)" fg:x="41409" fg:w="11"/><text x="87.2126%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="86.9626%" y="1285" width="0.0231%" height="15" fill="rgb(245,61,2)" fg:x="41409" fg:w="11"/><text x="87.2126%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="86.9626%" y="1269" width="0.0231%" height="15" fill="rgb(238,39,47)" fg:x="41409" fg:w="11"/><text x="87.2126%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="86.9752%" y="1253" width="0.0105%" height="15" fill="rgb(234,37,24)" fg:x="41415" fg:w="5"/><text x="87.2252%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="86.9752%" y="1237" width="0.0105%" height="15" fill="rgb(248,223,24)" fg:x="41415" fg:w="5"/><text x="87.2252%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (37 samples, 0.08%)</title><rect x="86.9269%" y="1349" width="0.0777%" height="15" fill="rgb(223,12,15)" fg:x="41392" fg:w="37"/><text x="87.1769%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (37 samples, 0.08%)</title><rect x="86.9269%" y="1333" width="0.0777%" height="15" fill="rgb(249,6,3)" fg:x="41392" fg:w="37"/><text x="87.1769%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (33 samples, 0.07%)</title><rect x="86.9353%" y="1317" width="0.0693%" height="15" fill="rgb(237,105,33)" fg:x="41396" fg:w="33"/><text x="87.1853%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="86.9857%" y="1301" width="0.0189%" height="15" fill="rgb(252,208,35)" fg:x="41420" fg:w="9"/><text x="87.2357%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="86.9857%" y="1285" width="0.0189%" height="15" fill="rgb(215,181,35)" fg:x="41420" fg:w="9"/><text x="87.2357%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="86.9857%" y="1269" width="0.0189%" height="15" fill="rgb(246,212,3)" fg:x="41420" fg:w="9"/><text x="87.2357%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="86.9857%" y="1253" width="0.0189%" height="15" fill="rgb(247,156,24)" fg:x="41420" fg:w="9"/><text x="87.2357%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="86.9941%" y="1237" width="0.0105%" height="15" fill="rgb(248,9,31)" fg:x="41424" fg:w="5"/><text x="87.2441%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="86.9941%" y="1221" width="0.0105%" height="15" fill="rgb(234,26,45)" fg:x="41424" fg:w="5"/><text x="87.2441%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="86.9941%" y="1205" width="0.0105%" height="15" fill="rgb(249,11,32)" fg:x="41424" fg:w="5"/><text x="87.2441%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="87.0214%" y="1189" width="0.0126%" height="15" fill="rgb(249,162,33)" fg:x="41437" fg:w="6"/><text x="87.2714%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="87.0214%" y="1221" width="0.0252%" height="15" fill="rgb(232,4,32)" fg:x="41437" fg:w="12"/><text x="87.2714%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="87.0214%" y="1205" width="0.0252%" height="15" fill="rgb(212,5,45)" fg:x="41437" fg:w="12"/><text x="87.2714%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="87.0340%" y="1189" width="0.0126%" height="15" fill="rgb(227,95,13)" fg:x="41443" fg:w="6"/><text x="87.2840%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="87.0340%" y="1173" width="0.0126%" height="15" fill="rgb(223,205,10)" fg:x="41443" fg:w="6"/><text x="87.2840%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.05%)</title><rect x="87.0130%" y="1253" width="0.0504%" height="15" fill="rgb(222,178,8)" fg:x="41433" fg:w="24"/><text x="87.2630%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (20 samples, 0.04%)</title><rect x="87.0214%" y="1237" width="0.0420%" height="15" fill="rgb(216,13,22)" fg:x="41437" fg:w="20"/><text x="87.2714%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="87.0466%" y="1221" width="0.0168%" height="15" fill="rgb(240,167,12)" fg:x="41449" fg:w="8"/><text x="87.2966%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="87.0466%" y="1205" width="0.0168%" height="15" fill="rgb(235,68,35)" fg:x="41449" fg:w="8"/><text x="87.2966%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="87.0466%" y="1189" width="0.0168%" height="15" fill="rgb(253,40,27)" fg:x="41449" fg:w="8"/><text x="87.2966%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="87.0466%" y="1173" width="0.0168%" height="15" fill="rgb(214,19,28)" fg:x="41449" fg:w="8"/><text x="87.2966%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="87.0508%" y="1157" width="0.0126%" height="15" fill="rgb(210,167,45)" fg:x="41451" fg:w="6"/><text x="87.3008%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="87.0529%" y="1141" width="0.0105%" height="15" fill="rgb(232,97,40)" fg:x="41452" fg:w="5"/><text x="87.3029%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="87.0529%" y="1125" width="0.0105%" height="15" fill="rgb(250,35,23)" fg:x="41452" fg:w="5"/><text x="87.3029%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="87.0634%" y="1253" width="0.0168%" height="15" fill="rgb(248,47,53)" fg:x="41457" fg:w="8"/><text x="87.3134%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="87.0634%" y="1237" width="0.0168%" height="15" fill="rgb(226,58,50)" fg:x="41457" fg:w="8"/><text x="87.3134%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="87.0697%" y="1221" width="0.0105%" height="15" fill="rgb(217,105,26)" fg:x="41460" fg:w="5"/><text x="87.3197%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="87.0802%" y="1189" width="0.0105%" height="15" fill="rgb(208,64,1)" fg:x="41465" fg:w="5"/><text x="87.3302%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (44 samples, 0.09%)</title><rect x="87.0109%" y="1285" width="0.0924%" height="15" fill="rgb(214,80,1)" fg:x="41432" fg:w="44"/><text x="87.2609%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (43 samples, 0.09%)</title><rect x="87.0130%" y="1269" width="0.0903%" height="15" fill="rgb(206,175,26)" fg:x="41433" fg:w="43"/><text x="87.2630%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.02%)</title><rect x="87.0802%" y="1253" width="0.0231%" height="15" fill="rgb(235,156,37)" fg:x="41465" fg:w="11"/><text x="87.3302%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.02%)</title><rect x="87.0802%" y="1237" width="0.0231%" height="15" fill="rgb(213,100,9)" fg:x="41465" fg:w="11"/><text x="87.3302%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="87.0802%" y="1221" width="0.0231%" height="15" fill="rgb(241,15,13)" fg:x="41465" fg:w="11"/><text x="87.3302%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="87.0802%" y="1205" width="0.0231%" height="15" fill="rgb(205,97,43)" fg:x="41465" fg:w="11"/><text x="87.3302%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="87.0907%" y="1189" width="0.0126%" height="15" fill="rgb(216,106,32)" fg:x="41470" fg:w="6"/><text x="87.3407%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="87.0907%" y="1173" width="0.0126%" height="15" fill="rgb(226,200,8)" fg:x="41470" fg:w="6"/><text x="87.3407%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="87.0907%" y="1157" width="0.0126%" height="15" fill="rgb(244,54,29)" fg:x="41470" fg:w="6"/><text x="87.3407%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="87.0928%" y="1141" width="0.0105%" height="15" fill="rgb(252,169,12)" fg:x="41471" fg:w="5"/><text x="87.3428%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="87.0928%" y="1125" width="0.0105%" height="15" fill="rgb(231,199,11)" fg:x="41471" fg:w="5"/><text x="87.3428%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="87.0928%" y="1109" width="0.0105%" height="15" fill="rgb(233,191,18)" fg:x="41471" fg:w="5"/><text x="87.3428%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="87.0928%" y="1093" width="0.0105%" height="15" fill="rgb(215,83,47)" fg:x="41471" fg:w="5"/><text x="87.3428%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="87.1159%" y="1189" width="0.0105%" height="15" fill="rgb(251,67,19)" fg:x="41482" fg:w="5"/><text x="87.3659%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="87.1159%" y="1173" width="0.0105%" height="15" fill="rgb(240,7,20)" fg:x="41482" fg:w="5"/><text x="87.3659%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="87.1264%" y="1189" width="0.0168%" height="15" fill="rgb(210,150,26)" fg:x="41487" fg:w="8"/><text x="87.3764%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="87.1264%" y="1173" width="0.0168%" height="15" fill="rgb(228,75,42)" fg:x="41487" fg:w="8"/><text x="87.3764%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="87.1264%" y="1157" width="0.0168%" height="15" fill="rgb(237,134,48)" fg:x="41487" fg:w="8"/><text x="87.3764%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="87.1306%" y="1141" width="0.0126%" height="15" fill="rgb(205,80,50)" fg:x="41489" fg:w="6"/><text x="87.3806%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="87.1306%" y="1125" width="0.0126%" height="15" fill="rgb(217,74,48)" fg:x="41489" fg:w="6"/><text x="87.3806%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="87.1306%" y="1109" width="0.0126%" height="15" fill="rgb(205,82,50)" fg:x="41489" fg:w="6"/><text x="87.3806%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="87.1306%" y="1093" width="0.0126%" height="15" fill="rgb(228,1,33)" fg:x="41489" fg:w="6"/><text x="87.3806%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="87.1306%" y="1077" width="0.0126%" height="15" fill="rgb(214,50,23)" fg:x="41489" fg:w="6"/><text x="87.3806%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="87.1306%" y="1061" width="0.0126%" height="15" fill="rgb(210,62,9)" fg:x="41489" fg:w="6"/><text x="87.3806%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="87.1306%" y="1045" width="0.0126%" height="15" fill="rgb(210,104,37)" fg:x="41489" fg:w="6"/><text x="87.3806%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="87.1306%" y="1029" width="0.0126%" height="15" fill="rgb(232,104,43)" fg:x="41489" fg:w="6"/><text x="87.3806%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.03%)</title><rect x="87.1117%" y="1221" width="0.0336%" height="15" fill="rgb(244,52,6)" fg:x="41480" fg:w="16"/><text x="87.3617%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="87.1159%" y="1205" width="0.0294%" height="15" fill="rgb(211,174,52)" fg:x="41482" fg:w="14"/><text x="87.3659%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (880 samples, 1.85%)</title><rect x="85.3078%" y="1461" width="1.8481%" height="15" fill="rgb(229,48,4)" fg:x="40621" fg:w="880"/><text x="85.5578%" y="1471.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (878 samples, 1.84%)</title><rect x="85.3120%" y="1445" width="1.8439%" height="15" fill="rgb(205,155,16)" fg:x="40623" fg:w="878"/><text x="85.5620%" y="1455.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (847 samples, 1.78%)</title><rect x="85.3771%" y="1429" width="1.7788%" height="15" fill="rgb(211,141,53)" fg:x="40654" fg:w="847"/><text x="85.6271%" y="1439.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (279 samples, 0.59%)</title><rect x="86.5699%" y="1413" width="0.5859%" height="15" fill="rgb(240,148,11)" fg:x="41222" fg:w="279"/><text x="86.8199%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (278 samples, 0.58%)</title><rect x="86.5720%" y="1397" width="0.5838%" height="15" fill="rgb(214,45,23)" fg:x="41223" fg:w="278"/><text x="86.8220%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (278 samples, 0.58%)</title><rect x="86.5720%" y="1381" width="0.5838%" height="15" fill="rgb(248,74,26)" fg:x="41223" fg:w="278"/><text x="86.8220%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (269 samples, 0.56%)</title><rect x="86.5909%" y="1365" width="0.5649%" height="15" fill="rgb(218,121,16)" fg:x="41232" fg:w="269"/><text x="86.8409%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (72 samples, 0.15%)</title><rect x="87.0046%" y="1349" width="0.1512%" height="15" fill="rgb(218,10,47)" fg:x="41429" fg:w="72"/><text x="87.2546%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (72 samples, 0.15%)</title><rect x="87.0046%" y="1333" width="0.1512%" height="15" fill="rgb(227,99,14)" fg:x="41429" fg:w="72"/><text x="87.2546%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (71 samples, 0.15%)</title><rect x="87.0067%" y="1317" width="0.1491%" height="15" fill="rgb(229,83,46)" fg:x="41430" fg:w="71"/><text x="87.2567%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (69 samples, 0.14%)</title><rect x="87.0109%" y="1301" width="0.1449%" height="15" fill="rgb(228,25,1)" fg:x="41432" fg:w="69"/><text x="87.2609%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.04%)</title><rect x="87.1117%" y="1285" width="0.0441%" height="15" fill="rgb(252,190,15)" fg:x="41480" fg:w="21"/><text x="87.3617%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (21 samples, 0.04%)</title><rect x="87.1117%" y="1269" width="0.0441%" height="15" fill="rgb(213,103,51)" fg:x="41480" fg:w="21"/><text x="87.3617%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="87.1117%" y="1253" width="0.0441%" height="15" fill="rgb(220,38,44)" fg:x="41480" fg:w="21"/><text x="87.3617%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (21 samples, 0.04%)</title><rect x="87.1117%" y="1237" width="0.0441%" height="15" fill="rgb(210,45,26)" fg:x="41480" fg:w="21"/><text x="87.3617%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="87.1453%" y="1221" width="0.0105%" height="15" fill="rgb(205,95,48)" fg:x="41496" fg:w="5"/><text x="87.3953%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="87.1453%" y="1205" width="0.0105%" height="15" fill="rgb(225,179,37)" fg:x="41496" fg:w="5"/><text x="87.3953%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="87.1453%" y="1189" width="0.0105%" height="15" fill="rgb(230,209,3)" fg:x="41496" fg:w="5"/><text x="87.3953%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="87.1453%" y="1173" width="0.0105%" height="15" fill="rgb(248,12,46)" fg:x="41496" fg:w="5"/><text x="87.3953%" y="1183.50"></text></g><g><title>libsystem_kernel.dylib`swtch_pri (12 samples, 0.03%)</title><rect x="87.1558%" y="1445" width="0.0252%" height="15" fill="rgb(234,18,0)" fg:x="41501" fg:w="12"/><text x="87.4058%" y="1455.50"></text></g><g><title>libsystem_m.dylib`exp (16 samples, 0.03%)</title><rect x="87.1915%" y="1413" width="0.0336%" height="15" fill="rgb(238,197,14)" fg:x="41518" fg:w="16"/><text x="87.4415%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (7 samples, 0.01%)</title><rect x="87.2273%" y="1413" width="0.0147%" height="15" fill="rgb(251,162,48)" fg:x="41535" fg:w="7"/><text x="87.4773%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (7 samples, 0.01%)</title><rect x="87.2273%" y="1397" width="0.0147%" height="15" fill="rgb(237,73,42)" fg:x="41535" fg:w="7"/><text x="87.4773%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (7 samples, 0.01%)</title><rect x="87.2273%" y="1381" width="0.0147%" height="15" fill="rgb(211,108,8)" fg:x="41535" fg:w="7"/><text x="87.4773%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (7 samples, 0.01%)</title><rect x="87.2273%" y="1365" width="0.0147%" height="15" fill="rgb(213,45,22)" fg:x="41535" fg:w="7"/><text x="87.4773%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (7 samples, 0.01%)</title><rect x="87.2273%" y="1349" width="0.0147%" height="15" fill="rgb(252,154,5)" fg:x="41535" fg:w="7"/><text x="87.4773%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="87.2315%" y="1333" width="0.0105%" height="15" fill="rgb(221,79,52)" fg:x="41537" fg:w="5"/><text x="87.4815%" y="1343.50"></text></g><g><title>libsystem_m.dylib`exp (16 samples, 0.03%)</title><rect x="87.2567%" y="1381" width="0.0336%" height="15" fill="rgb(229,220,36)" fg:x="41549" fg:w="16"/><text x="87.5067%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::Producer::fold_with (6 samples, 0.01%)</title><rect x="87.2903%" y="1381" width="0.0126%" height="15" fill="rgb(211,17,16)" fg:x="41565" fg:w="6"/><text x="87.5403%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (6 samples, 0.01%)</title><rect x="87.2903%" y="1365" width="0.0126%" height="15" fill="rgb(222,55,31)" fg:x="41565" fg:w="6"/><text x="87.5403%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::compare::estimates::stats (6 samples, 0.01%)</title><rect x="87.2903%" y="1349" width="0.0126%" height="15" fill="rgb(221,221,31)" fg:x="41565" fg:w="6"/><text x="87.5403%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="87.2903%" y="1333" width="0.0126%" height="15" fill="rgb(227,168,26)" fg:x="41565" fg:w="6"/><text x="87.5403%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="87.2903%" y="1317" width="0.0126%" height="15" fill="rgb(224,139,9)" fg:x="41565" fg:w="6"/><text x="87.5403%" y="1327.50"></text></g><g><title>libsystem_m.dylib`exp (17 samples, 0.04%)</title><rect x="87.3092%" y="1349" width="0.0357%" height="15" fill="rgb(254,172,0)" fg:x="41574" fg:w="17"/><text x="87.5592%" y="1359.50"></text></g><g><title>libsystem_m.dylib`exp (17 samples, 0.04%)</title><rect x="87.3596%" y="1317" width="0.0357%" height="15" fill="rgb(235,203,1)" fg:x="41598" fg:w="17"/><text x="87.6096%" y="1327.50"></text></g><g><title>libsystem_m.dylib`exp (20 samples, 0.04%)</title><rect x="87.4037%" y="1285" width="0.0420%" height="15" fill="rgb(216,205,24)" fg:x="41619" fg:w="20"/><text x="87.6537%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="87.4541%" y="1253" width="0.0147%" height="15" fill="rgb(233,24,6)" fg:x="41643" fg:w="7"/><text x="87.7041%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::impls::_&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (15 samples, 0.03%)</title><rect x="87.4772%" y="1205" width="0.0315%" height="15" fill="rgb(244,110,9)" fg:x="41654" fg:w="15"/><text x="87.7272%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`oorandom::Rand64::rand_range (9 samples, 0.02%)</title><rect x="87.4898%" y="1189" width="0.0189%" height="15" fill="rgb(239,222,42)" fg:x="41660" fg:w="9"/><text x="87.7398%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.07%)</title><rect x="87.4688%" y="1237" width="0.0714%" height="15" fill="rgb(218,145,13)" fg:x="41650" fg:w="34"/><text x="87.7188%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (32 samples, 0.07%)</title><rect x="87.4730%" y="1221" width="0.0672%" height="15" fill="rgb(207,69,11)" fg:x="41652" fg:w="32"/><text x="87.7230%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`oorandom::Rand64::rand_range (7 samples, 0.01%)</title><rect x="87.5255%" y="1205" width="0.0147%" height="15" fill="rgb(220,223,22)" fg:x="41677" fg:w="7"/><text x="87.7755%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="87.5402%" y="1237" width="0.0168%" height="15" fill="rgb(245,102,5)" fg:x="41684" fg:w="8"/><text x="87.7902%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="87.5402%" y="1221" width="0.0168%" height="15" fill="rgb(211,148,2)" fg:x="41684" fg:w="8"/><text x="87.7902%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (51 samples, 0.11%)</title><rect x="87.4520%" y="1269" width="0.1071%" height="15" fill="rgb(241,13,44)" fg:x="41642" fg:w="51"/><text x="87.7020%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (43 samples, 0.09%)</title><rect x="87.4688%" y="1253" width="0.0903%" height="15" fill="rgb(219,137,21)" fg:x="41650" fg:w="43"/><text x="87.7188%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="87.5591%" y="1237" width="0.0105%" height="15" fill="rgb(242,206,5)" fg:x="41693" fg:w="5"/><text x="87.8091%" y="1247.50"></text></g><g><title>libsystem_m.dylib`exp (8 samples, 0.02%)</title><rect x="87.5738%" y="1205" width="0.0168%" height="15" fill="rgb(217,114,22)" fg:x="41700" fg:w="8"/><text x="87.8238%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="87.5738%" y="1221" width="0.0294%" height="15" fill="rgb(253,206,42)" fg:x="41700" fg:w="14"/><text x="87.8238%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.01%)</title><rect x="87.5927%" y="1205" width="0.0105%" height="15" fill="rgb(236,102,18)" fg:x="41709" fg:w="5"/><text x="87.8427%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (5 samples, 0.01%)</title><rect x="87.5927%" y="1189" width="0.0105%" height="15" fill="rgb(208,59,49)" fg:x="41709" fg:w="5"/><text x="87.8427%" y="1199.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="87.6074%" y="1189" width="0.0147%" height="15" fill="rgb(215,194,28)" fg:x="41716" fg:w="7"/><text x="87.8574%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (34 samples, 0.07%)</title><rect x="87.5591%" y="1269" width="0.0714%" height="15" fill="rgb(243,207,11)" fg:x="41693" fg:w="34"/><text x="87.8091%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.07%)</title><rect x="87.5591%" y="1253" width="0.0714%" height="15" fill="rgb(254,179,35)" fg:x="41693" fg:w="34"/><text x="87.8091%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (28 samples, 0.06%)</title><rect x="87.5717%" y="1237" width="0.0588%" height="15" fill="rgb(235,97,3)" fg:x="41699" fg:w="28"/><text x="87.8217%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.03%)</title><rect x="87.6032%" y="1221" width="0.0273%" height="15" fill="rgb(215,155,33)" fg:x="41714" fg:w="13"/><text x="87.8532%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="87.6053%" y="1205" width="0.0252%" height="15" fill="rgb(223,128,12)" fg:x="41715" fg:w="12"/><text x="87.8553%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (112 samples, 0.24%)</title><rect x="87.3974%" y="1301" width="0.2352%" height="15" fill="rgb(208,157,18)" fg:x="41616" fg:w="112"/><text x="87.6474%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (88 samples, 0.18%)</title><rect x="87.4478%" y="1285" width="0.1848%" height="15" fill="rgb(249,70,54)" fg:x="41640" fg:w="88"/><text x="87.6978%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (15 samples, 0.03%)</title><rect x="87.6494%" y="1269" width="0.0315%" height="15" fill="rgb(244,118,24)" fg:x="41736" fg:w="15"/><text x="87.8994%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="87.6872%" y="1237" width="0.0126%" height="15" fill="rgb(211,54,0)" fg:x="41754" fg:w="6"/><text x="87.9372%" y="1247.50"></text></g><g><title>libsystem_m.dylib`exp (9 samples, 0.02%)</title><rect x="87.7040%" y="1205" width="0.0189%" height="15" fill="rgb(245,137,45)" fg:x="41762" fg:w="9"/><text x="87.9540%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="87.7040%" y="1221" width="0.0273%" height="15" fill="rgb(232,154,31)" fg:x="41762" fg:w="13"/><text x="87.9540%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.07%)</title><rect x="87.6872%" y="1253" width="0.0672%" height="15" fill="rgb(253,6,39)" fg:x="41754" fg:w="32"/><text x="87.9372%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="87.7019%" y="1237" width="0.0525%" height="15" fill="rgb(234,183,24)" fg:x="41761" fg:w="25"/><text x="87.9519%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.02%)</title><rect x="87.7313%" y="1221" width="0.0231%" height="15" fill="rgb(252,84,40)" fg:x="41775" fg:w="11"/><text x="87.9813%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="87.7313%" y="1205" width="0.0231%" height="15" fill="rgb(224,65,2)" fg:x="41775" fg:w="11"/><text x="87.9813%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.01%)</title><rect x="87.7439%" y="1189" width="0.0105%" height="15" fill="rgb(229,38,24)" fg:x="41781" fg:w="5"/><text x="87.9939%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (5 samples, 0.01%)</title><rect x="87.7439%" y="1173" width="0.0105%" height="15" fill="rgb(218,131,50)" fg:x="41781" fg:w="5"/><text x="87.9939%" y="1183.50"></text></g><g><title>libsystem_m.dylib`exp (9 samples, 0.02%)</title><rect x="87.7649%" y="1221" width="0.0189%" height="15" fill="rgb(233,106,18)" fg:x="41791" fg:w="9"/><text x="88.0149%" y="1231.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="87.7922%" y="1189" width="0.0147%" height="15" fill="rgb(220,216,11)" fg:x="41804" fg:w="7"/><text x="88.0422%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="87.7838%" y="1205" width="0.0315%" height="15" fill="rgb(251,100,45)" fg:x="41800" fg:w="15"/><text x="88.0338%" y="1215.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="87.8237%" y="1173" width="0.0105%" height="15" fill="rgb(235,143,32)" fg:x="41819" fg:w="5"/><text x="88.0737%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.03%)</title><rect x="87.8153%" y="1205" width="0.0294%" height="15" fill="rgb(248,124,34)" fg:x="41815" fg:w="14"/><text x="88.0653%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="87.8174%" y="1189" width="0.0273%" height="15" fill="rgb(225,221,4)" fg:x="41816" fg:w="13"/><text x="88.0674%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (44 samples, 0.09%)</title><rect x="87.7544%" y="1253" width="0.0924%" height="15" fill="rgb(242,27,43)" fg:x="41786" fg:w="44"/><text x="88.0044%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.09%)</title><rect x="87.7586%" y="1237" width="0.0882%" height="15" fill="rgb(227,54,8)" fg:x="41788" fg:w="42"/><text x="88.0086%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (30 samples, 0.06%)</title><rect x="87.7838%" y="1221" width="0.0630%" height="15" fill="rgb(253,139,49)" fg:x="41800" fg:w="30"/><text x="88.0338%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (107 samples, 0.22%)</title><rect x="87.6326%" y="1301" width="0.2247%" height="15" fill="rgb(231,26,43)" fg:x="41728" fg:w="107"/><text x="87.8826%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (104 samples, 0.22%)</title><rect x="87.6389%" y="1285" width="0.2184%" height="15" fill="rgb(207,121,39)" fg:x="41731" fg:w="104"/><text x="87.8889%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (83 samples, 0.17%)</title><rect x="87.6830%" y="1269" width="0.1743%" height="15" fill="rgb(223,101,35)" fg:x="41752" fg:w="83"/><text x="87.9330%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="87.8468%" y="1253" width="0.0105%" height="15" fill="rgb(232,87,23)" fg:x="41830" fg:w="5"/><text x="88.0968%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="87.8468%" y="1237" width="0.0105%" height="15" fill="rgb(225,180,29)" fg:x="41830" fg:w="5"/><text x="88.0968%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="87.8468%" y="1221" width="0.0105%" height="15" fill="rgb(225,25,17)" fg:x="41830" fg:w="5"/><text x="88.0968%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="87.8468%" y="1205" width="0.0105%" height="15" fill="rgb(223,8,52)" fg:x="41830" fg:w="5"/><text x="88.0968%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (241 samples, 0.51%)</title><rect x="87.3554%" y="1333" width="0.5061%" height="15" fill="rgb(246,42,21)" fg:x="41596" fg:w="241"/><text x="87.6054%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (221 samples, 0.46%)</title><rect x="87.3974%" y="1317" width="0.4641%" height="15" fill="rgb(205,64,43)" fg:x="41616" fg:w="221"/><text x="87.6474%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$exp (5 samples, 0.01%)</title><rect x="87.8615%" y="1317" width="0.0105%" height="15" fill="rgb(221,160,13)" fg:x="41837" fg:w="5"/><text x="88.1115%" y="1327.50"></text></g><g><title>libsystem_m.dylib`exp (15 samples, 0.03%)</title><rect x="87.8783%" y="1301" width="0.0315%" height="15" fill="rgb(239,58,35)" fg:x="41845" fg:w="15"/><text x="88.1283%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (13 samples, 0.03%)</title><rect x="87.9203%" y="1269" width="0.0273%" height="15" fill="rgb(251,26,40)" fg:x="41865" fg:w="13"/><text x="88.1703%" y="1279.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="87.9518%" y="1237" width="0.0105%" height="15" fill="rgb(247,0,4)" fg:x="41880" fg:w="5"/><text x="88.2018%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="87.9623%" y="1221" width="0.0126%" height="15" fill="rgb(218,130,10)" fg:x="41885" fg:w="6"/><text x="88.2123%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="87.9497%" y="1253" width="0.0420%" height="15" fill="rgb(239,32,7)" fg:x="41879" fg:w="20"/><text x="88.1997%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="87.9623%" y="1237" width="0.0294%" height="15" fill="rgb(210,192,24)" fg:x="41885" fg:w="14"/><text x="88.2123%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="87.9749%" y="1221" width="0.0168%" height="15" fill="rgb(226,212,17)" fg:x="41891" fg:w="8"/><text x="88.2249%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="87.9770%" y="1205" width="0.0147%" height="15" fill="rgb(219,201,28)" fg:x="41892" fg:w="7"/><text x="88.2270%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="88.0064%" y="1205" width="0.0168%" height="15" fill="rgb(235,207,41)" fg:x="41906" fg:w="8"/><text x="88.2564%" y="1215.50"></text></g><g><title>libsystem_m.dylib`exp (9 samples, 0.02%)</title><rect x="88.0232%" y="1173" width="0.0189%" height="15" fill="rgb(241,95,54)" fg:x="41914" fg:w="9"/><text x="88.2732%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (66 samples, 0.14%)</title><rect x="87.9161%" y="1285" width="0.1386%" height="15" fill="rgb(248,12,23)" fg:x="41863" fg:w="66"/><text x="88.1661%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (50 samples, 0.11%)</title><rect x="87.9497%" y="1269" width="0.1050%" height="15" fill="rgb(228,173,4)" fg:x="41879" fg:w="50"/><text x="88.1997%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (30 samples, 0.06%)</title><rect x="87.9917%" y="1253" width="0.0630%" height="15" fill="rgb(254,99,5)" fg:x="41899" fg:w="30"/><text x="88.2417%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.06%)</title><rect x="87.9959%" y="1237" width="0.0588%" height="15" fill="rgb(212,184,17)" fg:x="41901" fg:w="28"/><text x="88.2459%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (23 samples, 0.05%)</title><rect x="88.0064%" y="1221" width="0.0483%" height="15" fill="rgb(252,174,1)" fg:x="41906" fg:w="23"/><text x="88.2564%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="88.0232%" y="1205" width="0.0315%" height="15" fill="rgb(241,118,51)" fg:x="41914" fg:w="15"/><text x="88.2732%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="88.0232%" y="1189" width="0.0315%" height="15" fill="rgb(227,94,47)" fg:x="41914" fg:w="15"/><text x="88.2732%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.01%)</title><rect x="88.0421%" y="1173" width="0.0126%" height="15" fill="rgb(229,104,2)" fg:x="41923" fg:w="6"/><text x="88.2921%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (6 samples, 0.01%)</title><rect x="88.0421%" y="1157" width="0.0126%" height="15" fill="rgb(219,28,31)" fg:x="41923" fg:w="6"/><text x="88.2921%" y="1167.50"></text></g><g><title>libsystem_m.dylib`exp (10 samples, 0.02%)</title><rect x="88.0610%" y="1253" width="0.0210%" height="15" fill="rgb(233,109,36)" fg:x="41932" fg:w="10"/><text x="88.3110%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (8 samples, 0.02%)</title><rect x="88.0904%" y="1221" width="0.0168%" height="15" fill="rgb(246,88,11)" fg:x="41946" fg:w="8"/><text x="88.3404%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="88.0841%" y="1237" width="0.0420%" height="15" fill="rgb(209,212,17)" fg:x="41943" fg:w="20"/><text x="88.3341%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="88.1072%" y="1221" width="0.0189%" height="15" fill="rgb(243,59,29)" fg:x="41954" fg:w="9"/><text x="88.3572%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="88.1135%" y="1205" width="0.0126%" height="15" fill="rgb(244,205,48)" fg:x="41957" fg:w="6"/><text x="88.3635%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.1156%" y="1189" width="0.0105%" height="15" fill="rgb(227,30,6)" fg:x="41958" fg:w="5"/><text x="88.3656%" y="1199.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="88.1324%" y="1205" width="0.0105%" height="15" fill="rgb(220,205,48)" fg:x="41966" fg:w="5"/><text x="88.3824%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="88.1429%" y="1189" width="0.0126%" height="15" fill="rgb(250,94,14)" fg:x="41971" fg:w="6"/><text x="88.3929%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="88.1555%" y="1189" width="0.0147%" height="15" fill="rgb(216,119,42)" fg:x="41977" fg:w="7"/><text x="88.4055%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="88.1555%" y="1173" width="0.0147%" height="15" fill="rgb(232,155,0)" fg:x="41977" fg:w="7"/><text x="88.4055%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (23 samples, 0.05%)</title><rect x="88.1261%" y="1237" width="0.0483%" height="15" fill="rgb(212,24,32)" fg:x="41963" fg:w="23"/><text x="88.3761%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="88.1303%" y="1221" width="0.0441%" height="15" fill="rgb(216,69,20)" fg:x="41965" fg:w="21"/><text x="88.3803%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="88.1429%" y="1205" width="0.0315%" height="15" fill="rgb(229,73,31)" fg:x="41971" fg:w="15"/><text x="88.3929%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (62 samples, 0.13%)</title><rect x="88.0547%" y="1285" width="0.1302%" height="15" fill="rgb(224,219,20)" fg:x="41929" fg:w="62"/><text x="88.3047%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (62 samples, 0.13%)</title><rect x="88.0547%" y="1269" width="0.1302%" height="15" fill="rgb(215,146,41)" fg:x="41929" fg:w="62"/><text x="88.3047%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (49 samples, 0.10%)</title><rect x="88.0820%" y="1253" width="0.1029%" height="15" fill="rgb(244,71,31)" fg:x="41942" fg:w="49"/><text x="88.3320%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="88.1744%" y="1237" width="0.0105%" height="15" fill="rgb(224,24,11)" fg:x="41986" fg:w="5"/><text x="88.4244%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="88.1744%" y="1221" width="0.0105%" height="15" fill="rgb(229,76,15)" fg:x="41986" fg:w="5"/><text x="88.4244%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.1744%" y="1205" width="0.0105%" height="15" fill="rgb(209,93,2)" fg:x="41986" fg:w="5"/><text x="88.4244%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.1891%" y="1157" width="0.0105%" height="15" fill="rgb(216,200,50)" fg:x="41993" fg:w="5"/><text x="88.4391%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.1891%" y="1141" width="0.0105%" height="15" fill="rgb(211,67,34)" fg:x="41993" fg:w="5"/><text x="88.4391%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.2017%" y="1109" width="0.0105%" height="15" fill="rgb(225,87,47)" fg:x="41999" fg:w="5"/><text x="88.4517%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="88.1891%" y="1189" width="0.0315%" height="15" fill="rgb(217,185,16)" fg:x="41993" fg:w="15"/><text x="88.4391%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="88.1891%" y="1173" width="0.0315%" height="15" fill="rgb(205,0,0)" fg:x="41993" fg:w="15"/><text x="88.4391%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="88.1996%" y="1157" width="0.0210%" height="15" fill="rgb(207,116,45)" fg:x="41998" fg:w="10"/><text x="88.4496%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="88.1996%" y="1141" width="0.0210%" height="15" fill="rgb(221,156,26)" fg:x="41998" fg:w="10"/><text x="88.4496%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="88.2017%" y="1125" width="0.0189%" height="15" fill="rgb(213,140,4)" fg:x="41999" fg:w="9"/><text x="88.4517%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.05%)</title><rect x="88.1849%" y="1221" width="0.0483%" height="15" fill="rgb(231,224,15)" fg:x="41991" fg:w="23"/><text x="88.4349%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (21 samples, 0.04%)</title><rect x="88.1891%" y="1205" width="0.0441%" height="15" fill="rgb(244,76,20)" fg:x="41993" fg:w="21"/><text x="88.4391%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="88.2332%" y="1221" width="0.0168%" height="15" fill="rgb(238,117,7)" fg:x="42014" fg:w="8"/><text x="88.4832%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="88.2332%" y="1205" width="0.0168%" height="15" fill="rgb(235,1,10)" fg:x="42014" fg:w="8"/><text x="88.4832%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="88.2374%" y="1189" width="0.0126%" height="15" fill="rgb(216,165,6)" fg:x="42016" fg:w="6"/><text x="88.4874%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (188 samples, 0.39%)</title><rect x="87.8615%" y="1333" width="0.3948%" height="15" fill="rgb(246,91,35)" fg:x="41837" fg:w="188"/><text x="88.1115%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (183 samples, 0.38%)</title><rect x="87.8720%" y="1317" width="0.3843%" height="15" fill="rgb(228,96,24)" fg:x="41842" fg:w="183"/><text x="88.1220%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (164 samples, 0.34%)</title><rect x="87.9119%" y="1301" width="0.3444%" height="15" fill="rgb(254,217,53)" fg:x="41861" fg:w="164"/><text x="88.1619%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (34 samples, 0.07%)</title><rect x="88.1849%" y="1285" width="0.0714%" height="15" fill="rgb(209,60,0)" fg:x="41991" fg:w="34"/><text x="88.4349%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34 samples, 0.07%)</title><rect x="88.1849%" y="1269" width="0.0714%" height="15" fill="rgb(250,93,26)" fg:x="41991" fg:w="34"/><text x="88.4349%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.07%)</title><rect x="88.1849%" y="1253" width="0.0714%" height="15" fill="rgb(211,9,40)" fg:x="41991" fg:w="34"/><text x="88.4349%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (34 samples, 0.07%)</title><rect x="88.1849%" y="1237" width="0.0714%" height="15" fill="rgb(242,57,20)" fg:x="41991" fg:w="34"/><text x="88.4349%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.2626%" y="1205" width="0.0105%" height="15" fill="rgb(248,85,48)" fg:x="42028" fg:w="5"/><text x="88.5126%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="88.2605%" y="1237" width="0.0168%" height="15" fill="rgb(212,117,2)" fg:x="42027" fg:w="8"/><text x="88.5105%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.2626%" y="1221" width="0.0147%" height="15" fill="rgb(243,19,3)" fg:x="42028" fg:w="7"/><text x="88.5126%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="88.2773%" y="1237" width="0.0105%" height="15" fill="rgb(232,217,24)" fg:x="42035" fg:w="5"/><text x="88.5273%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.2773%" y="1221" width="0.0105%" height="15" fill="rgb(224,175,40)" fg:x="42035" fg:w="5"/><text x="88.5273%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="88.2605%" y="1269" width="0.0378%" height="15" fill="rgb(212,162,32)" fg:x="42027" fg:w="18"/><text x="88.5105%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="88.2605%" y="1253" width="0.0378%" height="15" fill="rgb(215,9,4)" fg:x="42027" fg:w="18"/><text x="88.5105%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="88.2878%" y="1237" width="0.0105%" height="15" fill="rgb(242,42,7)" fg:x="42040" fg:w="5"/><text x="88.5378%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="88.2878%" y="1221" width="0.0105%" height="15" fill="rgb(242,184,45)" fg:x="42040" fg:w="5"/><text x="88.5378%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.2878%" y="1205" width="0.0105%" height="15" fill="rgb(228,111,51)" fg:x="42040" fg:w="5"/><text x="88.5378%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.2983%" y="1173" width="0.0105%" height="15" fill="rgb(236,147,17)" fg:x="42045" fg:w="5"/><text x="88.5483%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.2983%" y="1157" width="0.0105%" height="15" fill="rgb(210,75,22)" fg:x="42045" fg:w="5"/><text x="88.5483%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="88.2983%" y="1205" width="0.0210%" height="15" fill="rgb(217,159,45)" fg:x="42045" fg:w="10"/><text x="88.5483%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="88.2983%" y="1189" width="0.0210%" height="15" fill="rgb(245,165,53)" fg:x="42045" fg:w="10"/><text x="88.5483%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (485 samples, 1.02%)</title><rect x="87.3071%" y="1365" width="1.0185%" height="15" fill="rgb(251,190,50)" fg:x="41573" fg:w="485"/><text x="87.5571%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (463 samples, 0.97%)</title><rect x="87.3533%" y="1349" width="0.9723%" height="15" fill="rgb(208,203,29)" fg:x="41595" fg:w="463"/><text x="87.6033%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (33 samples, 0.07%)</title><rect x="88.2563%" y="1333" width="0.0693%" height="15" fill="rgb(207,209,35)" fg:x="42025" fg:w="33"/><text x="88.5063%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (32 samples, 0.07%)</title><rect x="88.2584%" y="1317" width="0.0672%" height="15" fill="rgb(230,144,49)" fg:x="42026" fg:w="32"/><text x="88.5084%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.07%)</title><rect x="88.2584%" y="1301" width="0.0672%" height="15" fill="rgb(229,31,6)" fg:x="42026" fg:w="32"/><text x="88.5084%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (31 samples, 0.07%)</title><rect x="88.2605%" y="1285" width="0.0651%" height="15" fill="rgb(251,129,24)" fg:x="42027" fg:w="31"/><text x="88.5105%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="88.2983%" y="1269" width="0.0273%" height="15" fill="rgb(235,105,15)" fg:x="42045" fg:w="13"/><text x="88.5483%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="88.2983%" y="1253" width="0.0273%" height="15" fill="rgb(216,52,43)" fg:x="42045" fg:w="13"/><text x="88.5483%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="88.2983%" y="1237" width="0.0273%" height="15" fill="rgb(238,144,41)" fg:x="42045" fg:w="13"/><text x="88.5483%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="88.2983%" y="1221" width="0.0273%" height="15" fill="rgb(243,63,9)" fg:x="42045" fg:w="13"/><text x="88.5483%" y="1231.50"></text></g><g><title>libsystem_m.dylib`exp (14 samples, 0.03%)</title><rect x="88.3361%" y="1333" width="0.0294%" height="15" fill="rgb(246,208,1)" fg:x="42063" fg:w="14"/><text x="88.5861%" y="1343.50"></text></g><g><title>libsystem_m.dylib`exp (12 samples, 0.03%)</title><rect x="88.3739%" y="1301" width="0.0252%" height="15" fill="rgb(233,182,18)" fg:x="42081" fg:w="12"/><text x="88.6239%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (10 samples, 0.02%)</title><rect x="88.4054%" y="1269" width="0.0210%" height="15" fill="rgb(242,224,8)" fg:x="42096" fg:w="10"/><text x="88.6554%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="88.4264%" y="1253" width="0.0168%" height="15" fill="rgb(243,54,37)" fg:x="42106" fg:w="8"/><text x="88.6764%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.07%)</title><rect x="88.4012%" y="1285" width="0.0672%" height="15" fill="rgb(233,192,12)" fg:x="42094" fg:w="32"/><text x="88.6512%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (20 samples, 0.04%)</title><rect x="88.4264%" y="1269" width="0.0420%" height="15" fill="rgb(251,192,53)" fg:x="42106" fg:w="20"/><text x="88.6764%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.03%)</title><rect x="88.4432%" y="1253" width="0.0252%" height="15" fill="rgb(246,141,26)" fg:x="42114" fg:w="12"/><text x="88.6932%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="88.4432%" y="1237" width="0.0252%" height="15" fill="rgb(239,195,19)" fg:x="42114" fg:w="12"/><text x="88.6932%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="88.4495%" y="1221" width="0.0189%" height="15" fill="rgb(241,16,39)" fg:x="42117" fg:w="9"/><text x="88.6995%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="88.4579%" y="1205" width="0.0105%" height="15" fill="rgb(223,13,53)" fg:x="42121" fg:w="5"/><text x="88.7079%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.4579%" y="1189" width="0.0105%" height="15" fill="rgb(214,227,0)" fg:x="42121" fg:w="5"/><text x="88.7079%" y="1199.50"></text></g><g><title>libsystem_m.dylib`exp (8 samples, 0.02%)</title><rect x="88.4768%" y="1253" width="0.0168%" height="15" fill="rgb(228,103,26)" fg:x="42130" fg:w="8"/><text x="88.7268%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="88.4936%" y="1237" width="0.0252%" height="15" fill="rgb(254,177,53)" fg:x="42138" fg:w="12"/><text x="88.7436%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="88.5020%" y="1221" width="0.0168%" height="15" fill="rgb(208,201,34)" fg:x="42142" fg:w="8"/><text x="88.7520%" y="1231.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="88.5188%" y="1205" width="0.0105%" height="15" fill="rgb(212,39,5)" fg:x="42150" fg:w="5"/><text x="88.7688%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.02%)</title><rect x="88.5188%" y="1237" width="0.0231%" height="15" fill="rgb(246,117,3)" fg:x="42150" fg:w="11"/><text x="88.7688%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="88.5188%" y="1221" width="0.0231%" height="15" fill="rgb(244,118,39)" fg:x="42150" fg:w="11"/><text x="88.7688%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="88.5293%" y="1205" width="0.0126%" height="15" fill="rgb(241,64,10)" fg:x="42155" fg:w="6"/><text x="88.7793%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (84 samples, 0.18%)</title><rect x="88.3718%" y="1317" width="0.1764%" height="15" fill="rgb(229,39,44)" fg:x="42080" fg:w="84"/><text x="88.6218%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (70 samples, 0.15%)</title><rect x="88.4012%" y="1301" width="0.1470%" height="15" fill="rgb(230,226,3)" fg:x="42094" fg:w="70"/><text x="88.6512%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (38 samples, 0.08%)</title><rect x="88.4684%" y="1285" width="0.0798%" height="15" fill="rgb(222,13,42)" fg:x="42126" fg:w="38"/><text x="88.7184%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.07%)</title><rect x="88.4747%" y="1269" width="0.0735%" height="15" fill="rgb(247,180,54)" fg:x="42129" fg:w="35"/><text x="88.7247%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (26 samples, 0.05%)</title><rect x="88.4936%" y="1253" width="0.0546%" height="15" fill="rgb(205,96,16)" fg:x="42138" fg:w="26"/><text x="88.7436%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (13 samples, 0.03%)</title><rect x="88.5566%" y="1285" width="0.0273%" height="15" fill="rgb(205,100,21)" fg:x="42168" fg:w="13"/><text x="88.8066%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="88.5881%" y="1253" width="0.0126%" height="15" fill="rgb(248,51,4)" fg:x="42183" fg:w="6"/><text x="88.8381%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="88.6007%" y="1237" width="0.0147%" height="15" fill="rgb(217,197,30)" fg:x="42189" fg:w="7"/><text x="88.8507%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.05%)</title><rect x="88.5881%" y="1269" width="0.0504%" height="15" fill="rgb(240,179,40)" fg:x="42183" fg:w="24"/><text x="88.8381%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="88.6007%" y="1253" width="0.0378%" height="15" fill="rgb(212,185,35)" fg:x="42189" fg:w="18"/><text x="88.8507%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.02%)</title><rect x="88.6154%" y="1237" width="0.0231%" height="15" fill="rgb(251,222,31)" fg:x="42196" fg:w="11"/><text x="88.8654%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="88.6196%" y="1221" width="0.0189%" height="15" fill="rgb(208,140,36)" fg:x="42198" fg:w="9"/><text x="88.8696%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.6238%" y="1205" width="0.0147%" height="15" fill="rgb(220,148,1)" fg:x="42200" fg:w="7"/><text x="88.8738%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="88.6280%" y="1189" width="0.0105%" height="15" fill="rgb(254,4,28)" fg:x="42202" fg:w="5"/><text x="88.8780%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.6280%" y="1173" width="0.0105%" height="15" fill="rgb(222,185,44)" fg:x="42202" fg:w="5"/><text x="88.8780%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="88.6574%" y="1221" width="0.0126%" height="15" fill="rgb(215,74,39)" fg:x="42216" fg:w="6"/><text x="88.9074%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="88.6574%" y="1205" width="0.0126%" height="15" fill="rgb(247,86,4)" fg:x="42216" fg:w="6"/><text x="88.9074%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.6595%" y="1189" width="0.0105%" height="15" fill="rgb(231,105,32)" fg:x="42217" fg:w="5"/><text x="88.9095%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.04%)</title><rect x="88.6385%" y="1269" width="0.0357%" height="15" fill="rgb(222,65,35)" fg:x="42207" fg:w="17"/><text x="88.8885%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.04%)</title><rect x="88.6385%" y="1253" width="0.0357%" height="15" fill="rgb(218,145,35)" fg:x="42207" fg:w="17"/><text x="88.8885%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="88.6490%" y="1237" width="0.0252%" height="15" fill="rgb(208,7,15)" fg:x="42212" fg:w="12"/><text x="88.8990%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="88.6742%" y="1205" width="0.0231%" height="15" fill="rgb(209,83,13)" fg:x="42224" fg:w="11"/><text x="88.9242%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="88.6784%" y="1189" width="0.0189%" height="15" fill="rgb(218,3,10)" fg:x="42226" fg:w="9"/><text x="88.9284%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="88.6805%" y="1173" width="0.0168%" height="15" fill="rgb(211,219,4)" fg:x="42227" fg:w="8"/><text x="88.9305%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.02%)</title><rect x="88.6805%" y="1157" width="0.0168%" height="15" fill="rgb(228,194,12)" fg:x="42227" fg:w="8"/><text x="88.9305%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="88.6805%" y="1141" width="0.0168%" height="15" fill="rgb(210,175,7)" fg:x="42227" fg:w="8"/><text x="88.9305%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.6826%" y="1125" width="0.0147%" height="15" fill="rgb(243,132,6)" fg:x="42228" fg:w="7"/><text x="88.9326%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (72 samples, 0.15%)</title><rect x="88.5482%" y="1317" width="0.1512%" height="15" fill="rgb(207,72,18)" fg:x="42164" fg:w="72"/><text x="88.7982%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (69 samples, 0.14%)</title><rect x="88.5545%" y="1301" width="0.1449%" height="15" fill="rgb(236,1,18)" fg:x="42167" fg:w="69"/><text x="88.8045%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (55 samples, 0.12%)</title><rect x="88.5839%" y="1285" width="0.1155%" height="15" fill="rgb(227,0,18)" fg:x="42181" fg:w="55"/><text x="88.8339%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.03%)</title><rect x="88.6742%" y="1269" width="0.0252%" height="15" fill="rgb(247,37,5)" fg:x="42224" fg:w="12"/><text x="88.9242%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.03%)</title><rect x="88.6742%" y="1253" width="0.0252%" height="15" fill="rgb(237,179,24)" fg:x="42224" fg:w="12"/><text x="88.9242%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="88.6742%" y="1237" width="0.0252%" height="15" fill="rgb(226,53,20)" fg:x="42224" fg:w="12"/><text x="88.9242%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="88.6742%" y="1221" width="0.0252%" height="15" fill="rgb(247,75,7)" fg:x="42224" fg:w="12"/><text x="88.9242%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="88.7036%" y="1189" width="0.0168%" height="15" fill="rgb(233,96,12)" fg:x="42238" fg:w="8"/><text x="88.9536%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.7057%" y="1173" width="0.0147%" height="15" fill="rgb(224,125,0)" fg:x="42239" fg:w="7"/><text x="88.9557%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="88.7099%" y="1157" width="0.0105%" height="15" fill="rgb(224,92,25)" fg:x="42241" fg:w="5"/><text x="88.9599%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.7099%" y="1141" width="0.0105%" height="15" fill="rgb(224,42,24)" fg:x="42241" fg:w="5"/><text x="88.9599%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="88.7036%" y="1221" width="0.0210%" height="15" fill="rgb(234,132,49)" fg:x="42238" fg:w="10"/><text x="88.9536%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="88.7036%" y="1205" width="0.0210%" height="15" fill="rgb(248,100,35)" fg:x="42238" fg:w="10"/><text x="88.9536%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="88.7246%" y="1221" width="0.0210%" height="15" fill="rgb(239,94,40)" fg:x="42248" fg:w="10"/><text x="88.9746%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="88.7246%" y="1205" width="0.0210%" height="15" fill="rgb(235,139,28)" fg:x="42248" fg:w="10"/><text x="88.9746%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="88.7267%" y="1189" width="0.0189%" height="15" fill="rgb(217,144,7)" fg:x="42249" fg:w="9"/><text x="88.9767%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="88.7351%" y="1173" width="0.0105%" height="15" fill="rgb(227,55,4)" fg:x="42253" fg:w="5"/><text x="88.9851%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="88.7351%" y="1157" width="0.0105%" height="15" fill="rgb(252,82,54)" fg:x="42253" fg:w="5"/><text x="88.9851%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.7351%" y="1141" width="0.0105%" height="15" fill="rgb(245,172,4)" fg:x="42253" fg:w="5"/><text x="88.9851%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.7351%" y="1125" width="0.0105%" height="15" fill="rgb(207,26,27)" fg:x="42253" fg:w="5"/><text x="88.9851%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.06%)</title><rect x="88.7015%" y="1253" width="0.0630%" height="15" fill="rgb(252,98,18)" fg:x="42237" fg:w="30"/><text x="88.9515%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (30 samples, 0.06%)</title><rect x="88.7015%" y="1237" width="0.0630%" height="15" fill="rgb(244,8,26)" fg:x="42237" fg:w="30"/><text x="88.9515%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="88.7456%" y="1221" width="0.0189%" height="15" fill="rgb(237,173,45)" fg:x="42258" fg:w="9"/><text x="88.9956%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="88.7456%" y="1205" width="0.0189%" height="15" fill="rgb(208,213,49)" fg:x="42258" fg:w="9"/><text x="88.9956%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="88.7456%" y="1189" width="0.0189%" height="15" fill="rgb(212,122,37)" fg:x="42258" fg:w="9"/><text x="88.9956%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="88.7456%" y="1173" width="0.0189%" height="15" fill="rgb(213,80,17)" fg:x="42258" fg:w="9"/><text x="88.9956%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="88.7498%" y="1157" width="0.0147%" height="15" fill="rgb(206,210,43)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="88.7498%" y="1141" width="0.0147%" height="15" fill="rgb(229,214,3)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.7498%" y="1125" width="0.0147%" height="15" fill="rgb(235,213,29)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="88.7498%" y="1109" width="0.0147%" height="15" fill="rgb(248,135,26)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="88.7498%" y="1093" width="0.0147%" height="15" fill="rgb(242,188,12)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.7498%" y="1077" width="0.0147%" height="15" fill="rgb(245,38,12)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="88.7498%" y="1061" width="0.0147%" height="15" fill="rgb(218,42,13)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="88.7498%" y="1045" width="0.0147%" height="15" fill="rgb(238,132,49)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="88.7498%" y="1029" width="0.0147%" height="15" fill="rgb(209,196,19)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.7498%" y="1013" width="0.0147%" height="15" fill="rgb(244,131,22)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="88.7498%" y="997" width="0.0147%" height="15" fill="rgb(223,18,34)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.7498%" y="981" width="0.0147%" height="15" fill="rgb(252,124,54)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="88.7498%" y="965" width="0.0147%" height="15" fill="rgb(229,106,42)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.7498%" y="949" width="0.0147%" height="15" fill="rgb(221,129,1)" fg:x="42260" fg:w="7"/><text x="88.9998%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.7729%" y="1189" width="0.0105%" height="15" fill="rgb(229,74,15)" fg:x="42271" fg:w="5"/><text x="89.0229%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.7834%" y="1125" width="0.0105%" height="15" fill="rgb(210,206,50)" fg:x="42276" fg:w="5"/><text x="89.0334%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.7834%" y="1109" width="0.0105%" height="15" fill="rgb(251,114,31)" fg:x="42276" fg:w="5"/><text x="89.0334%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.7834%" y="1093" width="0.0105%" height="15" fill="rgb(215,225,28)" fg:x="42276" fg:w="5"/><text x="89.0334%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.7834%" y="1077" width="0.0105%" height="15" fill="rgb(237,109,14)" fg:x="42276" fg:w="5"/><text x="89.0334%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.7834%" y="1061" width="0.0105%" height="15" fill="rgb(230,13,37)" fg:x="42276" fg:w="5"/><text x="89.0334%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.7834%" y="1045" width="0.0105%" height="15" fill="rgb(231,40,28)" fg:x="42276" fg:w="5"/><text x="89.0334%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (231 samples, 0.49%)</title><rect x="88.3256%" y="1365" width="0.4851%" height="15" fill="rgb(231,202,18)" fg:x="42058" fg:w="231"/><text x="88.5756%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (227 samples, 0.48%)</title><rect x="88.3340%" y="1349" width="0.4767%" height="15" fill="rgb(225,33,18)" fg:x="42062" fg:w="227"/><text x="88.5840%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (211 samples, 0.44%)</title><rect x="88.3676%" y="1333" width="0.4431%" height="15" fill="rgb(223,64,47)" fg:x="42078" fg:w="211"/><text x="88.6176%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (53 samples, 0.11%)</title><rect x="88.6994%" y="1317" width="0.1113%" height="15" fill="rgb(234,114,13)" fg:x="42236" fg:w="53"/><text x="88.9494%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (53 samples, 0.11%)</title><rect x="88.6994%" y="1301" width="0.1113%" height="15" fill="rgb(248,56,40)" fg:x="42236" fg:w="53"/><text x="88.9494%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.11%)</title><rect x="88.7015%" y="1285" width="0.1092%" height="15" fill="rgb(221,194,21)" fg:x="42237" fg:w="52"/><text x="88.9515%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (52 samples, 0.11%)</title><rect x="88.7015%" y="1269" width="0.1092%" height="15" fill="rgb(242,108,46)" fg:x="42237" fg:w="52"/><text x="88.9515%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.04%)</title><rect x="88.7729%" y="1253" width="0.0378%" height="15" fill="rgb(220,106,10)" fg:x="42271" fg:w="18"/><text x="89.0229%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (18 samples, 0.04%)</title><rect x="88.7729%" y="1237" width="0.0378%" height="15" fill="rgb(211,88,4)" fg:x="42271" fg:w="18"/><text x="89.0229%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="88.7729%" y="1221" width="0.0378%" height="15" fill="rgb(214,95,34)" fg:x="42271" fg:w="18"/><text x="89.0229%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="88.7729%" y="1205" width="0.0378%" height="15" fill="rgb(250,160,33)" fg:x="42271" fg:w="18"/><text x="89.0229%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="88.7834%" y="1189" width="0.0273%" height="15" fill="rgb(225,29,10)" fg:x="42276" fg:w="13"/><text x="89.0334%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="88.7834%" y="1173" width="0.0273%" height="15" fill="rgb(224,28,30)" fg:x="42276" fg:w="13"/><text x="89.0334%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="88.7834%" y="1157" width="0.0273%" height="15" fill="rgb(231,77,4)" fg:x="42276" fg:w="13"/><text x="89.0334%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="88.7834%" y="1141" width="0.0273%" height="15" fill="rgb(209,63,21)" fg:x="42276" fg:w="13"/><text x="89.0334%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="88.7939%" y="1125" width="0.0168%" height="15" fill="rgb(226,22,11)" fg:x="42281" fg:w="8"/><text x="89.0439%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.02%)</title><rect x="88.7939%" y="1109" width="0.0168%" height="15" fill="rgb(216,82,30)" fg:x="42281" fg:w="8"/><text x="89.0439%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="88.7939%" y="1093" width="0.0168%" height="15" fill="rgb(246,227,38)" fg:x="42281" fg:w="8"/><text x="89.0439%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="88.7939%" y="1077" width="0.0168%" height="15" fill="rgb(251,203,53)" fg:x="42281" fg:w="8"/><text x="89.0439%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="88.7939%" y="1061" width="0.0168%" height="15" fill="rgb(254,101,1)" fg:x="42281" fg:w="8"/><text x="89.0439%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="88.7939%" y="1045" width="0.0168%" height="15" fill="rgb(241,180,5)" fg:x="42281" fg:w="8"/><text x="89.0439%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="88.7960%" y="1029" width="0.0147%" height="15" fill="rgb(218,168,4)" fg:x="42282" fg:w="7"/><text x="89.0460%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="88.7960%" y="1013" width="0.0147%" height="15" fill="rgb(224,223,32)" fg:x="42282" fg:w="7"/><text x="89.0460%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="88.7960%" y="997" width="0.0147%" height="15" fill="rgb(236,106,22)" fg:x="42282" fg:w="7"/><text x="89.0460%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.7960%" y="981" width="0.0147%" height="15" fill="rgb(206,121,5)" fg:x="42282" fg:w="7"/><text x="89.0460%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="88.7981%" y="965" width="0.0126%" height="15" fill="rgb(233,87,28)" fg:x="42283" fg:w="6"/><text x="89.0481%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="88.7981%" y="949" width="0.0126%" height="15" fill="rgb(236,137,17)" fg:x="42283" fg:w="6"/><text x="89.0481%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="88.7981%" y="933" width="0.0126%" height="15" fill="rgb(209,183,38)" fg:x="42283" fg:w="6"/><text x="89.0481%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="88.7981%" y="917" width="0.0126%" height="15" fill="rgb(206,162,44)" fg:x="42283" fg:w="6"/><text x="89.0481%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="88.7981%" y="901" width="0.0126%" height="15" fill="rgb(237,70,39)" fg:x="42283" fg:w="6"/><text x="89.0481%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="88.7981%" y="885" width="0.0126%" height="15" fill="rgb(212,176,5)" fg:x="42283" fg:w="6"/><text x="89.0481%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="88.8002%" y="869" width="0.0105%" height="15" fill="rgb(232,95,16)" fg:x="42284" fg:w="5"/><text x="89.0502%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="88.8002%" y="853" width="0.0105%" height="15" fill="rgb(219,115,35)" fg:x="42284" fg:w="5"/><text x="89.0502%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.8002%" y="837" width="0.0105%" height="15" fill="rgb(251,67,27)" fg:x="42284" fg:w="5"/><text x="89.0502%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.8002%" y="821" width="0.0105%" height="15" fill="rgb(222,95,40)" fg:x="42284" fg:w="5"/><text x="89.0502%" y="831.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="88.8170%" y="1317" width="0.0126%" height="15" fill="rgb(250,35,16)" fg:x="42292" fg:w="6"/><text x="89.0670%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="88.8569%" y="1205" width="0.0147%" height="15" fill="rgb(224,86,44)" fg:x="42311" fg:w="7"/><text x="89.1069%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.8569%" y="1189" width="0.0147%" height="15" fill="rgb(237,53,53)" fg:x="42311" fg:w="7"/><text x="89.1069%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="88.8485%" y="1237" width="0.0420%" height="15" fill="rgb(208,171,33)" fg:x="42307" fg:w="20"/><text x="89.0985%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (17 samples, 0.04%)</title><rect x="88.8548%" y="1221" width="0.0357%" height="15" fill="rgb(222,64,27)" fg:x="42310" fg:w="17"/><text x="89.1048%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="88.8716%" y="1205" width="0.0189%" height="15" fill="rgb(221,121,35)" fg:x="42318" fg:w="9"/><text x="89.1216%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="88.8716%" y="1189" width="0.0189%" height="15" fill="rgb(228,137,42)" fg:x="42318" fg:w="9"/><text x="89.1216%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.8800%" y="1173" width="0.0105%" height="15" fill="rgb(227,54,21)" fg:x="42322" fg:w="5"/><text x="89.1300%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="88.8968%" y="1189" width="0.0147%" height="15" fill="rgb(240,168,33)" fg:x="42330" fg:w="7"/><text x="89.1468%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.9010%" y="1173" width="0.0105%" height="15" fill="rgb(243,159,6)" fg:x="42332" fg:w="5"/><text x="89.1510%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="88.9115%" y="1189" width="0.0126%" height="15" fill="rgb(205,211,41)" fg:x="42337" fg:w="6"/><text x="89.1615%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.9136%" y="1173" width="0.0105%" height="15" fill="rgb(253,30,1)" fg:x="42338" fg:w="5"/><text x="89.1636%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.9136%" y="1157" width="0.0105%" height="15" fill="rgb(226,80,18)" fg:x="42338" fg:w="5"/><text x="89.1636%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.04%)</title><rect x="88.8905%" y="1237" width="0.0357%" height="15" fill="rgb(253,156,46)" fg:x="42327" fg:w="17"/><text x="89.1405%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.04%)</title><rect x="88.8905%" y="1221" width="0.0357%" height="15" fill="rgb(248,87,27)" fg:x="42327" fg:w="17"/><text x="89.1405%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="88.8947%" y="1205" width="0.0315%" height="15" fill="rgb(227,122,2)" fg:x="42329" fg:w="15"/><text x="89.1447%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.11%)</title><rect x="88.8401%" y="1269" width="0.1092%" height="15" fill="rgb(229,94,39)" fg:x="42303" fg:w="52"/><text x="89.0901%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (48 samples, 0.10%)</title><rect x="88.8485%" y="1253" width="0.1008%" height="15" fill="rgb(225,173,31)" fg:x="42307" fg:w="48"/><text x="89.0985%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.02%)</title><rect x="88.9262%" y="1237" width="0.0231%" height="15" fill="rgb(239,176,30)" fg:x="42344" fg:w="11"/><text x="89.1762%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.02%)</title><rect x="88.9262%" y="1221" width="0.0231%" height="15" fill="rgb(212,104,21)" fg:x="42344" fg:w="11"/><text x="89.1762%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="88.9262%" y="1205" width="0.0231%" height="15" fill="rgb(240,209,40)" fg:x="42344" fg:w="11"/><text x="89.1762%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.9346%" y="1189" width="0.0147%" height="15" fill="rgb(234,195,5)" fg:x="42348" fg:w="7"/><text x="89.1846%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="88.9367%" y="1173" width="0.0126%" height="15" fill="rgb(238,213,1)" fg:x="42349" fg:w="6"/><text x="89.1867%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="88.9367%" y="1157" width="0.0126%" height="15" fill="rgb(235,182,54)" fg:x="42349" fg:w="6"/><text x="89.1867%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="88.9367%" y="1141" width="0.0126%" height="15" fill="rgb(229,50,46)" fg:x="42349" fg:w="6"/><text x="89.1867%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="88.9367%" y="1125" width="0.0126%" height="15" fill="rgb(219,145,13)" fg:x="42349" fg:w="6"/><text x="89.1867%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="88.9367%" y="1109" width="0.0126%" height="15" fill="rgb(220,226,10)" fg:x="42349" fg:w="6"/><text x="89.1867%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="88.9367%" y="1093" width="0.0126%" height="15" fill="rgb(248,47,30)" fg:x="42349" fg:w="6"/><text x="89.1867%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="88.9367%" y="1077" width="0.0126%" height="15" fill="rgb(231,209,44)" fg:x="42349" fg:w="6"/><text x="89.1867%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="88.9367%" y="1061" width="0.0126%" height="15" fill="rgb(209,80,30)" fg:x="42349" fg:w="6"/><text x="89.1867%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="88.9388%" y="1045" width="0.0105%" height="15" fill="rgb(232,9,14)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="88.9388%" y="1029" width="0.0105%" height="15" fill="rgb(243,91,43)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.9388%" y="1013" width="0.0105%" height="15" fill="rgb(231,90,52)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.9388%" y="997" width="0.0105%" height="15" fill="rgb(253,192,44)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="88.9388%" y="981" width="0.0105%" height="15" fill="rgb(241,66,31)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="88.9388%" y="965" width="0.0105%" height="15" fill="rgb(235,81,37)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.9388%" y="949" width="0.0105%" height="15" fill="rgb(223,221,9)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.9388%" y="933" width="0.0105%" height="15" fill="rgb(242,180,7)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.9388%" y="917" width="0.0105%" height="15" fill="rgb(243,78,19)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.9388%" y="901" width="0.0105%" height="15" fill="rgb(233,23,17)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.9388%" y="885" width="0.0105%" height="15" fill="rgb(252,122,45)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.9388%" y="869" width="0.0105%" height="15" fill="rgb(247,108,20)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="88.9388%" y="853" width="0.0105%" height="15" fill="rgb(235,84,21)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="88.9388%" y="837" width="0.0105%" height="15" fill="rgb(247,129,10)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.9388%" y="821" width="0.0105%" height="15" fill="rgb(208,173,14)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.9388%" y="805" width="0.0105%" height="15" fill="rgb(236,31,38)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="815.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="88.9388%" y="789" width="0.0105%" height="15" fill="rgb(232,65,17)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="799.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="88.9388%" y="773" width="0.0105%" height="15" fill="rgb(224,45,49)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="783.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.9388%" y="757" width="0.0105%" height="15" fill="rgb(225,2,53)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="767.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.9388%" y="741" width="0.0105%" height="15" fill="rgb(248,210,53)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="751.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="88.9388%" y="725" width="0.0105%" height="15" fill="rgb(211,1,30)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="735.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="88.9388%" y="709" width="0.0105%" height="15" fill="rgb(224,96,15)" fg:x="42350" fg:w="5"/><text x="89.1888%" y="719.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="88.9535%" y="1221" width="0.0273%" height="15" fill="rgb(252,45,11)" fg:x="42357" fg:w="13"/><text x="89.2035%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="88.9619%" y="1205" width="0.0189%" height="15" fill="rgb(220,125,38)" fg:x="42361" fg:w="9"/><text x="89.2119%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="88.9808%" y="1221" width="0.0189%" height="15" fill="rgb(243,161,33)" fg:x="42370" fg:w="9"/><text x="89.2308%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="88.9808%" y="1205" width="0.0189%" height="15" fill="rgb(248,197,34)" fg:x="42370" fg:w="9"/><text x="89.2308%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="88.9850%" y="1189" width="0.0147%" height="15" fill="rgb(228,165,23)" fg:x="42372" fg:w="7"/><text x="89.2350%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (28 samples, 0.06%)</title><rect x="88.9493%" y="1269" width="0.0588%" height="15" fill="rgb(236,94,38)" fg:x="42355" fg:w="28"/><text x="89.1993%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.06%)</title><rect x="88.9493%" y="1253" width="0.0588%" height="15" fill="rgb(220,13,23)" fg:x="42355" fg:w="28"/><text x="89.1993%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (27 samples, 0.06%)</title><rect x="88.9514%" y="1237" width="0.0567%" height="15" fill="rgb(234,26,39)" fg:x="42356" fg:w="27"/><text x="89.2014%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (90 samples, 0.19%)</title><rect x="88.8317%" y="1301" width="0.1890%" height="15" fill="rgb(205,117,44)" fg:x="42299" fg:w="90"/><text x="89.0817%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (86 samples, 0.18%)</title><rect x="88.8401%" y="1285" width="0.1806%" height="15" fill="rgb(250,42,2)" fg:x="42303" fg:w="86"/><text x="89.0901%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="89.0081%" y="1269" width="0.0126%" height="15" fill="rgb(223,83,14)" fg:x="42383" fg:w="6"/><text x="89.2581%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="89.0081%" y="1253" width="0.0126%" height="15" fill="rgb(241,147,50)" fg:x="42383" fg:w="6"/><text x="89.2581%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.0081%" y="1237" width="0.0126%" height="15" fill="rgb(218,90,6)" fg:x="42383" fg:w="6"/><text x="89.2581%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.0081%" y="1221" width="0.0126%" height="15" fill="rgb(210,191,5)" fg:x="42383" fg:w="6"/><text x="89.2581%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="89.0249%" y="1253" width="0.0168%" height="15" fill="rgb(225,139,19)" fg:x="42391" fg:w="8"/><text x="89.2749%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="89.0270%" y="1237" width="0.0147%" height="15" fill="rgb(210,1,33)" fg:x="42392" fg:w="7"/><text x="89.2770%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.0480%" y="997" width="0.0126%" height="15" fill="rgb(213,50,3)" fg:x="42402" fg:w="6"/><text x="89.2980%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.0480%" y="981" width="0.0126%" height="15" fill="rgb(234,227,4)" fg:x="42402" fg:w="6"/><text x="89.2980%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.03%)</title><rect x="89.0417%" y="1253" width="0.0336%" height="15" fill="rgb(246,63,5)" fg:x="42399" fg:w="16"/><text x="89.2917%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="89.0438%" y="1237" width="0.0315%" height="15" fill="rgb(245,136,27)" fg:x="42400" fg:w="15"/><text x="89.2938%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="89.0438%" y="1221" width="0.0315%" height="15" fill="rgb(247,199,27)" fg:x="42400" fg:w="15"/><text x="89.2938%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.03%)</title><rect x="89.0480%" y="1205" width="0.0273%" height="15" fill="rgb(252,158,49)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="89.0480%" y="1189" width="0.0273%" height="15" fill="rgb(254,73,1)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="89.0480%" y="1173" width="0.0273%" height="15" fill="rgb(248,93,19)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.03%)</title><rect x="89.0480%" y="1157" width="0.0273%" height="15" fill="rgb(206,67,5)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="89.0480%" y="1141" width="0.0273%" height="15" fill="rgb(209,210,4)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="89.0480%" y="1125" width="0.0273%" height="15" fill="rgb(214,185,36)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.03%)</title><rect x="89.0480%" y="1109" width="0.0273%" height="15" fill="rgb(233,191,26)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="89.0480%" y="1093" width="0.0273%" height="15" fill="rgb(248,94,17)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="89.0480%" y="1077" width="0.0273%" height="15" fill="rgb(250,64,4)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="89.0480%" y="1061" width="0.0273%" height="15" fill="rgb(218,41,53)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="89.0480%" y="1045" width="0.0273%" height="15" fill="rgb(251,176,28)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="89.0480%" y="1029" width="0.0273%" height="15" fill="rgb(247,22,9)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="89.0480%" y="1013" width="0.0273%" height="15" fill="rgb(218,201,14)" fg:x="42402" fg:w="13"/><text x="89.2980%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="89.0606%" y="997" width="0.0147%" height="15" fill="rgb(218,94,10)" fg:x="42408" fg:w="7"/><text x="89.3106%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="89.0606%" y="981" width="0.0147%" height="15" fill="rgb(222,183,52)" fg:x="42408" fg:w="7"/><text x="89.3106%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="89.0606%" y="965" width="0.0147%" height="15" fill="rgb(242,140,25)" fg:x="42408" fg:w="7"/><text x="89.3106%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="89.0606%" y="949" width="0.0147%" height="15" fill="rgb(235,197,38)" fg:x="42408" fg:w="7"/><text x="89.3106%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="89.0627%" y="933" width="0.0126%" height="15" fill="rgb(237,136,15)" fg:x="42409" fg:w="6"/><text x="89.3127%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="89.0627%" y="917" width="0.0126%" height="15" fill="rgb(223,44,49)" fg:x="42409" fg:w="6"/><text x="89.3127%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.0627%" y="901" width="0.0126%" height="15" fill="rgb(227,71,15)" fg:x="42409" fg:w="6"/><text x="89.3127%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.0627%" y="885" width="0.0126%" height="15" fill="rgb(225,153,20)" fg:x="42409" fg:w="6"/><text x="89.3127%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (32 samples, 0.07%)</title><rect x="89.0207%" y="1301" width="0.0672%" height="15" fill="rgb(210,190,26)" fg:x="42389" fg:w="32"/><text x="89.2707%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.07%)</title><rect x="89.0228%" y="1285" width="0.0651%" height="15" fill="rgb(223,147,5)" fg:x="42390" fg:w="31"/><text x="89.2728%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (30 samples, 0.06%)</title><rect x="89.0249%" y="1269" width="0.0630%" height="15" fill="rgb(207,14,23)" fg:x="42391" fg:w="30"/><text x="89.2749%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="89.0753%" y="1253" width="0.0126%" height="15" fill="rgb(211,195,53)" fg:x="42415" fg:w="6"/><text x="89.3253%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="89.0753%" y="1237" width="0.0126%" height="15" fill="rgb(237,75,46)" fg:x="42415" fg:w="6"/><text x="89.3253%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.0753%" y="1221" width="0.0126%" height="15" fill="rgb(254,55,14)" fg:x="42415" fg:w="6"/><text x="89.3253%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.0774%" y="1205" width="0.0105%" height="15" fill="rgb(230,185,30)" fg:x="42416" fg:w="5"/><text x="89.3274%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.1026%" y="1173" width="0.0105%" height="15" fill="rgb(220,14,11)" fg:x="42428" fg:w="5"/><text x="89.3526%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="89.0963%" y="1205" width="0.0315%" height="15" fill="rgb(215,169,44)" fg:x="42425" fg:w="15"/><text x="89.3463%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="89.1026%" y="1189" width="0.0252%" height="15" fill="rgb(253,203,20)" fg:x="42428" fg:w="12"/><text x="89.3526%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="89.1131%" y="1173" width="0.0147%" height="15" fill="rgb(229,225,17)" fg:x="42433" fg:w="7"/><text x="89.3631%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="89.1131%" y="1157" width="0.0147%" height="15" fill="rgb(236,76,26)" fg:x="42433" fg:w="7"/><text x="89.3631%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.1152%" y="1141" width="0.0126%" height="15" fill="rgb(234,15,30)" fg:x="42434" fg:w="6"/><text x="89.3652%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.1278%" y="1157" width="0.0105%" height="15" fill="rgb(211,113,48)" fg:x="42440" fg:w="5"/><text x="89.3778%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.1278%" y="1141" width="0.0105%" height="15" fill="rgb(221,31,36)" fg:x="42440" fg:w="5"/><text x="89.3778%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.05%)</title><rect x="89.0942%" y="1237" width="0.0546%" height="15" fill="rgb(215,118,52)" fg:x="42424" fg:w="26"/><text x="89.3442%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="89.0963%" y="1221" width="0.0525%" height="15" fill="rgb(241,151,27)" fg:x="42425" fg:w="25"/><text x="89.3463%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="89.1278%" y="1205" width="0.0210%" height="15" fill="rgb(253,51,3)" fg:x="42440" fg:w="10"/><text x="89.3778%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="89.1278%" y="1189" width="0.0210%" height="15" fill="rgb(216,201,24)" fg:x="42440" fg:w="10"/><text x="89.3778%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="89.1278%" y="1173" width="0.0210%" height="15" fill="rgb(231,107,4)" fg:x="42440" fg:w="10"/><text x="89.3778%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="89.1572%" y="1173" width="0.0210%" height="15" fill="rgb(243,97,54)" fg:x="42454" fg:w="10"/><text x="89.4072%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="89.1593%" y="1157" width="0.0189%" height="15" fill="rgb(221,32,51)" fg:x="42455" fg:w="9"/><text x="89.4093%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="89.1593%" y="1141" width="0.0189%" height="15" fill="rgb(218,171,35)" fg:x="42455" fg:w="9"/><text x="89.4093%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="89.1593%" y="1125" width="0.0189%" height="15" fill="rgb(214,20,53)" fg:x="42455" fg:w="9"/><text x="89.4093%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="89.1593%" y="1109" width="0.0189%" height="15" fill="rgb(239,9,52)" fg:x="42455" fg:w="9"/><text x="89.4093%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="89.1614%" y="1093" width="0.0168%" height="15" fill="rgb(215,114,45)" fg:x="42456" fg:w="8"/><text x="89.4114%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="89.1635%" y="1077" width="0.0147%" height="15" fill="rgb(208,118,9)" fg:x="42457" fg:w="7"/><text x="89.4135%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="89.1635%" y="1061" width="0.0147%" height="15" fill="rgb(235,7,39)" fg:x="42457" fg:w="7"/><text x="89.4135%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="89.1635%" y="1045" width="0.0147%" height="15" fill="rgb(243,225,15)" fg:x="42457" fg:w="7"/><text x="89.4135%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="89.1656%" y="1029" width="0.0126%" height="15" fill="rgb(225,216,18)" fg:x="42458" fg:w="6"/><text x="89.4156%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="89.1656%" y="1013" width="0.0126%" height="15" fill="rgb(233,36,38)" fg:x="42458" fg:w="6"/><text x="89.4156%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.1656%" y="997" width="0.0126%" height="15" fill="rgb(239,88,23)" fg:x="42458" fg:w="6"/><text x="89.4156%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.1656%" y="981" width="0.0126%" height="15" fill="rgb(219,181,35)" fg:x="42458" fg:w="6"/><text x="89.4156%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="89.1656%" y="965" width="0.0126%" height="15" fill="rgb(215,18,46)" fg:x="42458" fg:w="6"/><text x="89.4156%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="89.1656%" y="949" width="0.0126%" height="15" fill="rgb(241,38,11)" fg:x="42458" fg:w="6"/><text x="89.4156%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.1656%" y="933" width="0.0126%" height="15" fill="rgb(248,169,45)" fg:x="42458" fg:w="6"/><text x="89.4156%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.1656%" y="917" width="0.0126%" height="15" fill="rgb(239,50,49)" fg:x="42458" fg:w="6"/><text x="89.4156%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.1656%" y="901" width="0.0126%" height="15" fill="rgb(231,96,31)" fg:x="42458" fg:w="6"/><text x="89.4156%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.1656%" y="885" width="0.0126%" height="15" fill="rgb(224,193,37)" fg:x="42458" fg:w="6"/><text x="89.4156%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="89.1677%" y="869" width="0.0105%" height="15" fill="rgb(227,153,50)" fg:x="42459" fg:w="5"/><text x="89.4177%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.1677%" y="853" width="0.0105%" height="15" fill="rgb(249,228,3)" fg:x="42459" fg:w="5"/><text x="89.4177%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.1677%" y="837" width="0.0105%" height="15" fill="rgb(219,164,43)" fg:x="42459" fg:w="5"/><text x="89.4177%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (922 samples, 1.94%)</title><rect x="87.2483%" y="1397" width="1.9363%" height="15" fill="rgb(216,45,41)" fg:x="41545" fg:w="922"/><text x="87.4983%" y="1407.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (896 samples, 1.88%)</title><rect x="87.3029%" y="1381" width="1.8817%" height="15" fill="rgb(210,226,51)" fg:x="41571" fg:w="896"/><text x="87.5529%" y="1391.50">s..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (178 samples, 0.37%)</title><rect x="88.8107%" y="1365" width="0.3738%" height="15" fill="rgb(209,117,49)" fg:x="42289" fg:w="178"/><text x="89.0607%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (176 samples, 0.37%)</title><rect x="88.8149%" y="1349" width="0.3696%" height="15" fill="rgb(206,196,24)" fg:x="42291" fg:w="176"/><text x="89.0649%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (176 samples, 0.37%)</title><rect x="88.8149%" y="1333" width="0.3696%" height="15" fill="rgb(253,218,3)" fg:x="42291" fg:w="176"/><text x="89.0649%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (169 samples, 0.35%)</title><rect x="88.8296%" y="1317" width="0.3549%" height="15" fill="rgb(252,166,2)" fg:x="42298" fg:w="169"/><text x="89.0796%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (46 samples, 0.10%)</title><rect x="89.0879%" y="1301" width="0.0966%" height="15" fill="rgb(236,218,26)" fg:x="42421" fg:w="46"/><text x="89.3379%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (46 samples, 0.10%)</title><rect x="89.0879%" y="1285" width="0.0966%" height="15" fill="rgb(254,84,19)" fg:x="42421" fg:w="46"/><text x="89.3379%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.09%)</title><rect x="89.0900%" y="1269" width="0.0945%" height="15" fill="rgb(219,137,29)" fg:x="42422" fg:w="45"/><text x="89.3400%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (43 samples, 0.09%)</title><rect x="89.0942%" y="1253" width="0.0903%" height="15" fill="rgb(227,47,52)" fg:x="42424" fg:w="43"/><text x="89.3442%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.03%)</title><rect x="89.1551%" y="1237" width="0.0294%" height="15" fill="rgb(229,167,24)" fg:x="42453" fg:w="14"/><text x="89.4051%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.03%)</title><rect x="89.1551%" y="1221" width="0.0294%" height="15" fill="rgb(233,164,1)" fg:x="42453" fg:w="14"/><text x="89.4051%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="89.1551%" y="1205" width="0.0294%" height="15" fill="rgb(218,88,48)" fg:x="42453" fg:w="14"/><text x="89.4051%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="89.1572%" y="1189" width="0.0273%" height="15" fill="rgb(226,214,24)" fg:x="42454" fg:w="13"/><text x="89.4072%" y="1199.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="89.1971%" y="1365" width="0.0147%" height="15" fill="rgb(233,29,12)" fg:x="42473" fg:w="7"/><text x="89.4471%" y="1375.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="89.2349%" y="1333" width="0.0105%" height="15" fill="rgb(219,120,34)" fg:x="42491" fg:w="5"/><text x="89.4849%" y="1343.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="89.2559%" y="1301" width="0.0105%" height="15" fill="rgb(226,78,44)" fg:x="42501" fg:w="5"/><text x="89.5059%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="89.2706%" y="1285" width="0.0147%" height="15" fill="rgb(240,15,48)" fg:x="42508" fg:w="7"/><text x="89.5206%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.3021%" y="1077" width="0.0105%" height="15" fill="rgb(253,176,7)" fg:x="42523" fg:w="5"/><text x="89.5521%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.3021%" y="1061" width="0.0105%" height="15" fill="rgb(206,166,28)" fg:x="42523" fg:w="5"/><text x="89.5521%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.3021%" y="1109" width="0.0126%" height="15" fill="rgb(241,53,51)" fg:x="42523" fg:w="6"/><text x="89.5521%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.3021%" y="1093" width="0.0126%" height="15" fill="rgb(249,112,30)" fg:x="42523" fg:w="6"/><text x="89.5521%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.07%)</title><rect x="89.2538%" y="1317" width="0.0714%" height="15" fill="rgb(217,85,30)" fg:x="42500" fg:w="34"/><text x="89.5038%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (28 samples, 0.06%)</title><rect x="89.2664%" y="1301" width="0.0588%" height="15" fill="rgb(233,49,7)" fg:x="42506" fg:w="28"/><text x="89.5164%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (19 samples, 0.04%)</title><rect x="89.2853%" y="1285" width="0.0399%" height="15" fill="rgb(234,109,9)" fg:x="42515" fg:w="19"/><text x="89.5353%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="89.2853%" y="1269" width="0.0399%" height="15" fill="rgb(253,95,22)" fg:x="42515" fg:w="19"/><text x="89.5353%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (17 samples, 0.04%)</title><rect x="89.2895%" y="1253" width="0.0357%" height="15" fill="rgb(233,176,25)" fg:x="42517" fg:w="17"/><text x="89.5395%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.03%)</title><rect x="89.2958%" y="1237" width="0.0294%" height="15" fill="rgb(236,33,39)" fg:x="42520" fg:w="14"/><text x="89.5458%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.03%)</title><rect x="89.2958%" y="1221" width="0.0294%" height="15" fill="rgb(223,226,42)" fg:x="42520" fg:w="14"/><text x="89.5458%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="89.2958%" y="1205" width="0.0294%" height="15" fill="rgb(216,99,33)" fg:x="42520" fg:w="14"/><text x="89.5458%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="89.2958%" y="1189" width="0.0294%" height="15" fill="rgb(235,84,23)" fg:x="42520" fg:w="14"/><text x="89.5458%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.02%)</title><rect x="89.3021%" y="1173" width="0.0231%" height="15" fill="rgb(232,2,27)" fg:x="42523" fg:w="11"/><text x="89.5521%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.02%)</title><rect x="89.3021%" y="1157" width="0.0231%" height="15" fill="rgb(241,23,22)" fg:x="42523" fg:w="11"/><text x="89.5521%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="89.3021%" y="1141" width="0.0231%" height="15" fill="rgb(211,73,27)" fg:x="42523" fg:w="11"/><text x="89.5521%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="89.3021%" y="1125" width="0.0231%" height="15" fill="rgb(235,109,49)" fg:x="42523" fg:w="11"/><text x="89.5521%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="89.3147%" y="1109" width="0.0105%" height="15" fill="rgb(230,99,29)" fg:x="42529" fg:w="5"/><text x="89.5647%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="89.3147%" y="1093" width="0.0105%" height="15" fill="rgb(245,199,7)" fg:x="42529" fg:w="5"/><text x="89.5647%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.3147%" y="1077" width="0.0105%" height="15" fill="rgb(217,179,10)" fg:x="42529" fg:w="5"/><text x="89.5647%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.3147%" y="1061" width="0.0105%" height="15" fill="rgb(254,99,47)" fg:x="42529" fg:w="5"/><text x="89.5647%" y="1071.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="89.3273%" y="1285" width="0.0147%" height="15" fill="rgb(251,121,7)" fg:x="42535" fg:w="7"/><text x="89.5773%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.3420%" y="1269" width="0.0105%" height="15" fill="rgb(250,177,26)" fg:x="42542" fg:w="5"/><text x="89.5920%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.04%)</title><rect x="89.3252%" y="1317" width="0.0378%" height="15" fill="rgb(232,88,15)" fg:x="42534" fg:w="18"/><text x="89.5752%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.04%)</title><rect x="89.3273%" y="1301" width="0.0357%" height="15" fill="rgb(251,54,54)" fg:x="42535" fg:w="17"/><text x="89.5773%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="89.3420%" y="1285" width="0.0210%" height="15" fill="rgb(208,177,15)" fg:x="42542" fg:w="10"/><text x="89.5920%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (69 samples, 0.14%)</title><rect x="89.2265%" y="1349" width="0.1449%" height="15" fill="rgb(205,97,32)" fg:x="42487" fg:w="69"/><text x="89.4765%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (58 samples, 0.12%)</title><rect x="89.2496%" y="1333" width="0.1218%" height="15" fill="rgb(217,192,13)" fg:x="42498" fg:w="58"/><text x="89.4996%" y="1343.50"></text></g><g><title>libsystem_m.dylib`exp (6 samples, 0.01%)</title><rect x="89.3777%" y="1317" width="0.0126%" height="15" fill="rgb(215,163,41)" fg:x="42559" fg:w="6"/><text x="89.6277%" y="1327.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="89.4008%" y="1285" width="0.0147%" height="15" fill="rgb(246,83,29)" fg:x="42570" fg:w="7"/><text x="89.6508%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="89.3903%" y="1301" width="0.0399%" height="15" fill="rgb(219,2,45)" fg:x="42565" fg:w="19"/><text x="89.6403%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.4176%" y="1285" width="0.0126%" height="15" fill="rgb(242,215,33)" fg:x="42578" fg:w="6"/><text x="89.6676%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="89.4386%" y="1205" width="0.0168%" height="15" fill="rgb(217,1,6)" fg:x="42588" fg:w="8"/><text x="89.6886%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="89.4386%" y="1189" width="0.0168%" height="15" fill="rgb(207,85,52)" fg:x="42588" fg:w="8"/><text x="89.6886%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.03%)</title><rect x="89.4386%" y="1237" width="0.0336%" height="15" fill="rgb(231,171,19)" fg:x="42588" fg:w="16"/><text x="89.6886%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (16 samples, 0.03%)</title><rect x="89.4386%" y="1221" width="0.0336%" height="15" fill="rgb(207,128,4)" fg:x="42588" fg:w="16"/><text x="89.6886%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="89.4554%" y="1205" width="0.0168%" height="15" fill="rgb(219,208,4)" fg:x="42596" fg:w="8"/><text x="89.7054%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="89.4554%" y="1189" width="0.0168%" height="15" fill="rgb(235,161,42)" fg:x="42596" fg:w="8"/><text x="89.7054%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="89.4575%" y="1173" width="0.0147%" height="15" fill="rgb(247,218,18)" fg:x="42597" fg:w="7"/><text x="89.7075%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (52 samples, 0.11%)</title><rect x="89.3714%" y="1349" width="0.1092%" height="15" fill="rgb(232,114,51)" fg:x="42556" fg:w="52"/><text x="89.6214%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (51 samples, 0.11%)</title><rect x="89.3735%" y="1333" width="0.1071%" height="15" fill="rgb(222,95,3)" fg:x="42557" fg:w="51"/><text x="89.6235%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (43 samples, 0.09%)</title><rect x="89.3903%" y="1317" width="0.0903%" height="15" fill="rgb(240,65,29)" fg:x="42565" fg:w="43"/><text x="89.6403%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (20 samples, 0.04%)</title><rect x="89.4386%" y="1301" width="0.0420%" height="15" fill="rgb(249,209,20)" fg:x="42588" fg:w="20"/><text x="89.6886%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (20 samples, 0.04%)</title><rect x="89.4386%" y="1285" width="0.0420%" height="15" fill="rgb(241,48,37)" fg:x="42588" fg:w="20"/><text x="89.6886%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="89.4386%" y="1269" width="0.0420%" height="15" fill="rgb(230,140,42)" fg:x="42588" fg:w="20"/><text x="89.6886%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (20 samples, 0.04%)</title><rect x="89.4386%" y="1253" width="0.0420%" height="15" fill="rgb(230,176,45)" fg:x="42588" fg:w="20"/><text x="89.6886%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="89.4932%" y="1221" width="0.0168%" height="15" fill="rgb(245,112,21)" fg:x="42614" fg:w="8"/><text x="89.7432%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="89.4911%" y="1253" width="0.0399%" height="15" fill="rgb(207,183,35)" fg:x="42613" fg:w="19"/><text x="89.7411%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="89.4932%" y="1237" width="0.0378%" height="15" fill="rgb(227,44,33)" fg:x="42614" fg:w="18"/><text x="89.7432%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="89.5100%" y="1221" width="0.0210%" height="15" fill="rgb(246,120,21)" fg:x="42622" fg:w="10"/><text x="89.7600%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="89.5100%" y="1205" width="0.0210%" height="15" fill="rgb(235,57,52)" fg:x="42622" fg:w="10"/><text x="89.7600%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="89.5100%" y="1189" width="0.0210%" height="15" fill="rgb(238,84,10)" fg:x="42622" fg:w="10"/><text x="89.7600%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="89.5205%" y="1173" width="0.0105%" height="15" fill="rgb(251,200,32)" fg:x="42627" fg:w="5"/><text x="89.7705%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="89.5205%" y="1157" width="0.0105%" height="15" fill="rgb(247,159,13)" fg:x="42627" fg:w="5"/><text x="89.7705%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.5205%" y="1141" width="0.0105%" height="15" fill="rgb(238,64,4)" fg:x="42627" fg:w="5"/><text x="89.7705%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.5205%" y="1125" width="0.0105%" height="15" fill="rgb(221,131,51)" fg:x="42627" fg:w="5"/><text x="89.7705%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="89.5310%" y="1253" width="0.0210%" height="15" fill="rgb(242,5,29)" fg:x="42632" fg:w="10"/><text x="89.7810%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="89.5310%" y="1237" width="0.0210%" height="15" fill="rgb(214,130,32)" fg:x="42632" fg:w="10"/><text x="89.7810%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="89.5331%" y="1221" width="0.0189%" height="15" fill="rgb(244,210,16)" fg:x="42633" fg:w="9"/><text x="89.7831%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="89.5416%" y="1205" width="0.0105%" height="15" fill="rgb(234,48,26)" fg:x="42637" fg:w="5"/><text x="89.7916%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.07%)</title><rect x="89.4869%" y="1285" width="0.0672%" height="15" fill="rgb(231,82,38)" fg:x="42611" fg:w="32"/><text x="89.7369%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (30 samples, 0.06%)</title><rect x="89.4911%" y="1269" width="0.0630%" height="15" fill="rgb(254,128,41)" fg:x="42613" fg:w="30"/><text x="89.7411%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.5542%" y="1237" width="0.0126%" height="15" fill="rgb(212,73,49)" fg:x="42643" fg:w="6"/><text x="89.8042%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.5542%" y="1221" width="0.0126%" height="15" fill="rgb(205,62,54)" fg:x="42643" fg:w="6"/><text x="89.8042%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.5731%" y="1061" width="0.0105%" height="15" fill="rgb(228,0,8)" fg:x="42652" fg:w="5"/><text x="89.8231%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.5731%" y="1045" width="0.0105%" height="15" fill="rgb(251,28,17)" fg:x="42652" fg:w="5"/><text x="89.8231%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="89.5731%" y="1093" width="0.0189%" height="15" fill="rgb(238,105,27)" fg:x="42652" fg:w="9"/><text x="89.8231%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="89.5731%" y="1077" width="0.0189%" height="15" fill="rgb(237,216,33)" fg:x="42652" fg:w="9"/><text x="89.8231%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.03%)</title><rect x="89.5668%" y="1237" width="0.0336%" height="15" fill="rgb(229,228,25)" fg:x="42649" fg:w="16"/><text x="89.8168%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="89.5689%" y="1221" width="0.0315%" height="15" fill="rgb(233,75,23)" fg:x="42650" fg:w="15"/><text x="89.8189%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="89.5689%" y="1205" width="0.0315%" height="15" fill="rgb(231,207,16)" fg:x="42650" fg:w="15"/><text x="89.8189%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="89.5731%" y="1189" width="0.0273%" height="15" fill="rgb(231,191,45)" fg:x="42652" fg:w="13"/><text x="89.8231%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="89.5731%" y="1173" width="0.0273%" height="15" fill="rgb(224,133,17)" fg:x="42652" fg:w="13"/><text x="89.8231%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="89.5731%" y="1157" width="0.0273%" height="15" fill="rgb(209,178,27)" fg:x="42652" fg:w="13"/><text x="89.8231%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="89.5731%" y="1141" width="0.0273%" height="15" fill="rgb(218,37,11)" fg:x="42652" fg:w="13"/><text x="89.8231%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="89.5731%" y="1125" width="0.0273%" height="15" fill="rgb(251,226,25)" fg:x="42652" fg:w="13"/><text x="89.8231%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="89.5731%" y="1109" width="0.0273%" height="15" fill="rgb(209,222,27)" fg:x="42652" fg:w="13"/><text x="89.8231%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (25 samples, 0.05%)</title><rect x="89.5542%" y="1285" width="0.0525%" height="15" fill="rgb(238,22,21)" fg:x="42643" fg:w="25"/><text x="89.8042%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.05%)</title><rect x="89.5542%" y="1269" width="0.0525%" height="15" fill="rgb(233,161,25)" fg:x="42643" fg:w="25"/><text x="89.8042%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="89.5542%" y="1253" width="0.0525%" height="15" fill="rgb(226,122,53)" fg:x="42643" fg:w="25"/><text x="89.8042%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.6088%" y="1189" width="0.0105%" height="15" fill="rgb(220,123,17)" fg:x="42669" fg:w="5"/><text x="89.8588%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="89.6088%" y="1221" width="0.0168%" height="15" fill="rgb(230,224,35)" fg:x="42669" fg:w="8"/><text x="89.8588%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="89.6088%" y="1205" width="0.0168%" height="15" fill="rgb(246,83,8)" fg:x="42669" fg:w="8"/><text x="89.8588%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="89.6256%" y="1221" width="0.0126%" height="15" fill="rgb(230,214,17)" fg:x="42677" fg:w="6"/><text x="89.8756%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.6256%" y="1205" width="0.0126%" height="15" fill="rgb(222,97,18)" fg:x="42677" fg:w="6"/><text x="89.8756%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.6256%" y="1189" width="0.0126%" height="15" fill="rgb(206,79,1)" fg:x="42677" fg:w="6"/><text x="89.8756%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="89.6277%" y="1173" width="0.0105%" height="15" fill="rgb(214,121,34)" fg:x="42678" fg:w="5"/><text x="89.8777%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="89.6277%" y="1157" width="0.0105%" height="15" fill="rgb(249,199,46)" fg:x="42678" fg:w="5"/><text x="89.8777%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.6277%" y="1141" width="0.0105%" height="15" fill="rgb(214,222,46)" fg:x="42678" fg:w="5"/><text x="89.8777%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.6277%" y="1125" width="0.0105%" height="15" fill="rgb(248,168,30)" fg:x="42678" fg:w="5"/><text x="89.8777%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (18 samples, 0.04%)</title><rect x="89.6067%" y="1269" width="0.0378%" height="15" fill="rgb(226,14,28)" fg:x="42668" fg:w="18"/><text x="89.8567%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="89.6067%" y="1253" width="0.0378%" height="15" fill="rgb(253,123,1)" fg:x="42668" fg:w="18"/><text x="89.8567%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (17 samples, 0.04%)</title><rect x="89.6088%" y="1237" width="0.0357%" height="15" fill="rgb(225,24,42)" fg:x="42669" fg:w="17"/><text x="89.8588%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (220 samples, 0.46%)</title><rect x="89.1845%" y="1397" width="0.4620%" height="15" fill="rgb(216,161,37)" fg:x="42467" fg:w="220"/><text x="89.4345%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (220 samples, 0.46%)</title><rect x="89.1845%" y="1381" width="0.4620%" height="15" fill="rgb(251,164,26)" fg:x="42467" fg:w="220"/><text x="89.4345%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (204 samples, 0.43%)</title><rect x="89.2181%" y="1365" width="0.4284%" height="15" fill="rgb(219,177,3)" fg:x="42483" fg:w="204"/><text x="89.4681%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (79 samples, 0.17%)</title><rect x="89.4806%" y="1349" width="0.1659%" height="15" fill="rgb(222,65,0)" fg:x="42608" fg:w="79"/><text x="89.7306%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (79 samples, 0.17%)</title><rect x="89.4806%" y="1333" width="0.1659%" height="15" fill="rgb(223,69,54)" fg:x="42608" fg:w="79"/><text x="89.7306%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (78 samples, 0.16%)</title><rect x="89.4827%" y="1317" width="0.1638%" height="15" fill="rgb(235,30,27)" fg:x="42609" fg:w="78"/><text x="89.7327%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (77 samples, 0.16%)</title><rect x="89.4848%" y="1301" width="0.1617%" height="15" fill="rgb(220,183,50)" fg:x="42610" fg:w="77"/><text x="89.7348%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (19 samples, 0.04%)</title><rect x="89.6067%" y="1285" width="0.0399%" height="15" fill="rgb(248,198,15)" fg:x="42668" fg:w="19"/><text x="89.8567%" y="1295.50"></text></g><g><title>libsystem_kernel.dylib`swtch_pri (5 samples, 0.01%)</title><rect x="89.6466%" y="1381" width="0.0105%" height="15" fill="rgb(222,211,4)" fg:x="42687" fg:w="5"/><text x="89.8966%" y="1391.50"></text></g><g><title>libsystem_m.dylib`exp (9 samples, 0.02%)</title><rect x="89.6613%" y="1349" width="0.0189%" height="15" fill="rgb(214,102,34)" fg:x="42694" fg:w="9"/><text x="89.9113%" y="1359.50"></text></g><g><title>libsystem_m.dylib`exp (11 samples, 0.02%)</title><rect x="89.7033%" y="1285" width="0.0231%" height="15" fill="rgb(245,92,5)" fg:x="42714" fg:w="11"/><text x="89.9533%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="89.7453%" y="1173" width="0.0168%" height="15" fill="rgb(252,72,51)" fg:x="42734" fg:w="8"/><text x="89.9953%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (8 samples, 0.02%)</title><rect x="89.7453%" y="1157" width="0.0168%" height="15" fill="rgb(252,208,19)" fg:x="42734" fg:w="8"/><text x="89.9953%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="89.7432%" y="1205" width="0.0273%" height="15" fill="rgb(211,69,7)" fg:x="42733" fg:w="13"/><text x="89.9932%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="89.7453%" y="1189" width="0.0252%" height="15" fill="rgb(211,27,16)" fg:x="42734" fg:w="12"/><text x="89.9953%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.05%)</title><rect x="89.7369%" y="1237" width="0.0462%" height="15" fill="rgb(219,216,14)" fg:x="42730" fg:w="22"/><text x="89.9869%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="89.7432%" y="1221" width="0.0399%" height="15" fill="rgb(219,71,8)" fg:x="42733" fg:w="19"/><text x="89.9932%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="89.7705%" y="1205" width="0.0126%" height="15" fill="rgb(223,170,53)" fg:x="42746" fg:w="6"/><text x="90.0205%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.7873%" y="1189" width="0.0126%" height="15" fill="rgb(246,21,26)" fg:x="42754" fg:w="6"/><text x="90.0373%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.7894%" y="1173" width="0.0105%" height="15" fill="rgb(248,20,46)" fg:x="42755" fg:w="5"/><text x="90.0394%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.03%)</title><rect x="89.7831%" y="1237" width="0.0336%" height="15" fill="rgb(252,94,11)" fg:x="42752" fg:w="16"/><text x="90.0331%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.03%)</title><rect x="89.7831%" y="1221" width="0.0336%" height="15" fill="rgb(236,163,8)" fg:x="42752" fg:w="16"/><text x="90.0331%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="89.7873%" y="1205" width="0.0294%" height="15" fill="rgb(217,221,45)" fg:x="42754" fg:w="14"/><text x="90.0373%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="89.7999%" y="1189" width="0.0168%" height="15" fill="rgb(238,38,17)" fg:x="42760" fg:w="8"/><text x="90.0499%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="89.7999%" y="1173" width="0.0168%" height="15" fill="rgb(242,210,23)" fg:x="42760" fg:w="8"/><text x="90.0499%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.8062%" y="1157" width="0.0105%" height="15" fill="rgb(250,86,53)" fg:x="42763" fg:w="5"/><text x="90.0562%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="89.8062%" y="1141" width="0.0105%" height="15" fill="rgb(223,168,25)" fg:x="42763" fg:w="5"/><text x="90.0562%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.8062%" y="1125" width="0.0105%" height="15" fill="rgb(251,189,4)" fg:x="42763" fg:w="5"/><text x="90.0562%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.09%)</title><rect x="89.7306%" y="1269" width="0.0903%" height="15" fill="rgb(245,19,28)" fg:x="42727" fg:w="43"/><text x="89.9806%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (40 samples, 0.08%)</title><rect x="89.7369%" y="1253" width="0.0840%" height="15" fill="rgb(207,10,34)" fg:x="42730" fg:w="40"/><text x="89.9869%" y="1263.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="89.8230%" y="1237" width="0.0147%" height="15" fill="rgb(235,153,31)" fg:x="42771" fg:w="7"/><text x="90.0730%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="89.8398%" y="1221" width="0.0252%" height="15" fill="rgb(228,72,37)" fg:x="42779" fg:w="12"/><text x="90.0898%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="89.8461%" y="1205" width="0.0189%" height="15" fill="rgb(215,15,16)" fg:x="42782" fg:w="9"/><text x="90.0961%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="89.8545%" y="1189" width="0.0105%" height="15" fill="rgb(250,119,29)" fg:x="42786" fg:w="5"/><text x="90.1045%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.8545%" y="1173" width="0.0105%" height="15" fill="rgb(214,59,1)" fg:x="42786" fg:w="5"/><text x="90.1045%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="89.8713%" y="1173" width="0.0147%" height="15" fill="rgb(223,109,25)" fg:x="42794" fg:w="7"/><text x="90.1213%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.8734%" y="1157" width="0.0126%" height="15" fill="rgb(230,198,22)" fg:x="42795" fg:w="6"/><text x="90.1234%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (25 samples, 0.05%)</title><rect x="89.8650%" y="1221" width="0.0525%" height="15" fill="rgb(245,184,46)" fg:x="42791" fg:w="25"/><text x="90.1150%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.05%)</title><rect x="89.8650%" y="1205" width="0.0525%" height="15" fill="rgb(253,73,16)" fg:x="42791" fg:w="25"/><text x="90.1150%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (23 samples, 0.05%)</title><rect x="89.8692%" y="1189" width="0.0483%" height="15" fill="rgb(206,94,45)" fg:x="42793" fg:w="23"/><text x="90.1192%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="89.8860%" y="1173" width="0.0315%" height="15" fill="rgb(236,83,27)" fg:x="42801" fg:w="15"/><text x="90.1360%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="89.8860%" y="1157" width="0.0315%" height="15" fill="rgb(220,196,8)" fg:x="42801" fg:w="15"/><text x="90.1360%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="89.8944%" y="1141" width="0.0231%" height="15" fill="rgb(254,185,14)" fg:x="42805" fg:w="11"/><text x="90.1444%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="89.8986%" y="1125" width="0.0189%" height="15" fill="rgb(226,50,22)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="89.8986%" y="1109" width="0.0189%" height="15" fill="rgb(253,147,0)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="89.8986%" y="1093" width="0.0189%" height="15" fill="rgb(252,46,33)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="89.8986%" y="1077" width="0.0189%" height="15" fill="rgb(242,22,54)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="89.8986%" y="1061" width="0.0189%" height="15" fill="rgb(223,178,32)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="89.8986%" y="1045" width="0.0189%" height="15" fill="rgb(214,106,53)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="89.8986%" y="1029" width="0.0189%" height="15" fill="rgb(232,65,50)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="89.8986%" y="1013" width="0.0189%" height="15" fill="rgb(231,110,28)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="89.8986%" y="997" width="0.0189%" height="15" fill="rgb(216,71,40)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="89.8986%" y="981" width="0.0189%" height="15" fill="rgb(229,89,53)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="89.8986%" y="965" width="0.0189%" height="15" fill="rgb(210,124,14)" fg:x="42807" fg:w="9"/><text x="90.1486%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="89.9028%" y="949" width="0.0147%" height="15" fill="rgb(236,213,6)" fg:x="42809" fg:w="7"/><text x="90.1528%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="89.9028%" y="933" width="0.0147%" height="15" fill="rgb(228,41,5)" fg:x="42809" fg:w="7"/><text x="90.1528%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="89.9028%" y="917" width="0.0147%" height="15" fill="rgb(221,167,25)" fg:x="42809" fg:w="7"/><text x="90.1528%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="89.9028%" y="901" width="0.0147%" height="15" fill="rgb(228,144,37)" fg:x="42809" fg:w="7"/><text x="90.1528%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="89.9028%" y="885" width="0.0147%" height="15" fill="rgb(227,189,38)" fg:x="42809" fg:w="7"/><text x="90.1528%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="89.9028%" y="869" width="0.0147%" height="15" fill="rgb(218,8,2)" fg:x="42809" fg:w="7"/><text x="90.1528%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="89.9049%" y="853" width="0.0126%" height="15" fill="rgb(209,61,28)" fg:x="42810" fg:w="6"/><text x="90.1549%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.9049%" y="837" width="0.0126%" height="15" fill="rgb(233,140,39)" fg:x="42810" fg:w="6"/><text x="90.1549%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.9049%" y="821" width="0.0126%" height="15" fill="rgb(251,66,48)" fg:x="42810" fg:w="6"/><text x="90.1549%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="89.9049%" y="805" width="0.0126%" height="15" fill="rgb(210,44,45)" fg:x="42810" fg:w="6"/><text x="90.1549%" y="815.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="89.9049%" y="789" width="0.0126%" height="15" fill="rgb(214,136,46)" fg:x="42810" fg:w="6"/><text x="90.1549%" y="799.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="89.9049%" y="773" width="0.0126%" height="15" fill="rgb(207,130,50)" fg:x="42810" fg:w="6"/><text x="90.1549%" y="783.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="89.9049%" y="757" width="0.0126%" height="15" fill="rgb(228,102,49)" fg:x="42810" fg:w="6"/><text x="90.1549%" y="767.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="89.9070%" y="741" width="0.0105%" height="15" fill="rgb(253,55,1)" fg:x="42811" fg:w="5"/><text x="90.1570%" y="751.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="89.9070%" y="725" width="0.0105%" height="15" fill="rgb(238,222,9)" fg:x="42811" fg:w="5"/><text x="90.1570%" y="735.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.9070%" y="709" width="0.0105%" height="15" fill="rgb(246,99,6)" fg:x="42811" fg:w="5"/><text x="90.1570%" y="719.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="89.9070%" y="693" width="0.0105%" height="15" fill="rgb(219,110,26)" fg:x="42811" fg:w="5"/><text x="90.1570%" y="703.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (49 samples, 0.10%)</title><rect x="89.8209%" y="1269" width="0.1029%" height="15" fill="rgb(239,160,33)" fg:x="42770" fg:w="49"/><text x="90.0709%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.10%)</title><rect x="89.8209%" y="1253" width="0.1029%" height="15" fill="rgb(220,202,23)" fg:x="42770" fg:w="49"/><text x="90.0709%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (41 samples, 0.09%)</title><rect x="89.8377%" y="1237" width="0.0861%" height="15" fill="rgb(208,80,26)" fg:x="42778" fg:w="41"/><text x="90.0877%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (107 samples, 0.22%)</title><rect x="89.7033%" y="1301" width="0.2247%" height="15" fill="rgb(243,85,7)" fg:x="42714" fg:w="107"/><text x="89.9533%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (94 samples, 0.20%)</title><rect x="89.7306%" y="1285" width="0.1974%" height="15" fill="rgb(228,77,47)" fg:x="42727" fg:w="94"/><text x="89.9806%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (7 samples, 0.01%)</title><rect x="89.9343%" y="1269" width="0.0147%" height="15" fill="rgb(212,226,8)" fg:x="42824" fg:w="7"/><text x="90.1843%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="89.9553%" y="1221" width="0.0168%" height="15" fill="rgb(241,120,54)" fg:x="42834" fg:w="8"/><text x="90.2053%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="89.9553%" y="1205" width="0.0168%" height="15" fill="rgb(226,80,16)" fg:x="42834" fg:w="8"/><text x="90.2053%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="89.9616%" y="1189" width="0.0105%" height="15" fill="rgb(240,76,13)" fg:x="42837" fg:w="5"/><text x="90.2116%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="89.9616%" y="1173" width="0.0105%" height="15" fill="rgb(252,74,8)" fg:x="42837" fg:w="5"/><text x="90.2116%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="89.9721%" y="1221" width="0.0189%" height="15" fill="rgb(244,155,2)" fg:x="42842" fg:w="9"/><text x="90.2221%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="89.9721%" y="1205" width="0.0189%" height="15" fill="rgb(215,81,35)" fg:x="42842" fg:w="9"/><text x="90.2221%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="89.9763%" y="1189" width="0.0147%" height="15" fill="rgb(206,55,2)" fg:x="42844" fg:w="7"/><text x="90.2263%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.04%)</title><rect x="89.9532%" y="1253" width="0.0420%" height="15" fill="rgb(231,2,34)" fg:x="42833" fg:w="20"/><text x="90.2032%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="89.9553%" y="1237" width="0.0399%" height="15" fill="rgb(242,176,48)" fg:x="42834" fg:w="19"/><text x="90.2053%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="89.9973%" y="1205" width="0.0168%" height="15" fill="rgb(249,31,36)" fg:x="42854" fg:w="8"/><text x="90.2473%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="89.9994%" y="1189" width="0.0147%" height="15" fill="rgb(205,18,17)" fg:x="42855" fg:w="7"/><text x="90.2494%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="90.0141%" y="1205" width="0.0105%" height="15" fill="rgb(254,130,5)" fg:x="42862" fg:w="5"/><text x="90.2641%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.0141%" y="1189" width="0.0105%" height="15" fill="rgb(229,42,45)" fg:x="42862" fg:w="5"/><text x="90.2641%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (22 samples, 0.05%)</title><rect x="89.9952%" y="1253" width="0.0462%" height="15" fill="rgb(245,95,25)" fg:x="42853" fg:w="22"/><text x="90.2452%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="89.9973%" y="1237" width="0.0441%" height="15" fill="rgb(249,193,38)" fg:x="42854" fg:w="21"/><text x="90.2473%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (21 samples, 0.04%)</title><rect x="89.9973%" y="1221" width="0.0441%" height="15" fill="rgb(241,140,43)" fg:x="42854" fg:w="21"/><text x="90.2473%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="90.0246%" y="1205" width="0.0168%" height="15" fill="rgb(245,78,48)" fg:x="42867" fg:w="8"/><text x="90.2746%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="90.0267%" y="1189" width="0.0147%" height="15" fill="rgb(214,92,39)" fg:x="42868" fg:w="7"/><text x="90.2767%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="90.0267%" y="1173" width="0.0147%" height="15" fill="rgb(211,189,14)" fg:x="42868" fg:w="7"/><text x="90.2767%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="90.0288%" y="1157" width="0.0126%" height="15" fill="rgb(218,7,24)" fg:x="42869" fg:w="6"/><text x="90.2788%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="90.0414%" y="1189" width="0.0126%" height="15" fill="rgb(224,200,49)" fg:x="42875" fg:w="6"/><text x="90.2914%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="90.0414%" y="1173" width="0.0126%" height="15" fill="rgb(218,210,14)" fg:x="42875" fg:w="6"/><text x="90.2914%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (68 samples, 0.14%)</title><rect x="89.9280%" y="1301" width="0.1428%" height="15" fill="rgb(234,142,31)" fg:x="42821" fg:w="68"/><text x="90.1780%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (68 samples, 0.14%)</title><rect x="89.9280%" y="1285" width="0.1428%" height="15" fill="rgb(227,165,2)" fg:x="42821" fg:w="68"/><text x="90.1780%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (57 samples, 0.12%)</title><rect x="89.9511%" y="1269" width="0.1197%" height="15" fill="rgb(232,44,46)" fg:x="42832" fg:w="57"/><text x="90.2011%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.03%)</title><rect x="90.0414%" y="1253" width="0.0294%" height="15" fill="rgb(236,149,47)" fg:x="42875" fg:w="14"/><text x="90.2914%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.03%)</title><rect x="90.0414%" y="1237" width="0.0294%" height="15" fill="rgb(227,45,31)" fg:x="42875" fg:w="14"/><text x="90.2914%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="90.0414%" y="1221" width="0.0294%" height="15" fill="rgb(240,176,51)" fg:x="42875" fg:w="14"/><text x="90.2914%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="90.0414%" y="1205" width="0.0294%" height="15" fill="rgb(249,146,41)" fg:x="42875" fg:w="14"/><text x="90.2914%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="90.0582%" y="1189" width="0.0126%" height="15" fill="rgb(213,208,4)" fg:x="42883" fg:w="6"/><text x="90.3082%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="90.0582%" y="1173" width="0.0126%" height="15" fill="rgb(245,84,36)" fg:x="42883" fg:w="6"/><text x="90.3082%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="90.0582%" y="1157" width="0.0126%" height="15" fill="rgb(254,84,18)" fg:x="42883" fg:w="6"/><text x="90.3082%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.0603%" y="1141" width="0.0105%" height="15" fill="rgb(225,38,54)" fg:x="42884" fg:w="5"/><text x="90.3103%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.0603%" y="1125" width="0.0105%" height="15" fill="rgb(246,50,30)" fg:x="42884" fg:w="5"/><text x="90.3103%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.0603%" y="1109" width="0.0105%" height="15" fill="rgb(246,148,9)" fg:x="42884" fg:w="5"/><text x="90.3103%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="90.0729%" y="1205" width="0.0147%" height="15" fill="rgb(223,75,4)" fg:x="42890" fg:w="7"/><text x="90.3229%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="90.0750%" y="1189" width="0.0126%" height="15" fill="rgb(239,148,41)" fg:x="42891" fg:w="6"/><text x="90.3250%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="90.0876%" y="1205" width="0.0126%" height="15" fill="rgb(205,195,3)" fg:x="42897" fg:w="6"/><text x="90.3376%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="90.0876%" y="1189" width="0.0126%" height="15" fill="rgb(254,161,1)" fg:x="42897" fg:w="6"/><text x="90.3376%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="90.0876%" y="1173" width="0.0126%" height="15" fill="rgb(211,229,8)" fg:x="42897" fg:w="6"/><text x="90.3376%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="90.0729%" y="1237" width="0.0399%" height="15" fill="rgb(220,97,9)" fg:x="42890" fg:w="19"/><text x="90.3229%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="90.0729%" y="1221" width="0.0399%" height="15" fill="rgb(240,218,8)" fg:x="42890" fg:w="19"/><text x="90.3229%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="90.1002%" y="1205" width="0.0126%" height="15" fill="rgb(250,44,0)" fg:x="42903" fg:w="6"/><text x="90.3502%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="90.1002%" y="1189" width="0.0126%" height="15" fill="rgb(236,41,53)" fg:x="42903" fg:w="6"/><text x="90.3502%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="90.1002%" y="1173" width="0.0126%" height="15" fill="rgb(218,227,13)" fg:x="42903" fg:w="6"/><text x="90.3502%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="90.1002%" y="1157" width="0.0126%" height="15" fill="rgb(217,94,32)" fg:x="42903" fg:w="6"/><text x="90.3502%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="90.1023%" y="1141" width="0.0105%" height="15" fill="rgb(213,217,12)" fg:x="42904" fg:w="5"/><text x="90.3523%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="90.1023%" y="1125" width="0.0105%" height="15" fill="rgb(229,13,46)" fg:x="42904" fg:w="5"/><text x="90.3523%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.1023%" y="1109" width="0.0105%" height="15" fill="rgb(243,139,5)" fg:x="42904" fg:w="5"/><text x="90.3523%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.1023%" y="1093" width="0.0105%" height="15" fill="rgb(249,38,45)" fg:x="42904" fg:w="5"/><text x="90.3523%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="90.1128%" y="1237" width="0.0147%" height="15" fill="rgb(216,70,11)" fg:x="42909" fg:w="7"/><text x="90.3628%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="90.1128%" y="1221" width="0.0147%" height="15" fill="rgb(253,101,25)" fg:x="42909" fg:w="7"/><text x="90.3628%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.1170%" y="1205" width="0.0105%" height="15" fill="rgb(207,197,30)" fg:x="42911" fg:w="5"/><text x="90.3670%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31 samples, 0.07%)</title><rect x="90.0708%" y="1285" width="0.0651%" height="15" fill="rgb(238,87,13)" fg:x="42889" fg:w="31"/><text x="90.3208%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.07%)</title><rect x="90.0708%" y="1269" width="0.0651%" height="15" fill="rgb(215,155,8)" fg:x="42889" fg:w="31"/><text x="90.3208%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (30 samples, 0.06%)</title><rect x="90.0729%" y="1253" width="0.0630%" height="15" fill="rgb(239,166,38)" fg:x="42890" fg:w="30"/><text x="90.3229%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (215 samples, 0.45%)</title><rect x="89.6886%" y="1333" width="0.4515%" height="15" fill="rgb(240,194,35)" fg:x="42707" fg:w="215"/><text x="89.9386%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (210 samples, 0.44%)</title><rect x="89.6991%" y="1317" width="0.4410%" height="15" fill="rgb(219,10,44)" fg:x="42712" fg:w="210"/><text x="89.9491%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (33 samples, 0.07%)</title><rect x="90.0708%" y="1301" width="0.0693%" height="15" fill="rgb(251,220,35)" fg:x="42889" fg:w="33"/><text x="90.3208%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="90.1422%" y="1301" width="0.0105%" height="15" fill="rgb(218,117,13)" fg:x="42923" fg:w="5"/><text x="90.3922%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (5 samples, 0.01%)</title><rect x="90.1548%" y="1269" width="0.0105%" height="15" fill="rgb(221,213,40)" fg:x="42929" fg:w="5"/><text x="90.4048%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="90.1548%" y="1285" width="0.0210%" height="15" fill="rgb(251,224,35)" fg:x="42929" fg:w="10"/><text x="90.4048%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.1653%" y="1269" width="0.0105%" height="15" fill="rgb(241,33,39)" fg:x="42934" fg:w="5"/><text x="90.4153%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="90.1758%" y="1285" width="0.0168%" height="15" fill="rgb(222,74,17)" fg:x="42939" fg:w="8"/><text x="90.4258%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="90.1758%" y="1269" width="0.0168%" height="15" fill="rgb(225,103,0)" fg:x="42939" fg:w="8"/><text x="90.4258%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="90.1926%" y="1221" width="0.0147%" height="15" fill="rgb(240,0,12)" fg:x="42947" fg:w="7"/><text x="90.4426%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="90.1926%" y="1205" width="0.0147%" height="15" fill="rgb(233,213,37)" fg:x="42947" fg:w="7"/><text x="90.4426%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="90.2073%" y="1221" width="0.0147%" height="15" fill="rgb(225,84,52)" fg:x="42954" fg:w="7"/><text x="90.4573%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="90.2073%" y="1205" width="0.0147%" height="15" fill="rgb(247,160,51)" fg:x="42954" fg:w="7"/><text x="90.4573%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="90.2073%" y="1189" width="0.0147%" height="15" fill="rgb(244,60,51)" fg:x="42954" fg:w="7"/><text x="90.4573%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (42 samples, 0.09%)</title><rect x="90.1401%" y="1333" width="0.0882%" height="15" fill="rgb(233,114,7)" fg:x="42922" fg:w="42"/><text x="90.3901%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.09%)</title><rect x="90.1422%" y="1317" width="0.0861%" height="15" fill="rgb(246,136,16)" fg:x="42923" fg:w="41"/><text x="90.3922%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (36 samples, 0.08%)</title><rect x="90.1527%" y="1301" width="0.0756%" height="15" fill="rgb(243,114,45)" fg:x="42928" fg:w="36"/><text x="90.4027%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.04%)</title><rect x="90.1926%" y="1285" width="0.0357%" height="15" fill="rgb(247,183,43)" fg:x="42947" fg:w="17"/><text x="90.4426%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.04%)</title><rect x="90.1926%" y="1269" width="0.0357%" height="15" fill="rgb(251,210,42)" fg:x="42947" fg:w="17"/><text x="90.4426%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.04%)</title><rect x="90.1926%" y="1253" width="0.0357%" height="15" fill="rgb(221,88,35)" fg:x="42947" fg:w="17"/><text x="90.4426%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (17 samples, 0.04%)</title><rect x="90.1926%" y="1237" width="0.0357%" height="15" fill="rgb(242,21,20)" fg:x="42947" fg:w="17"/><text x="90.4426%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="90.2556%" y="1205" width="0.0126%" height="15" fill="rgb(233,226,36)" fg:x="42977" fg:w="6"/><text x="90.5056%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.2577%" y="1189" width="0.0105%" height="15" fill="rgb(243,189,34)" fg:x="42978" fg:w="5"/><text x="90.5077%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.04%)</title><rect x="90.2493%" y="1237" width="0.0357%" height="15" fill="rgb(207,145,50)" fg:x="42974" fg:w="17"/><text x="90.4993%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="90.2535%" y="1221" width="0.0315%" height="15" fill="rgb(242,1,50)" fg:x="42976" fg:w="15"/><text x="90.5035%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="90.2745%" y="1205" width="0.0105%" height="15" fill="rgb(231,65,32)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="90.2745%" y="1189" width="0.0105%" height="15" fill="rgb(208,68,49)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.2745%" y="1173" width="0.0105%" height="15" fill="rgb(253,54,49)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.2745%" y="1157" width="0.0105%" height="15" fill="rgb(245,186,24)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.2745%" y="1141" width="0.0105%" height="15" fill="rgb(209,2,41)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.2745%" y="1125" width="0.0105%" height="15" fill="rgb(242,208,54)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="90.2745%" y="1109" width="0.0105%" height="15" fill="rgb(225,9,51)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="90.2745%" y="1093" width="0.0105%" height="15" fill="rgb(207,207,25)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.2745%" y="1077" width="0.0105%" height="15" fill="rgb(253,96,18)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.2745%" y="1061" width="0.0105%" height="15" fill="rgb(252,215,20)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.2745%" y="1045" width="0.0105%" height="15" fill="rgb(245,227,26)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.2745%" y="1029" width="0.0105%" height="15" fill="rgb(241,208,0)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="90.2745%" y="1013" width="0.0105%" height="15" fill="rgb(224,130,10)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="90.2745%" y="997" width="0.0105%" height="15" fill="rgb(237,29,0)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.2745%" y="981" width="0.0105%" height="15" fill="rgb(219,27,41)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.2745%" y="965" width="0.0105%" height="15" fill="rgb(245,101,19)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="90.2745%" y="949" width="0.0105%" height="15" fill="rgb(243,44,37)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="90.2745%" y="933" width="0.0105%" height="15" fill="rgb(228,213,43)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.2745%" y="917" width="0.0105%" height="15" fill="rgb(219,163,21)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.2745%" y="901" width="0.0105%" height="15" fill="rgb(234,86,24)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="90.2745%" y="885" width="0.0105%" height="15" fill="rgb(225,10,24)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="90.2745%" y="869" width="0.0105%" height="15" fill="rgb(218,109,7)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.2745%" y="853" width="0.0105%" height="15" fill="rgb(210,20,26)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.2745%" y="837" width="0.0105%" height="15" fill="rgb(216,18,1)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.2745%" y="821" width="0.0105%" height="15" fill="rgb(206,163,23)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.2745%" y="805" width="0.0105%" height="15" fill="rgb(229,150,31)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="815.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.2745%" y="789" width="0.0105%" height="15" fill="rgb(231,10,5)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="799.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.2745%" y="773" width="0.0105%" height="15" fill="rgb(250,40,50)" fg:x="42986" fg:w="5"/><text x="90.5245%" y="783.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.03%)</title><rect x="90.2850%" y="1237" width="0.0273%" height="15" fill="rgb(217,119,7)" fg:x="42991" fg:w="13"/><text x="90.5350%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="90.2871%" y="1221" width="0.0252%" height="15" fill="rgb(245,214,40)" fg:x="42992" fg:w="12"/><text x="90.5371%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="90.2955%" y="1205" width="0.0168%" height="15" fill="rgb(216,187,1)" fg:x="42996" fg:w="8"/><text x="90.5455%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.09%)</title><rect x="90.2388%" y="1269" width="0.0882%" height="15" fill="rgb(237,146,21)" fg:x="42969" fg:w="42"/><text x="90.4888%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (38 samples, 0.08%)</title><rect x="90.2472%" y="1253" width="0.0798%" height="15" fill="rgb(210,174,47)" fg:x="42973" fg:w="38"/><text x="90.4972%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="90.3123%" y="1237" width="0.0147%" height="15" fill="rgb(218,111,39)" fg:x="43004" fg:w="7"/><text x="90.5623%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="90.3123%" y="1221" width="0.0147%" height="15" fill="rgb(224,95,19)" fg:x="43004" fg:w="7"/><text x="90.5623%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="90.3123%" y="1205" width="0.0147%" height="15" fill="rgb(234,15,38)" fg:x="43004" fg:w="7"/><text x="90.5623%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="90.3123%" y="1189" width="0.0147%" height="15" fill="rgb(246,56,12)" fg:x="43004" fg:w="7"/><text x="90.5623%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.3312%" y="1221" width="0.0105%" height="15" fill="rgb(247,16,17)" fg:x="43013" fg:w="5"/><text x="90.5812%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="90.3417%" y="1221" width="0.0126%" height="15" fill="rgb(215,151,11)" fg:x="43018" fg:w="6"/><text x="90.5917%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="90.3417%" y="1205" width="0.0126%" height="15" fill="rgb(225,16,24)" fg:x="43018" fg:w="6"/><text x="90.5917%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="90.3417%" y="1189" width="0.0126%" height="15" fill="rgb(217,117,5)" fg:x="43018" fg:w="6"/><text x="90.5917%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (20 samples, 0.04%)</title><rect x="90.3270%" y="1269" width="0.0420%" height="15" fill="rgb(246,187,53)" fg:x="43011" fg:w="20"/><text x="90.5770%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="90.3291%" y="1253" width="0.0399%" height="15" fill="rgb(241,71,40)" fg:x="43012" fg:w="19"/><text x="90.5791%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="90.3312%" y="1237" width="0.0378%" height="15" fill="rgb(231,67,39)" fg:x="43013" fg:w="18"/><text x="90.5812%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="90.3543%" y="1221" width="0.0147%" height="15" fill="rgb(222,120,24)" fg:x="43024" fg:w="7"/><text x="90.6043%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="90.3543%" y="1205" width="0.0147%" height="15" fill="rgb(248,3,3)" fg:x="43024" fg:w="7"/><text x="90.6043%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="90.3564%" y="1189" width="0.0126%" height="15" fill="rgb(228,218,5)" fg:x="43025" fg:w="6"/><text x="90.6064%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="90.3564%" y="1173" width="0.0126%" height="15" fill="rgb(212,202,43)" fg:x="43025" fg:w="6"/><text x="90.6064%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.3837%" y="1141" width="0.0105%" height="15" fill="rgb(235,183,2)" fg:x="43038" fg:w="5"/><text x="90.6337%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.3837%" y="1125" width="0.0105%" height="15" fill="rgb(230,165,10)" fg:x="43038" fg:w="5"/><text x="90.6337%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="90.3816%" y="1173" width="0.0189%" height="15" fill="rgb(219,54,40)" fg:x="43037" fg:w="9"/><text x="90.6316%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="90.3837%" y="1157" width="0.0168%" height="15" fill="rgb(244,73,9)" fg:x="43038" fg:w="8"/><text x="90.6337%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="90.3774%" y="1205" width="0.0273%" height="15" fill="rgb(212,32,45)" fg:x="43035" fg:w="13"/><text x="90.6274%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="90.3816%" y="1189" width="0.0231%" height="15" fill="rgb(205,58,31)" fg:x="43037" fg:w="11"/><text x="90.6316%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="90.4047%" y="1205" width="0.0105%" height="15" fill="rgb(250,120,43)" fg:x="43048" fg:w="5"/><text x="90.6547%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.4047%" y="1189" width="0.0105%" height="15" fill="rgb(235,13,10)" fg:x="43048" fg:w="5"/><text x="90.6547%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="90.4173%" y="1141" width="0.0231%" height="15" fill="rgb(232,219,31)" fg:x="43054" fg:w="11"/><text x="90.6673%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="90.4173%" y="1125" width="0.0231%" height="15" fill="rgb(218,157,51)" fg:x="43054" fg:w="11"/><text x="90.6673%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="90.4236%" y="1109" width="0.0168%" height="15" fill="rgb(211,91,52)" fg:x="43057" fg:w="8"/><text x="90.6736%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.02%)</title><rect x="90.4236%" y="1093" width="0.0168%" height="15" fill="rgb(240,173,1)" fg:x="43057" fg:w="8"/><text x="90.6736%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="90.4236%" y="1077" width="0.0168%" height="15" fill="rgb(248,20,47)" fg:x="43057" fg:w="8"/><text x="90.6736%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="90.4236%" y="1061" width="0.0168%" height="15" fill="rgb(217,221,40)" fg:x="43057" fg:w="8"/><text x="90.6736%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="90.4278%" y="1045" width="0.0126%" height="15" fill="rgb(226,149,51)" fg:x="43059" fg:w="6"/><text x="90.6778%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="90.4278%" y="1029" width="0.0126%" height="15" fill="rgb(252,193,7)" fg:x="43059" fg:w="6"/><text x="90.6778%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="90.4278%" y="1013" width="0.0126%" height="15" fill="rgb(205,123,0)" fg:x="43059" fg:w="6"/><text x="90.6778%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="90.4278%" y="997" width="0.0126%" height="15" fill="rgb(233,173,25)" fg:x="43059" fg:w="6"/><text x="90.6778%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (101 samples, 0.21%)</title><rect x="90.2304%" y="1317" width="0.2121%" height="15" fill="rgb(216,63,32)" fg:x="42965" fg:w="101"/><text x="90.4804%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (100 samples, 0.21%)</title><rect x="90.2325%" y="1301" width="0.2100%" height="15" fill="rgb(209,56,45)" fg:x="42966" fg:w="100"/><text x="90.4825%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (97 samples, 0.20%)</title><rect x="90.2388%" y="1285" width="0.2037%" height="15" fill="rgb(226,111,49)" fg:x="42969" fg:w="97"/><text x="90.4888%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (35 samples, 0.07%)</title><rect x="90.3690%" y="1269" width="0.0735%" height="15" fill="rgb(244,181,21)" fg:x="43031" fg:w="35"/><text x="90.6190%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (35 samples, 0.07%)</title><rect x="90.3690%" y="1253" width="0.0735%" height="15" fill="rgb(222,126,15)" fg:x="43031" fg:w="35"/><text x="90.6190%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.07%)</title><rect x="90.3711%" y="1237" width="0.0714%" height="15" fill="rgb(222,95,17)" fg:x="43032" fg:w="34"/><text x="90.6211%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (31 samples, 0.07%)</title><rect x="90.3774%" y="1221" width="0.0651%" height="15" fill="rgb(254,46,5)" fg:x="43035" fg:w="31"/><text x="90.6274%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="90.4152%" y="1205" width="0.0273%" height="15" fill="rgb(236,216,35)" fg:x="43053" fg:w="13"/><text x="90.6652%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.03%)</title><rect x="90.4173%" y="1189" width="0.0252%" height="15" fill="rgb(217,187,26)" fg:x="43054" fg:w="12"/><text x="90.6673%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="90.4173%" y="1173" width="0.0252%" height="15" fill="rgb(207,192,25)" fg:x="43054" fg:w="12"/><text x="90.6673%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="90.4173%" y="1157" width="0.0252%" height="15" fill="rgb(253,135,27)" fg:x="43054" fg:w="12"/><text x="90.6673%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (1,554 samples, 3.26%)</title><rect x="87.1810%" y="1445" width="3.2635%" height="15" fill="rgb(211,122,29)" fg:x="41513" fg:w="1554"/><text x="87.4310%" y="1455.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (1,554 samples, 3.26%)</title><rect x="87.1810%" y="1429" width="3.2635%" height="15" fill="rgb(233,162,40)" fg:x="41513" fg:w="1554"/><text x="87.4310%" y="1439.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (1,525 samples, 3.20%)</title><rect x="87.2420%" y="1413" width="3.2026%" height="15" fill="rgb(222,184,47)" fg:x="41542" fg:w="1525"/><text x="87.4920%" y="1423.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (380 samples, 0.80%)</title><rect x="89.6466%" y="1397" width="0.7980%" height="15" fill="rgb(249,99,23)" fg:x="42687" fg:w="380"/><text x="89.8966%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (375 samples, 0.79%)</title><rect x="89.6571%" y="1381" width="0.7875%" height="15" fill="rgb(214,60,12)" fg:x="42692" fg:w="375"/><text x="89.9071%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (374 samples, 0.79%)</title><rect x="89.6592%" y="1365" width="0.7854%" height="15" fill="rgb(250,229,36)" fg:x="42693" fg:w="374"/><text x="89.9092%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (363 samples, 0.76%)</title><rect x="89.6823%" y="1349" width="0.7623%" height="15" fill="rgb(232,195,10)" fg:x="42704" fg:w="363"/><text x="89.9323%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (103 samples, 0.22%)</title><rect x="90.2283%" y="1333" width="0.2163%" height="15" fill="rgb(205,213,31)" fg:x="42964" fg:w="103"/><text x="90.4783%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7,610 samples, 15.98%)</title><rect x="74.4671%" y="1493" width="15.9817%" height="15" fill="rgb(237,43,8)" fg:x="35459" fg:w="7610"/><text x="74.7171%" y="1503.50">sqlparser_bench-959bc5267..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7,579 samples, 15.92%)</title><rect x="74.5322%" y="1477" width="15.9166%" height="15" fill="rgb(216,208,3)" fg:x="35490" fg:w="7579"/><text x="74.7822%" y="1487.50">sqlparser_bench-959bc526..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (1,568 samples, 3.29%)</title><rect x="87.1558%" y="1461" width="3.2929%" height="15" fill="rgb(228,179,44)" fg:x="41501" fg:w="1568"/><text x="87.4058%" y="1471.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="90.4614%" y="1477" width="0.0126%" height="15" fill="rgb(230,192,27)" fg:x="43075" fg:w="6"/><text x="90.7114%" y="1487.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="90.4614%" y="1461" width="0.0126%" height="15" fill="rgb(251,30,38)" fg:x="43075" fg:w="6"/><text x="90.7114%" y="1471.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="90.4824%" y="1445" width="0.0105%" height="15" fill="rgb(246,55,52)" fg:x="43085" fg:w="5"/><text x="90.7324%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="90.4929%" y="1397" width="0.0168%" height="15" fill="rgb(249,79,26)" fg:x="43090" fg:w="8"/><text x="90.7429%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="90.4971%" y="1381" width="0.0126%" height="15" fill="rgb(220,202,16)" fg:x="43092" fg:w="6"/><text x="90.7471%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (12 samples, 0.03%)</title><rect x="90.4929%" y="1429" width="0.0252%" height="15" fill="rgb(250,170,23)" fg:x="43090" fg:w="12"/><text x="90.7429%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="90.4929%" y="1413" width="0.0252%" height="15" fill="rgb(230,7,37)" fg:x="43090" fg:w="12"/><text x="90.7429%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="90.5181%" y="1429" width="0.0126%" height="15" fill="rgb(213,71,1)" fg:x="43102" fg:w="6"/><text x="90.7681%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (28 samples, 0.06%)</title><rect x="90.4740%" y="1461" width="0.0588%" height="15" fill="rgb(227,87,39)" fg:x="43081" fg:w="28"/><text x="90.7240%" y="1471.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (19 samples, 0.04%)</title><rect x="90.4929%" y="1445" width="0.0399%" height="15" fill="rgb(210,41,29)" fg:x="43090" fg:w="19"/><text x="90.7429%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="90.5454%" y="1413" width="0.0105%" height="15" fill="rgb(206,191,31)" fg:x="43115" fg:w="5"/><text x="90.7954%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (10 samples, 0.02%)</title><rect x="90.5559%" y="1397" width="0.0210%" height="15" fill="rgb(247,75,54)" fg:x="43120" fg:w="10"/><text x="90.8059%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.5664%" y="1381" width="0.0105%" height="15" fill="rgb(208,54,50)" fg:x="43125" fg:w="5"/><text x="90.8164%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (18 samples, 0.04%)</title><rect x="90.5433%" y="1445" width="0.0378%" height="15" fill="rgb(214,90,37)" fg:x="43114" fg:w="18"/><text x="90.7933%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (18 samples, 0.04%)</title><rect x="90.5433%" y="1429" width="0.0378%" height="15" fill="rgb(220,132,6)" fg:x="43114" fg:w="18"/><text x="90.7933%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="90.5559%" y="1413" width="0.0252%" height="15" fill="rgb(213,167,7)" fg:x="43120" fg:w="12"/><text x="90.8059%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (64 samples, 0.13%)</title><rect x="90.4488%" y="1493" width="0.1344%" height="15" fill="rgb(243,36,27)" fg:x="43069" fg:w="64"/><text x="90.6988%" y="1503.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (52 samples, 0.11%)</title><rect x="90.4740%" y="1477" width="0.1092%" height="15" fill="rgb(235,147,12)" fg:x="43081" fg:w="52"/><text x="90.7240%" y="1487.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.05%)</title><rect x="90.5370%" y="1461" width="0.0462%" height="15" fill="rgb(212,198,44)" fg:x="43111" fg:w="22"/><text x="90.7870%" y="1471.50"></text></g><g><title>libsystem_m.dylib`exp (45 samples, 0.09%)</title><rect x="90.6021%" y="1269" width="0.0945%" height="15" fill="rgb(218,68,50)" fg:x="43142" fg:w="45"/><text x="90.8521%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::median_abs_dev (6 samples, 0.01%)</title><rect x="90.7008%" y="1237" width="0.0126%" height="15" fill="rgb(224,79,48)" fg:x="43189" fg:w="6"/><text x="90.9508%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (6 samples, 0.01%)</title><rect x="90.7008%" y="1221" width="0.0126%" height="15" fill="rgb(213,191,50)" fg:x="43189" fg:w="6"/><text x="90.9508%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="90.7008%" y="1205" width="0.0126%" height="15" fill="rgb(254,146,10)" fg:x="43189" fg:w="6"/><text x="90.9508%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::analysis::estimates::stats (12 samples, 0.03%)</title><rect x="90.6987%" y="1253" width="0.0252%" height="15" fill="rgb(215,175,11)" fg:x="43188" fg:w="12"/><text x="90.9487%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.01%)</title><rect x="90.7134%" y="1237" width="0.0105%" height="15" fill="rgb(207,49,7)" fg:x="43195" fg:w="5"/><text x="90.9634%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="90.7134%" y="1221" width="0.0105%" height="15" fill="rgb(234,144,29)" fg:x="43195" fg:w="5"/><text x="90.9634%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (17 samples, 0.04%)</title><rect x="90.6966%" y="1269" width="0.0357%" height="15" fill="rgb(213,222,48)" fg:x="43187" fg:w="17"/><text x="90.9466%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (71 samples, 0.15%)</title><rect x="90.5895%" y="1285" width="0.1491%" height="15" fill="rgb(222,8,6)" fg:x="43136" fg:w="71"/><text x="90.8395%" y="1295.50"></text></g><g><title>libsystem_m.dylib`exp (23 samples, 0.05%)</title><rect x="90.7533%" y="1253" width="0.0483%" height="15" fill="rgb(221,114,49)" fg:x="43214" fg:w="23"/><text x="91.0033%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (32 samples, 0.07%)</title><rect x="90.7386%" y="1285" width="0.0672%" height="15" fill="rgb(250,140,42)" fg:x="43207" fg:w="32"/><text x="90.9886%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.06%)</title><rect x="90.7449%" y="1269" width="0.0609%" height="15" fill="rgb(250,150,27)" fg:x="43210" fg:w="29"/><text x="90.9949%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.8247%" y="1061" width="0.0105%" height="15" fill="rgb(252,159,3)" fg:x="43248" fg:w="5"/><text x="91.0747%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.01%)</title><rect x="90.8247%" y="1045" width="0.0105%" height="15" fill="rgb(241,182,3)" fg:x="43248" fg:w="5"/><text x="91.0747%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="90.8184%" y="1093" width="0.0210%" height="15" fill="rgb(236,3,9)" fg:x="43245" fg:w="10"/><text x="91.0684%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="90.8247%" y="1077" width="0.0147%" height="15" fill="rgb(223,227,51)" fg:x="43248" fg:w="7"/><text x="91.0747%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="90.8142%" y="1125" width="0.0294%" height="15" fill="rgb(232,133,30)" fg:x="43243" fg:w="14"/><text x="91.0642%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="90.8163%" y="1109" width="0.0273%" height="15" fill="rgb(209,93,27)" fg:x="43244" fg:w="13"/><text x="91.0663%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="90.8478%" y="1077" width="0.0189%" height="15" fill="rgb(208,108,34)" fg:x="43259" fg:w="9"/><text x="91.0978%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="90.8499%" y="1061" width="0.0168%" height="15" fill="rgb(215,189,13)" fg:x="43260" fg:w="8"/><text x="91.0999%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="90.8562%" y="1045" width="0.0105%" height="15" fill="rgb(206,88,23)" fg:x="43263" fg:w="5"/><text x="91.1062%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.8562%" y="1029" width="0.0105%" height="15" fill="rgb(240,173,0)" fg:x="43263" fg:w="5"/><text x="91.1062%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.03%)</title><rect x="90.8436%" y="1125" width="0.0273%" height="15" fill="rgb(223,106,52)" fg:x="43257" fg:w="13"/><text x="91.0936%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="90.8457%" y="1109" width="0.0252%" height="15" fill="rgb(206,130,16)" fg:x="43258" fg:w="12"/><text x="91.0957%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="90.8478%" y="1093" width="0.0231%" height="15" fill="rgb(220,54,25)" fg:x="43259" fg:w="11"/><text x="91.0978%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.06%)</title><rect x="90.8121%" y="1157" width="0.0630%" height="15" fill="rgb(210,4,38)" fg:x="43242" fg:w="30"/><text x="91.0621%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (29 samples, 0.06%)</title><rect x="90.8142%" y="1141" width="0.0609%" height="15" fill="rgb(238,94,39)" fg:x="43243" fg:w="29"/><text x="91.0642%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.8877%" y="1077" width="0.0105%" height="15" fill="rgb(234,124,34)" fg:x="43278" fg:w="5"/><text x="91.1377%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="90.8793%" y="1109" width="0.0252%" height="15" fill="rgb(221,91,40)" fg:x="43274" fg:w="12"/><text x="91.1293%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="90.8856%" y="1093" width="0.0189%" height="15" fill="rgb(246,53,28)" fg:x="43277" fg:w="9"/><text x="91.1356%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="90.9066%" y="1061" width="0.0126%" height="15" fill="rgb(229,109,7)" fg:x="43287" fg:w="6"/><text x="91.1566%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (23 samples, 0.05%)</title><rect x="90.8751%" y="1157" width="0.0483%" height="15" fill="rgb(249,117,8)" fg:x="43272" fg:w="23"/><text x="91.1251%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.05%)</title><rect x="90.8751%" y="1141" width="0.0483%" height="15" fill="rgb(210,181,1)" fg:x="43272" fg:w="23"/><text x="91.1251%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (21 samples, 0.04%)</title><rect x="90.8793%" y="1125" width="0.0441%" height="15" fill="rgb(211,66,1)" fg:x="43274" fg:w="21"/><text x="91.1293%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.02%)</title><rect x="90.9045%" y="1109" width="0.0189%" height="15" fill="rgb(221,90,14)" fg:x="43286" fg:w="9"/><text x="91.1545%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="90.9066%" y="1093" width="0.0168%" height="15" fill="rgb(219,222,44)" fg:x="43287" fg:w="8"/><text x="91.1566%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="90.9066%" y="1077" width="0.0168%" height="15" fill="rgb(246,34,33)" fg:x="43287" fg:w="8"/><text x="91.1566%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.9234%" y="1093" width="0.0105%" height="15" fill="rgb(227,135,41)" fg:x="43295" fg:w="5"/><text x="91.1734%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.9234%" y="1077" width="0.0105%" height="15" fill="rgb(226,15,14)" fg:x="43295" fg:w="5"/><text x="91.1734%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (67 samples, 0.14%)</title><rect x="90.8121%" y="1189" width="0.1407%" height="15" fill="rgb(236,148,47)" fg:x="43242" fg:w="67"/><text x="91.0621%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (67 samples, 0.14%)</title><rect x="90.8121%" y="1173" width="0.1407%" height="15" fill="rgb(233,162,52)" fg:x="43242" fg:w="67"/><text x="91.0621%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.03%)</title><rect x="90.9234%" y="1157" width="0.0294%" height="15" fill="rgb(244,35,28)" fg:x="43295" fg:w="14"/><text x="91.1734%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.03%)</title><rect x="90.9234%" y="1141" width="0.0294%" height="15" fill="rgb(205,121,10)" fg:x="43295" fg:w="14"/><text x="91.1734%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="90.9234%" y="1125" width="0.0294%" height="15" fill="rgb(250,58,18)" fg:x="43295" fg:w="14"/><text x="91.1734%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="90.9234%" y="1109" width="0.0294%" height="15" fill="rgb(216,37,13)" fg:x="43295" fg:w="14"/><text x="91.1734%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.02%)</title><rect x="90.9339%" y="1093" width="0.0189%" height="15" fill="rgb(221,215,42)" fg:x="43300" fg:w="9"/><text x="91.1839%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.02%)</title><rect x="90.9339%" y="1077" width="0.0189%" height="15" fill="rgb(217,214,19)" fg:x="43300" fg:w="9"/><text x="91.1839%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="90.9339%" y="1061" width="0.0189%" height="15" fill="rgb(233,139,13)" fg:x="43300" fg:w="9"/><text x="91.1839%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="90.9339%" y="1045" width="0.0189%" height="15" fill="rgb(247,168,23)" fg:x="43300" fg:w="9"/><text x="91.1839%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="90.9360%" y="1029" width="0.0168%" height="15" fill="rgb(207,202,1)" fg:x="43301" fg:w="8"/><text x="91.1860%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.02%)</title><rect x="90.9360%" y="1013" width="0.0168%" height="15" fill="rgb(220,155,48)" fg:x="43301" fg:w="8"/><text x="91.1860%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="90.9360%" y="997" width="0.0168%" height="15" fill="rgb(250,43,26)" fg:x="43301" fg:w="8"/><text x="91.1860%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="90.9360%" y="981" width="0.0168%" height="15" fill="rgb(212,190,23)" fg:x="43301" fg:w="8"/><text x="91.1860%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="90.9423%" y="965" width="0.0105%" height="15" fill="rgb(216,39,24)" fg:x="43304" fg:w="5"/><text x="91.1923%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="90.9423%" y="949" width="0.0105%" height="15" fill="rgb(252,113,16)" fg:x="43304" fg:w="5"/><text x="91.1923%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.9423%" y="933" width="0.0105%" height="15" fill="rgb(208,113,19)" fg:x="43304" fg:w="5"/><text x="91.1923%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.9423%" y="917" width="0.0105%" height="15" fill="rgb(234,107,25)" fg:x="43304" fg:w="5"/><text x="91.1923%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.9423%" y="901" width="0.0105%" height="15" fill="rgb(234,217,51)" fg:x="43304" fg:w="5"/><text x="91.1923%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.9423%" y="885" width="0.0105%" height="15" fill="rgb(251,29,42)" fg:x="43304" fg:w="5"/><text x="91.1923%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.9633%" y="1077" width="0.0105%" height="15" fill="rgb(221,62,51)" fg:x="43314" fg:w="5"/><text x="91.2133%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="90.9612%" y="1109" width="0.0168%" height="15" fill="rgb(240,192,43)" fg:x="43313" fg:w="8"/><text x="91.2112%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="90.9612%" y="1093" width="0.0168%" height="15" fill="rgb(224,157,47)" fg:x="43313" fg:w="8"/><text x="91.2112%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="90.9780%" y="1109" width="0.0147%" height="15" fill="rgb(226,84,45)" fg:x="43321" fg:w="7"/><text x="91.2280%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="90.9780%" y="1093" width="0.0147%" height="15" fill="rgb(208,207,23)" fg:x="43321" fg:w="7"/><text x="91.2280%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.9822%" y="1077" width="0.0105%" height="15" fill="rgb(253,34,51)" fg:x="43323" fg:w="5"/><text x="91.2322%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="90.9927%" y="1013" width="0.0105%" height="15" fill="rgb(227,26,34)" fg:x="43328" fg:w="5"/><text x="91.2427%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="90.9927%" y="997" width="0.0105%" height="15" fill="rgb(245,75,19)" fg:x="43328" fg:w="5"/><text x="91.2427%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="90.9927%" y="1045" width="0.0252%" height="15" fill="rgb(250,191,31)" fg:x="43328" fg:w="12"/><text x="91.2427%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="90.9927%" y="1029" width="0.0252%" height="15" fill="rgb(224,11,50)" fg:x="43328" fg:w="12"/><text x="91.2427%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="91.0032%" y="1013" width="0.0147%" height="15" fill="rgb(231,171,7)" fg:x="43333" fg:w="7"/><text x="91.2532%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.0032%" y="997" width="0.0147%" height="15" fill="rgb(252,214,10)" fg:x="43333" fg:w="7"/><text x="91.2532%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="91.0032%" y="981" width="0.0147%" height="15" fill="rgb(249,45,46)" fg:x="43333" fg:w="7"/><text x="91.2532%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.06%)</title><rect x="90.9591%" y="1141" width="0.0609%" height="15" fill="rgb(240,173,7)" fg:x="43312" fg:w="29"/><text x="91.2091%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (28 samples, 0.06%)</title><rect x="90.9612%" y="1125" width="0.0588%" height="15" fill="rgb(235,214,13)" fg:x="43313" fg:w="28"/><text x="91.2112%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="90.9927%" y="1109" width="0.0273%" height="15" fill="rgb(245,156,8)" fg:x="43328" fg:w="13"/><text x="91.2427%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.03%)</title><rect x="90.9927%" y="1093" width="0.0273%" height="15" fill="rgb(235,46,12)" fg:x="43328" fg:w="13"/><text x="91.2427%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="90.9927%" y="1077" width="0.0273%" height="15" fill="rgb(221,81,14)" fg:x="43328" fg:w="13"/><text x="91.2427%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="90.9927%" y="1061" width="0.0273%" height="15" fill="rgb(238,207,9)" fg:x="43328" fg:w="13"/><text x="91.2427%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.03%)</title><rect x="91.0200%" y="1141" width="0.0252%" height="15" fill="rgb(224,129,35)" fg:x="43341" fg:w="12"/><text x="91.2700%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="91.0200%" y="1125" width="0.0252%" height="15" fill="rgb(243,218,34)" fg:x="43341" fg:w="12"/><text x="91.2700%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="91.0263%" y="1109" width="0.0189%" height="15" fill="rgb(220,166,13)" fg:x="43344" fg:w="9"/><text x="91.2763%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="91.0347%" y="1093" width="0.0105%" height="15" fill="rgb(227,167,49)" fg:x="43348" fg:w="5"/><text x="91.2847%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.0347%" y="1077" width="0.0105%" height="15" fill="rgb(234,142,12)" fg:x="43348" fg:w="5"/><text x="91.2847%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.0347%" y="1061" width="0.0105%" height="15" fill="rgb(207,100,48)" fg:x="43348" fg:w="5"/><text x="91.2847%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (52 samples, 0.11%)</title><rect x="90.9528%" y="1189" width="0.1092%" height="15" fill="rgb(210,25,14)" fg:x="43309" fg:w="52"/><text x="91.2028%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.11%)</title><rect x="90.9528%" y="1173" width="0.1092%" height="15" fill="rgb(246,116,27)" fg:x="43309" fg:w="52"/><text x="91.2028%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (49 samples, 0.10%)</title><rect x="90.9591%" y="1157" width="0.1029%" height="15" fill="rgb(214,193,42)" fg:x="43312" fg:w="49"/><text x="91.2091%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="91.0452%" y="1141" width="0.0168%" height="15" fill="rgb(214,122,8)" fg:x="43353" fg:w="8"/><text x="91.2952%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.02%)</title><rect x="91.0452%" y="1125" width="0.0168%" height="15" fill="rgb(244,173,18)" fg:x="43353" fg:w="8"/><text x="91.2952%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="91.0452%" y="1109" width="0.0168%" height="15" fill="rgb(232,68,19)" fg:x="43353" fg:w="8"/><text x="91.2952%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="91.0452%" y="1093" width="0.0168%" height="15" fill="rgb(236,224,1)" fg:x="43353" fg:w="8"/><text x="91.2952%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.0620%" y="1093" width="0.0126%" height="15" fill="rgb(240,11,8)" fg:x="43361" fg:w="6"/><text x="91.3120%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.0620%" y="1077" width="0.0126%" height="15" fill="rgb(244,159,20)" fg:x="43361" fg:w="6"/><text x="91.3120%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="91.0620%" y="1125" width="0.0168%" height="15" fill="rgb(240,223,54)" fg:x="43361" fg:w="8"/><text x="91.3120%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="91.0620%" y="1109" width="0.0168%" height="15" fill="rgb(237,146,5)" fg:x="43361" fg:w="8"/><text x="91.3120%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (133 samples, 0.28%)</title><rect x="90.8079%" y="1221" width="0.2793%" height="15" fill="rgb(218,221,32)" fg:x="43240" fg:w="133"/><text x="91.0579%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (132 samples, 0.28%)</title><rect x="90.8100%" y="1205" width="0.2772%" height="15" fill="rgb(244,96,26)" fg:x="43241" fg:w="132"/><text x="91.0600%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.03%)</title><rect x="91.0620%" y="1189" width="0.0252%" height="15" fill="rgb(245,184,37)" fg:x="43361" fg:w="12"/><text x="91.3120%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.03%)</title><rect x="91.0620%" y="1173" width="0.0252%" height="15" fill="rgb(248,91,47)" fg:x="43361" fg:w="12"/><text x="91.3120%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="91.0620%" y="1157" width="0.0252%" height="15" fill="rgb(243,199,8)" fg:x="43361" fg:w="12"/><text x="91.3120%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="91.0620%" y="1141" width="0.0252%" height="15" fill="rgb(249,12,15)" fg:x="43361" fg:w="12"/><text x="91.3120%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.03%)</title><rect x="91.0872%" y="1173" width="0.0273%" height="15" fill="rgb(245,97,12)" fg:x="43373" fg:w="13"/><text x="91.3372%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="91.0893%" y="1157" width="0.0252%" height="15" fill="rgb(244,61,1)" fg:x="43374" fg:w="12"/><text x="91.3393%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="91.0998%" y="1141" width="0.0147%" height="15" fill="rgb(222,194,10)" fg:x="43379" fg:w="7"/><text x="91.3498%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="91.0998%" y="1125" width="0.0147%" height="15" fill="rgb(226,178,8)" fg:x="43379" fg:w="7"/><text x="91.3498%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.0998%" y="1109" width="0.0147%" height="15" fill="rgb(241,32,34)" fg:x="43379" fg:w="7"/><text x="91.3498%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="91.0998%" y="1093" width="0.0147%" height="15" fill="rgb(254,26,6)" fg:x="43379" fg:w="7"/><text x="91.3498%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="91.1019%" y="1077" width="0.0126%" height="15" fill="rgb(249,71,11)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="91.1019%" y="1061" width="0.0126%" height="15" fill="rgb(232,170,27)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.1019%" y="1045" width="0.0126%" height="15" fill="rgb(214,223,17)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.1019%" y="1029" width="0.0126%" height="15" fill="rgb(250,18,15)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="91.1019%" y="1013" width="0.0126%" height="15" fill="rgb(212,153,51)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.1019%" y="997" width="0.0126%" height="15" fill="rgb(219,194,12)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.1019%" y="981" width="0.0126%" height="15" fill="rgb(212,58,17)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="91.1019%" y="965" width="0.0126%" height="15" fill="rgb(254,5,10)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="91.1019%" y="949" width="0.0126%" height="15" fill="rgb(246,91,7)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.1019%" y="933" width="0.0126%" height="15" fill="rgb(218,108,49)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.1019%" y="917" width="0.0126%" height="15" fill="rgb(238,123,20)" fg:x="43380" fg:w="6"/><text x="91.3519%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="91.1145%" y="1173" width="0.0105%" height="15" fill="rgb(231,69,23)" fg:x="43386" fg:w="5"/><text x="91.3645%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.1145%" y="1157" width="0.0105%" height="15" fill="rgb(230,209,3)" fg:x="43386" fg:w="5"/><text x="91.3645%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.1145%" y="1141" width="0.0105%" height="15" fill="rgb(231,19,0)" fg:x="43386" fg:w="5"/><text x="91.3645%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (25 samples, 0.05%)</title><rect x="91.0872%" y="1221" width="0.0525%" height="15" fill="rgb(226,192,25)" fg:x="43373" fg:w="25"/><text x="91.3372%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.05%)</title><rect x="91.0872%" y="1205" width="0.0525%" height="15" fill="rgb(223,175,53)" fg:x="43373" fg:w="25"/><text x="91.3372%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="91.0872%" y="1189" width="0.0525%" height="15" fill="rgb(248,35,51)" fg:x="43373" fg:w="25"/><text x="91.3372%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="91.1250%" y="1173" width="0.0147%" height="15" fill="rgb(230,37,26)" fg:x="43391" fg:w="7"/><text x="91.3750%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="91.1250%" y="1157" width="0.0147%" height="15" fill="rgb(206,120,22)" fg:x="43391" fg:w="7"/><text x="91.3750%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.1250%" y="1141" width="0.0147%" height="15" fill="rgb(207,165,28)" fg:x="43391" fg:w="7"/><text x="91.3750%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.1271%" y="1125" width="0.0126%" height="15" fill="rgb(226,23,46)" fg:x="43392" fg:w="6"/><text x="91.3771%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.1271%" y="1109" width="0.0126%" height="15" fill="rgb(208,130,44)" fg:x="43392" fg:w="6"/><text x="91.3771%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.1271%" y="1093" width="0.0126%" height="15" fill="rgb(231,67,8)" fg:x="43392" fg:w="6"/><text x="91.3771%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.1271%" y="1077" width="0.0126%" height="15" fill="rgb(205,183,22)" fg:x="43392" fg:w="6"/><text x="91.3771%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.1271%" y="1061" width="0.0126%" height="15" fill="rgb(224,47,9)" fg:x="43392" fg:w="6"/><text x="91.3771%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.1271%" y="1045" width="0.0126%" height="15" fill="rgb(250,183,49)" fg:x="43392" fg:w="6"/><text x="91.3771%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.1271%" y="1029" width="0.0126%" height="15" fill="rgb(220,151,39)" fg:x="43392" fg:w="6"/><text x="91.3771%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.1439%" y="1125" width="0.0147%" height="15" fill="rgb(220,118,20)" fg:x="43400" fg:w="7"/><text x="91.3939%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.1460%" y="1109" width="0.0126%" height="15" fill="rgb(231,65,51)" fg:x="43401" fg:w="6"/><text x="91.3960%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="91.1586%" y="1125" width="0.0126%" height="15" fill="rgb(253,125,37)" fg:x="43407" fg:w="6"/><text x="91.4086%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.1586%" y="1109" width="0.0126%" height="15" fill="rgb(232,102,6)" fg:x="43407" fg:w="6"/><text x="91.4086%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.04%)</title><rect x="91.1418%" y="1157" width="0.0357%" height="15" fill="rgb(251,105,13)" fg:x="43399" fg:w="17"/><text x="91.3918%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (16 samples, 0.03%)</title><rect x="91.1439%" y="1141" width="0.0336%" height="15" fill="rgb(222,179,29)" fg:x="43400" fg:w="16"/><text x="91.3939%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.1859%" y="981" width="0.0105%" height="15" fill="rgb(229,180,53)" fg:x="43420" fg:w="5"/><text x="91.4359%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.1859%" y="965" width="0.0105%" height="15" fill="rgb(238,104,13)" fg:x="43420" fg:w="5"/><text x="91.4359%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.02%)</title><rect x="91.1775%" y="1157" width="0.0231%" height="15" fill="rgb(210,130,5)" fg:x="43416" fg:w="11"/><text x="91.4275%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="91.1775%" y="1141" width="0.0231%" height="15" fill="rgb(233,87,49)" fg:x="43416" fg:w="11"/><text x="91.4275%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="91.1775%" y="1125" width="0.0231%" height="15" fill="rgb(243,34,9)" fg:x="43416" fg:w="11"/><text x="91.4275%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.02%)</title><rect x="91.1838%" y="1109" width="0.0168%" height="15" fill="rgb(235,225,10)" fg:x="43419" fg:w="8"/><text x="91.4338%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.02%)</title><rect x="91.1838%" y="1093" width="0.0168%" height="15" fill="rgb(212,0,30)" fg:x="43419" fg:w="8"/><text x="91.4338%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="91.1838%" y="1077" width="0.0168%" height="15" fill="rgb(211,177,0)" fg:x="43419" fg:w="8"/><text x="91.4338%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="91.1838%" y="1061" width="0.0168%" height="15" fill="rgb(225,220,11)" fg:x="43419" fg:w="8"/><text x="91.4338%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="91.1859%" y="1045" width="0.0147%" height="15" fill="rgb(215,10,13)" fg:x="43420" fg:w="7"/><text x="91.4359%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="91.1859%" y="1029" width="0.0147%" height="15" fill="rgb(240,177,14)" fg:x="43420" fg:w="7"/><text x="91.4359%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.1859%" y="1013" width="0.0147%" height="15" fill="rgb(243,7,39)" fg:x="43420" fg:w="7"/><text x="91.4359%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="91.1859%" y="997" width="0.0147%" height="15" fill="rgb(212,99,0)" fg:x="43420" fg:w="7"/><text x="91.4359%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (193 samples, 0.41%)</title><rect x="90.8058%" y="1285" width="0.4053%" height="15" fill="rgb(225,162,48)" fg:x="43239" fg:w="193"/><text x="91.0558%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (193 samples, 0.41%)</title><rect x="90.8058%" y="1269" width="0.4053%" height="15" fill="rgb(246,16,25)" fg:x="43239" fg:w="193"/><text x="91.0558%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (193 samples, 0.41%)</title><rect x="90.8058%" y="1253" width="0.4053%" height="15" fill="rgb(220,150,2)" fg:x="43239" fg:w="193"/><text x="91.0558%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (192 samples, 0.40%)</title><rect x="90.8079%" y="1237" width="0.4032%" height="15" fill="rgb(237,113,11)" fg:x="43240" fg:w="192"/><text x="91.0579%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (34 samples, 0.07%)</title><rect x="91.1397%" y="1221" width="0.0714%" height="15" fill="rgb(236,70,20)" fg:x="43398" fg:w="34"/><text x="91.3897%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34 samples, 0.07%)</title><rect x="91.1397%" y="1205" width="0.0714%" height="15" fill="rgb(234,94,7)" fg:x="43398" fg:w="34"/><text x="91.3897%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.07%)</title><rect x="91.1397%" y="1189" width="0.0714%" height="15" fill="rgb(250,221,0)" fg:x="43398" fg:w="34"/><text x="91.3897%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (33 samples, 0.07%)</title><rect x="91.1418%" y="1173" width="0.0693%" height="15" fill="rgb(245,149,46)" fg:x="43399" fg:w="33"/><text x="91.3918%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="91.2006%" y="1157" width="0.0105%" height="15" fill="rgb(215,37,27)" fg:x="43427" fg:w="5"/><text x="91.4506%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="91.2006%" y="1141" width="0.0105%" height="15" fill="rgb(232,65,3)" fg:x="43427" fg:w="5"/><text x="91.4506%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.2006%" y="1125" width="0.0105%" height="15" fill="rgb(214,2,16)" fg:x="43427" fg:w="5"/><text x="91.4506%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.2006%" y="1109" width="0.0105%" height="15" fill="rgb(227,131,50)" fg:x="43427" fg:w="5"/><text x="91.4506%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (298 samples, 0.63%)</title><rect x="90.5874%" y="1317" width="0.6258%" height="15" fill="rgb(247,131,45)" fg:x="43135" fg:w="298"/><text x="90.8374%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (298 samples, 0.63%)</title><rect x="90.5874%" y="1301" width="0.6258%" height="15" fill="rgb(215,97,47)" fg:x="43135" fg:w="298"/><text x="90.8374%" y="1311.50"></text></g><g><title>libsystem_m.dylib`exp (13 samples, 0.03%)</title><rect x="91.2216%" y="1253" width="0.0273%" height="15" fill="rgb(233,143,12)" fg:x="43437" fg:w="13"/><text x="91.4716%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="91.2132%" y="1269" width="0.0399%" height="15" fill="rgb(222,57,17)" fg:x="43433" fg:w="19"/><text x="91.4632%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.03%)</title><rect x="91.2531%" y="1269" width="0.0252%" height="15" fill="rgb(214,119,38)" fg:x="43452" fg:w="12"/><text x="91.5031%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="91.2594%" y="1253" width="0.0189%" height="15" fill="rgb(217,28,47)" fg:x="43455" fg:w="9"/><text x="91.5094%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (38 samples, 0.08%)</title><rect x="91.2132%" y="1317" width="0.0798%" height="15" fill="rgb(231,14,52)" fg:x="43433" fg:w="38"/><text x="91.4632%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.08%)</title><rect x="91.2132%" y="1301" width="0.0798%" height="15" fill="rgb(220,158,18)" fg:x="43433" fg:w="38"/><text x="91.4632%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (38 samples, 0.08%)</title><rect x="91.2132%" y="1285" width="0.0798%" height="15" fill="rgb(222,143,46)" fg:x="43433" fg:w="38"/><text x="91.4632%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="91.2783%" y="1269" width="0.0147%" height="15" fill="rgb(227,165,5)" fg:x="43464" fg:w="7"/><text x="91.5283%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="91.2783%" y="1253" width="0.0147%" height="15" fill="rgb(216,222,49)" fg:x="43464" fg:w="7"/><text x="91.5283%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.2783%" y="1237" width="0.0147%" height="15" fill="rgb(238,73,39)" fg:x="43464" fg:w="7"/><text x="91.5283%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="91.2783%" y="1221" width="0.0147%" height="15" fill="rgb(252,115,9)" fg:x="43464" fg:w="7"/><text x="91.5283%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="91.2804%" y="1205" width="0.0126%" height="15" fill="rgb(238,202,4)" fg:x="43465" fg:w="6"/><text x="91.5304%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="91.2804%" y="1189" width="0.0126%" height="15" fill="rgb(252,153,44)" fg:x="43465" fg:w="6"/><text x="91.5304%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.2804%" y="1173" width="0.0126%" height="15" fill="rgb(235,128,27)" fg:x="43465" fg:w="6"/><text x="91.5304%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.2804%" y="1157" width="0.0126%" height="15" fill="rgb(221,121,47)" fg:x="43465" fg:w="6"/><text x="91.5304%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="91.2804%" y="1141" width="0.0126%" height="15" fill="rgb(247,211,47)" fg:x="43465" fg:w="6"/><text x="91.5304%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="91.2804%" y="1125" width="0.0126%" height="15" fill="rgb(252,47,49)" fg:x="43465" fg:w="6"/><text x="91.5304%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.2804%" y="1109" width="0.0126%" height="15" fill="rgb(219,119,53)" fg:x="43465" fg:w="6"/><text x="91.5304%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.2804%" y="1093" width="0.0126%" height="15" fill="rgb(243,165,53)" fg:x="43465" fg:w="6"/><text x="91.5304%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.3077%" y="1125" width="0.0105%" height="15" fill="rgb(230,12,35)" fg:x="43478" fg:w="5"/><text x="91.5577%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.3077%" y="1109" width="0.0105%" height="15" fill="rgb(239,57,49)" fg:x="43478" fg:w="5"/><text x="91.5577%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.3077%" y="1093" width="0.0105%" height="15" fill="rgb(231,154,7)" fg:x="43478" fg:w="5"/><text x="91.5577%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon::iter::fold::FoldFolder&lt;C,ID,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.01%)</title><rect x="91.3077%" y="1077" width="0.0105%" height="15" fill="rgb(248,81,34)" fg:x="43478" fg:w="5"/><text x="91.5577%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.3077%" y="1157" width="0.0126%" height="15" fill="rgb(247,9,5)" fg:x="43478" fg:w="6"/><text x="91.5577%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.3077%" y="1141" width="0.0126%" height="15" fill="rgb(228,172,27)" fg:x="43478" fg:w="6"/><text x="91.5577%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="91.3014%" y="1189" width="0.0315%" height="15" fill="rgb(230,57,44)" fg:x="43475" fg:w="15"/><text x="91.5514%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="91.3077%" y="1173" width="0.0252%" height="15" fill="rgb(249,35,22)" fg:x="43478" fg:w="12"/><text x="91.5577%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="91.3203%" y="1157" width="0.0126%" height="15" fill="rgb(250,137,27)" fg:x="43484" fg:w="6"/><text x="91.5703%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.3224%" y="1141" width="0.0105%" height="15" fill="rgb(251,57,31)" fg:x="43485" fg:w="5"/><text x="91.5724%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.3224%" y="1125" width="0.0105%" height="15" fill="rgb(238,60,0)" fg:x="43485" fg:w="5"/><text x="91.5724%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.05%)</title><rect x="91.2993%" y="1221" width="0.0546%" height="15" fill="rgb(242,185,39)" fg:x="43474" fg:w="26"/><text x="91.5493%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (25 samples, 0.05%)</title><rect x="91.3014%" y="1205" width="0.0525%" height="15" fill="rgb(240,63,43)" fg:x="43475" fg:w="25"/><text x="91.5514%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.02%)</title><rect x="91.3329%" y="1189" width="0.0210%" height="15" fill="rgb(236,155,6)" fg:x="43490" fg:w="10"/><text x="91.5829%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="91.3329%" y="1173" width="0.0210%" height="15" fill="rgb(215,11,29)" fg:x="43490" fg:w="10"/><text x="91.5829%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.3413%" y="1157" width="0.0126%" height="15" fill="rgb(228,180,48)" fg:x="43494" fg:w="6"/><text x="91.5913%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="91.3539%" y="1173" width="0.0210%" height="15" fill="rgb(241,102,12)" fg:x="43500" fg:w="10"/><text x="91.6039%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="91.3602%" y="1157" width="0.0147%" height="15" fill="rgb(246,213,4)" fg:x="43503" fg:w="7"/><text x="91.6102%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.01%)</title><rect x="91.3749%" y="1173" width="0.0105%" height="15" fill="rgb(218,134,35)" fg:x="43510" fg:w="5"/><text x="91.6249%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.3749%" y="1157" width="0.0105%" height="15" fill="rgb(251,117,35)" fg:x="43510" fg:w="5"/><text x="91.6249%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.04%)</title><rect x="91.3539%" y="1221" width="0.0378%" height="15" fill="rgb(206,156,45)" fg:x="43500" fg:w="18"/><text x="91.6039%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.04%)</title><rect x="91.3539%" y="1205" width="0.0378%" height="15" fill="rgb(218,52,27)" fg:x="43500" fg:w="18"/><text x="91.6039%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="91.3539%" y="1189" width="0.0378%" height="15" fill="rgb(238,83,36)" fg:x="43500" fg:w="18"/><text x="91.6039%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.01%)</title><rect x="91.4022%" y="1157" width="0.0147%" height="15" fill="rgb(218,53,43)" fg:x="43523" fg:w="7"/><text x="91.6522%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.4022%" y="1141" width="0.0147%" height="15" fill="rgb(239,54,39)" fg:x="43523" fg:w="7"/><text x="91.6522%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="91.4022%" y="1125" width="0.0147%" height="15" fill="rgb(212,198,13)" fg:x="43523" fg:w="7"/><text x="91.6522%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.01%)</title><rect x="91.4022%" y="1109" width="0.0147%" height="15" fill="rgb(234,54,46)" fg:x="43523" fg:w="7"/><text x="91.6522%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.01%)</title><rect x="91.4022%" y="1093" width="0.0147%" height="15" fill="rgb(217,120,7)" fg:x="43523" fg:w="7"/><text x="91.6522%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.4022%" y="1077" width="0.0147%" height="15" fill="rgb(246,39,15)" fg:x="43523" fg:w="7"/><text x="91.6522%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="91.4022%" y="1061" width="0.0147%" height="15" fill="rgb(242,143,31)" fg:x="43523" fg:w="7"/><text x="91.6522%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (59 samples, 0.12%)</title><rect x="91.2951%" y="1253" width="0.1239%" height="15" fill="rgb(252,60,24)" fg:x="43472" fg:w="59"/><text x="91.5451%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (57 samples, 0.12%)</title><rect x="91.2993%" y="1237" width="0.1197%" height="15" fill="rgb(249,220,7)" fg:x="43474" fg:w="57"/><text x="91.5493%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.03%)</title><rect x="91.3917%" y="1221" width="0.0273%" height="15" fill="rgb(236,67,13)" fg:x="43518" fg:w="13"/><text x="91.6417%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.03%)</title><rect x="91.3938%" y="1205" width="0.0252%" height="15" fill="rgb(210,62,39)" fg:x="43519" fg:w="12"/><text x="91.6438%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="91.3938%" y="1189" width="0.0252%" height="15" fill="rgb(219,122,53)" fg:x="43519" fg:w="12"/><text x="91.6438%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="91.3959%" y="1173" width="0.0231%" height="15" fill="rgb(218,87,25)" fg:x="43520" fg:w="11"/><text x="91.6459%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="91.4316%" y="1205" width="0.0168%" height="15" fill="rgb(234,179,48)" fg:x="43537" fg:w="8"/><text x="91.6816%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.02%)</title><rect x="91.4316%" y="1189" width="0.0168%" height="15" fill="rgb(248,90,0)" fg:x="43537" fg:w="8"/><text x="91.6816%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="91.4337%" y="1173" width="0.0147%" height="15" fill="rgb(207,228,37)" fg:x="43538" fg:w="7"/><text x="91.6837%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.03%)</title><rect x="91.4190%" y="1253" width="0.0336%" height="15" fill="rgb(235,214,15)" fg:x="43531" fg:w="16"/><text x="91.6690%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="91.4211%" y="1237" width="0.0315%" height="15" fill="rgb(210,144,39)" fg:x="43532" fg:w="15"/><text x="91.6711%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="91.4232%" y="1221" width="0.0294%" height="15" fill="rgb(222,67,41)" fg:x="43533" fg:w="14"/><text x="91.6732%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.4610%" y="1125" width="0.0105%" height="15" fill="rgb(205,35,37)" fg:x="43551" fg:w="5"/><text x="91.7110%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.4589%" y="1157" width="0.0147%" height="15" fill="rgb(216,125,40)" fg:x="43550" fg:w="7"/><text x="91.7089%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.4610%" y="1141" width="0.0126%" height="15" fill="rgb(228,227,20)" fg:x="43551" fg:w="6"/><text x="91.7110%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="91.4568%" y="1189" width="0.0231%" height="15" fill="rgb(242,173,45)" fg:x="43549" fg:w="11"/><text x="91.7068%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="91.4589%" y="1173" width="0.0210%" height="15" fill="rgb(215,79,24)" fg:x="43550" fg:w="10"/><text x="91.7089%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.4925%" y="837" width="0.0105%" height="15" fill="rgb(238,164,38)" fg:x="43566" fg:w="5"/><text x="91.7425%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.4925%" y="821" width="0.0105%" height="15" fill="rgb(245,196,38)" fg:x="43566" fg:w="5"/><text x="91.7425%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.02%)</title><rect x="91.4925%" y="869" width="0.0210%" height="15" fill="rgb(231,217,29)" fg:x="43566" fg:w="10"/><text x="91.7425%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (10 samples, 0.02%)</title><rect x="91.4925%" y="853" width="0.0210%" height="15" fill="rgb(245,6,4)" fg:x="43566" fg:w="10"/><text x="91.7425%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="91.5030%" y="837" width="0.0105%" height="15" fill="rgb(214,76,49)" fg:x="43571" fg:w="5"/><text x="91.7530%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.01%)</title><rect x="91.5030%" y="821" width="0.0105%" height="15" fill="rgb(205,96,12)" fg:x="43571" fg:w="5"/><text x="91.7530%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.5030%" y="805" width="0.0105%" height="15" fill="rgb(243,131,4)" fg:x="43571" fg:w="5"/><text x="91.7530%" y="815.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.5030%" y="789" width="0.0105%" height="15" fill="rgb(214,114,4)" fg:x="43571" fg:w="5"/><text x="91.7530%" y="799.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.03%)</title><rect x="91.4841%" y="1141" width="0.0315%" height="15" fill="rgb(234,215,15)" fg:x="43562" fg:w="15"/><text x="91.7341%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.03%)</title><rect x="91.4841%" y="1125" width="0.0315%" height="15" fill="rgb(250,216,45)" fg:x="43562" fg:w="15"/><text x="91.7341%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (15 samples, 0.03%)</title><rect x="91.4841%" y="1109" width="0.0315%" height="15" fill="rgb(236,128,4)" fg:x="43562" fg:w="15"/><text x="91.7341%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.03%)</title><rect x="91.4862%" y="1093" width="0.0294%" height="15" fill="rgb(234,50,33)" fg:x="43563" fg:w="14"/><text x="91.7362%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="91.4862%" y="1077" width="0.0294%" height="15" fill="rgb(253,131,37)" fg:x="43563" fg:w="14"/><text x="91.7362%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="91.4862%" y="1061" width="0.0294%" height="15" fill="rgb(218,55,27)" fg:x="43563" fg:w="14"/><text x="91.7362%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.03%)</title><rect x="91.4862%" y="1045" width="0.0294%" height="15" fill="rgb(241,220,28)" fg:x="43563" fg:w="14"/><text x="91.7362%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.03%)</title><rect x="91.4862%" y="1029" width="0.0294%" height="15" fill="rgb(241,90,48)" fg:x="43563" fg:w="14"/><text x="91.7362%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="91.4862%" y="1013" width="0.0294%" height="15" fill="rgb(216,43,37)" fg:x="43563" fg:w="14"/><text x="91.7362%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (14 samples, 0.03%)</title><rect x="91.4862%" y="997" width="0.0294%" height="15" fill="rgb(207,173,9)" fg:x="43563" fg:w="14"/><text x="91.7362%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.03%)</title><rect x="91.4904%" y="981" width="0.0252%" height="15" fill="rgb(240,126,30)" fg:x="43565" fg:w="12"/><text x="91.7404%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="91.4904%" y="965" width="0.0252%" height="15" fill="rgb(228,178,53)" fg:x="43565" fg:w="12"/><text x="91.7404%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="91.4904%" y="949" width="0.0252%" height="15" fill="rgb(217,33,4)" fg:x="43565" fg:w="12"/><text x="91.7404%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.02%)</title><rect x="91.4925%" y="933" width="0.0231%" height="15" fill="rgb(206,124,34)" fg:x="43566" fg:w="11"/><text x="91.7425%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.02%)</title><rect x="91.4925%" y="917" width="0.0231%" height="15" fill="rgb(208,122,53)" fg:x="43566" fg:w="11"/><text x="91.7425%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.02%)</title><rect x="91.4925%" y="901" width="0.0231%" height="15" fill="rgb(215,202,26)" fg:x="43566" fg:w="11"/><text x="91.7425%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (11 samples, 0.02%)</title><rect x="91.4925%" y="885" width="0.0231%" height="15" fill="rgb(232,198,31)" fg:x="43566" fg:w="11"/><text x="91.7425%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.04%)</title><rect x="91.4799%" y="1189" width="0.0441%" height="15" fill="rgb(222,23,35)" fg:x="43560" fg:w="21"/><text x="91.7299%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="91.4799%" y="1173" width="0.0441%" height="15" fill="rgb(242,27,53)" fg:x="43560" fg:w="21"/><text x="91.7299%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (20 samples, 0.04%)</title><rect x="91.4820%" y="1157" width="0.0420%" height="15" fill="rgb(210,216,42)" fg:x="43561" fg:w="20"/><text x="91.7320%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (116 samples, 0.24%)</title><rect x="91.2930%" y="1317" width="0.2436%" height="15" fill="rgb(234,39,38)" fg:x="43471" fg:w="116"/><text x="91.5430%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (116 samples, 0.24%)</title><rect x="91.2930%" y="1301" width="0.2436%" height="15" fill="rgb(235,126,54)" fg:x="43471" fg:w="116"/><text x="91.5430%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (116 samples, 0.24%)</title><rect x="91.2930%" y="1285" width="0.2436%" height="15" fill="rgb(235,150,33)" fg:x="43471" fg:w="116"/><text x="91.5430%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (116 samples, 0.24%)</title><rect x="91.2930%" y="1269" width="0.2436%" height="15" fill="rgb(249,49,53)" fg:x="43471" fg:w="116"/><text x="91.5430%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (40 samples, 0.08%)</title><rect x="91.4526%" y="1253" width="0.0840%" height="15" fill="rgb(238,60,50)" fg:x="43547" fg:w="40"/><text x="91.7026%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (40 samples, 0.08%)</title><rect x="91.4526%" y="1237" width="0.0840%" height="15" fill="rgb(210,5,2)" fg:x="43547" fg:w="40"/><text x="91.7026%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (40 samples, 0.08%)</title><rect x="91.4526%" y="1221" width="0.0840%" height="15" fill="rgb(214,207,24)" fg:x="43547" fg:w="40"/><text x="91.7026%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (39 samples, 0.08%)</title><rect x="91.4547%" y="1205" width="0.0819%" height="15" fill="rgb(228,173,2)" fg:x="43548" fg:w="39"/><text x="91.7047%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="91.5240%" y="1189" width="0.0126%" height="15" fill="rgb(244,26,8)" fg:x="43581" fg:w="6"/><text x="91.7740%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="91.5240%" y="1173" width="0.0126%" height="15" fill="rgb(249,153,35)" fg:x="43581" fg:w="6"/><text x="91.7740%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.5240%" y="1157" width="0.0126%" height="15" fill="rgb(221,215,40)" fg:x="43581" fg:w="6"/><text x="91.7740%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.5240%" y="1141" width="0.0126%" height="15" fill="rgb(238,106,35)" fg:x="43581" fg:w="6"/><text x="91.7740%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.5240%" y="1125" width="0.0126%" height="15" fill="rgb(207,195,21)" fg:x="43581" fg:w="6"/><text x="91.7740%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.5261%" y="1109" width="0.0105%" height="15" fill="rgb(205,43,29)" fg:x="43582" fg:w="5"/><text x="91.7761%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (453 samples, 0.95%)</title><rect x="90.5874%" y="1349" width="0.9513%" height="15" fill="rgb(236,35,21)" fg:x="43135" fg:w="453"/><text x="90.8374%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (453 samples, 0.95%)</title><rect x="90.5874%" y="1333" width="0.9513%" height="15" fill="rgb(244,74,8)" fg:x="43135" fg:w="453"/><text x="90.8374%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.5387%" y="1269" width="0.0105%" height="15" fill="rgb(241,229,7)" fg:x="43588" fg:w="5"/><text x="91.7887%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.02%)</title><rect x="91.5387%" y="1301" width="0.0189%" height="15" fill="rgb(212,223,25)" fg:x="43588" fg:w="9"/><text x="91.7887%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (9 samples, 0.02%)</title><rect x="91.5387%" y="1285" width="0.0189%" height="15" fill="rgb(234,58,53)" fg:x="43588" fg:w="9"/><text x="91.7887%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.5576%" y="1253" width="0.0126%" height="15" fill="rgb(244,36,1)" fg:x="43597" fg:w="6"/><text x="91.8076%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.04%)</title><rect x="91.5387%" y="1349" width="0.0441%" height="15" fill="rgb(222,40,54)" fg:x="43588" fg:w="21"/><text x="91.7887%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.04%)</title><rect x="91.5387%" y="1333" width="0.0441%" height="15" fill="rgb(210,207,39)" fg:x="43588" fg:w="21"/><text x="91.7887%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (21 samples, 0.04%)</title><rect x="91.5387%" y="1317" width="0.0441%" height="15" fill="rgb(234,52,14)" fg:x="43588" fg:w="21"/><text x="91.7887%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.03%)</title><rect x="91.5576%" y="1301" width="0.0252%" height="15" fill="rgb(239,108,46)" fg:x="43597" fg:w="12"/><text x="91.8076%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.03%)</title><rect x="91.5576%" y="1285" width="0.0252%" height="15" fill="rgb(252,223,5)" fg:x="43597" fg:w="12"/><text x="91.8076%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (12 samples, 0.03%)</title><rect x="91.5576%" y="1269" width="0.0252%" height="15" fill="rgb(227,181,11)" fg:x="43597" fg:w="12"/><text x="91.8076%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.5912%" y="1221" width="0.0147%" height="15" fill="rgb(248,126,40)" fg:x="43613" fg:w="7"/><text x="91.8412%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="91.5912%" y="1205" width="0.0147%" height="15" fill="rgb(243,1,18)" fg:x="43613" fg:w="7"/><text x="91.8412%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.03%)</title><rect x="91.5891%" y="1253" width="0.0294%" height="15" fill="rgb(214,145,23)" fg:x="43612" fg:w="14"/><text x="91.8391%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (13 samples, 0.03%)</title><rect x="91.5912%" y="1237" width="0.0273%" height="15" fill="rgb(241,218,11)" fg:x="43613" fg:w="13"/><text x="91.8412%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.01%)</title><rect x="91.6059%" y="1221" width="0.0126%" height="15" fill="rgb(214,219,24)" fg:x="43620" fg:w="6"/><text x="91.8559%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.6059%" y="1205" width="0.0126%" height="15" fill="rgb(235,32,7)" fg:x="43620" fg:w="6"/><text x="91.8559%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.6080%" y="1189" width="0.0105%" height="15" fill="rgb(227,121,28)" fg:x="43621" fg:w="5"/><text x="91.8580%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.01%)</title><rect x="91.6080%" y="1173" width="0.0105%" height="15" fill="rgb(216,129,49)" fg:x="43621" fg:w="5"/><text x="91.8580%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.6080%" y="1157" width="0.0105%" height="15" fill="rgb(207,194,50)" fg:x="43621" fg:w="5"/><text x="91.8580%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.04%)</title><rect x="91.5870%" y="1285" width="0.0399%" height="15" fill="rgb(207,4,18)" fg:x="43611" fg:w="19"/><text x="91.8370%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (18 samples, 0.04%)</title><rect x="91.5891%" y="1269" width="0.0378%" height="15" fill="rgb(213,50,30)" fg:x="43612" fg:w="18"/><text x="91.8391%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.02%)</title><rect x="91.6269%" y="1285" width="0.0168%" height="15" fill="rgb(208,77,22)" fg:x="43630" fg:w="8"/><text x="91.8769%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.01%)</title><rect x="91.6290%" y="1269" width="0.0147%" height="15" fill="rgb(244,204,34)" fg:x="43631" fg:w="7"/><text x="91.8790%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (7 samples, 0.01%)</title><rect x="91.6290%" y="1253" width="0.0147%" height="15" fill="rgb(230,20,17)" fg:x="43631" fg:w="7"/><text x="91.8790%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (509 samples, 1.07%)</title><rect x="90.5874%" y="1381" width="1.0689%" height="15" fill="rgb(237,83,15)" fg:x="43135" fg:w="509"/><text x="90.8374%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (509 samples, 1.07%)</title><rect x="90.5874%" y="1365" width="1.0689%" height="15" fill="rgb(221,109,25)" fg:x="43135" fg:w="509"/><text x="90.8374%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (35 samples, 0.07%)</title><rect x="91.5828%" y="1349" width="0.0735%" height="15" fill="rgb(205,194,52)" fg:x="43609" fg:w="35"/><text x="91.8328%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (35 samples, 0.07%)</title><rect x="91.5828%" y="1333" width="0.0735%" height="15" fill="rgb(244,173,54)" fg:x="43609" fg:w="35"/><text x="91.8328%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.07%)</title><rect x="91.5849%" y="1317" width="0.0714%" height="15" fill="rgb(227,181,18)" fg:x="43610" fg:w="34"/><text x="91.8349%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (33 samples, 0.07%)</title><rect x="91.5870%" y="1301" width="0.0693%" height="15" fill="rgb(238,36,30)" fg:x="43611" fg:w="33"/><text x="91.8370%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.01%)</title><rect x="91.6437%" y="1285" width="0.0126%" height="15" fill="rgb(254,85,0)" fg:x="43638" fg:w="6"/><text x="91.8937%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.01%)</title><rect x="91.6437%" y="1269" width="0.0126%" height="15" fill="rgb(247,63,33)" fg:x="43638" fg:w="6"/><text x="91.8937%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.01%)</title><rect x="91.6437%" y="1253" width="0.0126%" height="15" fill="rgb(220,7,54)" fg:x="43638" fg:w="6"/><text x="91.8937%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (6 samples, 0.01%)</title><rect x="91.6437%" y="1237" width="0.0126%" height="15" fill="rgb(238,227,21)" fg:x="43638" fg:w="6"/><text x="91.8937%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (514 samples, 1.08%)</title><rect x="90.5874%" y="1445" width="1.0794%" height="15" fill="rgb(237,29,31)" fg:x="43135" fg:w="514"/><text x="90.8374%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (514 samples, 1.08%)</title><rect x="90.5874%" y="1429" width="1.0794%" height="15" fill="rgb(211,21,50)" fg:x="43135" fg:w="514"/><text x="90.8374%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (514 samples, 1.08%)</title><rect x="90.5874%" y="1413" width="1.0794%" height="15" fill="rgb(239,119,2)" fg:x="43135" fg:w="514"/><text x="90.8374%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (514 samples, 1.08%)</title><rect x="90.5874%" y="1397" width="1.0794%" height="15" fill="rgb(250,2,39)" fg:x="43135" fg:w="514"/><text x="90.8374%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.01%)</title><rect x="91.6563%" y="1381" width="0.0105%" height="15" fill="rgb(244,46,53)" fg:x="43644" fg:w="5"/><text x="91.9063%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::iter::plumbing::bridge_producer_consumer::helper (517 samples, 1.09%)</title><rect x="90.5832%" y="1477" width="1.0857%" height="15" fill="rgb(209,21,19)" fg:x="43133" fg:w="517"/><text x="90.8332%" y="1487.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (515 samples, 1.08%)</title><rect x="90.5874%" y="1461" width="1.0815%" height="15" fill="rgb(236,145,4)" fg:x="43135" fg:w="515"/><text x="90.8374%" y="1471.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (6 samples, 0.01%)</title><rect x="91.6689%" y="1445" width="0.0126%" height="15" fill="rgb(220,133,36)" fg:x="43650" fg:w="6"/><text x="91.9189%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.6710%" y="1429" width="0.0105%" height="15" fill="rgb(244,18,3)" fg:x="43651" fg:w="5"/><text x="91.9210%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (5 samples, 0.01%)</title><rect x="91.6710%" y="1413" width="0.0105%" height="15" fill="rgb(232,171,48)" fg:x="43651" fg:w="5"/><text x="91.9210%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (5 samples, 0.01%)</title><rect x="91.6710%" y="1397" width="0.0105%" height="15" fill="rgb(223,223,53)" fg:x="43651" fg:w="5"/><text x="91.9210%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8,206 samples, 17.23%)</title><rect x="74.4524%" y="1509" width="17.2333%" height="15" fill="rgb(246,92,13)" fg:x="35452" fg:w="8206"/><text x="74.7024%" y="1519.50">sqlparser_bench-959bc526797..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (525 samples, 1.10%)</title><rect x="90.5832%" y="1493" width="1.1025%" height="15" fill="rgb(229,171,10)" fg:x="43133" fg:w="525"/><text x="90.8332%" y="1503.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon::slice::quicksort::recurse (8 samples, 0.02%)</title><rect x="91.6689%" y="1477" width="0.0168%" height="15" fill="rgb(213,131,26)" fg:x="43650" fg:w="8"/><text x="91.9189%" y="1487.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::join::join_context::_{{closure}} (8 samples, 0.02%)</title><rect x="91.6689%" y="1461" width="0.0168%" height="15" fill="rgb(242,87,54)" fg:x="43650" fg:w="8"/><text x="91.9189%" y="1471.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (13 samples, 0.03%)</title><rect x="91.6857%" y="1493" width="0.0273%" height="15" fill="rgb(237,21,35)" fg:x="43658" fg:w="13"/><text x="91.9357%" y="1503.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`crossbeam_deque::deque::Stealer&lt;T&gt;::steal (11 samples, 0.02%)</title><rect x="91.6899%" y="1477" width="0.0231%" height="15" fill="rgb(253,13,47)" fg:x="43660" fg:w="11"/><text x="91.9399%" y="1487.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`crossbeam_epoch::default::with_handle (6 samples, 0.01%)</title><rect x="91.7004%" y="1461" width="0.0126%" height="15" fill="rgb(215,122,49)" fg:x="43665" fg:w="6"/><text x="91.9504%" y="1471.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::find_work (14 samples, 0.03%)</title><rect x="91.6857%" y="1509" width="0.0294%" height="15" fill="rgb(209,179,30)" fg:x="43658" fg:w="14"/><text x="91.9357%" y="1519.50"></text></g><g><title>libsystem_kernel.dylib`__psynch_cvwait (5 samples, 0.01%)</title><rect x="91.7151%" y="1493" width="0.0105%" height="15" fill="rgb(235,100,24)" fg:x="43672" fg:w="5"/><text x="91.9651%" y="1503.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::sleep::Sleep::sleep (8 samples, 0.02%)</title><rect x="91.7151%" y="1509" width="0.0168%" height="15" fill="rgb(209,67,24)" fg:x="43672" fg:w="8"/><text x="91.9651%" y="1519.50"></text></g><g><title>libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow (10 samples, 0.02%)</title><rect x="91.7382%" y="1477" width="0.0210%" height="15" fill="rgb(206,74,32)" fg:x="43683" fg:w="10"/><text x="91.9882%" y="1487.50"></text></g><g><title>libsystem_kernel.dylib`__psynch_mutexwait (10 samples, 0.02%)</title><rect x="91.7382%" y="1461" width="0.0210%" height="15" fill="rgb(212,45,25)" fg:x="43683" fg:w="10"/><text x="91.9882%" y="1471.50"></text></g><g><title>libsystem_pthread.dylib`thread_start (8,379 samples, 17.60%)</title><rect x="74.1710%" y="1621" width="17.5967%" height="15" fill="rgb(239,26,3)" fg:x="35318" fg:w="8379"/><text x="74.4210%" y="1631.50">libsystem_pthread.dylib`thr..</text></g><g><title>libsystem_pthread.dylib`_pthread_start (8,379 samples, 17.60%)</title><rect x="74.1710%" y="1605" width="17.5967%" height="15" fill="rgb(218,36,15)" fg:x="35318" fg:w="8379"/><text x="74.4210%" y="1615.50">libsystem_pthread.dylib`_pt..</text></g><g><title>sqlparser_bench-959bc5267970ca34`std::sys::pal::unix::thread::Thread::new::thread_start (8,379 samples, 17.60%)</title><rect x="74.1710%" y="1589" width="17.5967%" height="15" fill="rgb(206,108,24)" fg:x="35318" fg:w="8379"/><text x="74.4210%" y="1599.50">sqlparser_bench-959bc526797..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ops::function::FnOnce::call_once{{vtable.shim}} (8,379 samples, 17.60%)</title><rect x="74.1710%" y="1573" width="17.5967%" height="15" fill="rgb(234,204,42)" fg:x="35318" fg:w="8379"/><text x="74.4210%" y="1583.50">sqlparser_bench-959bc526797..</text></g><g><title>sqlparser_bench-959bc5267970ca34`std::sys::backtrace::__rust_begin_short_backtrace (8,379 samples, 17.60%)</title><rect x="74.1710%" y="1557" width="17.5967%" height="15" fill="rgb(229,2,11)" fg:x="35318" fg:w="8379"/><text x="74.4210%" y="1567.50">sqlparser_bench-959bc526797..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::ThreadBuilder::run (8,379 samples, 17.60%)</title><rect x="74.1710%" y="1541" width="17.5967%" height="15" fill="rgb(221,20,48)" fg:x="35318" fg:w="8379"/><text x="74.4210%" y="1551.50">sqlparser_bench-959bc526797..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::registry::WorkerThread::wait_until_cold (8,379 samples, 17.60%)</title><rect x="74.1710%" y="1525" width="17.5967%" height="15" fill="rgb(244,164,10)" fg:x="35318" fg:w="8379"/><text x="74.4210%" y="1535.50">sqlparser_bench-959bc526797..</text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::sleep::Sleep::wake_any_threads (17 samples, 0.04%)</title><rect x="91.7319%" y="1509" width="0.0357%" height="15" fill="rgb(243,229,2)" fg:x="43680" fg:w="17"/><text x="91.9819%" y="1519.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rayon_core::sleep::Sleep::wake_specific_thread (17 samples, 0.04%)</title><rect x="91.7319%" y="1493" width="0.0357%" height="15" fill="rgb(232,131,37)" fg:x="43680" fg:w="17"/><text x="91.9819%" y="1503.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (12 samples, 0.03%)</title><rect x="91.7718%" y="117" width="0.0252%" height="15" fill="rgb(217,156,11)" fg:x="43699" fg:w="12"/><text x="92.0218%" y="127.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::RawVecInner&lt;A&gt;::reserve::do_reserve_and_handle (12 samples, 0.03%)</title><rect x="91.7718%" y="101" width="0.0252%" height="15" fill="rgb(239,99,48)" fg:x="43699" fg:w="12"/><text x="92.0218%" y="111.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`alloc::raw_vec::finish_grow (12 samples, 0.03%)</title><rect x="91.7718%" y="85" width="0.0252%" height="15" fill="rgb(231,209,9)" fg:x="43699" fg:w="12"/><text x="92.0218%" y="95.50"></text></g><g><title>libsystem_malloc.dylib`_realloc (12 samples, 0.03%)</title><rect x="91.7718%" y="69" width="0.0252%" height="15" fill="rgb(254,97,27)" fg:x="43699" fg:w="12"/><text x="92.0218%" y="79.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_realloc (12 samples, 0.03%)</title><rect x="91.7718%" y="53" width="0.0252%" height="15" fill="rgb(223,151,38)" fg:x="43699" fg:w="12"/><text x="92.0218%" y="63.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (11 samples, 0.02%)</title><rect x="91.7739%" y="37" width="0.0231%" height="15" fill="rgb(219,206,35)" fg:x="43700" fg:w="11"/><text x="92.0239%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (72 samples, 0.15%)</title><rect x="91.7970%" y="37" width="0.1512%" height="15" fill="rgb(216,130,31)" fg:x="43711" fg:w="72"/><text x="92.0470%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (133 samples, 0.28%)</title><rect x="91.9483%" y="37" width="0.2793%" height="15" fill="rgb(251,97,34)" fg:x="43783" fg:w="133"/><text x="92.1983%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt (37 samples, 0.08%)</title><rect x="92.2276%" y="37" width="0.0777%" height="15" fill="rgb(246,159,47)" fg:x="43916" fg:w="37"/><text x="92.4776%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (96 samples, 0.20%)</title><rect x="92.3053%" y="37" width="0.2016%" height="15" fill="rgb(232,87,10)" fg:x="43953" fg:w="96"/><text x="92.5553%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (11 samples, 0.02%)</title><rect x="92.5069%" y="37" width="0.0231%" height="15" fill="rgb(249,1,37)" fg:x="44049" fg:w="11"/><text x="92.7569%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::operator::BinaryOperator as core::fmt::Display&gt;::fmt (58 samples, 0.12%)</title><rect x="92.5300%" y="37" width="0.1218%" height="15" fill="rgb(239,135,14)" fg:x="44060" fg:w="58"/><text x="92.7800%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::value::Value as core::fmt::Display&gt;::fmt (9 samples, 0.02%)</title><rect x="92.6518%" y="37" width="0.0189%" height="15" fill="rgb(253,116,46)" fg:x="44118" fg:w="9"/><text x="92.9018%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_str (12 samples, 0.03%)</title><rect x="92.6707%" y="37" width="0.0252%" height="15" fill="rgb(222,217,37)" fg:x="44127" fg:w="12"/><text x="92.9207%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,141 samples, 2.40%)</title><rect x="91.7970%" y="53" width="2.3962%" height="15" fill="rgb(252,96,8)" fg:x="43711" fg:w="1141"/><text x="92.0470%" y="63.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (713 samples, 1.50%)</title><rect x="92.6959%" y="37" width="1.4974%" height="15" fill="rgb(254,103,41)" fg:x="44139" fg:w="713"/><text x="92.9459%" y="47.50"></text></g><g><title>libdyld.dylib`tlv_get_addr (127 samples, 0.27%)</title><rect x="94.1933%" y="37" width="0.2667%" height="15" fill="rgb(218,213,19)" fg:x="44852" fg:w="127"/><text x="94.4433%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`psm::stack_pointer (44 samples, 0.09%)</title><rect x="94.4600%" y="37" width="0.0924%" height="15" fill="rgb(253,95,21)" fg:x="44979" fg:w="44"/><text x="94.7100%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`rust_psm_stack_pointer (124 samples, 0.26%)</title><rect x="94.5524%" y="37" width="0.2604%" height="15" fill="rgb(229,26,28)" fg:x="45023" fg:w="124"/><text x="94.8024%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt (408 samples, 0.86%)</title><rect x="94.1933%" y="53" width="0.8568%" height="15" fill="rgb(230,129,16)" fg:x="44852" fg:w="408"/><text x="94.4433%" y="63.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (113 samples, 0.24%)</title><rect x="94.8128%" y="37" width="0.2373%" height="15" fill="rgb(236,126,17)" fg:x="45147" fg:w="113"/><text x="95.0628%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;&amp;T as core::fmt::Display&gt;::fmt (27 samples, 0.06%)</title><rect x="95.0501%" y="37" width="0.0567%" height="15" fill="rgb(209,33,33)" fg:x="45260" fg:w="27"/><text x="95.3001%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (68 samples, 0.14%)</title><rect x="95.1068%" y="37" width="0.1428%" height="15" fill="rgb(227,85,29)" fg:x="45287" fg:w="68"/><text x="95.3568%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (20 samples, 0.04%)</title><rect x="95.2496%" y="37" width="0.0420%" height="15" fill="rgb(241,53,46)" fg:x="45355" fg:w="20"/><text x="95.4996%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (65 samples, 0.14%)</title><rect x="95.2916%" y="37" width="0.1365%" height="15" fill="rgb(228,167,53)" fg:x="45375" fg:w="65"/><text x="95.5416%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1621" width="3.9020%" height="15" fill="rgb(238,195,45)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1631.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1605" width="3.9020%" height="15" fill="rgb(252,124,45)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1615.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1589" width="3.9020%" height="15" fill="rgb(251,38,35)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1599.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1573" width="3.9020%" height="15" fill="rgb(227,33,2)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1583.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1557" width="3.9020%" height="15" fill="rgb(223,157,46)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1567.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1541" width="3.9020%" height="15" fill="rgb(222,78,41)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1551.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1525" width="3.9020%" height="15" fill="rgb(248,176,11)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1535.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1509" width="3.9020%" height="15" fill="rgb(241,221,18)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1519.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1493" width="3.9020%" height="15" fill="rgb(218,85,22)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1503.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1477" width="3.9020%" height="15" fill="rgb(222,223,7)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1487.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1461" width="3.9020%" height="15" fill="rgb(254,59,39)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1471.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1445" width="3.9020%" height="15" fill="rgb(247,100,27)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1455.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1429" width="3.9020%" height="15" fill="rgb(237,207,10)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1439.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1413" width="3.9020%" height="15" fill="rgb(220,121,28)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1423.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1397" width="3.9020%" height="15" fill="rgb(213,223,20)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1407.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1381" width="3.9020%" height="15" fill="rgb(205,121,27)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1391.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1365" width="3.9020%" height="15" fill="rgb(253,24,53)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1375.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1349" width="3.9020%" height="15" fill="rgb(224,224,47)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1359.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1333" width="3.9020%" height="15" fill="rgb(250,125,36)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1343.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1317" width="3.9020%" height="15" fill="rgb(240,144,38)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1327.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1301" width="3.9020%" height="15" fill="rgb(250,15,50)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1311.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1285" width="3.9020%" height="15" fill="rgb(210,24,26)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1295.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1269" width="3.9020%" height="15" fill="rgb(234,53,53)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1279.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1253" width="3.9020%" height="15" fill="rgb(208,108,28)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1263.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1237" width="3.9020%" height="15" fill="rgb(227,143,7)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1247.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1221" width="3.9020%" height="15" fill="rgb(238,189,38)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1231.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1205" width="3.9020%" height="15" fill="rgb(222,69,15)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1215.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1189" width="3.9020%" height="15" fill="rgb(213,169,7)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1199.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1173" width="3.9020%" height="15" fill="rgb(251,219,4)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1183.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1157" width="3.9020%" height="15" fill="rgb(241,55,40)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1167.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1141" width="3.9020%" height="15" fill="rgb(243,57,30)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1151.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1125" width="3.9020%" height="15" fill="rgb(234,50,30)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1135.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1109" width="3.9020%" height="15" fill="rgb(239,23,42)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1119.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1093" width="3.9020%" height="15" fill="rgb(217,38,19)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1103.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1077" width="3.9020%" height="15" fill="rgb(215,179,16)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1087.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1061" width="3.9020%" height="15" fill="rgb(254,21,37)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1071.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1045" width="3.9020%" height="15" fill="rgb(219,207,48)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1055.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1029" width="3.9020%" height="15" fill="rgb(227,225,41)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1039.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="1013" width="3.9020%" height="15" fill="rgb(223,130,1)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1023.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="997" width="3.9020%" height="15" fill="rgb(249,54,42)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="1007.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="981" width="3.9020%" height="15" fill="rgb(248,69,25)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="991.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="965" width="3.9020%" height="15" fill="rgb(234,21,32)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="975.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="949" width="3.9020%" height="15" fill="rgb(252,136,6)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="959.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="933" width="3.9020%" height="15" fill="rgb(245,87,12)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="943.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="917" width="3.9020%" height="15" fill="rgb(208,12,15)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="927.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="901" width="3.9020%" height="15" fill="rgb(250,98,2)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="911.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="885" width="3.9020%" height="15" fill="rgb(205,213,15)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="895.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="869" width="3.9020%" height="15" fill="rgb(248,192,44)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="879.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="853" width="3.9020%" height="15" fill="rgb(221,89,17)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="863.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="837" width="3.9020%" height="15" fill="rgb(209,55,3)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="847.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="821" width="3.9020%" height="15" fill="rgb(247,23,45)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="831.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="805" width="3.9020%" height="15" fill="rgb(235,152,23)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="815.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="789" width="3.9020%" height="15" fill="rgb(244,63,13)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="799.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="773" width="3.9020%" height="15" fill="rgb(227,30,37)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="783.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="757" width="3.9020%" height="15" fill="rgb(224,49,42)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="767.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="741" width="3.9020%" height="15" fill="rgb(218,129,5)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="751.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="725" width="3.9020%" height="15" fill="rgb(240,199,54)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="735.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="709" width="3.9020%" height="15" fill="rgb(234,31,13)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="719.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="693" width="3.9020%" height="15" fill="rgb(219,73,54)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="703.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="677" width="3.9020%" height="15" fill="rgb(251,162,10)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="687.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="661" width="3.9020%" height="15" fill="rgb(240,138,47)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="671.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="645" width="3.9020%" height="15" fill="rgb(216,138,26)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="655.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="629" width="3.9020%" height="15" fill="rgb(243,17,35)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="639.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="613" width="3.9020%" height="15" fill="rgb(241,60,18)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="623.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="597" width="3.9020%" height="15" fill="rgb(234,2,44)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="607.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="581" width="3.9020%" height="15" fill="rgb(225,225,33)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="591.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="565" width="3.9020%" height="15" fill="rgb(234,50,31)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="575.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="549" width="3.9020%" height="15" fill="rgb(249,6,25)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="559.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="533" width="3.9020%" height="15" fill="rgb(241,5,17)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="543.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="517" width="3.9020%" height="15" fill="rgb(207,116,10)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="527.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="501" width="3.9020%" height="15" fill="rgb(222,128,18)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="511.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="485" width="3.9020%" height="15" fill="rgb(229,109,25)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="495.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="469" width="3.9020%" height="15" fill="rgb(222,102,25)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="479.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="453" width="3.9020%" height="15" fill="rgb(239,211,5)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="463.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="437" width="3.9020%" height="15" fill="rgb(223,136,26)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="447.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="421" width="3.9020%" height="15" fill="rgb(227,30,15)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="431.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="405" width="3.9020%" height="15" fill="rgb(247,76,4)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="415.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="389" width="3.9020%" height="15" fill="rgb(245,38,48)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="399.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="373" width="3.9020%" height="15" fill="rgb(210,220,14)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="383.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="357" width="3.9020%" height="15" fill="rgb(224,60,51)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="367.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="341" width="3.9020%" height="15" fill="rgb(212,133,49)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="351.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="325" width="3.9020%" height="15" fill="rgb(231,39,22)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="335.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="309" width="3.9020%" height="15" fill="rgb(236,173,22)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="319.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="293" width="3.9020%" height="15" fill="rgb(210,70,0)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="303.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="277" width="3.9020%" height="15" fill="rgb(215,170,11)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="287.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="261" width="3.9020%" height="15" fill="rgb(220,154,28)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="271.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="245" width="3.9020%" height="15" fill="rgb(240,160,41)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="255.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="229" width="3.9020%" height="15" fill="rgb(243,215,41)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="239.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="213" width="3.9020%" height="15" fill="rgb(214,208,31)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="223.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="197" width="3.9020%" height="15" fill="rgb(247,57,22)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="207.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="181" width="3.9020%" height="15" fill="rgb(228,73,52)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="191.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="165" width="3.9020%" height="15" fill="rgb(252,60,9)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="175.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,858 samples, 3.90%)</title><rect x="91.7718%" y="149" width="3.9020%" height="15" fill="rgb(233,9,51)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="159.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,858 samples, 3.90%)</title><rect x="91.7718%" y="133" width="3.9020%" height="15" fill="rgb(223,67,14)" fg:x="43699" fg:w="1858"/><text x="92.0218%" y="143.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,846 samples, 3.88%)</title><rect x="91.7970%" y="117" width="3.8768%" height="15" fill="rgb(222,86,2)" fg:x="43711" fg:w="1846"/><text x="92.0470%" y="127.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,846 samples, 3.88%)</title><rect x="91.7970%" y="101" width="3.8768%" height="15" fill="rgb(243,58,54)" fg:x="43711" fg:w="1846"/><text x="92.0470%" y="111.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,846 samples, 3.88%)</title><rect x="91.7970%" y="85" width="3.8768%" height="15" fill="rgb(210,200,39)" fg:x="43711" fg:w="1846"/><text x="92.0470%" y="95.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,846 samples, 3.88%)</title><rect x="91.7970%" y="69" width="3.8768%" height="15" fill="rgb(238,135,9)" fg:x="43711" fg:w="1846"/><text x="92.0470%" y="79.50">sqlp..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::value::Value as core::fmt::Display&gt;::fmt (297 samples, 0.62%)</title><rect x="95.0501%" y="53" width="0.6237%" height="15" fill="rgb(232,179,7)" fg:x="45260" fg:w="297"/><text x="95.3001%" y="63.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (117 samples, 0.25%)</title><rect x="95.4281%" y="37" width="0.2457%" height="15" fill="rgb(245,65,41)" fg:x="45440" fg:w="117"/><text x="95.6781%" y="47.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (253 samples, 0.53%)</title><rect x="95.6843%" y="37" width="0.5313%" height="15" fill="rgb(227,43,8)" fg:x="45562" fg:w="253"/><text x="95.9343%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (108 samples, 0.23%)</title><rect x="96.2156%" y="37" width="0.2268%" height="15" fill="rgb(235,91,14)" fg:x="45815" fg:w="108"/><text x="96.4656%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt (62 samples, 0.13%)</title><rect x="96.4424%" y="37" width="0.1302%" height="15" fill="rgb(235,219,31)" fg:x="45923" fg:w="62"/><text x="96.6924%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (372 samples, 0.78%)</title><rect x="96.5727%" y="37" width="0.7812%" height="15" fill="rgb(227,121,25)" fg:x="45985" fg:w="372"/><text x="96.8227%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Ident as core::fmt::Display&gt;::fmt (45 samples, 0.09%)</title><rect x="97.3539%" y="37" width="0.0945%" height="15" fill="rgb(254,129,24)" fg:x="46357" fg:w="45"/><text x="97.6039%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::value::Value as core::fmt::Display&gt;::fmt (57 samples, 0.12%)</title><rect x="97.4484%" y="37" width="0.1197%" height="15" fill="rgb(226,144,49)" fg:x="46402" fg:w="57"/><text x="97.6984%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`DYLD-STUB$$memcpy (71 samples, 0.15%)</title><rect x="97.5681%" y="37" width="0.1491%" height="15" fill="rgb(214,187,32)" fg:x="46459" fg:w="71"/><text x="97.8181%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_fmt (32 samples, 0.07%)</title><rect x="97.7172%" y="37" width="0.0672%" height="15" fill="rgb(243,129,46)" fg:x="46530" fg:w="32"/><text x="97.9672%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::write_str (34 samples, 0.07%)</title><rect x="97.7844%" y="37" width="0.0714%" height="15" fill="rgb(221,185,35)" fg:x="46562" fg:w="34"/><text x="98.0344%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (127 samples, 0.27%)</title><rect x="97.8558%" y="37" width="0.2667%" height="15" fill="rgb(205,0,32)" fg:x="46596" fg:w="127"/><text x="98.1058%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_minimum_stack_size (101 samples, 0.21%)</title><rect x="98.1225%" y="37" width="0.2121%" height="15" fill="rgb(229,179,12)" fg:x="46723" fg:w="101"/><text x="98.3725%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`recursive::get_stack_allocation_size (63 samples, 0.13%)</title><rect x="98.3346%" y="37" width="0.1323%" height="15" fill="rgb(252,107,19)" fg:x="46824" fg:w="63"/><text x="98.5846%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,396 samples, 2.93%)</title><rect x="95.6843%" y="69" width="2.9317%" height="15" fill="rgb(220,95,27)" fg:x="45562" fg:w="1396"/><text x="95.9343%" y="79.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,396 samples, 2.93%)</title><rect x="95.6843%" y="53" width="2.9317%" height="15" fill="rgb(240,113,40)" fg:x="45562" fg:w="1396"/><text x="95.9343%" y="63.50">sq..</text></g><g><title>sqlparser_bench-959bc5267970ca34`stacker::remaining_stack (71 samples, 0.15%)</title><rect x="98.4669%" y="37" width="0.1491%" height="15" fill="rgb(208,4,43)" fg:x="46887" fg:w="71"/><text x="98.7169%" y="47.50"></text></g><g><title>libsystem_platform.dylib`_platform_memmove (84 samples, 0.18%)</title><rect x="98.6160%" y="37" width="0.1764%" height="15" fill="rgb(247,189,30)" fg:x="46958" fg:w="84"/><text x="98.8660%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;alloc::string::String as core::fmt::Write&gt;::write_str (47 samples, 0.10%)</title><rect x="98.7924%" y="37" width="0.0987%" height="15" fill="rgb(231,157,17)" fg:x="47042" fg:w="47"/><text x="99.0424%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;str as core::fmt::Display&gt;::fmt (25 samples, 0.05%)</title><rect x="98.8912%" y="37" width="0.0525%" height="15" fill="rgb(224,139,6)" fg:x="47089" fg:w="25"/><text x="99.1412%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1605" width="3.3391%" height="15" fill="rgb(223,83,16)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1615.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1589" width="3.3391%" height="15" fill="rgb(232,211,20)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1599.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1573" width="3.3391%" height="15" fill="rgb(225,203,35)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1583.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1557" width="3.3391%" height="15" fill="rgb(215,211,44)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1567.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1541" width="3.3391%" height="15" fill="rgb(248,213,26)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1551.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1525" width="3.3391%" height="15" fill="rgb(214,23,52)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1535.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1509" width="3.3391%" height="15" fill="rgb(225,173,50)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1519.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1493" width="3.3391%" height="15" fill="rgb(206,150,22)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1503.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1477" width="3.3391%" height="15" fill="rgb(239,64,23)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1487.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1461" width="3.3391%" height="15" fill="rgb(242,50,38)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1471.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1445" width="3.3391%" height="15" fill="rgb(217,91,15)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1455.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1429" width="3.3391%" height="15" fill="rgb(230,172,6)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1439.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1413" width="3.3391%" height="15" fill="rgb(221,98,26)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1423.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1397" width="3.3391%" height="15" fill="rgb(227,210,45)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1407.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1381" width="3.3391%" height="15" fill="rgb(206,8,30)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1391.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1365" width="3.3391%" height="15" fill="rgb(241,219,17)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1375.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1349" width="3.3391%" height="15" fill="rgb(247,121,29)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1359.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1333" width="3.3391%" height="15" fill="rgb(219,169,49)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1343.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1317" width="3.3391%" height="15" fill="rgb(253,49,49)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1327.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1301" width="3.3391%" height="15" fill="rgb(217,178,3)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1311.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1285" width="3.3391%" height="15" fill="rgb(234,73,37)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1295.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1269" width="3.3391%" height="15" fill="rgb(250,98,22)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1279.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1253" width="3.3391%" height="15" fill="rgb(220,108,37)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1263.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1237" width="3.3391%" height="15" fill="rgb(225,168,10)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1247.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1221" width="3.3391%" height="15" fill="rgb(247,215,21)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1231.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1205" width="3.3391%" height="15" fill="rgb(253,189,31)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1215.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1189" width="3.3391%" height="15" fill="rgb(241,54,22)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1199.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1173" width="3.3391%" height="15" fill="rgb(211,87,4)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1183.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1157" width="3.3391%" height="15" fill="rgb(245,112,24)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1167.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1141" width="3.3391%" height="15" fill="rgb(235,190,41)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1151.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1125" width="3.3391%" height="15" fill="rgb(214,89,8)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1135.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1109" width="3.3391%" height="15" fill="rgb(249,155,35)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1119.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1093" width="3.3391%" height="15" fill="rgb(249,88,26)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1103.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1077" width="3.3391%" height="15" fill="rgb(232,56,8)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1087.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1061" width="3.3391%" height="15" fill="rgb(240,95,3)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1071.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1045" width="3.3391%" height="15" fill="rgb(222,44,28)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1055.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1029" width="3.3391%" height="15" fill="rgb(234,16,30)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1039.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="1013" width="3.3391%" height="15" fill="rgb(223,26,17)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1023.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="997" width="3.3391%" height="15" fill="rgb(239,187,47)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="1007.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="981" width="3.3391%" height="15" fill="rgb(247,102,50)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="991.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="965" width="3.3391%" height="15" fill="rgb(231,216,22)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="975.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="949" width="3.3391%" height="15" fill="rgb(216,201,26)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="959.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="933" width="3.3391%" height="15" fill="rgb(214,186,23)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="943.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="917" width="3.3391%" height="15" fill="rgb(235,184,4)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="927.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="901" width="3.3391%" height="15" fill="rgb(244,46,17)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="911.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="885" width="3.3391%" height="15" fill="rgb(248,74,46)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="895.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="869" width="3.3391%" height="15" fill="rgb(243,79,5)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="879.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="853" width="3.3391%" height="15" fill="rgb(213,148,1)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="863.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="837" width="3.3391%" height="15" fill="rgb(221,30,0)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="847.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="821" width="3.3391%" height="15" fill="rgb(207,85,29)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="831.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="805" width="3.3391%" height="15" fill="rgb(239,31,46)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="815.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="789" width="3.3391%" height="15" fill="rgb(219,6,1)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="799.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="773" width="3.3391%" height="15" fill="rgb(229,90,29)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="783.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="757" width="3.3391%" height="15" fill="rgb(242,201,42)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="767.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="741" width="3.3391%" height="15" fill="rgb(243,80,54)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="751.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="725" width="3.3391%" height="15" fill="rgb(223,166,15)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="735.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="709" width="3.3391%" height="15" fill="rgb(238,78,27)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="719.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="693" width="3.3391%" height="15" fill="rgb(235,28,43)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="703.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="677" width="3.3391%" height="15" fill="rgb(240,210,28)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="687.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="661" width="3.3391%" height="15" fill="rgb(253,6,46)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="671.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="645" width="3.3391%" height="15" fill="rgb(250,159,47)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="655.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="629" width="3.3391%" height="15" fill="rgb(216,139,2)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="639.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="613" width="3.3391%" height="15" fill="rgb(221,124,44)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="623.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="597" width="3.3391%" height="15" fill="rgb(205,37,22)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="607.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="581" width="3.3391%" height="15" fill="rgb(250,55,8)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="591.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="565" width="3.3391%" height="15" fill="rgb(215,83,48)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="575.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="549" width="3.3391%" height="15" fill="rgb(253,2,32)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="559.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="533" width="3.3391%" height="15" fill="rgb(236,67,28)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="543.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="517" width="3.3391%" height="15" fill="rgb(252,55,15)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="527.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="501" width="3.3391%" height="15" fill="rgb(243,173,17)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="511.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="485" width="3.3391%" height="15" fill="rgb(215,212,13)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="495.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="469" width="3.3391%" height="15" fill="rgb(253,176,6)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="479.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="453" width="3.3391%" height="15" fill="rgb(236,105,26)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="463.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="437" width="3.3391%" height="15" fill="rgb(239,226,32)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="447.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="421" width="3.3391%" height="15" fill="rgb(236,104,51)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="431.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="405" width="3.3391%" height="15" fill="rgb(220,172,33)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="415.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="389" width="3.3391%" height="15" fill="rgb(224,182,25)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="399.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="373" width="3.3391%" height="15" fill="rgb(236,184,24)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="383.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="357" width="3.3391%" height="15" fill="rgb(241,221,14)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="367.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="341" width="3.3391%" height="15" fill="rgb(227,146,5)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="351.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="325" width="3.3391%" height="15" fill="rgb(214,15,23)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="335.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="309" width="3.3391%" height="15" fill="rgb(233,157,31)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="319.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="293" width="3.3391%" height="15" fill="rgb(211,27,52)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="303.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="277" width="3.3391%" height="15" fill="rgb(212,223,15)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="287.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="261" width="3.3391%" height="15" fill="rgb(254,211,0)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="271.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="245" width="3.3391%" height="15" fill="rgb(205,43,38)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="255.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="229" width="3.3391%" height="15" fill="rgb(242,206,46)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="239.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="213" width="3.3391%" height="15" fill="rgb(220,221,12)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="223.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="197" width="3.3391%" height="15" fill="rgb(217,156,35)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="207.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="181" width="3.3391%" height="15" fill="rgb(207,181,49)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="191.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="165" width="3.3391%" height="15" fill="rgb(235,103,47)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="175.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="149" width="3.3391%" height="15" fill="rgb(222,63,28)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="159.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,590 samples, 3.34%)</title><rect x="95.6822%" y="133" width="3.3391%" height="15" fill="rgb(244,137,21)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="143.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,590 samples, 3.34%)</title><rect x="95.6822%" y="117" width="3.3391%" height="15" fill="rgb(228,35,27)" fg:x="45561" fg:w="1590"/><text x="95.9322%" y="127.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::Expr as core::fmt::Display&gt;::fmt::_{{closure}} (1,589 samples, 3.34%)</title><rect x="95.6843%" y="101" width="3.3370%" height="15" fill="rgb(226,191,41)" fg:x="45562" fg:w="1589"/><text x="95.9343%" y="111.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,589 samples, 3.34%)</title><rect x="95.6843%" y="85" width="3.3370%" height="15" fill="rgb(210,154,3)" fg:x="45562" fg:w="1589"/><text x="95.9343%" y="95.50">sql..</text></g><g><title>sqlparser_bench-959bc5267970ca34`&lt;sqlparser::ast::value::Value as core::fmt::Display&gt;::fmt (193 samples, 0.41%)</title><rect x="98.6160%" y="69" width="0.4053%" height="15" fill="rgb(216,60,49)" fg:x="46958" fg:w="193"/><text x="98.8660%" y="79.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (193 samples, 0.41%)</title><rect x="98.6160%" y="53" width="0.4053%" height="15" fill="rgb(226,17,20)" fg:x="46958" fg:w="193"/><text x="98.8660%" y="63.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::Formatter::pad (36 samples, 0.08%)</title><rect x="98.9458%" y="37" width="0.0756%" height="15" fill="rgb(206,115,35)" fg:x="47115" fg:w="36"/><text x="99.1958%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::fmt::write (1,598 samples, 3.36%)</title><rect x="95.6822%" y="1621" width="3.3559%" height="15" fill="rgb(227,88,1)" fg:x="45561" fg:w="1598"/><text x="95.9322%" y="1631.50">sql..</text></g><g><title>libsystem_malloc.dylib`free_tiny (6 samples, 0.01%)</title><rect x="99.0382%" y="85" width="0.0126%" height="15" fill="rgb(230,222,24)" fg:x="47159" fg:w="6"/><text x="99.2882%" y="95.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (6 samples, 0.01%)</title><rect x="99.0382%" y="69" width="0.0126%" height="15" fill="rgb(214,124,32)" fg:x="47159" fg:w="6"/><text x="99.2882%" y="79.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (7 samples, 0.01%)</title><rect x="99.0571%" y="37" width="0.0147%" height="15" fill="rgb(240,41,36)" fg:x="47168" fg:w="7"/><text x="99.3071%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (6 samples, 0.01%)</title><rect x="99.0802%" y="37" width="0.0126%" height="15" fill="rgb(221,17,52)" fg:x="47179" fg:w="6"/><text x="99.3302%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (29 samples, 0.06%)</title><rect x="99.0382%" y="101" width="0.0609%" height="15" fill="rgb(252,70,16)" fg:x="47159" fg:w="29"/><text x="99.2882%" y="111.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (20 samples, 0.04%)</title><rect x="99.0571%" y="85" width="0.0420%" height="15" fill="rgb(250,177,4)" fg:x="47168" fg:w="20"/><text x="99.3071%" y="95.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (20 samples, 0.04%)</title><rect x="99.0571%" y="69" width="0.0420%" height="15" fill="rgb(240,188,47)" fg:x="47168" fg:w="20"/><text x="99.3071%" y="79.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (20 samples, 0.04%)</title><rect x="99.0571%" y="53" width="0.0420%" height="15" fill="rgb(215,92,12)" fg:x="47168" fg:w="20"/><text x="99.3071%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (5 samples, 0.01%)</title><rect x="99.0991%" y="53" width="0.0105%" height="15" fill="rgb(242,110,29)" fg:x="47188" fg:w="5"/><text x="99.3491%" y="63.50"></text></g><g><title>libsystem_kernel.dylib`madvise (5 samples, 0.01%)</title><rect x="99.0991%" y="37" width="0.0105%" height="15" fill="rgb(208,211,26)" fg:x="47188" fg:w="5"/><text x="99.3491%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (9 samples, 0.02%)</title><rect x="99.0991%" y="85" width="0.0189%" height="15" fill="rgb(244,147,6)" fg:x="47188" fg:w="9"/><text x="99.3491%" y="95.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (9 samples, 0.02%)</title><rect x="99.0991%" y="69" width="0.0189%" height="15" fill="rgb(211,130,42)" fg:x="47188" fg:w="9"/><text x="99.3491%" y="79.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (8 samples, 0.02%)</title><rect x="99.1222%" y="37" width="0.0168%" height="15" fill="rgb(220,63,1)" fg:x="47199" fg:w="8"/><text x="99.3722%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (7 samples, 0.01%)</title><rect x="99.1390%" y="37" width="0.0147%" height="15" fill="rgb(241,212,30)" fg:x="47207" fg:w="7"/><text x="99.3890%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (20 samples, 0.04%)</title><rect x="99.1180%" y="69" width="0.0420%" height="15" fill="rgb(233,153,17)" fg:x="47197" fg:w="20"/><text x="99.3680%" y="79.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (20 samples, 0.04%)</title><rect x="99.1180%" y="53" width="0.0420%" height="15" fill="rgb(236,3,10)" fg:x="47197" fg:w="20"/><text x="99.3680%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (11 samples, 0.02%)</title><rect x="99.1600%" y="53" width="0.0231%" height="15" fill="rgb(232,41,21)" fg:x="47217" fg:w="11"/><text x="99.4100%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (9 samples, 0.02%)</title><rect x="99.1642%" y="37" width="0.0189%" height="15" fill="rgb(206,63,51)" fg:x="47219" fg:w="9"/><text x="99.4142%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (7 samples, 0.01%)</title><rect x="99.1831%" y="37" width="0.0147%" height="15" fill="rgb(250,214,3)" fg:x="47228" fg:w="7"/><text x="99.4331%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (10 samples, 0.02%)</title><rect x="99.1831%" y="53" width="0.0210%" height="15" fill="rgb(254,89,27)" fg:x="47228" fg:w="10"/><text x="99.4331%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (5 samples, 0.01%)</title><rect x="99.2104%" y="37" width="0.0105%" height="15" fill="rgb(249,41,14)" fg:x="47241" fg:w="5"/><text x="99.4604%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (11 samples, 0.02%)</title><rect x="99.2251%" y="37" width="0.0231%" height="15" fill="rgb(221,196,51)" fg:x="47248" fg:w="11"/><text x="99.4751%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (54 samples, 0.11%)</title><rect x="99.1600%" y="69" width="0.1134%" height="15" fill="rgb(214,116,26)" fg:x="47217" fg:w="54"/><text x="99.4100%" y="79.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (33 samples, 0.07%)</title><rect x="99.2041%" y="53" width="0.0693%" height="15" fill="rgb(236,67,7)" fg:x="47238" fg:w="33"/><text x="99.4541%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (16 samples, 0.03%)</title><rect x="99.2734%" y="53" width="0.0336%" height="15" fill="rgb(253,179,32)" fg:x="47271" fg:w="16"/><text x="99.5234%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (12 samples, 0.03%)</title><rect x="99.2818%" y="37" width="0.0252%" height="15" fill="rgb(218,33,15)" fg:x="47275" fg:w="12"/><text x="99.5318%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`_free (7 samples, 0.01%)</title><rect x="99.3091%" y="37" width="0.0147%" height="15" fill="rgb(217,202,41)" fg:x="47288" fg:w="7"/><text x="99.5591%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (8 samples, 0.02%)</title><rect x="99.3301%" y="37" width="0.0168%" height="15" fill="rgb(234,133,5)" fg:x="47298" fg:w="8"/><text x="99.5801%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (13 samples, 0.03%)</title><rect x="99.3469%" y="37" width="0.0273%" height="15" fill="rgb(240,47,40)" fg:x="47306" fg:w="13"/><text x="99.5969%" y="47.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (5 samples, 0.01%)</title><rect x="99.3763%" y="37" width="0.0105%" height="15" fill="rgb(234,166,26)" fg:x="47320" fg:w="5"/><text x="99.6263%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (94 samples, 0.20%)</title><rect x="99.3994%" y="37" width="0.1974%" height="15" fill="rgb(244,125,51)" fg:x="47331" fg:w="94"/><text x="99.6494%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1621" width="0.5607%" height="15" fill="rgb(229,171,11)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1631.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1605" width="0.5607%" height="15" fill="rgb(224,38,45)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1615.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1589" width="0.5607%" height="15" fill="rgb(237,27,7)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1599.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1573" width="0.5607%" height="15" fill="rgb(216,52,7)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1583.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1557" width="0.5607%" height="15" fill="rgb(243,11,11)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1567.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1541" width="0.5607%" height="15" fill="rgb(253,167,20)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1551.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1525" width="0.5607%" height="15" fill="rgb(215,207,5)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1535.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1509" width="0.5607%" height="15" fill="rgb(252,127,31)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1519.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1493" width="0.5607%" height="15" fill="rgb(209,106,27)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1503.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1477" width="0.5607%" height="15" fill="rgb(214,220,18)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1487.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1461" width="0.5607%" height="15" fill="rgb(237,89,12)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1471.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1445" width="0.5607%" height="15" fill="rgb(209,167,36)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1429" width="0.5607%" height="15" fill="rgb(243,45,22)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1413" width="0.5607%" height="15" fill="rgb(239,2,46)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1397" width="0.5607%" height="15" fill="rgb(241,101,0)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1381" width="0.5607%" height="15" fill="rgb(244,34,31)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1365" width="0.5607%" height="15" fill="rgb(248,23,22)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1349" width="0.5607%" height="15" fill="rgb(218,27,48)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1333" width="0.5607%" height="15" fill="rgb(232,78,1)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1317" width="0.5607%" height="15" fill="rgb(233,169,12)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1301" width="0.5607%" height="15" fill="rgb(225,222,54)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1285" width="0.5607%" height="15" fill="rgb(245,126,29)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1269" width="0.5607%" height="15" fill="rgb(241,63,48)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1253" width="0.5607%" height="15" fill="rgb(235,126,38)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1237" width="0.5607%" height="15" fill="rgb(232,96,49)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1221" width="0.5607%" height="15" fill="rgb(211,146,40)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1205" width="0.5607%" height="15" fill="rgb(247,93,44)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1189" width="0.5607%" height="15" fill="rgb(251,41,49)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1173" width="0.5607%" height="15" fill="rgb(218,155,12)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1157" width="0.5607%" height="15" fill="rgb(221,161,30)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1141" width="0.5607%" height="15" fill="rgb(221,179,11)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1125" width="0.5607%" height="15" fill="rgb(224,170,48)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1109" width="0.5607%" height="15" fill="rgb(223,117,5)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1093" width="0.5607%" height="15" fill="rgb(209,52,20)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1077" width="0.5607%" height="15" fill="rgb(209,19,41)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1061" width="0.5607%" height="15" fill="rgb(210,177,12)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1045" width="0.5607%" height="15" fill="rgb(211,159,37)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1029" width="0.5607%" height="15" fill="rgb(209,20,2)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="1013" width="0.5607%" height="15" fill="rgb(244,3,46)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="997" width="0.5607%" height="15" fill="rgb(220,94,38)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="981" width="0.5607%" height="15" fill="rgb(253,14,31)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="965" width="0.5607%" height="15" fill="rgb(234,176,13)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="949" width="0.5607%" height="15" fill="rgb(218,62,25)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="933" width="0.5607%" height="15" fill="rgb(216,124,40)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="917" width="0.5607%" height="15" fill="rgb(228,170,12)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="901" width="0.5607%" height="15" fill="rgb(231,226,5)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="885" width="0.5607%" height="15" fill="rgb(237,122,22)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="869" width="0.5607%" height="15" fill="rgb(209,185,25)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="853" width="0.5607%" height="15" fill="rgb(228,200,32)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="837" width="0.5607%" height="15" fill="rgb(217,140,10)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="821" width="0.5607%" height="15" fill="rgb(253,17,24)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="805" width="0.5607%" height="15" fill="rgb(212,61,6)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="815.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="789" width="0.5607%" height="15" fill="rgb(205,14,25)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="799.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="773" width="0.5607%" height="15" fill="rgb(232,69,41)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="783.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="757" width="0.5607%" height="15" fill="rgb(241,106,47)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="767.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="741" width="0.5607%" height="15" fill="rgb(210,213,53)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="751.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="725" width="0.5607%" height="15" fill="rgb(253,175,27)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="735.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="709" width="0.5607%" height="15" fill="rgb(211,171,24)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="719.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="693" width="0.5607%" height="15" fill="rgb(229,80,7)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="703.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="677" width="0.5607%" height="15" fill="rgb(212,46,39)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="687.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="661" width="0.5607%" height="15" fill="rgb(240,80,45)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="671.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="645" width="0.5607%" height="15" fill="rgb(253,177,40)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="655.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="629" width="0.5607%" height="15" fill="rgb(249,200,15)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="639.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="613" width="0.5607%" height="15" fill="rgb(217,78,26)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="623.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="597" width="0.5607%" height="15" fill="rgb(254,151,32)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="607.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="581" width="0.5607%" height="15" fill="rgb(226,165,27)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="591.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="565" width="0.5607%" height="15" fill="rgb(250,206,4)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="575.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="549" width="0.5607%" height="15" fill="rgb(231,229,27)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="559.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="533" width="0.5607%" height="15" fill="rgb(239,217,8)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="543.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="517" width="0.5607%" height="15" fill="rgb(225,204,27)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="527.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="501" width="0.5607%" height="15" fill="rgb(230,56,32)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="511.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="485" width="0.5607%" height="15" fill="rgb(222,56,27)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="495.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="469" width="0.5607%" height="15" fill="rgb(253,108,27)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="479.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="453" width="0.5607%" height="15" fill="rgb(212,87,36)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="463.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="437" width="0.5607%" height="15" fill="rgb(247,82,36)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="447.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="421" width="0.5607%" height="15" fill="rgb(222,143,9)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="431.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="405" width="0.5607%" height="15" fill="rgb(238,162,48)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="415.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="389" width="0.5607%" height="15" fill="rgb(221,59,43)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="399.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="373" width="0.5607%" height="15" fill="rgb(205,166,41)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="383.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="357" width="0.5607%" height="15" fill="rgb(241,186,40)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="367.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="341" width="0.5607%" height="15" fill="rgb(216,119,35)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="351.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="325" width="0.5607%" height="15" fill="rgb(208,68,38)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="335.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="309" width="0.5607%" height="15" fill="rgb(217,113,1)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="319.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="293" width="0.5607%" height="15" fill="rgb(242,153,3)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="303.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="277" width="0.5607%" height="15" fill="rgb(229,76,35)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="287.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="261" width="0.5607%" height="15" fill="rgb(229,125,34)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="271.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="245" width="0.5607%" height="15" fill="rgb(238,179,36)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="255.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="229" width="0.5607%" height="15" fill="rgb(244,183,19)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="239.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="213" width="0.5607%" height="15" fill="rgb(216,85,49)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="223.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="197" width="0.5607%" height="15" fill="rgb(208,161,47)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="207.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="181" width="0.5607%" height="15" fill="rgb(233,210,18)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="191.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="165" width="0.5607%" height="15" fill="rgb(205,104,42)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="175.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="149" width="0.5607%" height="15" fill="rgb(248,90,43)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="159.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="133" width="0.5607%" height="15" fill="rgb(206,198,11)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="143.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (267 samples, 0.56%)</title><rect x="99.0382%" y="117" width="0.5607%" height="15" fill="rgb(239,165,27)" fg:x="47159" fg:w="267"/><text x="99.2882%" y="127.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (238 samples, 0.50%)</title><rect x="99.0991%" y="101" width="0.4998%" height="15" fill="rgb(246,44,32)" fg:x="47188" fg:w="238"/><text x="99.3491%" y="111.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (229 samples, 0.48%)</title><rect x="99.1180%" y="85" width="0.4809%" height="15" fill="rgb(252,65,42)" fg:x="47197" fg:w="229"/><text x="99.3680%" y="95.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (155 samples, 0.33%)</title><rect x="99.2734%" y="69" width="0.3255%" height="15" fill="rgb(246,197,18)" fg:x="47271" fg:w="155"/><text x="99.5234%" y="79.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (139 samples, 0.29%)</title><rect x="99.3070%" y="53" width="0.2919%" height="15" fill="rgb(216,192,4)" fg:x="47287" fg:w="139"/><text x="99.5570%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (11 samples, 0.02%)</title><rect x="99.5989%" y="53" width="0.0231%" height="15" fill="rgb(208,117,10)" fg:x="47426" fg:w="11"/><text x="99.8489%" y="63.50"></text></g><g><title>libsystem_kernel.dylib`madvise (11 samples, 0.02%)</title><rect x="99.5989%" y="37" width="0.0231%" height="15" fill="rgb(240,61,47)" fg:x="47426" fg:w="11"/><text x="99.8489%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (15 samples, 0.03%)</title><rect x="99.5989%" y="85" width="0.0315%" height="15" fill="rgb(228,178,21)" fg:x="47426" fg:w="15"/><text x="99.8489%" y="95.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (15 samples, 0.03%)</title><rect x="99.5989%" y="69" width="0.0315%" height="15" fill="rgb(219,96,54)" fg:x="47426" fg:w="15"/><text x="99.8489%" y="79.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (18 samples, 0.04%)</title><rect x="99.5989%" y="117" width="0.0378%" height="15" fill="rgb(250,177,24)" fg:x="47426" fg:w="18"/><text x="99.8489%" y="127.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (18 samples, 0.04%)</title><rect x="99.5989%" y="101" width="0.0378%" height="15" fill="rgb(242,154,46)" fg:x="47426" fg:w="18"/><text x="99.8489%" y="111.50"></text></g><g><title>libsystem_kernel.dylib`madvise (5 samples, 0.01%)</title><rect x="99.6409%" y="37" width="0.0105%" height="15" fill="rgb(226,176,29)" fg:x="47446" fg:w="5"/><text x="99.8909%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (8 samples, 0.02%)</title><rect x="99.6367%" y="85" width="0.0168%" height="15" fill="rgb(226,29,2)" fg:x="47444" fg:w="8"/><text x="99.8867%" y="95.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (8 samples, 0.02%)</title><rect x="99.6367%" y="69" width="0.0168%" height="15" fill="rgb(237,104,14)" fg:x="47444" fg:w="8"/><text x="99.8867%" y="79.50"></text></g><g><title>libsystem_malloc.dylib`tiny_madvise_free_range_no_lock (6 samples, 0.01%)</title><rect x="99.6409%" y="53" width="0.0126%" height="15" fill="rgb(245,207,31)" fg:x="47446" fg:w="6"/><text x="99.8909%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (6 samples, 0.01%)</title><rect x="99.6640%" y="37" width="0.0126%" height="15" fill="rgb(229,211,45)" fg:x="47457" fg:w="6"/><text x="99.9140%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (12 samples, 0.03%)</title><rect x="99.6535%" y="69" width="0.0252%" height="15" fill="rgb(229,113,15)" fg:x="47452" fg:w="12"/><text x="99.9035%" y="79.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (12 samples, 0.03%)</title><rect x="99.6535%" y="53" width="0.0252%" height="15" fill="rgb(237,147,15)" fg:x="47452" fg:w="12"/><text x="99.9035%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (11 samples, 0.02%)</title><rect x="99.6787%" y="53" width="0.0231%" height="15" fill="rgb(244,120,12)" fg:x="47464" fg:w="11"/><text x="99.9287%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (9 samples, 0.02%)</title><rect x="99.6829%" y="37" width="0.0189%" height="15" fill="rgb(205,120,12)" fg:x="47466" fg:w="9"/><text x="99.9329%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (8 samples, 0.02%)</title><rect x="99.7018%" y="37" width="0.0168%" height="15" fill="rgb(231,26,45)" fg:x="47475" fg:w="8"/><text x="99.9518%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (37 samples, 0.08%)</title><rect x="99.6535%" y="85" width="0.0777%" height="15" fill="rgb(246,98,1)" fg:x="47452" fg:w="37"/><text x="99.9035%" y="95.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (25 samples, 0.05%)</title><rect x="99.6787%" y="69" width="0.0525%" height="15" fill="rgb(207,68,45)" fg:x="47464" fg:w="25"/><text x="99.9287%" y="79.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (14 samples, 0.03%)</title><rect x="99.7018%" y="53" width="0.0294%" height="15" fill="rgb(231,27,38)" fg:x="47475" fg:w="14"/><text x="99.9518%" y="63.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (6 samples, 0.01%)</title><rect x="99.7186%" y="37" width="0.0126%" height="15" fill="rgb(214,223,3)" fg:x="47483" fg:w="6"/><text x="99.9686%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (16 samples, 0.03%)</title><rect x="99.7312%" y="69" width="0.0336%" height="15" fill="rgb(228,195,46)" fg:x="47489" fg:w="16"/><text x="99.9812%" y="79.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (16 samples, 0.03%)</title><rect x="99.7312%" y="53" width="0.0336%" height="15" fill="rgb(231,100,42)" fg:x="47489" fg:w="16"/><text x="99.9812%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`tiny_free_no_lock (12 samples, 0.03%)</title><rect x="99.7711%" y="37" width="0.0252%" height="15" fill="rgb(236,53,4)" fg:x="47508" fg:w="12"/><text x="100.0211%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (16 samples, 0.03%)</title><rect x="99.7648%" y="53" width="0.0336%" height="15" fill="rgb(230,152,12)" fg:x="47505" fg:w="16"/><text x="100.0148%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`_free (7 samples, 0.01%)</title><rect x="99.8005%" y="37" width="0.0147%" height="15" fill="rgb(226,101,19)" fg:x="47522" fg:w="7"/><text x="100.0505%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`_szone_free (5 samples, 0.01%)</title><rect x="99.8215%" y="37" width="0.0105%" height="15" fill="rgb(250,149,32)" fg:x="47532" fg:w="5"/><text x="100.0715%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (9 samples, 0.02%)</title><rect x="99.8320%" y="37" width="0.0189%" height="15" fill="rgb(232,178,12)" fg:x="47537" fg:w="9"/><text x="100.0820%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (36 samples, 0.08%)</title><rect x="99.7984%" y="53" width="0.0756%" height="15" fill="rgb(246,151,17)" fg:x="47521" fg:w="36"/><text x="100.0484%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`free_tiny (5 samples, 0.01%)</title><rect x="99.8908%" y="37" width="0.0105%" height="15" fill="rgb(252,17,51)" fg:x="47565" fg:w="5"/><text x="100.1408%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (9 samples, 0.02%)</title><rect x="99.9160%" y="37" width="0.0189%" height="15" fill="rgb(250,207,23)" fg:x="47577" fg:w="9"/><text x="100.1660%" y="47.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1621" width="0.3465%" height="15" fill="rgb(205,27,5)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1631.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1605" width="0.3465%" height="15" fill="rgb(224,32,19)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1615.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1589" width="0.3465%" height="15" fill="rgb(247,214,40)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1599.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1573" width="0.3465%" height="15" fill="rgb(239,199,17)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1583.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1557" width="0.3465%" height="15" fill="rgb(251,159,9)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1567.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1541" width="0.3465%" height="15" fill="rgb(225,78,32)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1551.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1525" width="0.3465%" height="15" fill="rgb(206,97,47)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1535.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1509" width="0.3465%" height="15" fill="rgb(227,107,4)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1519.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1493" width="0.3465%" height="15" fill="rgb(241,146,50)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1503.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1477" width="0.3465%" height="15" fill="rgb(232,92,30)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1487.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1461" width="0.3465%" height="15" fill="rgb(222,0,40)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1471.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1445" width="0.3465%" height="15" fill="rgb(219,54,33)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1455.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1429" width="0.3465%" height="15" fill="rgb(226,209,28)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1439.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1413" width="0.3465%" height="15" fill="rgb(254,205,35)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1423.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1397" width="0.3465%" height="15" fill="rgb(230,159,3)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1407.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1381" width="0.3465%" height="15" fill="rgb(232,190,24)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1391.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1365" width="0.3465%" height="15" fill="rgb(217,227,44)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1375.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1349" width="0.3465%" height="15" fill="rgb(236,211,1)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1359.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1333" width="0.3465%" height="15" fill="rgb(250,127,46)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1343.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1317" width="0.3465%" height="15" fill="rgb(229,213,6)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1327.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1301" width="0.3465%" height="15" fill="rgb(237,15,36)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1311.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1285" width="0.3465%" height="15" fill="rgb(213,131,41)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1295.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1269" width="0.3465%" height="15" fill="rgb(225,82,44)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1279.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1253" width="0.3465%" height="15" fill="rgb(249,42,11)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1263.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1237" width="0.3465%" height="15" fill="rgb(253,11,29)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1247.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1221" width="0.3465%" height="15" fill="rgb(206,8,54)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1231.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1205" width="0.3465%" height="15" fill="rgb(222,186,2)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1215.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1189" width="0.3465%" height="15" fill="rgb(221,206,53)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1199.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1173" width="0.3465%" height="15" fill="rgb(230,150,21)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1183.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1157" width="0.3465%" height="15" fill="rgb(253,202,10)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1167.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1141" width="0.3465%" height="15" fill="rgb(238,109,40)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1151.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1125" width="0.3465%" height="15" fill="rgb(247,120,22)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1135.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1109" width="0.3465%" height="15" fill="rgb(207,43,30)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1119.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1093" width="0.3465%" height="15" fill="rgb(213,211,24)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1103.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1077" width="0.3465%" height="15" fill="rgb(239,73,39)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1087.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1061" width="0.3465%" height="15" fill="rgb(245,182,19)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1071.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1045" width="0.3465%" height="15" fill="rgb(247,143,26)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1055.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1029" width="0.3465%" height="15" fill="rgb(228,191,23)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1039.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="1013" width="0.3465%" height="15" fill="rgb(253,165,31)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1023.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="997" width="0.3465%" height="15" fill="rgb(234,138,20)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="1007.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="981" width="0.3465%" height="15" fill="rgb(218,191,29)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="991.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="965" width="0.3465%" height="15" fill="rgb(221,157,19)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="975.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="949" width="0.3465%" height="15" fill="rgb(237,26,42)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="959.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="933" width="0.3465%" height="15" fill="rgb(220,163,24)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="943.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="917" width="0.3465%" height="15" fill="rgb(242,115,20)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="927.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="901" width="0.3465%" height="15" fill="rgb(210,206,9)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="911.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="885" width="0.3465%" height="15" fill="rgb(208,71,17)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="895.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="869" width="0.3465%" height="15" fill="rgb(233,7,5)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="879.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="853" width="0.3465%" height="15" fill="rgb(207,92,33)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="863.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="837" width="0.3465%" height="15" fill="rgb(218,87,9)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="847.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="821" width="0.3465%" height="15" fill="rgb(219,47,37)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="831.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="805" width="0.3465%" height="15" fill="rgb(221,152,34)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="815.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="789" width="0.3465%" height="15" fill="rgb(235,176,21)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="799.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="773" width="0.3465%" height="15" fill="rgb(232,212,21)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="783.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="757" width="0.3465%" height="15" fill="rgb(245,82,39)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="767.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="741" width="0.3465%" height="15" fill="rgb(241,52,51)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="751.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="725" width="0.3465%" height="15" fill="rgb(219,91,24)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="735.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="709" width="0.3465%" height="15" fill="rgb(241,142,12)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="719.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="693" width="0.3465%" height="15" fill="rgb(230,27,9)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="703.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="677" width="0.3465%" height="15" fill="rgb(249,181,32)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="687.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="661" width="0.3465%" height="15" fill="rgb(230,107,3)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="671.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="645" width="0.3465%" height="15" fill="rgb(246,204,14)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="655.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="629" width="0.3465%" height="15" fill="rgb(213,192,47)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="639.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="613" width="0.3465%" height="15" fill="rgb(240,44,36)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="623.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="597" width="0.3465%" height="15" fill="rgb(244,209,38)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="607.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="581" width="0.3465%" height="15" fill="rgb(219,34,37)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="591.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="565" width="0.3465%" height="15" fill="rgb(210,28,6)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="575.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="549" width="0.3465%" height="15" fill="rgb(244,110,52)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="559.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="533" width="0.3465%" height="15" fill="rgb(254,124,47)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="543.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="517" width="0.3465%" height="15" fill="rgb(254,110,13)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="527.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="501" width="0.3465%" height="15" fill="rgb(252,57,21)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="511.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="485" width="0.3465%" height="15" fill="rgb(242,60,45)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="495.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="469" width="0.3465%" height="15" fill="rgb(234,49,30)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="479.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="453" width="0.3465%" height="15" fill="rgb(218,98,6)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="463.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="437" width="0.3465%" height="15" fill="rgb(220,174,29)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="447.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="421" width="0.3465%" height="15" fill="rgb(236,163,23)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="431.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="405" width="0.3465%" height="15" fill="rgb(242,114,45)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="415.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="389" width="0.3465%" height="15" fill="rgb(232,10,53)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="399.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="373" width="0.3465%" height="15" fill="rgb(245,108,29)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="383.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="357" width="0.3465%" height="15" fill="rgb(240,89,53)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="367.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="341" width="0.3465%" height="15" fill="rgb(226,60,45)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="351.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="325" width="0.3465%" height="15" fill="rgb(230,41,44)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="335.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="309" width="0.3465%" height="15" fill="rgb(230,26,20)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="319.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="293" width="0.3465%" height="15" fill="rgb(237,170,32)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="303.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="277" width="0.3465%" height="15" fill="rgb(212,35,42)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="287.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="261" width="0.3465%" height="15" fill="rgb(227,31,34)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="271.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="245" width="0.3465%" height="15" fill="rgb(216,19,18)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="255.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="229" width="0.3465%" height="15" fill="rgb(211,133,42)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="239.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="213" width="0.3465%" height="15" fill="rgb(244,66,13)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="223.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="197" width="0.3465%" height="15" fill="rgb(218,185,50)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="207.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="181" width="0.3465%" height="15" fill="rgb(219,149,13)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="191.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="165" width="0.3465%" height="15" fill="rgb(221,125,0)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="175.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="149" width="0.3465%" height="15" fill="rgb(247,126,27)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="159.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (165 samples, 0.35%)</title><rect x="99.5989%" y="133" width="0.3465%" height="15" fill="rgb(250,138,30)" fg:x="47426" fg:w="165"/><text x="99.8489%" y="143.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (147 samples, 0.31%)</title><rect x="99.6367%" y="117" width="0.3087%" height="15" fill="rgb(230,151,9)" fg:x="47444" fg:w="147"/><text x="99.8867%" y="127.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (147 samples, 0.31%)</title><rect x="99.6367%" y="101" width="0.3087%" height="15" fill="rgb(233,80,38)" fg:x="47444" fg:w="147"/><text x="99.8867%" y="111.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (102 samples, 0.21%)</title><rect x="99.7312%" y="85" width="0.2142%" height="15" fill="rgb(232,68,43)" fg:x="47489" fg:w="102"/><text x="99.9812%" y="95.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;sqlparser::ast::Expr&gt;&gt; (86 samples, 0.18%)</title><rect x="99.7648%" y="69" width="0.1806%" height="15" fill="rgb(254,5,50)" fg:x="47505" fg:w="86"/><text x="100.0148%" y="79.50"></text></g><g><title>sqlparser_bench-959bc5267970ca34`core::ptr::drop_in_place&lt;sqlparser::ast::Expr&gt; (34 samples, 0.07%)</title><rect x="99.8740%" y="53" width="0.0714%" height="15" fill="rgb(225,45,5)" fg:x="47557" fg:w="34"/><text x="100.1240%" y="63.50"></text></g><g><title>all (47,617 samples, 100%)</title><rect x="0.0000%" y="1637" width="100.0000%" height="15" fill="rgb(239,22,3)" fg:x="0" fg:w="47617"/><text x="0.2500%" y="1647.50"></text></g></svg></svg>