master-flame-a.svg
application/octet-stream
Filename: master-flame-a.svg
Type: application/octet-stream
Part: 7
<?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="838" onload="init(evt)" viewBox="0 0 1200 838" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- 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:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#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[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
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);
}
// 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(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + 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
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, 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];
}
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["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_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 update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
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, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
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 = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
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));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
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_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
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 = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// 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 = currentSearchTerm;
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.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
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 + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="838.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="821" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="821" > </text>
<g id="frames">
<g >
<title>dequeue_entities (44,609,841,011 samples, 0.47%)</title><rect x="166.1" y="309" width="5.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="169.07" y="319.5" ></text>
</g>
<g >
<title>pgstat_get_transactional_drops (4,536,783,496 samples, 0.05%)</title><rect x="509.5" y="501" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="512.46" y="511.5" ></text>
</g>
<g >
<title>relation_close (1,570,372,860 samples, 0.02%)</title><rect x="860.8" y="501" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="863.81" y="511.5" ></text>
</g>
<g >
<title>MemoryContextAllocExtended (3,526,644,061 samples, 0.04%)</title><rect x="1061.4" y="437" width="0.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1064.44" y="447.5" ></text>
</g>
<g >
<title>ExecProcNode (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="453" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="127.59" y="463.5" ></text>
</g>
<g >
<title>ExecAssignExprContext (10,370,485,290 samples, 0.11%)</title><rect x="269.1" y="421" width="1.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="272.06" y="431.5" ></text>
</g>
<g >
<title>AllocSetReset (8,240,249,433 samples, 0.09%)</title><rect x="132.8" y="501" width="1.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="135.78" y="511.5" ></text>
</g>
<g >
<title>new_list (1,594,352,004 samples, 0.02%)</title><rect x="908.7" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="911.65" y="447.5" ></text>
</g>
<g >
<title>ShutdownExprContext (884,907,702 samples, 0.01%)</title><rect x="251.3" y="469" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="254.31" y="479.5" ></text>
</g>
<g >
<title>pg_plan_query (1,980,044,175 samples, 0.02%)</title><rect x="85.4" y="629" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="88.40" y="639.5" ></text>
</g>
<g >
<title>palloc0 (1,472,769,210 samples, 0.02%)</title><rect x="274.3" y="373" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="277.28" y="383.5" ></text>
</g>
<g >
<title>TransactionIdDidCommit (896,760,605 samples, 0.01%)</title><rect x="106.2" y="757" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="109.25" y="767.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (840,264,135 samples, 0.01%)</title><rect x="869.0" y="421" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="871.96" y="431.5" ></text>
</g>
<g >
<title>palloc (1,421,209,056 samples, 0.02%)</title><rect x="986.3" y="341" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="989.31" y="351.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (845,456,735 samples, 0.01%)</title><rect x="407.8" y="373" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="410.79" y="383.5" ></text>
</g>
<g >
<title>GlobalVisHorizonKindForRel (808,252,124 samples, 0.01%)</title><rect x="309.9" y="229" width="0.1" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="312.87" y="239.5" ></text>
</g>
<g >
<title>inode_to_bdi (1,186,215,350 samples, 0.01%)</title><rect x="496.4" y="341" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="499.41" y="351.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (42,534,757,602 samples, 0.45%)</title><rect x="322.9" y="261" width="5.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="325.90" y="271.5" ></text>
</g>
<g >
<title>smgrdestroyall (893,520,797 samples, 0.01%)</title><rect x="1183.3" y="757" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1186.32" y="767.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (827,869,453 samples, 0.01%)</title><rect x="471.0" y="421" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="473.95" y="431.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (2,903,008,530 samples, 0.03%)</title><rect x="320.5" y="181" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="323.45" y="191.5" ></text>
</g>
<g >
<title>addRTEPermissionInfo (826,596,041 samples, 0.01%)</title><rect x="1084.0" y="757" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1087.02" y="767.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (19,742,946,219 samples, 0.21%)</title><rect x="399.3" y="325" width="2.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="402.26" y="335.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (3,268,834,145 samples, 0.03%)</title><rect x="220.0" y="549" width="0.4" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="222.99" y="559.5" ></text>
</g>
<g >
<title>skb_set_owner_w (1,248,760,553 samples, 0.01%)</title><rect x="197.5" y="389" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="200.51" y="399.5" ></text>
</g>
<g >
<title>internal_flush (152,378,027,097 samples, 1.61%)</title><rect x="188.2" y="565" width="19.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="191.22" y="575.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (10,200,075,643 samples, 0.11%)</title><rect x="417.5" y="325" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="420.47" y="335.5" ></text>
</g>
<g >
<title>palloc (1,144,057,692 samples, 0.01%)</title><rect x="954.0" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="957.03" y="415.5" ></text>
</g>
<g >
<title>uint32_hash (1,335,522,170 samples, 0.01%)</title><rect x="939.0" y="373" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="941.95" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,052,098,152 samples, 0.01%)</title><rect x="118.6" y="741" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="121.62" y="751.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (10,386,466,929 samples, 0.11%)</title><rect x="1081.8" y="549" width="1.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1084.78" y="559.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,185,811,592 samples, 0.01%)</title><rect x="408.2" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="411.21" y="431.5" ></text>
</g>
<g >
<title>set_base_rel_pathlists (337,516,953,485 samples, 3.58%)</title><rect x="984.2" y="453" width="42.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="987.18" y="463.5" >set..</text>
</g>
<g >
<title>get_hash_entry (10,993,113,674 samples, 0.12%)</title><rect x="1065.4" y="437" width="1.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1068.35" y="447.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,169,333,570 samples, 0.01%)</title><rect x="446.3" y="341" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="449.31" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (909,430,388 samples, 0.01%)</title><rect x="101.1" y="165" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="104.08" y="175.5" ></text>
</g>
<g >
<title>__futex_wait (1,043,939,329 samples, 0.01%)</title><rect x="354.4" y="133" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="357.39" y="143.5" ></text>
</g>
<g >
<title>MemoryContextDelete (16,262,479,630 samples, 0.17%)</title><rect x="131.9" y="565" width="2.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="134.86" y="575.5" ></text>
</g>
<g >
<title>BufferGetPage (937,295,373 samples, 0.01%)</title><rect x="327.1" y="229" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="330.12" y="239.5" ></text>
</g>
<g >
<title>ForEachLWLockHeldByMe (1,608,393,264 samples, 0.02%)</title><rect x="30.0" y="741" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="33.02" y="751.5" ></text>
</g>
<g >
<title>max_parallel_hazard_walker (18,089,130,645 samples, 0.19%)</title><rect x="915.5" y="469" width="2.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="918.50" y="479.5" ></text>
</g>
<g >
<title>standard_planner (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="613" width="3.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="104.45" y="623.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (975,983,726 samples, 0.01%)</title><rect x="126.7" y="421" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="129.71" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,893,822,152 samples, 0.02%)</title><rect x="232.2" y="469" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="235.15" y="479.5" ></text>
</g>
<g >
<title>futex_wake (3,089,114,190 samples, 0.03%)</title><rect x="352.0" y="165" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="354.97" y="175.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,349,435,659 samples, 0.02%)</title><rect x="992.4" y="309" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="995.36" y="319.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,265,159,031 samples, 0.01%)</title><rect x="367.8" y="229" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="370.76" y="239.5" ></text>
</g>
<g >
<title>ExecEndPlan (115,614,014,685 samples, 1.23%)</title><rect x="235.2" y="501" width="14.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="238.19" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,418,667,084 samples, 0.02%)</title><rect x="354.7" y="197" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="357.65" y="207.5" ></text>
</g>
<g >
<title>ExecScanExtended (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="421" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1160.94" y="431.5" ></text>
</g>
<g >
<title>ExecResetTupleTable (21,709,987,811 samples, 0.23%)</title><rect x="246.9" y="485" width="2.7" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="249.90" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,221,868,667 samples, 0.01%)</title><rect x="954.4" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="957.40" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (907,106,914 samples, 0.01%)</title><rect x="888.5" y="277" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="891.47" y="287.5" ></text>
</g>
<g >
<title>SearchSysCacheExists (7,899,066,715 samples, 0.08%)</title><rect x="1021.5" y="293" width="1.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1024.52" y="303.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (3,813,690,657 samples, 0.04%)</title><rect x="990.8" y="357" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="993.75" y="367.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (19,200,341,315 samples, 0.20%)</title><rect x="865.7" y="485" width="2.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="868.71" y="495.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,160,407,318 samples, 0.01%)</title><rect x="1000.1" y="293" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1003.10" y="303.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (889,101,814 samples, 0.01%)</title><rect x="965.1" y="325" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="968.12" y="335.5" ></text>
</g>
<g >
<title>SetCurrentStatementStartTimestamp (3,618,088,738 samples, 0.04%)</title><rect x="207.5" y="597" width="0.5" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="210.50" y="607.5" ></text>
</g>
<g >
<title>max_parallel_hazard_walker (13,466,994,473 samples, 0.14%)</title><rect x="916.1" y="437" width="1.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="919.07" y="447.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="405" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="88.40" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (883,619,455 samples, 0.01%)</title><rect x="1054.5" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1057.46" y="399.5" ></text>
</g>
<g >
<title>__strncmp_avx2 (1,304,416,648 samples, 0.01%)</title><rect x="832.3" y="437" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="835.26" y="447.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,468,590,769 samples, 0.03%)</title><rect x="941.5" y="341" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="944.48" y="351.5" ></text>
</g>
<g >
<title>transform_MERGE_to_join (801,036,985 samples, 0.01%)</title><rect x="1187.8" y="757" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1190.85" y="767.5" ></text>
</g>
<g >
<title>PinBufferForBlock (18,083,246,842 samples, 0.19%)</title><rect x="99.0" y="213" width="2.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="102.04" y="223.5" ></text>
</g>
<g >
<title>select_idle_cpu (15,517,127,849 samples, 0.16%)</title><rect x="200.9" y="277" width="1.9" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="203.88" y="287.5" ></text>
</g>
<g >
<title>mdnblocks (17,176,022,184 samples, 0.18%)</title><rect x="936.0" y="277" width="2.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="938.96" y="287.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (12,978,984,891 samples, 0.14%)</title><rect x="888.9" y="325" width="1.6" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="891.87" y="335.5" ></text>
</g>
<g >
<title>DeconstructQualifiedName (857,300,887 samples, 0.01%)</title><rect x="40.8" y="757" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="43.77" y="767.5" ></text>
</g>
<g >
<title>_bt_getroot (1,932,277,437 samples, 0.02%)</title><rect x="126.0" y="261" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="129.00" y="271.5" ></text>
</g>
<g >
<title>StartReadBuffer (18,083,246,842 samples, 0.19%)</title><rect x="99.0" y="245" width="2.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="102.04" y="255.5" ></text>
</g>
<g >
<title>new_list (1,472,325,070 samples, 0.02%)</title><rect x="1057.6" y="389" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1060.63" y="399.5" ></text>
</g>
<g >
<title>BufferIsValid (810,877,120 samples, 0.01%)</title><rect x="309.7" y="213" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="312.70" y="223.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (2,424,785,884 samples, 0.03%)</title><rect x="170.4" y="261" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="173.42" y="271.5" ></text>
</g>
<g >
<title>__slab_free (1,699,667,684 samples, 0.02%)</title><rect x="182.2" y="357" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="185.20" y="367.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,235,986,369 samples, 0.01%)</title><rect x="162.0" y="325" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="165.04" y="335.5" ></text>
</g>
<g >
<title>newNode (8,998,838,963 samples, 0.10%)</title><rect x="894.2" y="517" width="1.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="897.21" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (827,924,465 samples, 0.01%)</title><rect x="439.2" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="442.22" y="367.5" ></text>
</g>
<g >
<title>DecrTupleDescRefCount (3,147,505,294 samples, 0.03%)</title><rect x="247.5" y="469" width="0.4" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text x="250.54" y="479.5" ></text>
</g>
<g >
<title>GetNewTransactionId (33,490,748,475 samples, 0.35%)</title><rect x="348.6" y="325" width="4.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="351.63" y="335.5" ></text>
</g>
<g >
<title>simplify_function (886,882,643 samples, 0.01%)</title><rect x="124.5" y="469" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="127.48" y="479.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (6,583,216,669 samples, 0.07%)</title><rect x="1052.3" y="469" width="0.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1055.28" y="479.5" ></text>
</g>
<g >
<title>preprocess_qual_conditions (886,882,643 samples, 0.01%)</title><rect x="124.5" y="533" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="127.48" y="543.5" ></text>
</g>
<g >
<title>list_make1_impl (1,831,392,866 samples, 0.02%)</title><rect x="977.2" y="421" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="980.15" y="431.5" ></text>
</g>
<g >
<title>ExecBSUpdateTriggers (882,636,965 samples, 0.01%)</title><rect x="41.7" y="757" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="44.66" y="767.5" ></text>
</g>
<g >
<title>palloc0 (2,336,268,219 samples, 0.02%)</title><rect x="927.9" y="389" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="930.95" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,564,809,533 samples, 0.02%)</title><rect x="508.1" y="405" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="511.09" y="415.5" ></text>
</g>
<g >
<title>bms_copy (1,605,762,392 samples, 0.02%)</title><rect x="1121.9" y="757" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="1124.94" y="767.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,200,269,769 samples, 0.01%)</title><rect x="845.1" y="389" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="848.13" y="399.5" ></text>
</g>
<g >
<title>coerce_type_typmod (1,673,279,291 samples, 0.02%)</title><rect x="842.0" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="844.97" y="431.5" ></text>
</g>
<g >
<title>SIGetDataEntries (2,079,922,811 samples, 0.02%)</title><rect x="1075.1" y="485" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1078.12" y="495.5" ></text>
</g>
<g >
<title>_bt_returnitem (1,525,724,336 samples, 0.02%)</title><rect x="328.2" y="261" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="331.22" y="271.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (2,316,874,039 samples, 0.02%)</title><rect x="248.8" y="405" width="0.3" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="251.85" y="415.5" ></text>
</g>
<g >
<title>PageGetHeapFreeSpace (3,881,061,467 samples, 0.04%)</title><rect x="365.7" y="357" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="368.72" y="367.5" ></text>
</g>
<g >
<title>ExecProcNode (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="517" width="1.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="125.45" y="527.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (8,937,557,829 samples, 0.09%)</title><rect x="337.8" y="229" width="1.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="340.77" y="239.5" ></text>
</g>
<g >
<title>tag_hash (2,370,298,217 samples, 0.03%)</title><rect x="99.1" y="149" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="102.14" y="159.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3,652,879,866 samples, 0.04%)</title><rect x="476.7" y="261" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="479.66" y="271.5" ></text>
</g>
<g >
<title>btcostestimate (1,229,153,874 samples, 0.01%)</title><rect x="1123.9" y="757" width="0.1" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1126.87" y="767.5" ></text>
</g>
<g >
<title>fix_indexqual_clause (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="437" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="88.40" y="447.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (4,860,839,258 samples, 0.05%)</title><rect x="1052.5" y="437" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1055.50" y="447.5" ></text>
</g>
<g >
<title>palloc (2,064,559,650 samples, 0.02%)</title><rect x="1119.6" y="693" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1122.59" y="703.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,174,188,956 samples, 0.01%)</title><rect x="270.2" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="273.19" y="351.5" ></text>
</g>
<g >
<title>LWLockRelease (1,474,388,567 samples, 0.02%)</title><rect x="325.5" y="181" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="328.47" y="191.5" ></text>
</g>
<g >
<title>message_level_is_interesting (1,021,529,034 samples, 0.01%)</title><rect x="1077.7" y="517" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1080.68" y="527.5" ></text>
</g>
<g >
<title>index_getnext_slot (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="389" width="2.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="85.62" y="399.5" ></text>
</g>
<g >
<title>expand_function_arguments (1,531,027,389 samples, 0.02%)</title><rect x="103.9" y="453" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="106.88" y="463.5" ></text>
</g>
<g >
<title>string_hash (3,160,551,655 samples, 0.03%)</title><rect x="212.2" y="533" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="215.24" y="543.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,939,724,728 samples, 0.02%)</title><rect x="470.0" y="405" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="472.97" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,016,382,047 samples, 0.01%)</title><rect x="382.3" y="53" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="385.25" y="63.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Relations (2,540,477,139 samples, 0.03%)</title><rect x="462.7" y="501" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="465.73" y="511.5" ></text>
</g>
<g >
<title>new_list (1,706,761,396 samples, 0.02%)</title><rect x="914.0" y="453" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="916.96" y="463.5" ></text>
</g>
<g >
<title>newNode (3,501,699,598 samples, 0.04%)</title><rect x="269.9" y="373" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="272.90" y="383.5" ></text>
</g>
<g >
<title>ep_item_poll.isra.0 (10,109,401,802 samples, 0.11%)</title><rect x="156.4" y="373" width="1.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="159.42" y="383.5" ></text>
</g>
<g >
<title>uint32_hash (1,301,747,877 samples, 0.01%)</title><rect x="395.7" y="325" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="398.71" y="335.5" ></text>
</g>
<g >
<title>index_getprocinfo (1,666,586,934 samples, 0.02%)</title><rect x="340.5" y="261" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="343.48" y="271.5" ></text>
</g>
<g >
<title>PortalRun (53,501,250,861 samples, 0.57%)</title><rect x="94.7" y="661" width="6.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="97.67" y="671.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesUpdate (1,458,865,369 samples, 0.02%)</title><rect x="361.8" y="357" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="364.81" y="367.5" ></text>
</g>
<g >
<title>list_nth_cell (954,016,919 samples, 0.01%)</title><rect x="1036.4" y="245" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1039.43" y="255.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (11,170,231,142 samples, 0.12%)</title><rect x="923.2" y="437" width="1.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="926.21" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (821,427,597 samples, 0.01%)</title><rect x="695.3" y="469" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="698.32" y="479.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (884,216,088 samples, 0.01%)</title><rect x="85.3" y="165" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="88.28" y="175.5" ></text>
</g>
<g >
<title>IndexNext (420,755,174,438 samples, 4.46%)</title><rect x="289.3" y="341" width="52.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="292.31" y="351.5" >Index..</text>
</g>
<g >
<title>ExecInitNode (234,870,732,994 samples, 2.49%)</title><rect x="413.5" y="453" width="29.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="416.54" y="463.5" >Ex..</text>
</g>
<g >
<title>pfree (3,506,769,842 samples, 0.04%)</title><rect x="1165.9" y="757" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1168.88" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,504,451,388 samples, 0.02%)</title><rect x="889.3" y="293" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="892.30" y="303.5" ></text>
</g>
<g >
<title>pq_sendbyte (1,742,272,272 samples, 0.02%)</title><rect x="187.9" y="581" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="190.89" y="591.5" ></text>
</g>
<g >
<title>pfree (980,030,519 samples, 0.01%)</title><rect x="396.0" y="357" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="398.99" y="367.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,745,947,782 samples, 0.02%)</title><rect x="309.6" y="229" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="312.58" y="239.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (3,026,918,879 samples, 0.03%)</title><rect x="791.3" y="485" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="794.28" y="495.5" ></text>
</g>
<g >
<title>eval_const_expressions (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="565" width="3.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="104.45" y="575.5" ></text>
</g>
<g >
<title>tts_virtual_clear (1,811,635,697 samples, 0.02%)</title><rect x="283.0" y="325" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="285.97" y="335.5" ></text>
</g>
<g >
<title>raw_parser (1,820,219,272 samples, 0.02%)</title><rect x="1174.9" y="757" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1177.88" y="767.5" ></text>
</g>
<g >
<title>list_free_private (1,688,689,809 samples, 0.02%)</title><rect x="251.9" y="405" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="254.88" y="415.5" ></text>
</g>
<g >
<title>transform_MERGE_to_join (927,930,830 samples, 0.01%)</title><rect x="1071.9" y="501" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1074.93" y="511.5" ></text>
</g>
<g >
<title>pfree (1,223,751,280 samples, 0.01%)</title><rect x="251.9" y="389" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="254.93" y="399.5" ></text>
</g>
<g >
<title>hash_search (3,709,488,072 samples, 0.04%)</title><rect x="924.8" y="421" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="927.76" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1161.36" y="415.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,217,297,839 samples, 0.01%)</title><rect x="124.1" y="229" width="0.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="127.08" y="239.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,054,547,032 samples, 0.01%)</title><rect x="100.8" y="165" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="103.85" y="175.5" ></text>
</g>
<g >
<title>is_publishable_relation (1,721,336,997 samples, 0.02%)</title><rect x="1152.6" y="757" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1155.64" y="767.5" ></text>
</g>
<g >
<title>hash_search (6,111,571,259 samples, 0.06%)</title><rect x="214.3" y="565" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="217.32" y="575.5" ></text>
</g>
<g >
<title>pg_nextpower2_32 (972,440,580 samples, 0.01%)</title><rect x="1169.2" y="757" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1172.24" y="767.5" ></text>
</g>
<g >
<title>hash_search (14,167,339,736 samples, 0.15%)</title><rect x="519.4" y="437" width="1.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="522.45" y="447.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,123,994,504 samples, 0.01%)</title><rect x="1134.0" y="629" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1136.99" y="639.5" ></text>
</g>
<g >
<title>list_nth (972,641,823 samples, 0.01%)</title><rect x="275.5" y="421" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="278.50" y="431.5" ></text>
</g>
<g >
<title>buildRelationAliases (15,895,879,834 samples, 0.17%)</title><rect x="813.3" y="453" width="1.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="816.26" y="463.5" ></text>
</g>
<g >
<title>lappend (2,157,485,124 samples, 0.02%)</title><rect x="913.9" y="469" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="916.91" y="479.5" ></text>
</g>
<g >
<title>GetSnapshotData (32,597,887,246 samples, 0.35%)</title><rect x="217.4" y="565" width="4.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="220.39" y="575.5" ></text>
</g>
<g >
<title>relation_openrv_extended (960,881,819 samples, 0.01%)</title><rect x="1175.6" y="757" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1178.65" y="767.5" ></text>
</g>
<g >
<title>palloc0 (2,350,219,871 samples, 0.02%)</title><rect x="896.6" y="437" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="899.64" y="447.5" ></text>
</g>
<g >
<title>palloc (1,768,400,892 samples, 0.02%)</title><rect x="897.9" y="469" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="900.90" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (904,894,254 samples, 0.01%)</title><rect x="1064.1" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1067.14" y="415.5" ></text>
</g>
<g >
<title>flush_ps_display (849,619,800 samples, 0.01%)</title><rect x="1083.7" y="565" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1086.68" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,147,617,831 samples, 0.01%)</title><rect x="1147.6" y="549" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1150.60" y="559.5" ></text>
</g>
<g >
<title>ShowTransactionState (1,411,235,634 samples, 0.01%)</title><rect x="525.9" y="517" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="528.94" y="527.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (993,035,057 samples, 0.01%)</title><rect x="943.2" y="357" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="946.16" y="367.5" ></text>
</g>
<g >
<title>get_mergejoin_opfamilies (854,829,596 samples, 0.01%)</title><rect x="1139.8" y="757" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1142.82" y="767.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (5,329,158,552 samples, 0.06%)</title><rect x="191.0" y="421" width="0.7" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text x="194.00" y="431.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (5,564,804,788 samples, 0.06%)</title><rect x="810.8" y="453" width="0.7" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="813.85" y="463.5" ></text>
</g>
<g >
<title>BufferGetPage (1,064,825,412 samples, 0.01%)</title><rect x="329.3" y="245" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="332.33" y="255.5" ></text>
</g>
<g >
<title>AtStart_Cache (3,598,246,854 samples, 0.04%)</title><rect x="1074.9" y="533" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1077.93" y="543.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,140,821,202 samples, 0.01%)</title><rect x="910.9" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="913.94" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,017,895,535 samples, 0.02%)</title><rect x="232.1" y="485" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="235.14" y="495.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (10,766,951,846 samples, 0.11%)</title><rect x="1067.3" y="453" width="1.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1070.33" y="463.5" ></text>
</g>
<g >
<title>palloc (1,325,893,978 samples, 0.01%)</title><rect x="914.0" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="917.00" y="447.5" ></text>
</g>
<g >
<title>pq_endmessage (6,147,319,867 samples, 0.07%)</title><rect x="187.1" y="581" width="0.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="190.12" y="591.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,945,937,579 samples, 0.02%)</title><rect x="1022.1" y="229" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1025.13" y="239.5" ></text>
</g>
<g >
<title>lappend (2,841,864,162 samples, 0.03%)</title><rect x="873.2" y="565" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="876.19" y="575.5" ></text>
</g>
<g >
<title>tag_hash (2,042,969,333 samples, 0.02%)</title><rect x="924.3" y="389" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="927.35" y="399.5" ></text>
</g>
<g >
<title>tag_hash (2,531,410,707 samples, 0.03%)</title><rect x="367.1" y="213" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="370.07" y="223.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (1,726,573,042 samples, 0.02%)</title><rect x="463.5" y="517" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="466.46" y="527.5" ></text>
</g>
<g >
<title>OidFunctionCall4Coll (57,983,539,238 samples, 0.61%)</title><rect x="1030.1" y="325" width="7.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1033.13" y="335.5" ></text>
</g>
<g >
<title>index_getnext_slot (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="373" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="1160.94" y="383.5" ></text>
</g>
<g >
<title>postmaster_child_launch (4,239,417,954 samples, 0.04%)</title><rect x="1157.9" y="693" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1160.94" y="703.5" ></text>
</g>
<g >
<title>_bt_getbuf (10,283,440,666 samples, 0.11%)</title><rect x="335.4" y="229" width="1.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="338.38" y="239.5" ></text>
</g>
<g >
<title>switch_fpu_return (955,877,429 samples, 0.01%)</title><rect x="483.5" y="373" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="486.45" y="383.5" ></text>
</g>
<g >
<title>lappend (2,327,362,867 samples, 0.02%)</title><rect x="439.3" y="389" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="442.33" y="399.5" ></text>
</g>
<g >
<title>LWLockRelease (4,221,430,584 samples, 0.04%)</title><rect x="382.0" y="277" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="385.00" y="287.5" ></text>
</g>
<g >
<title>gup_fast_pgd_range (2,058,654,412 samples, 0.02%)</title><rect x="485.9" y="277" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="488.94" y="287.5" ></text>
</g>
<g >
<title>InjectionPointCacheRefresh (998,805,454 samples, 0.01%)</title><rect x="53.0" y="757" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="55.97" y="767.5" ></text>
</g>
<g >
<title>MemoryContextAllocExtended (1,734,568,088 samples, 0.02%)</title><rect x="1066.5" y="389" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1069.50" y="399.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (15,994,622,931 samples, 0.17%)</title><rect x="1055.9" y="453" width="2.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1058.91" y="463.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (869,731,970 samples, 0.01%)</title><rect x="811.4" y="373" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="814.42" y="383.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (2,712,718,359 samples, 0.03%)</title><rect x="837.9" y="293" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="840.88" y="303.5" ></text>
</g>
<g >
<title>ReadCommand (298,155,292,459 samples, 3.16%)</title><rect x="149.0" y="597" width="37.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="152.01" y="607.5" >Rea..</text>
</g>
<g >
<title>LWLockAttemptLock (3,240,948,731 samples, 0.03%)</title><rect x="354.0" y="261" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="356.96" y="271.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (1,007,738,949 samples, 0.01%)</title><rect x="124.1" y="181" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="127.11" y="191.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (3,328,780,547 samples, 0.04%)</title><rect x="260.6" y="389" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="263.60" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_futex (2,057,497,817 samples, 0.02%)</title><rect x="363.7" y="229" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="366.67" y="239.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,402,503,013 samples, 0.04%)</title><rect x="1056.7" y="389" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1059.72" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,448,518,772 samples, 0.02%)</title><rect x="186.9" y="517" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="189.88" y="527.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (856,424,802 samples, 0.01%)</title><rect x="1039.1" y="277" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1042.11" y="287.5" ></text>
</g>
<g >
<title>deconstruct_distribute (136,244,414,543 samples, 1.44%)</title><rect x="958.2" y="453" width="17.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="961.24" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (2,441,439,382 samples, 0.03%)</title><rect x="381.3" y="261" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="384.27" y="271.5" ></text>
</g>
<g >
<title>grouping_planner (1,355,416,857 samples, 0.01%)</title><rect x="1141.3" y="757" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1144.31" y="767.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,169,167,772 samples, 0.01%)</title><rect x="1134.1" y="757" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1137.13" y="767.5" ></text>
</g>
<g >
<title>get_hash_value (2,742,402,533 samples, 0.03%)</title><rect x="298.1" y="117" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="301.06" y="127.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (979,107,130 samples, 0.01%)</title><rect x="360.5" y="293" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="363.53" y="303.5" ></text>
</g>
<g >
<title>StartReadBuffer (19,822,422,365 samples, 0.21%)</title><rect x="399.3" y="341" width="2.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="402.25" y="351.5" ></text>
</g>
<g >
<title>sentinel_ok (1,234,799,096 samples, 0.01%)</title><rect x="241.7" y="357" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="244.71" y="367.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,799,233,040 samples, 0.05%)</title><rect x="1011.0" y="261" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1014.03" y="271.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,423,443,899 samples, 0.02%)</title><rect x="299.6" y="101" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="302.61" y="111.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,691,565,329 samples, 0.03%)</title><rect x="96.4" y="149" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="99.40" y="159.5" ></text>
</g>
<g >
<title>object_aclcheck_ext (1,732,004,186 samples, 0.02%)</title><rect x="420.7" y="309" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="423.75" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (964,051,646 samples, 0.01%)</title><rect x="910.6" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="913.56" y="415.5" ></text>
</g>
<g >
<title>copy_folio_from_iter_atomic (15,223,444,617 samples, 0.16%)</title><rect x="496.6" y="357" width="1.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="499.56" y="367.5" ></text>
</g>
<g >
<title>fix_expr_common (1,377,975,702 samples, 0.01%)</title><rect x="1138.2" y="757" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1141.21" y="767.5" ></text>
</g>
<g >
<title>hash_seq_search (13,420,471,149 samples, 0.14%)</title><rect x="523.6" y="453" width="1.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="526.63" y="463.5" ></text>
</g>
<g >
<title>Int32GetDatum (817,840,254 samples, 0.01%)</title><rect x="113.3" y="741" width="0.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="116.35" y="751.5" ></text>
</g>
<g >
<title>op_mergejoinable (6,818,044,956 samples, 0.07%)</title><rect x="964.5" y="389" width="0.8" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="967.49" y="399.5" ></text>
</g>
<g >
<title>hash_bytes (1,548,960,502 samples, 0.02%)</title><rect x="214.9" y="533" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="217.88" y="543.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (17,569,121,246 samples, 0.19%)</title><rect x="366.5" y="293" width="2.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="369.52" y="303.5" ></text>
</g>
<g >
<title>ExecInitResultSlot (6,331,168,981 samples, 0.07%)</title><rect x="424.7" y="389" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="427.66" y="399.5" ></text>
</g>
<g >
<title>new_list (1,445,642,892 samples, 0.02%)</title><rect x="972.4" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="975.38" y="383.5" ></text>
</g>
<g >
<title>security_file_permission (3,924,233,997 samples, 0.04%)</title><rect x="494.8" y="373" width="0.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="497.80" y="383.5" ></text>
</g>
<g >
<title>hash_search (4,196,822,565 samples, 0.04%)</title><rect x="829.0" y="373" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="832.04" y="383.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (2,780,876,791 samples, 0.03%)</title><rect x="368.4" y="261" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="371.37" y="271.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (970,714,727 samples, 0.01%)</title><rect x="1078.5" y="485" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1081.50" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_futex (3,395,729,856 samples, 0.04%)</title><rect x="351.9" y="197" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="354.93" y="207.5" ></text>
</g>
<g >
<title>IsCatalogRelationOid (985,473,924 samples, 0.01%)</title><rect x="53.9" y="757" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="56.85" y="767.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (15,331,721,823 samples, 0.16%)</title><rect x="132.0" y="549" width="1.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="134.98" y="559.5" ></text>
</g>
<g >
<title>hash_bytes (2,321,759,875 samples, 0.02%)</title><rect x="99.1" y="133" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="102.15" y="143.5" ></text>
</g>
<g >
<title>PreCommit_Notify (1,537,457,936 samples, 0.02%)</title><rect x="85.8" y="757" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="88.77" y="767.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (1,616,845,989 samples, 0.02%)</title><rect x="871.6" y="517" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="874.61" y="527.5" ></text>
</g>
<g >
<title>palloc (1,116,623,723 samples, 0.01%)</title><rect x="884.9" y="389" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="887.86" y="399.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (954,369,994 samples, 0.01%)</title><rect x="804.0" y="309" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="806.97" y="319.5" ></text>
</g>
<g >
<title>ExecBuildProjectionInfo (1,130,090,161 samples, 0.01%)</title><rect x="41.8" y="757" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="44.77" y="767.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (22,636,958,565 samples, 0.24%)</title><rect x="823.5" y="325" width="2.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="826.51" y="335.5" ></text>
</g>
<g >
<title>sock_def_readable (64,886,684,787 samples, 0.69%)</title><rect x="197.7" y="405" width="8.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="200.67" y="415.5" ></text>
</g>
<g >
<title>pg_class_aclmask (976,567,161 samples, 0.01%)</title><rect x="1168.0" y="757" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1170.99" y="767.5" ></text>
</g>
<g >
<title>generate_bitmap_or_paths (8,472,270,638 samples, 0.09%)</title><rect x="991.7" y="389" width="1.0" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="994.68" y="399.5" ></text>
</g>
<g >
<title>SearchSysCache1 (7,411,280,652 samples, 0.08%)</title><rect x="423.1" y="341" width="1.0" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="426.15" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,325,292,276 samples, 0.01%)</title><rect x="1021.3" y="277" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1024.26" y="287.5" ></text>
</g>
<g >
<title>eqsel (803,901,079 samples, 0.01%)</title><rect x="126.6" y="309" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="129.56" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,134,267,539 samples, 0.01%)</title><rect x="921.2" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="924.24" y="399.5" ></text>
</g>
<g >
<title>InitResultRelInfo (11,487,035,796 samples, 0.12%)</title><rect x="446.5" y="437" width="1.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="449.50" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,162,909,345 samples, 0.01%)</title><rect x="812.1" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="815.09" y="415.5" ></text>
</g>
<g >
<title>secure_raw_read (77,421,488,984 samples, 0.82%)</title><rect x="175.1" y="517" width="9.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="178.14" y="527.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,811,279,423 samples, 0.02%)</title><rect x="359.8" y="325" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="362.85" y="335.5" ></text>
</g>
<g >
<title>ExecUpdateEpilogue (2,949,777,813 samples, 0.03%)</title><rect x="388.4" y="421" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="391.36" y="431.5" ></text>
</g>
<g >
<title>check_stack_depth (1,900,378,308 samples, 0.02%)</title><rect x="1136.0" y="741" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="1138.95" y="751.5" ></text>
</g>
<g >
<title>lappend_oid (4,421,698,625 samples, 0.05%)</title><rect x="963.8" y="373" width="0.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="966.85" y="383.5" ></text>
</g>
<g >
<title>simplify_function (11,519,963,246 samples, 0.12%)</title><rect x="1056.5" y="437" width="1.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1059.47" y="447.5" ></text>
</g>
<g >
<title>bms_add_members (5,398,164,773 samples, 0.06%)</title><rect x="374.7" y="357" width="0.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="377.68" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,273,246,242 samples, 0.01%)</title><rect x="822.9" y="293" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="825.91" y="303.5" ></text>
</g>
<g >
<title>get_attavgwidth (8,943,524,925 samples, 0.09%)</title><rect x="1041.0" y="373" width="1.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1043.96" y="383.5" ></text>
</g>
<g >
<title>bms_add_member (1,186,205,643 samples, 0.01%)</title><rect x="1121.7" y="757" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1124.66" y="767.5" ></text>
</g>
<g >
<title>LockBuffer (3,125,009,808 samples, 0.03%)</title><rect x="339.8" y="213" width="0.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="342.78" y="223.5" ></text>
</g>
<g >
<title>__sigsetjmp (1,375,675,284 samples, 0.01%)</title><rect x="455.7" y="565" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="458.67" y="575.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2,072,179,170 samples, 0.02%)</title><rect x="750.4" y="453" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="753.43" y="463.5" ></text>
</g>
<g >
<title>CheckVarSlotCompatibility (2,002,627,166 samples, 0.02%)</title><rect x="283.8" y="277" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="286.80" y="287.5" ></text>
</g>
<g >
<title>ExecInitResultTypeTL (36,986,567,270 samples, 0.39%)</title><rect x="433.7" y="421" width="4.6" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="436.69" y="431.5" ></text>
</g>
<g >
<title>ReleaseCatCache (850,106,674 samples, 0.01%)</title><rect x="960.4" y="277" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="963.36" y="287.5" ></text>
</g>
<g >
<title>PortalRunMulti (1,809,544,240,944 samples, 19.17%)</title><rect x="228.3" y="565" width="226.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="231.32" y="575.5" >PortalRunMulti</text>
</g>
<g >
<title>uint32_hash (1,278,737,501 samples, 0.01%)</title><rect x="943.9" y="341" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="946.92" y="351.5" ></text>
</g>
<g >
<title>add_path (2,695,413,284 samples, 0.03%)</title><rect x="908.5" y="485" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="911.52" y="495.5" ></text>
</g>
<g >
<title>tts_virtual_clear (896,934,222 samples, 0.01%)</title><rect x="279.1" y="357" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="282.06" y="367.5" ></text>
</g>
<g >
<title>AllocSetFree (1,345,184,668 samples, 0.01%)</title><rect x="227.3" y="549" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="230.28" y="559.5" ></text>
</g>
<g >
<title>newNode (1,833,519,991 samples, 0.02%)</title><rect x="913.7" y="453" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="916.68" y="463.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (5,438,340,316 samples, 0.06%)</title><rect x="183.7" y="325" width="0.6" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="186.66" y="335.5" ></text>
</g>
<g >
<title>enqueue_task (9,464,080,257 samples, 0.10%)</title><rect x="203.7" y="309" width="1.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="206.75" y="319.5" ></text>
</g>
<g >
<title>btcostestimate (134,549,017,592 samples, 1.43%)</title><rect x="999.2" y="325" width="16.9" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1002.24" y="335.5" ></text>
</g>
<g >
<title>palloc0 (1,727,098,358 samples, 0.02%)</title><rect x="412.6" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="415.62" y="447.5" ></text>
</g>
<g >
<title>get_func_retset (5,164,053,148 samples, 0.05%)</title><rect x="834.8" y="373" width="0.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="837.78" y="383.5" ></text>
</g>
<g >
<title>bms_add_member (2,646,656,516 samples, 0.03%)</title><rect x="996.3" y="341" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="999.26" y="351.5" ></text>
</g>
<g >
<title>pfree (2,278,179,465 samples, 0.02%)</title><rect x="510.4" y="501" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="513.37" y="511.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,019,356,282 samples, 0.01%)</title><rect x="948.4" y="325" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="951.44" y="335.5" ></text>
</g>
<g >
<title>list_nth (858,517,561 samples, 0.01%)</title><rect x="858.8" y="517" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="861.82" y="527.5" ></text>
</g>
<g >
<title>palloc0 (1,787,073,093 samples, 0.02%)</title><rect x="408.1" y="437" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="411.14" y="447.5" ></text>
</g>
<g >
<title>extract_restriction_or_clauses (1,474,552,298 samples, 0.02%)</title><rect x="979.7" y="469" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="982.69" y="479.5" ></text>
</g>
<g >
<title>newNode (2,377,118,512 samples, 0.03%)</title><rect x="815.7" y="437" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="818.72" y="447.5" ></text>
</g>
<g >
<title>distribute_quals_to_rels (134,542,989,127 samples, 1.43%)</title><rect x="958.5" y="437" width="16.8" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="961.45" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (1,206,733,225 samples, 0.01%)</title><rect x="453.3" y="501" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="456.28" y="511.5" ></text>
</g>
<g >
<title>palloc (879,906,094 samples, 0.01%)</title><rect x="1031.5" y="197" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1034.52" y="207.5" ></text>
</g>
<g >
<title>index_rescan (9,037,716,011 samples, 0.10%)</title><rect x="340.8" y="325" width="1.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="343.78" y="335.5" ></text>
</g>
<g >
<title>MemoryContextCreate (885,634,093 samples, 0.01%)</title><rect x="414.9" y="357" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="417.90" y="367.5" ></text>
</g>
<g >
<title>psi_task_switch (9,609,811,820 samples, 0.10%)</title><rect x="164.3" y="341" width="1.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="167.28" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,162,126,249 samples, 0.01%)</title><rect x="221.2" y="517" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="224.23" y="527.5" ></text>
</g>
<g >
<title>btgettuple (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="357" width="2.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="85.62" y="367.5" ></text>
</g>
<g >
<title>gup_fast_fallback (6,342,070,772 samples, 0.07%)</title><rect x="482.6" y="293" width="0.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="485.62" y="303.5" ></text>
</g>
<g >
<title>restriction_selectivity (803,901,079 samples, 0.01%)</title><rect x="126.6" y="357" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="129.56" y="367.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (9,540,734,165 samples, 0.10%)</title><rect x="438.4" y="405" width="1.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="441.44" y="415.5" ></text>
</g>
<g >
<title>TransactionIdSetTreeStatus (27,894,218,216 samples, 0.30%)</title><rect x="469.6" y="485" width="3.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="472.60" y="495.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,329,600,988 samples, 0.01%)</title><rect x="1147.6" y="613" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1150.58" y="623.5" ></text>
</g>
<g >
<title>LockHeldByMe (11,964,267,916 samples, 0.13%)</title><rect x="865.8" y="453" width="1.5" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="868.82" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,062,419,827 samples, 0.02%)</title><rect x="466.4" y="469" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="469.36" y="479.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,217,297,839 samples, 0.01%)</title><rect x="124.1" y="213" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="127.08" y="223.5" ></text>
</g>
<g >
<title>uint32_hash (856,965,698 samples, 0.01%)</title><rect x="1023.7" y="325" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1026.68" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,054,077,783 samples, 0.01%)</title><rect x="893.2" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="896.18" y="415.5" ></text>
</g>
<g >
<title>new_list (2,336,239,174 samples, 0.02%)</title><rect x="1058.1" y="437" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1061.13" y="447.5" ></text>
</g>
<g >
<title>exprLocation (857,172,637 samples, 0.01%)</title><rect x="1134.8" y="757" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1137.81" y="767.5" ></text>
</g>
<g >
<title>palloc0 (2,508,173,110 samples, 0.03%)</title><rect x="991.4" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="994.37" y="367.5" ></text>
</g>
<g >
<title>pg_plan_queries (1,592,790,151,937 samples, 16.88%)</title><rect x="872.9" y="581" width="199.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="875.90" y="591.5" >pg_plan_queries</text>
</g>
<g >
<title>MemoryContextResetOnly (120,098,610,922 samples, 1.27%)</title><rect x="133.9" y="581" width="15.0" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="136.90" y="591.5" ></text>
</g>
<g >
<title>TupleDescInitEntry (24,035,314,701 samples, 0.25%)</title><rect x="434.5" y="373" width="3.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="437.48" y="383.5" ></text>
</g>
<g >
<title>MemoryContextCreate (1,137,352,553 samples, 0.01%)</title><rect x="1061.3" y="437" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1064.26" y="447.5" ></text>
</g>
<g >
<title>relation_close (1,031,319,326 samples, 0.01%)</title><rect x="947.3" y="389" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="950.29" y="399.5" ></text>
</g>
<g >
<title>finish_spin_delay (841,824,473 samples, 0.01%)</title><rect x="1137.9" y="757" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1140.89" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (947,168,503 samples, 0.01%)</title><rect x="930.7" y="357" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="933.74" y="367.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTuple (901,488,488 samples, 0.01%)</title><rect x="348.0" y="357" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="350.98" y="367.5" ></text>
</g>
<g >
<title>table_open (20,152,969,643 samples, 0.21%)</title><rect x="444.0" y="421" width="2.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="446.98" y="431.5" ></text>
</g>
<g >
<title>StartReadBuffer (5,413,996,234 samples, 0.06%)</title><rect x="84.7" y="229" width="0.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="87.72" y="239.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,120,549,236 samples, 0.01%)</title><rect x="370.4" y="341" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="373.44" y="351.5" ></text>
</g>
<g >
<title>BufferGetTag (3,613,573,362 samples, 0.04%)</title><rect x="385.5" y="325" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="388.55" y="335.5" ></text>
</g>
<g >
<title>CreateTemplateTupleDesc (1,797,188,146 samples, 0.02%)</title><rect x="448.6" y="405" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="451.64" y="415.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,232,023,931 samples, 0.01%)</title><rect x="398.3" y="373" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="401.31" y="383.5" ></text>
</g>
<g >
<title>AllocSetFree (2,591,435,686 samples, 0.03%)</title><rect x="239.3" y="373" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="242.25" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,194,040,225 samples, 0.04%)</title><rect x="791.1" y="517" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="794.14" y="527.5" ></text>
</g>
<g >
<title>hash_search (6,194,876,050 samples, 0.07%)</title><rect x="861.3" y="437" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="864.32" y="447.5" ></text>
</g>
<g >
<title>ExecEvalSysVar (2,583,218,835 samples, 0.03%)</title><rect x="287.4" y="277" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="290.44" y="287.5" ></text>
</g>
<g >
<title>futex_wait (998,538,076 samples, 0.01%)</title><rect x="1147.6" y="501" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1150.60" y="511.5" ></text>
</g>
<g >
<title>index_pages_fetched (2,376,375,065 samples, 0.03%)</title><rect x="1017.0" y="325" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="1019.97" y="335.5" ></text>
</g>
<g >
<title>RemoveLocalLock (21,731,815,424 samples, 0.23%)</title><rect x="519.1" y="453" width="2.8" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="522.15" y="463.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (2,871,252,156 samples, 0.03%)</title><rect x="123.2" y="197" width="0.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="126.18" y="207.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,570,517,922 samples, 0.02%)</title><rect x="866.3" y="405" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="869.25" y="415.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (2,277,626,347 samples, 0.02%)</title><rect x="260.3" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="263.32" y="399.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (2,512,834,785 samples, 0.03%)</title><rect x="1031.3" y="213" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1034.32" y="223.5" ></text>
</g>
<g >
<title>PostmasterMain (4,239,417,954 samples, 0.04%)</title><rect x="1157.9" y="741" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1160.94" y="751.5" ></text>
</g>
<g >
<title>RelationClose (1,945,796,678 samples, 0.02%)</title><rect x="799.2" y="501" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="802.17" y="511.5" ></text>
</g>
<g >
<title>pfree (2,175,455,848 samples, 0.02%)</title><rect x="989.2" y="373" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="992.24" y="383.5" ></text>
</g>
<g >
<title>palloc (2,658,903,298 samples, 0.03%)</title><rect x="396.1" y="389" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="399.12" y="399.5" ></text>
</g>
<g >
<title>lappend (2,638,851,454 samples, 0.03%)</title><rect x="447.9" y="437" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="450.94" y="447.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (7,507,322,641 samples, 0.08%)</title><rect x="317.9" y="213" width="1.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="320.95" y="223.5" ></text>
</g>
<g >
<title>tas (1,173,950,265 samples, 0.01%)</title><rect x="381.0" y="293" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="383.98" y="303.5" ></text>
</g>
<g >
<title>bms_add_member (2,432,403,574 samples, 0.03%)</title><rect x="274.2" y="405" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="277.16" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (871,552,014 samples, 0.01%)</title><rect x="991.6" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="994.58" y="351.5" ></text>
</g>
<g >
<title>ReadBufferExtended (21,054,539,429 samples, 0.22%)</title><rect x="399.1" y="373" width="2.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="402.13" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,162,738,352 samples, 0.01%)</title><rect x="820.7" y="357" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="823.74" y="367.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (801,296,149 samples, 0.01%)</title><rect x="1158.3" y="293" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1161.26" y="303.5" ></text>
</g>
<g >
<title>tas (1,439,882,217 samples, 0.02%)</title><rect x="505.1" y="469" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="508.13" y="479.5" ></text>
</g>
<g >
<title>LWLockReleaseClearVar (2,494,259,995 samples, 0.03%)</title><rect x="508.4" y="437" width="0.4" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="511.44" y="447.5" ></text>
</g>
<g >
<title>FastPathGrantRelationLock (5,194,552,493 samples, 0.06%)</title><rect x="940.7" y="341" width="0.7" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text x="943.75" y="351.5" ></text>
</g>
<g >
<title>ExecProcNode (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="517" width="6.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="97.67" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3,442,211,971 samples, 0.04%)</title><rect x="1113.8" y="661" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1116.83" y="671.5" ></text>
</g>
<g >
<title>consume_skb (19,769,311,821 samples, 0.21%)</title><rect x="178.9" y="373" width="2.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="181.89" y="383.5" ></text>
</g>
<g >
<title>heap_attisnull (896,042,609 samples, 0.01%)</title><rect x="930.9" y="389" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="933.94" y="399.5" ></text>
</g>
<g >
<title>AtEOXact_SMgr (1,186,657,000 samples, 0.01%)</title><rect x="32.7" y="757" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="35.70" y="767.5" ></text>
</g>
<g >
<title>ExecShutdownNode (7,482,760,707 samples, 0.08%)</title><rect x="402.1" y="485" width="1.0" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="405.13" y="495.5" ></text>
</g>
<g >
<title>palloc (1,314,488,179 samples, 0.01%)</title><rect x="814.0" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="817.02" y="415.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,052,727,188 samples, 0.01%)</title><rect x="949.2" y="325" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="952.17" y="335.5" ></text>
</g>
<g >
<title>LWLockDequeueSelf (1,724,061,747 samples, 0.02%)</title><rect x="350.3" y="293" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="353.29" y="303.5" ></text>
</g>
<g >
<title>LockHeldByMe (6,769,656,770 samples, 0.07%)</title><rect x="444.2" y="357" width="0.9" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="447.24" y="367.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,900,587,970 samples, 0.04%)</title><rect x="1046.5" y="437" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1049.50" y="447.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,645,442,955 samples, 0.02%)</title><rect x="390.3" y="309" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="393.31" y="319.5" ></text>
</g>
<g >
<title>new_list (2,058,610,380 samples, 0.02%)</title><rect x="986.2" y="357" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="989.24" y="367.5" ></text>
</g>
<g >
<title>requeue_delayed_entity (1,176,825,282 samples, 0.01%)</title><rect x="199.3" y="309" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="202.30" y="319.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="325" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="127.24" y="335.5" ></text>
</g>
<g >
<title>hash_search (14,741,721,992 samples, 0.16%)</title><rect x="1065.1" y="469" width="1.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1068.11" y="479.5" ></text>
</g>
<g >
<title>assign_collations_walker (1,730,961,408 samples, 0.02%)</title><rect x="1086.1" y="757" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1089.09" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,068,578,031 samples, 0.01%)</title><rect x="998.2" y="229" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1001.24" y="239.5" ></text>
</g>
<g >
<title>int4eq (1,267,825,877 samples, 0.01%)</title><rect x="1151.0" y="757" width="0.2" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text x="1154.03" y="767.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (17,878,920,687 samples, 0.19%)</title><rect x="266.6" y="405" width="2.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="269.58" y="415.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,269,574,136 samples, 0.01%)</title><rect x="1147.6" y="581" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1150.59" y="591.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,279,621,137 samples, 0.01%)</title><rect x="381.8" y="213" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="384.77" y="223.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (912,643,647 samples, 0.01%)</title><rect x="98.0" y="181" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="101.00" y="191.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (986,436,085 samples, 0.01%)</title><rect x="901.9" y="357" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="904.85" y="367.5" ></text>
</g>
<g >
<title>UnpinBuffer (2,309,653,025 samples, 0.02%)</title><rect x="281.9" y="261" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="284.90" y="271.5" ></text>
</g>
<g >
<title>set_plain_rel_size (122,012,443,606 samples, 1.29%)</title><rect x="1027.7" y="421" width="15.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1030.68" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,659,349,186 samples, 0.02%)</title><rect x="1167.1" y="757" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="1170.11" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,223,491,178 samples, 0.01%)</title><rect x="214.1" y="533" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="217.13" y="543.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (932,553,470 samples, 0.01%)</title><rect x="374.4" y="325" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="377.36" y="335.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,514,034,625 samples, 0.05%)</title><rect x="902.4" y="357" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="905.40" y="367.5" ></text>
</g>
<g >
<title>CommitTransaction (546,132,443,488 samples, 5.79%)</title><rect x="458.5" y="533" width="68.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="461.48" y="543.5" >CommitT..</text>
</g>
<g >
<title>LWLockReleaseInternal (3,210,172,762 samples, 0.03%)</title><rect x="470.3" y="437" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="473.27" y="447.5" ></text>
</g>
<g >
<title>castNodeImpl (888,537,112 samples, 0.01%)</title><rect x="249.5" y="469" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="252.48" y="479.5" ></text>
</g>
<g >
<title>AllocSetFree (1,374,826,315 samples, 0.01%)</title><rect x="995.8" y="325" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="998.76" y="335.5" ></text>
</g>
<g >
<title>check_list_invariants (1,862,307,263 samples, 0.02%)</title><rect x="1126.1" y="757" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1129.11" y="767.5" ></text>
</g>
<g >
<title>new_list (2,030,594,774 samples, 0.02%)</title><rect x="978.0" y="405" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="980.98" y="415.5" ></text>
</g>
<g >
<title>query_planner (1,163,868,766 samples, 0.01%)</title><rect x="126.5" y="501" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="129.52" y="511.5" ></text>
</g>
<g >
<title>contain_volatile_functions_checker (4,858,271,807 samples, 0.05%)</title><rect x="960.3" y="325" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="963.28" y="335.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,743,984,268 samples, 0.02%)</title><rect x="329.1" y="245" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="332.11" y="255.5" ></text>
</g>
<g >
<title>lappend (2,821,354,275 samples, 0.03%)</title><rect x="956.5" y="309" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="959.51" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,123,019,123 samples, 0.01%)</title><rect x="915.0" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="917.98" y="447.5" ></text>
</g>
<g >
<title>pg_plan_queries (1,980,044,175 samples, 0.02%)</title><rect x="85.4" y="645" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="88.40" y="655.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (6,468,839,087 samples, 0.07%)</title><rect x="504.1" y="453" width="0.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="507.13" y="463.5" ></text>
</g>
<g >
<title>find_forced_null_var (843,860,143 samples, 0.01%)</title><rect x="1137.7" y="757" width="0.1" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text x="1140.66" y="767.5" ></text>
</g>
<g >
<title>ExecInitQual (33,642,488,605 samples, 0.36%)</title><rect x="429.5" y="421" width="4.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="432.48" y="431.5" ></text>
</g>
<g >
<title>_bt_check_natts (1,792,144,631 samples, 0.02%)</title><rect x="337.4" y="213" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="340.39" y="223.5" ></text>
</g>
<g >
<title>namehashfast (5,147,521,155 samples, 0.05%)</title><rect x="825.3" y="293" width="0.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="828.33" y="303.5" ></text>
</g>
<g >
<title>TidQualFromRestrictInfoList (9,002,939,102 samples, 0.10%)</title><rect x="1024.7" y="389" width="1.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1027.70" y="399.5" ></text>
</g>
<g >
<title>ExecProject (21,317,769,585 samples, 0.23%)</title><rect x="266.2" y="421" width="2.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="269.16" y="431.5" ></text>
</g>
<g >
<title>cost_bitmap_heap_scan (10,255,495,868 samples, 0.11%)</title><rect x="989.9" y="373" width="1.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="992.95" y="383.5" ></text>
</g>
<g >
<title>add_eq_member (12,901,464,004 samples, 0.14%)</title><rect x="969.7" y="389" width="1.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="972.73" y="399.5" ></text>
</g>
<g >
<title>coerce_to_boolean (11,278,646,338 samples, 0.12%)</title><rect x="842.4" y="469" width="1.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="845.41" y="479.5" ></text>
</g>
<g >
<title>preprocess_expression (2,344,763,542 samples, 0.02%)</title><rect x="1185.0" y="741" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1187.98" y="751.5" ></text>
</g>
<g >
<title>newNode (2,873,440,280 samples, 0.03%)</title><rect x="415.3" y="373" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="418.35" y="383.5" ></text>
</g>
<g >
<title>AssignTransactionId (823,317,383 samples, 0.01%)</title><rect x="30.6" y="757" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="33.61" y="767.5" ></text>
</g>
<g >
<title>postmaster_child_launch (24,212,439,197 samples, 0.26%)</title><rect x="82.6" y="709" width="3.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="85.62" y="719.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,265,129,932 samples, 0.02%)</title><rect x="980.6" y="437" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="983.56" y="447.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (551,870,577,369 samples, 5.85%)</title><rect x="457.9" y="549" width="69.0" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="460.90" y="559.5" >CommitT..</text>
</g>
<g >
<title>newNode (4,678,035,860 samples, 0.05%)</title><rect x="885.2" y="405" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="888.21" y="415.5" ></text>
</g>
<g >
<title>MemoryContextDeleteChildren (16,748,185,265 samples, 0.18%)</title><rect x="131.8" y="581" width="2.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="134.81" y="591.5" ></text>
</g>
<g >
<title>ExecScan (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="421" width="1.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="125.45" y="431.5" ></text>
</g>
<g >
<title>palloc (1,177,560,783 samples, 0.01%)</title><rect x="448.7" y="389" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="451.72" y="399.5" ></text>
</g>
<g >
<title>charhashfast (917,724,734 samples, 0.01%)</title><rect x="1033.6" y="149" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1036.65" y="159.5" ></text>
</g>
<g >
<title>palloc (1,073,581,464 samples, 0.01%)</title><rect x="970.4" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="973.42" y="351.5" ></text>
</g>
<g >
<title>ScanKeywords_hash_func (9,764,857,678 samples, 0.10%)</title><rect x="1111.5" y="693" width="1.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1114.47" y="703.5" ></text>
</g>
<g >
<title>assign_expr_collations (29,974,105,509 samples, 0.32%)</title><rect x="804.8" y="421" width="3.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="807.79" y="431.5" ></text>
</g>
<g >
<title>IndexNext (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="373" width="1.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="125.45" y="383.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (2,478,924,841 samples, 0.03%)</title><rect x="1075.1" y="501" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="1078.07" y="511.5" ></text>
</g>
<g >
<title>fix_indexqual_clause (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="405" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="127.24" y="415.5" ></text>
</g>
<g >
<title>XLogRegisterData (876,454,542 samples, 0.01%)</title><rect x="110.0" y="757" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="112.97" y="767.5" ></text>
</g>
<g >
<title>fmgr_info (1,384,961,187 samples, 0.01%)</title><rect x="426.8" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="429.84" y="399.5" ></text>
</g>
<g >
<title>set_plan_references (1,050,845,289 samples, 0.01%)</title><rect x="1181.8" y="757" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1184.81" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_futex (875,345,104 samples, 0.01%)</title><rect x="467.7" y="389" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="470.66" y="399.5" ></text>
</g>
<g >
<title>GetSnapshotDataReuse (1,165,508,791 samples, 0.01%)</title><rect x="231.6" y="517" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="234.65" y="527.5" ></text>
</g>
<g >
<title>ExecProcNode (1,366,990,215 samples, 0.01%)</title><rect x="44.9" y="757" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="47.95" y="767.5" ></text>
</g>
<g >
<title>palloc0 (3,286,733,012 samples, 0.03%)</title><rect x="972.9" y="373" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="975.89" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,251,815,712 samples, 0.01%)</title><rect x="199.0" y="293" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="202.04" y="303.5" ></text>
</g>
<g >
<title>ExecInitRangeTable (2,606,015,496 samples, 0.03%)</title><rect x="451.5" y="485" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="454.54" y="495.5" ></text>
</g>
<g >
<title>table_openrv_extended (1,207,798,570 samples, 0.01%)</title><rect x="1186.0" y="757" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1189.00" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,212,375,279 samples, 0.01%)</title><rect x="968.5" y="277" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="971.53" y="287.5" ></text>
</g>
<g >
<title>sched_tick (2,649,178,293 samples, 0.03%)</title><rect x="751.3" y="421" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="754.30" y="431.5" ></text>
</g>
<g >
<title>AllocSetFree (1,919,691,010 samples, 0.02%)</title><rect x="996.6" y="309" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="999.63" y="319.5" ></text>
</g>
<g >
<title>bms_join (809,165,867 samples, 0.01%)</title><rect x="1070.2" y="469" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="1073.20" y="479.5" ></text>
</g>
<g >
<title>ExecProcNode (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="485" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1160.94" y="495.5" ></text>
</g>
<g >
<title>remove_entity_load_avg (2,199,158,142 samples, 0.02%)</title><rect x="203.5" y="293" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="206.45" y="303.5" ></text>
</g>
<g >
<title>assign_expr_collations (18,306,350,816 samples, 0.19%)</title><rect x="802.3" y="437" width="2.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="805.33" y="447.5" ></text>
</g>
<g >
<title>WALInsertLockRelease (5,128,079,044 samples, 0.05%)</title><rect x="381.9" y="309" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="384.94" y="319.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (70,619,346,809 samples, 0.75%)</title><rect x="475.3" y="437" width="8.9" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="478.34" y="447.5" ></text>
</g>
<g >
<title>RelationClose (881,867,195 samples, 0.01%)</title><rect x="947.3" y="373" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="950.31" y="383.5" ></text>
</g>
<g >
<title>ExecProcNode (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="469" width="1.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="125.45" y="479.5" ></text>
</g>
<g >
<title>hash_bytes (928,776,546 samples, 0.01%)</title><rect x="1186.8" y="741" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1189.75" y="751.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,188,010,356 samples, 0.01%)</title><rect x="162.0" y="309" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="165.04" y="319.5" ></text>
</g>
<g >
<title>__send (144,233,095,396 samples, 1.53%)</title><rect x="189.1" y="501" width="18.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="192.12" y="511.5" ></text>
</g>
<g >
<title>tag_hash (2,627,518,791 samples, 0.03%)</title><rect x="811.2" y="405" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="814.20" y="415.5" ></text>
</g>
<g >
<title>SS_identify_outer_params (833,019,497 samples, 0.01%)</title><rect x="92.7" y="757" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="95.75" y="767.5" ></text>
</g>
<g >
<title>expression_returns_set_walker (3,067,200,346 samples, 0.03%)</title><rect x="843.4" y="389" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="846.40" y="399.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberTupleDesc (1,480,415,491 samples, 0.02%)</title><rect x="438.9" y="357" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="441.88" y="367.5" ></text>
</g>
<g >
<title>newNode (4,062,879,036 samples, 0.04%)</title><rect x="275.0" y="405" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="277.95" y="415.5" ></text>
</g>
<g >
<title>ExecScan (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="405" width="1.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="127.59" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,699,263,065 samples, 0.03%)</title><rect x="1117.3" y="693" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1120.26" y="703.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (5,700,218,093 samples, 0.06%)</title><rect x="424.7" y="373" width="0.7" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="427.73" y="383.5" ></text>
</g>
<g >
<title>BufferIsLockedByMe (2,605,202,366 samples, 0.03%)</title><rect x="306.0" y="181" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="308.95" y="191.5" ></text>
</g>
<g >
<title>BufferGetBlock (2,773,242,713 samples, 0.03%)</title><rect x="34.8" y="757" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="37.85" y="767.5" ></text>
</g>
<g >
<title>ExecARUpdateTriggers (1,132,727,843 samples, 0.01%)</title><rect x="388.5" y="405" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="391.53" y="415.5" ></text>
</g>
<g >
<title>makeRangeVar (990,654,009 samples, 0.01%)</title><rect x="1158.7" y="757" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1161.68" y="767.5" ></text>
</g>
<g >
<title>LockAcquireExtended (51,931,090,020 samples, 0.55%)</title><rect x="353.0" y="293" width="6.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="356.00" y="303.5" ></text>
</g>
<g >
<title>palloc (803,901,079 samples, 0.01%)</title><rect x="126.6" y="213" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="129.56" y="223.5" ></text>
</g>
<g >
<title>sysvec_thermal (1,603,621,551 samples, 0.02%)</title><rect x="751.8" y="517" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="754.82" y="527.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (1,801,731,502 samples, 0.02%)</title><rect x="86.0" y="757" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="89.03" y="767.5" ></text>
</g>
<g >
<title>update_load_avg (12,921,477,856 samples, 0.14%)</title><rect x="169.8" y="277" width="1.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="172.79" y="287.5" ></text>
</g>
<g >
<title>folio_unlock (4,152,362,695 samples, 0.04%)</title><rect x="500.5" y="341" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="503.50" y="351.5" ></text>
</g>
<g >
<title>downcase_truncate_identifier (11,746,088,250 samples, 0.12%)</title><rect x="1112.9" y="709" width="1.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1115.95" y="719.5" ></text>
</g>
<g >
<title>AllocSetFree (832,152,457 samples, 0.01%)</title><rect x="396.0" y="341" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="399.01" y="351.5" ></text>
</g>
<g >
<title>newNode (4,192,684,663 samples, 0.04%)</title><rect x="1117.7" y="725" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1120.67" y="735.5" ></text>
</g>
<g >
<title>LWLockRelease (2,987,909,976 samples, 0.03%)</title><rect x="354.5" y="277" width="0.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="357.54" y="287.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (895,593,165 samples, 0.01%)</title><rect x="916.5" y="341" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="919.48" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,240,732,324 samples, 0.01%)</title><rect x="980.7" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="983.69" y="415.5" ></text>
</g>
<g >
<title>AssertBufferLocksPermitCatalogRead (3,061,951,675 samples, 0.03%)</title><rect x="29.8" y="757" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="32.84" y="767.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,411,983,178 samples, 0.01%)</title><rect x="84.7" y="181" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="87.72" y="191.5" ></text>
</g>
<g >
<title>try_to_wake_up (58,468,647,381 samples, 0.62%)</title><rect x="198.4" y="341" width="7.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="201.37" y="351.5" ></text>
</g>
<g >
<title>new_list (2,195,988,287 samples, 0.02%)</title><rect x="813.9" y="421" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="816.92" y="431.5" ></text>
</g>
<g >
<title>assign_list_collations (31,314,159,188 samples, 0.33%)</title><rect x="804.6" y="437" width="3.9" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="807.62" y="447.5" ></text>
</g>
<g >
<title>fix_indexqual_references (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="421" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="127.24" y="431.5" ></text>
</g>
<g >
<title>ExecModifyTable (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="517" width="2.8" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="85.62" y="527.5" ></text>
</g>
<g >
<title>table_relation_size (21,746,464,267 samples, 0.23%)</title><rect x="935.5" y="325" width="2.7" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="938.51" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,302,601,961 samples, 0.01%)</title><rect x="799.9" y="517" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="802.94" y="527.5" ></text>
</g>
<g >
<title>btint4cmp (2,611,690,680 samples, 0.03%)</title><rect x="125.2" y="213" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="128.20" y="223.5" ></text>
</g>
<g >
<title>calc_bucket (841,043,364 samples, 0.01%)</title><rect x="1124.6" y="757" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1127.60" y="767.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (964,209,146 samples, 0.01%)</title><rect x="57.1" y="757" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="60.13" y="767.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,351,734,174 samples, 0.02%)</title><rect x="954.3" y="453" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="957.27" y="463.5" ></text>
</g>
<g >
<title>dequeue_task_fair (46,559,784,827 samples, 0.49%)</title><rect x="165.8" y="325" width="5.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="168.85" y="335.5" ></text>
</g>
<g >
<title>__strlen_avx2 (961,239,536 samples, 0.01%)</title><rect x="816.3" y="405" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="819.27" y="415.5" ></text>
</g>
<g >
<title>bms_is_member (1,941,864,028 samples, 0.02%)</title><rect x="274.5" y="405" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="277.46" y="415.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,340,438,214 samples, 0.01%)</title><rect x="382.3" y="101" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="385.25" y="111.5" ></text>
</g>
<g >
<title>HeapTupleHeaderXminCommitted (4,321,397,844 samples, 0.05%)</title><rect x="304.7" y="213" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="307.72" y="223.5" ></text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (15,479,105,145 samples, 0.16%)</title><rect x="1050.0" y="453" width="1.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1052.99" y="463.5" ></text>
</g>
<g >
<title>generic_perform_write (40,387,485,949 samples, 0.43%)</title><rect x="496.1" y="373" width="5.0" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="499.07" y="383.5" ></text>
</g>
<g >
<title>futex_hash (1,702,364,238 samples, 0.02%)</title><rect x="482.2" y="309" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="485.21" y="319.5" ></text>
</g>
<g >
<title>compute_bitmap_pages (3,421,295,827 samples, 0.04%)</title><rect x="990.3" y="357" width="0.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="993.30" y="367.5" ></text>
</g>
<g >
<title>AllocSetCheck (4,898,370,828 samples, 0.05%)</title><rect x="132.1" y="517" width="0.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="135.13" y="527.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,475,135,117 samples, 0.02%)</title><rect x="949.0" y="341" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="951.96" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,256,968,893 samples, 0.01%)</title><rect x="1009.1" y="229" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1012.11" y="239.5" ></text>
</g>
<g >
<title>table_open (15,396,761,244 samples, 0.16%)</title><rect x="947.4" y="405" width="1.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="950.42" y="415.5" ></text>
</g>
<g >
<title>newNode (6,957,211,177 samples, 0.07%)</title><rect x="404.6" y="485" width="0.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="407.61" y="495.5" ></text>
</g>
<g >
<title>XLogBytePosToRecPtr (827,416,833 samples, 0.01%)</title><rect x="507.6" y="437" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="510.56" y="447.5" ></text>
</g>
<g >
<title>PageAddItemExtended (25,953,764,920 samples, 0.28%)</title><rect x="370.8" y="341" width="3.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="373.83" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (844,972,722 samples, 0.01%)</title><rect x="365.5" y="309" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="368.46" y="319.5" ></text>
</g>
<g >
<title>func_parallel (5,443,923,981 samples, 0.06%)</title><rect x="916.4" y="389" width="0.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="919.38" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,436,306,255 samples, 0.02%)</title><rect x="518.2" y="421" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="521.15" y="431.5" ></text>
</g>
<g >
<title>sentinel_ok (29,348,997,617 samples, 0.31%)</title><rect x="1177.3" y="757" width="3.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1180.31" y="767.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,165,860,514 samples, 0.01%)</title><rect x="296.8" y="229" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="299.83" y="239.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,344,625,077 samples, 0.07%)</title><rect x="1052.3" y="453" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1055.31" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (1,758,812,344 samples, 0.02%)</title><rect x="277.9" y="309" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="280.92" y="319.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,443,430,509 samples, 0.02%)</title><rect x="942.3" y="341" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="945.34" y="351.5" ></text>
</g>
<g >
<title>lcons (2,535,022,961 samples, 0.03%)</title><rect x="985.5" y="405" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="988.52" y="415.5" ></text>
</g>
<g >
<title>wake_up_q (1,113,480,315 samples, 0.01%)</title><rect x="363.8" y="181" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="366.79" y="191.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (4,264,346,157 samples, 0.05%)</title><rect x="107.4" y="757" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="110.42" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,405,905,643 samples, 0.03%)</title><rect x="997.5" y="293" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1000.52" y="303.5" ></text>
</g>
<g >
<title>hash_search (5,926,219,706 samples, 0.06%)</title><rect x="923.4" y="389" width="0.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="926.38" y="399.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (132,733,292,669 samples, 1.41%)</title><rect x="695.4" y="533" width="16.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="698.45" y="543.5" ></text>
</g>
<g >
<title>__ieee754_log_fma (4,258,866,422 samples, 0.05%)</title><rect x="1000.2" y="309" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1003.25" y="319.5" ></text>
</g>
<g >
<title>PostmasterMain (17,884,496,647 samples, 0.19%)</title><rect x="124.6" y="709" width="2.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="127.59" y="719.5" ></text>
</g>
<g >
<title>palloc0 (3,336,249,450 samples, 0.04%)</title><rect x="433.3" y="389" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="436.26" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,751,648,202 samples, 0.03%)</title><rect x="220.7" y="517" width="0.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="223.71" y="527.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,068,819,513 samples, 0.06%)</title><rect x="843.0" y="405" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="846.04" y="415.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,707,956,023 samples, 0.02%)</title><rect x="490.5" y="421" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="493.55" y="431.5" ></text>
</g>
<g >
<title>palloc0 (8,093,043,450 samples, 0.09%)</title><rect x="894.3" y="501" width="1.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="897.32" y="511.5" ></text>
</g>
<g >
<title>TupleDescAttr (808,950,298 samples, 0.01%)</title><rect x="273.2" y="373" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="276.25" y="383.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (7,138,908,017 samples, 0.08%)</title><rect x="750.9" y="517" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="753.87" y="527.5" ></text>
</g>
<g >
<title>_bt_search (96,418,204,906 samples, 1.02%)</title><rect x="328.4" y="261" width="12.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="331.41" y="271.5" ></text>
</g>
<g >
<title>table_tuple_update (350,760,558,599 samples, 3.72%)</title><rect x="344.5" y="405" width="43.8" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="347.49" y="415.5" >tabl..</text>
</g>
<g >
<title>ExecEvalExprNoReturn (47,706,242,851 samples, 0.51%)</title><rect x="283.3" y="325" width="5.9" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="286.25" y="335.5" ></text>
</g>
<g >
<title>LockHeldByMe (6,592,678,236 samples, 0.07%)</title><rect x="923.3" y="405" width="0.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="926.31" y="415.5" ></text>
</g>
<g >
<title>add_base_rels_to_query (1,134,314,921 samples, 0.01%)</title><rect x="1084.1" y="757" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1087.14" y="767.5" ></text>
</g>
<g >
<title>smgrnblocks (20,398,860,181 samples, 0.22%)</title><rect x="935.7" y="293" width="2.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="938.68" y="303.5" ></text>
</g>
<g >
<title>rw_verify_area (4,366,212,188 samples, 0.05%)</title><rect x="494.7" y="389" width="0.6" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="497.75" y="399.5" ></text>
</g>
<g >
<title>TransactionIdIsCurrentTransactionId (1,690,707,375 samples, 0.02%)</title><rect x="307.9" y="213" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="310.91" y="223.5" ></text>
</g>
<g >
<title>hash_seq_term (1,005,306,872 samples, 0.01%)</title><rect x="525.2" y="437" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="528.18" y="447.5" ></text>
</g>
<g >
<title>SearchCatCache4 (7,604,694,999 samples, 0.08%)</title><rect x="1009.7" y="261" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1012.73" y="271.5" ></text>
</g>
<g >
<title>hash_search (2,894,261,413 samples, 0.03%)</title><rect x="1068.8" y="437" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1071.79" y="447.5" ></text>
</g>
<g >
<title>dequeue_task (1,249,574,075 samples, 0.01%)</title><rect x="165.7" y="325" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="168.69" y="335.5" ></text>
</g>
<g >
<title>_mm_set_epi8 (1,074,395,731 samples, 0.01%)</title><rect x="1082.8" y="469" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1085.78" y="479.5" ></text>
</g>
<g >
<title>hash_search (13,725,016,480 samples, 0.15%)</title><rect x="836.5" y="341" width="1.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="839.50" y="351.5" ></text>
</g>
<g >
<title>relation_open (1,482,340,560 samples, 0.02%)</title><rect x="1175.5" y="757" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1178.46" y="767.5" ></text>
</g>
<g >
<title>message_level_is_interesting (1,260,539,747 samples, 0.01%)</title><rect x="526.0" y="501" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="528.95" y="511.5" ></text>
</g>
<g >
<title>examine_simple_variable (24,393,389,847 samples, 0.26%)</title><rect x="1032.5" y="229" width="3.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1035.46" y="239.5" ></text>
</g>
<g >
<title>raw_parser (25,233,527,771 samples, 0.27%)</title><rect x="869.7" y="565" width="3.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="872.72" y="575.5" ></text>
</g>
<g >
<title>pfree (2,387,636,561 samples, 0.03%)</title><rect x="996.6" y="325" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="999.61" y="335.5" ></text>
</g>
<g >
<title>futex_do_wait (45,502,494,796 samples, 0.48%)</title><rect x="476.2" y="325" width="5.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="479.16" y="335.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (14,115,185,319 samples, 0.15%)</title><rect x="959.7" y="373" width="1.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="962.69" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (859,975,462 samples, 0.01%)</title><rect x="941.6" y="293" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="944.62" y="303.5" ></text>
</g>
<g >
<title>_bt_readpage (4,418,702,744 samples, 0.05%)</title><rect x="122.6" y="277" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="125.63" y="287.5" ></text>
</g>
<g >
<title>lappend (4,359,146,263 samples, 0.05%)</title><rect x="813.7" y="437" width="0.5" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="816.68" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,987,708,070 samples, 0.02%)</title><rect x="474.2" y="437" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="477.22" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,396,679,795 samples, 0.01%)</title><rect x="393.4" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="396.36" y="335.5" ></text>
</g>
<g >
<title>bsearch (1,529,024,200 samples, 0.02%)</title><rect x="1123.5" y="757" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1126.47" y="767.5" ></text>
</g>
<g >
<title>fireBSTriggers (1,229,467,339 samples, 0.01%)</title><rect x="396.8" y="437" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="399.81" y="447.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (4,321,298,885 samples, 0.05%)</title><rect x="104.1" y="453" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="107.07" y="463.5" ></text>
</g>
<g >
<title>BTreeTupleIsPosting (2,140,764,742 samples, 0.02%)</title><rect x="333.7" y="197" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="336.68" y="207.5" ></text>
</g>
<g >
<title>index_getnext_tid (237,218,907,839 samples, 2.51%)</title><rect x="311.1" y="309" width="29.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="314.11" y="319.5" >in..</text>
</g>
<g >
<title>expression_tree_walker_impl (841,007,805 samples, 0.01%)</title><rect x="917.6" y="373" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="920.64" y="383.5" ></text>
</g>
<g >
<title>fastgetattr (5,353,035,267 samples, 0.06%)</title><rect x="360.8" y="325" width="0.6" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="363.76" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (901,591,047 samples, 0.01%)</title><rect x="433.1" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="436.05" y="367.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller_noprof (10,158,866,217 samples, 0.11%)</title><rect x="194.4" y="341" width="1.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="197.43" y="351.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (811,735,690 samples, 0.01%)</title><rect x="354.7" y="69" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="357.71" y="79.5" ></text>
</g>
<g >
<title>QueryRewrite (99,675,392,984 samples, 1.06%)</title><rect x="857.1" y="549" width="12.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="860.07" y="559.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,797,000,574 samples, 0.02%)</title><rect x="877.1" y="437" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="880.08" y="447.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="469" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1161.36" y="479.5" ></text>
</g>
<g >
<title>yy_get_next_buffer (888,763,302 samples, 0.01%)</title><rect x="1114.8" y="709" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1117.80" y="719.5" ></text>
</g>
<g >
<title>TransactionIdDidCommit (10,496,693,307 samples, 0.11%)</title><rect x="306.6" y="213" width="1.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="309.57" y="223.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,927,547,871 samples, 0.02%)</title><rect x="1143.2" y="741" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1146.16" y="751.5" ></text>
</g>
<g >
<title>new_list (1,909,598,113 samples, 0.02%)</title><rect x="931.4" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="934.36" y="383.5" ></text>
</g>
<g >
<title>pg_detoast_datum_copy (7,273,075,970 samples, 0.08%)</title><rect x="1008.4" y="277" width="0.9" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1011.37" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,537,337,234 samples, 0.02%)</title><rect x="509.8" y="469" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="512.83" y="479.5" ></text>
</g>
<g >
<title>bms_num_members (1,022,321,259 samples, 0.01%)</title><rect x="967.0" y="373" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="969.97" y="383.5" ></text>
</g>
<g >
<title>reweight_entity (1,805,726,795 samples, 0.02%)</title><rect x="204.2" y="277" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="207.22" y="287.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (1,266,295,508 samples, 0.01%)</title><rect x="422.4" y="357" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="425.43" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (11,986,176,793 samples, 0.13%)</title><rect x="224.8" y="549" width="1.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="227.80" y="559.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (1,413,804,480 samples, 0.01%)</title><rect x="331.3" y="213" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="334.26" y="223.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (73,962,204,548 samples, 0.78%)</title><rect x="475.0" y="453" width="9.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="478.01" y="463.5" ></text>
</g>
<g >
<title>CreateExprContextInternal (10,164,508,494 samples, 0.11%)</title><rect x="269.1" y="389" width="1.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="272.07" y="399.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (9,666,214,220 samples, 0.10%)</title><rect x="183.1" y="357" width="1.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="186.14" y="367.5" ></text>
</g>
<g >
<title>initStringInfoInternal (2,763,394,108 samples, 0.03%)</title><rect x="186.8" y="549" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="189.77" y="559.5" ></text>
</g>
<g >
<title>AllocSetFree (3,442,687,947 samples, 0.04%)</title><rect x="978.9" y="405" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="981.85" y="415.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (552,265,060,314 samples, 5.85%)</title><rect x="457.9" y="565" width="69.0" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="460.86" y="575.5" >CommitT..</text>
</g>
<g >
<title>palloc0 (7,190,338,074 samples, 0.08%)</title><rect x="914.2" y="453" width="0.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="917.24" y="463.5" ></text>
</g>
<g >
<title>RelationClose (893,152,908 samples, 0.01%)</title><rect x="235.5" y="437" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="238.54" y="447.5" ></text>
</g>
<g >
<title>SearchCatCache (6,365,005,371 samples, 0.07%)</title><rect x="1021.7" y="261" width="0.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1024.71" y="271.5" ></text>
</g>
<g >
<title>palloc0 (14,229,353,896 samples, 0.15%)</title><rect x="276.5" y="373" width="1.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="279.46" y="383.5" ></text>
</g>
<g >
<title>SearchSysCache3 (9,950,853,040 samples, 0.11%)</title><rect x="1032.8" y="213" width="1.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1035.82" y="223.5" ></text>
</g>
<g >
<title>create_projection_path (6,027,077,110 samples, 0.06%)</title><rect x="909.4" y="469" width="0.7" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="912.37" y="479.5" ></text>
</g>
<g >
<title>tag_hash (2,253,185,102 samples, 0.02%)</title><rect x="1068.4" y="405" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1071.39" y="415.5" ></text>
</g>
<g >
<title>pfree (3,096,556,378 samples, 0.03%)</title><rect x="239.2" y="389" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="242.22" y="399.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (27,770,679,032 samples, 0.29%)</title><rect x="900.3" y="453" width="3.5" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="903.33" y="463.5" ></text>
</g>
<g >
<title>_bt_lockbuf (1,014,336,284 samples, 0.01%)</title><rect x="128.7" y="757" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="131.70" y="767.5" ></text>
</g>
<g >
<title>ExecCloseRangeTableRelations (2,987,973,071 samples, 0.03%)</title><rect x="235.3" y="485" width="0.4" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="238.30" y="495.5" ></text>
</g>
<g >
<title>PageGetItemId (2,795,865,339 samples, 0.03%)</title><rect x="114.5" y="741" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="117.48" y="751.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (1,214,163,430 samples, 0.01%)</title><rect x="453.1" y="453" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="456.08" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,307,608,901 samples, 0.01%)</title><rect x="454.3" y="485" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="457.27" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,708,225,655 samples, 0.02%)</title><rect x="153.6" y="469" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="156.59" y="479.5" ></text>
</g>
<g >
<title>LockRelationOid (9,032,967,679 samples, 0.10%)</title><rect x="440.2" y="389" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="443.16" y="399.5" ></text>
</g>
<g >
<title>pg_rewrite_query (101,275,917,104 samples, 1.07%)</title><rect x="856.9" y="565" width="12.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="859.87" y="575.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (9,468,900,748 samples, 0.10%)</title><rect x="183.2" y="341" width="1.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="186.16" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,179,681,233 samples, 0.01%)</title><rect x="381.6" y="245" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="384.59" y="255.5" ></text>
</g>
<g >
<title>AllocSetFree (991,095,160 samples, 0.01%)</title><rect x="966.8" y="341" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="969.82" y="351.5" ></text>
</g>
<g >
<title>RegisterSnapshot (1,967,816,461 samples, 0.02%)</title><rect x="452.2" y="501" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="455.25" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,313,224,788 samples, 0.01%)</title><rect x="977.6" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="980.58" y="415.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (1,119,487,320 samples, 0.01%)</title><rect x="39.7" y="757" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="42.68" y="767.5" ></text>
</g>
<g >
<title>malloc (8,764,774,558 samples, 0.09%)</title><rect x="291.9" y="229" width="1.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="294.88" y="239.5" ></text>
</g>
<g >
<title>psi_group_change (2,778,596,089 samples, 0.03%)</title><rect x="478.7" y="261" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="481.70" y="271.5" ></text>
</g>
<g >
<title>LockAcquire (52,297,781,411 samples, 0.55%)</title><rect x="353.0" y="309" width="6.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="355.97" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (2,214,540,114 samples, 0.02%)</title><rect x="381.3" y="245" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="384.30" y="255.5" ></text>
</g>
<g >
<title>_bt_saveitem (818,358,067 samples, 0.01%)</title><rect x="328.1" y="229" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="331.10" y="239.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (826,835,031 samples, 0.01%)</title><rect x="471.1" y="437" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="474.13" y="447.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (2,371,567,009 samples, 0.03%)</title><rect x="1114.5" y="693" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1117.51" y="703.5" ></text>
</g>
<g >
<title>__strcmp_avx2 (1,465,582,292 samples, 0.02%)</title><rect x="856.4" y="341" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="859.38" y="351.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,705,728,369 samples, 0.02%)</title><rect x="456.2" y="533" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="459.21" y="543.5" ></text>
</g>
<g >
<title>palloc (1,358,103,921 samples, 0.01%)</title><rect x="448.1" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="451.09" y="415.5" ></text>
</g>
<g >
<title>ExecInterpExpr (8,520,137,263 samples, 0.09%)</title><rect x="267.7" y="357" width="1.1" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="270.73" y="367.5" ></text>
</g>
<g >
<title>ReleaseBuffer (2,521,246,785 samples, 0.03%)</title><rect x="374.2" y="357" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="377.17" y="367.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,145,954,015 samples, 0.02%)</title><rect x="408.1" y="453" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="411.09" y="463.5" ></text>
</g>
<g >
<title>futex_wait (1,079,025,424 samples, 0.01%)</title><rect x="354.4" y="149" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="357.39" y="159.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (850,445,588 samples, 0.01%)</title><rect x="939.7" y="389" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="942.74" y="399.5" ></text>
</g>
<g >
<title>new_list (2,035,549,112 samples, 0.02%)</title><rect x="873.3" y="549" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="876.29" y="559.5" ></text>
</g>
<g >
<title>ExecutorFinish (4,338,389,646 samples, 0.05%)</title><rect x="262.7" y="533" width="0.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="265.69" y="543.5" ></text>
</g>
<g >
<title>_int_free (828,419,092 samples, 0.01%)</title><rect x="241.1" y="341" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="244.15" y="351.5" ></text>
</g>
<g >
<title>planner (1,980,044,175 samples, 0.02%)</title><rect x="85.4" y="613" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="88.40" y="623.5" ></text>
</g>
<g >
<title>_bt_search (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="341" width="6.6" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="97.67" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,268,213,975 samples, 0.02%)</title><rect x="906.2" y="469" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="909.19" y="479.5" ></text>
</g>
<g >
<title>decimalLength64 (2,190,721,698 samples, 0.02%)</title><rect x="216.1" y="533" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="219.09" y="543.5" ></text>
</g>
<g >
<title>ExecInitExprRec (2,231,249,152 samples, 0.02%)</title><rect x="419.9" y="325" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="422.90" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (950,247,137 samples, 0.01%)</title><rect x="239.7" y="373" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="242.66" y="383.5" ></text>
</g>
<g >
<title>PageIsNew (2,381,822,848 samples, 0.03%)</title><rect x="339.0" y="213" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="341.98" y="223.5" ></text>
</g>
<g >
<title>new_list (1,847,739,682 samples, 0.02%)</title><rect x="899.5" y="453" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="902.47" y="463.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (26,954,828,634 samples, 0.29%)</title><rect x="101.5" y="485" width="3.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="104.45" y="495.5" ></text>
</g>
<g >
<title>TupleDescAttr (894,857,132 samples, 0.01%)</title><rect x="125.7" y="181" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="128.74" y="191.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,646,971,050 samples, 0.05%)</title><rect x="864.3" y="469" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="867.29" y="479.5" ></text>
</g>
<g >
<title>list_make2_impl (1,660,456,441 samples, 0.02%)</title><rect x="835.4" y="373" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="838.42" y="383.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (924,681,049 samples, 0.01%)</title><rect x="940.3" y="357" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="943.31" y="367.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (870,659,640 samples, 0.01%)</title><rect x="368.6" y="245" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="371.61" y="255.5" ></text>
</g>
<g >
<title>get_hash_value (2,716,594,892 samples, 0.03%)</title><rect x="942.0" y="325" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="945.00" y="335.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,296,979,005 samples, 0.02%)</title><rect x="750.4" y="485" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="753.42" y="495.5" ></text>
</g>
<g >
<title>palloc (2,058,238,751 samples, 0.02%)</title><rect x="810.1" y="421" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="813.12" y="431.5" ></text>
</g>
<g >
<title>newNode (3,981,846,272 samples, 0.04%)</title><rect x="972.8" y="389" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="975.80" y="399.5" ></text>
</g>
<g >
<title>__task_rq_lock (10,255,302,708 samples, 0.11%)</title><rect x="486.5" y="293" width="1.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="489.53" y="303.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (1,082,477,386 samples, 0.01%)</title><rect x="817.6" y="405" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="820.63" y="415.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,304,125,293 samples, 0.01%)</title><rect x="381.8" y="245" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="384.76" y="255.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (6,694,101,075 samples, 0.07%)</title><rect x="350.7" y="293" width="0.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="353.69" y="303.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,327,474,517 samples, 0.01%)</title><rect x="1078.5" y="501" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1081.45" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (1,112,845,984 samples, 0.01%)</title><rect x="155.9" y="373" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="158.87" y="383.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,093,233,231 samples, 0.01%)</title><rect x="902.7" y="325" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="905.69" y="335.5" ></text>
</g>
<g >
<title>PortalCleanup (989,688,808 samples, 0.01%)</title><rect x="82.1" y="757" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="85.10" y="767.5" ></text>
</g>
<g >
<title>RelationGetIndexPredicate (1,384,412,834 samples, 0.01%)</title><rect x="931.6" y="405" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="934.60" y="415.5" ></text>
</g>
<g >
<title>new_list (1,266,917,604 samples, 0.01%)</title><rect x="897.4" y="453" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="900.43" y="463.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,035,384,585 samples, 0.02%)</title><rect x="1059.7" y="453" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1062.72" y="463.5" ></text>
</g>
<g >
<title>lappend (1,878,007,627 samples, 0.02%)</title><rect x="1018.6" y="373" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1021.62" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_exchange_u64 (802,816,385 samples, 0.01%)</title><rect x="508.7" y="421" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="511.66" y="431.5" ></text>
</g>
<g >
<title>exprType (981,423,568 samples, 0.01%)</title><rect x="842.2" y="437" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="845.21" y="447.5" ></text>
</g>
<g >
<title>cost_qual_eval_node (1,187,333,350 samples, 0.01%)</title><rect x="1014.1" y="277" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1017.09" y="287.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (3,293,381,650 samples, 0.03%)</title><rect x="468.9" y="485" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="471.89" y="495.5" ></text>
</g>
<g >
<title>afterTriggerMarkEvents (877,934,083 samples, 0.01%)</title><rect x="1084.8" y="757" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1087.83" y="767.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,250,538,008 samples, 0.01%)</title><rect x="845.1" y="405" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="848.12" y="415.5" ></text>
</g>
<g >
<title>get_mergejoin_opfamilies (22,920,093,897 samples, 0.24%)</title><rect x="961.5" y="389" width="2.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="964.54" y="399.5" ></text>
</g>
<g >
<title>BufferGetPage (5,333,782,740 samples, 0.06%)</title><rect x="35.4" y="757" width="0.7" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="38.43" y="767.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (3,430,244,645 samples, 0.04%)</title><rect x="477.9" y="245" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="480.85" y="255.5" ></text>
</g>
<g >
<title>palloc (1,148,150,974 samples, 0.01%)</title><rect x="930.7" y="373" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="933.71" y="383.5" ></text>
</g>
<g >
<title>palloc (1,165,557,821 samples, 0.01%)</title><rect x="869.3" y="501" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="872.30" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (923,558,060 samples, 0.01%)</title><rect x="908.7" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="911.73" y="415.5" ></text>
</g>
<g >
<title>LockReleaseAll (111,666,082,896 samples, 1.18%)</title><rect x="511.4" y="469" width="13.9" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="514.37" y="479.5" ></text>
</g>
<g >
<title>obj_cgroup_charge_account (2,189,928,372 samples, 0.02%)</title><rect x="195.3" y="309" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="198.33" y="319.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (3,988,285,981 samples, 0.04%)</title><rect x="320.8" y="181" width="0.5" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="323.84" y="191.5" ></text>
</g>
<g >
<title>hash_bytes (2,812,418,602 samples, 0.03%)</title><rect x="445.4" y="325" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="448.38" y="335.5" ></text>
</g>
<g >
<title>WALInsertLockRelease (2,560,671,873 samples, 0.03%)</title><rect x="508.4" y="453" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="511.44" y="463.5" ></text>
</g>
<g >
<title>simplify_function (1,387,123,297 samples, 0.01%)</title><rect x="1173.0" y="645" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1176.04" y="655.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function (1,502,625,927 samples, 0.02%)</title><rect x="1085.7" y="757" width="0.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="1088.71" y="767.5" ></text>
</g>
<g >
<title>palloc (1,047,860,825 samples, 0.01%)</title><rect x="995.4" y="325" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="998.38" y="335.5" ></text>
</g>
<g >
<title>get_relids_in_jointree (2,175,679,586 samples, 0.02%)</title><rect x="1070.3" y="469" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1073.31" y="479.5" ></text>
</g>
<g >
<title>GrantLockLocal (1,269,024,101 samples, 0.01%)</title><rect x="819.6" y="373" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="822.59" y="383.5" ></text>
</g>
<g >
<title>x64_sys_call (935,978,999 samples, 0.01%)</title><rect x="501.6" y="421" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="504.58" y="431.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (7,283,519,034 samples, 0.08%)</title><rect x="266.8" y="341" width="0.9" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="269.78" y="351.5" ></text>
</g>
<g >
<title>set_cheapest (3,588,110,733 samples, 0.04%)</title><rect x="1071.5" y="501" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1074.48" y="511.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (7,632,899,953 samples, 0.08%)</title><rect x="974.3" y="357" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="977.29" y="367.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (2,565,818,662 samples, 0.03%)</title><rect x="488.3" y="293" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="491.34" y="303.5" ></text>
</g>
<g >
<title>palloc (1,884,702,141 samples, 0.02%)</title><rect x="186.8" y="533" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="189.83" y="543.5" ></text>
</g>
<g >
<title>pull_up_subqueries (6,624,951,097 samples, 0.07%)</title><rect x="1070.6" y="501" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1073.58" y="511.5" ></text>
</g>
<g >
<title>new_list (1,833,516,540 samples, 0.02%)</title><rect x="910.9" y="453" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="913.87" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,328,934,805 samples, 0.01%)</title><rect x="829.1" y="357" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="832.08" y="367.5" ></text>
</g>
<g >
<title>parse_analyze_fixedparams (906,372,933 samples, 0.01%)</title><rect x="1165.7" y="757" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1168.66" y="767.5" ></text>
</g>
<g >
<title>PostgresMain (17,104,611,586 samples, 0.18%)</title><rect x="122.5" y="645" width="2.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="125.45" y="655.5" ></text>
</g>
<g >
<title>SearchSysCache1 (5,895,188,301 samples, 0.06%)</title><rect x="846.6" y="389" width="0.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="849.61" y="399.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (2,625,063,016 samples, 0.03%)</title><rect x="49.0" y="757" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="52.01" y="767.5" ></text>
</g>
<g >
<title>create_index_path (155,049,870,900 samples, 1.64%)</title><rect x="998.4" y="357" width="19.4" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="1001.39" y="367.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (2,314,758,137 samples, 0.02%)</title><rect x="1185.0" y="661" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1187.99" y="671.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (5,495,535,754 samples, 0.06%)</title><rect x="849.2" y="357" width="0.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="852.24" y="367.5" ></text>
</g>
<g >
<title>tag_hash (2,248,010,757 samples, 0.02%)</title><rect x="443.6" y="373" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="446.58" y="383.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (3,270,947,458 samples, 0.03%)</title><rect x="198.6" y="325" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="201.62" y="335.5" ></text>
</g>
<g >
<title>preprocess_targetlist (41,342,837,335 samples, 0.44%)</title><rect x="920.1" y="485" width="5.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="923.08" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,873,122,891 samples, 0.02%)</title><rect x="382.2" y="197" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="385.18" y="207.5" ></text>
</g>
<g >
<title>set_baserel_size_estimates (118,236,449,128 samples, 1.25%)</title><rect x="1028.2" y="405" width="14.7" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1031.15" y="415.5" ></text>
</g>
<g >
<title>hash_bytes (2,173,969,297 samples, 0.02%)</title><rect x="1068.4" y="389" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1071.40" y="399.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (12,902,695,064 samples, 0.14%)</title><rect x="1065.2" y="453" width="1.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1068.15" y="463.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (832,734,647 samples, 0.01%)</title><rect x="1148.7" y="677" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="1151.67" y="687.5" ></text>
</g>
<g >
<title>RelationPutHeapTuple (31,612,839,450 samples, 0.33%)</title><rect x="370.2" y="357" width="4.0" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="373.22" y="367.5" ></text>
</g>
<g >
<title>ReadBuffer_common (20,377,094,062 samples, 0.22%)</title><rect x="399.2" y="357" width="2.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="402.19" y="367.5" ></text>
</g>
<g >
<title>hash_bytes (3,730,371,931 samples, 0.04%)</title><rect x="1067.8" y="373" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1070.79" y="383.5" ></text>
</g>
<g >
<title>AllocSetFree (1,096,138,663 samples, 0.01%)</title><rect x="860.6" y="485" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="863.57" y="495.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (1,395,180,249 samples, 0.01%)</title><rect x="463.1" y="485" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="466.11" y="495.5" ></text>
</g>
<g >
<title>IsQueryIdEnabled (1,009,384,549 samples, 0.01%)</title><rect x="798.5" y="549" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="801.53" y="559.5" ></text>
</g>
<g >
<title>palloc (1,353,926,140 samples, 0.01%)</title><rect x="966.6" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="969.55" y="351.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,319,632,706 samples, 0.02%)</title><rect x="1052.8" y="373" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1055.81" y="383.5" ></text>
</g>
<g >
<title>int4hashfast (865,147,581 samples, 0.01%)</title><rect x="436.3" y="293" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="439.31" y="303.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,018,738,034 samples, 0.01%)</title><rect x="232.0" y="469" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="235.01" y="479.5" ></text>
</g>
<g >
<title>palloc (1,241,574,374 samples, 0.01%)</title><rect x="882.1" y="485" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="885.05" y="495.5" ></text>
</g>
<g >
<title>update_curr (6,550,188,136 samples, 0.07%)</title><rect x="479.9" y="213" width="0.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="482.94" y="223.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,182,937,326 samples, 0.07%)</title><rect x="956.1" y="341" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="959.09" y="351.5" ></text>
</g>
<g >
<title>TransactionBlockStatusCode (2,112,935,424 samples, 0.02%)</title><rect x="186.4" y="581" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="189.42" y="591.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (1,116,701,077 samples, 0.01%)</title><rect x="438.9" y="341" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="441.92" y="351.5" ></text>
</g>
<g >
<title>pfree (1,284,277,633 samples, 0.01%)</title><rect x="860.6" y="501" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="863.56" y="511.5" ></text>
</g>
<g >
<title>bms_del_member (2,799,737,983 samples, 0.03%)</title><rect x="995.6" y="357" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="998.60" y="367.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (1,090,639,102 samples, 0.01%)</title><rect x="308.3" y="245" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="311.28" y="255.5" ></text>
</g>
<g >
<title>pgstat_assert_is_up (1,503,457,719 samples, 0.02%)</title><rect x="1170.3" y="757" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1173.30" y="767.5" ></text>
</g>
<g >
<title>contain_volatile_functions (14,390,307,810 samples, 0.15%)</title><rect x="959.7" y="389" width="1.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="962.65" y="399.5" ></text>
</g>
<g >
<title>hash_seq_init (1,254,122,740 samples, 0.01%)</title><rect x="464.9" y="501" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="467.95" y="511.5" ></text>
</g>
<g >
<title>__alloc_skb (28,043,432,861 samples, 0.30%)</title><rect x="194.0" y="373" width="3.5" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="197.01" y="383.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (3,099,312,016 samples, 0.03%)</title><rect x="161.4" y="293" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="164.45" y="303.5" ></text>
</g>
<g >
<title>ReadBufferExtended (28,642,624,945 samples, 0.30%)</title><rect x="297.3" y="229" width="3.5" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="300.26" y="239.5" ></text>
</g>
<g >
<title>scanRTEForColumn (4,510,394,038 samples, 0.05%)</title><rect x="856.1" y="357" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="859.12" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (67,910,376,964 samples, 0.72%)</title><rect x="475.6" y="405" width="8.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="478.57" y="415.5" ></text>
</g>
<g >
<title>palloc (1,721,193,023 samples, 0.02%)</title><rect x="449.3" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="452.32" y="431.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,152,010,878 samples, 0.01%)</title><rect x="432.1" y="341" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="435.15" y="351.5" ></text>
</g>
<g >
<title>ReleaseSysCache (925,980,135 samples, 0.01%)</title><rect x="1046.0" y="421" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1048.99" y="431.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (8,185,054,479 samples, 0.09%)</title><rect x="842.8" y="421" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="845.78" y="431.5" ></text>
</g>
<g >
<title>IsSharedRelation (961,748,983 samples, 0.01%)</title><rect x="822.1" y="373" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="825.13" y="383.5" ></text>
</g>
<g >
<title>update_rq_clock_task (1,820,436,576 samples, 0.02%)</title><rect x="171.8" y="341" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="174.78" y="351.5" ></text>
</g>
<g >
<title>makeVar (4,238,120,949 samples, 0.04%)</title><rect x="839.7" y="325" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="842.69" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,050,202,787 samples, 0.01%)</title><rect x="296.8" y="181" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="299.84" y="191.5" ></text>
</g>
<g >
<title>exprType (1,306,598,250 samples, 0.01%)</title><rect x="971.8" y="389" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="974.84" y="399.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,826,006,787 samples, 0.03%)</title><rect x="804.3" y="389" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="807.26" y="399.5" ></text>
</g>
<g >
<title>palloc0 (1,392,446,115 samples, 0.01%)</title><rect x="976.6" y="405" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="979.63" y="415.5" ></text>
</g>
<g >
<title>exprSetCollation (1,581,019,860 samples, 0.02%)</title><rect x="805.7" y="357" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="808.67" y="367.5" ></text>
</g>
<g >
<title>GrantLockLocal (1,196,112,337 samples, 0.01%)</title><rect x="440.4" y="357" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="443.36" y="367.5" ></text>
</g>
<g >
<title>get_index_paths (209,048,791,762 samples, 2.22%)</title><rect x="992.7" y="389" width="26.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="995.74" y="399.5" >g..</text>
</g>
<g >
<title>relation_excluded_by_constraints (2,114,880,286 samples, 0.02%)</title><rect x="1027.4" y="421" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1030.40" y="431.5" ></text>
</g>
<g >
<title>setNamespaceLateralState (1,148,446,640 samples, 0.01%)</title><rect x="831.2" y="469" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="834.22" y="479.5" ></text>
</g>
<g >
<title>new_list (3,588,930,733 samples, 0.04%)</title><rect x="890.6" y="357" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="893.64" y="367.5" ></text>
</g>
<g >
<title>uint32_hash (1,084,099,088 samples, 0.01%)</title><rect x="863.1" y="453" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="866.09" y="463.5" ></text>
</g>
<g >
<title>palloc (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="421" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1161.36" y="431.5" ></text>
</g>
<g >
<title>heap_form_tuple (20,010,634,338 samples, 0.21%)</title><rect x="389.1" y="373" width="2.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="392.13" y="383.5" ></text>
</g>
<g >
<title>assign_query_collations_walker (51,851,117,851 samples, 0.55%)</title><rect x="802.1" y="453" width="6.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="805.05" y="463.5" ></text>
</g>
<g >
<title>RewriteQuery (1,177,632,887 samples, 0.01%)</title><rect x="92.3" y="757" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="95.30" y="767.5" ></text>
</g>
<g >
<title>hash_search (5,038,581,927 samples, 0.05%)</title><rect x="445.1" y="357" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="448.10" y="367.5" ></text>
</g>
<g >
<title>_bt_checkkeys (4,711,355,390 samples, 0.05%)</title><rect x="124.6" y="245" width="0.6" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="127.60" y="255.5" ></text>
</g>
<g >
<title>makeVar (4,115,783,126 samples, 0.04%)</title><rect x="854.8" y="357" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="857.79" y="367.5" ></text>
</g>
<g >
<title>new_list (3,191,104,075 samples, 0.03%)</title><rect x="1115.3" y="725" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1118.31" y="735.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,781,918,362 samples, 0.02%)</title><rect x="350.1" y="261" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="353.07" y="271.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,374,137,660 samples, 0.01%)</title><rect x="1072.7" y="565" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1075.68" y="575.5" ></text>
</g>
<g >
<title>hash_bytes (2,265,032,465 samples, 0.02%)</title><rect x="942.1" y="293" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="945.06" y="303.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,970,671,409 samples, 0.03%)</title><rect x="791.3" y="469" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="794.28" y="479.5" ></text>
</g>
<g >
<title>MemoryContextReset (8,127,661,512 samples, 0.09%)</title><rect x="459.6" y="501" width="1.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="462.65" y="511.5" ></text>
</g>
<g >
<title>lappend (4,251,657,302 samples, 0.05%)</title><rect x="809.9" y="453" width="0.5" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="812.88" y="463.5" ></text>
</g>
<g >
<title>core_yyalloc (3,304,972,244 samples, 0.04%)</title><rect x="871.8" y="517" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="874.81" y="527.5" ></text>
</g>
<g >
<title>perf_ctx_unlock (1,018,016,787 samples, 0.01%)</title><rect x="161.9" y="309" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="164.90" y="319.5" ></text>
</g>
<g >
<title>_bt_check_compare (4,418,702,744 samples, 0.05%)</title><rect x="122.6" y="245" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="125.63" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (870,022,115 samples, 0.01%)</title><rect x="1048.3" y="453" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1051.35" y="463.5" ></text>
</g>
<g >
<title>hash_search (3,340,826,456 samples, 0.04%)</title><rect x="990.8" y="325" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="993.81" y="335.5" ></text>
</g>
<g >
<title>ExecModifyTable (1,098,332,378,060 samples, 11.64%)</title><rect x="264.4" y="453" width="137.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="267.45" y="463.5" >ExecModifyTable</text>
</g>
<g >
<title>__pick_next_task (1,896,845,424 samples, 0.02%)</title><rect x="206.5" y="405" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="209.48" y="415.5" ></text>
</g>
<g >
<title>SimpleLruReadPage (6,665,436,735 samples, 0.07%)</title><rect x="471.6" y="437" width="0.9" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="474.63" y="447.5" ></text>
</g>
<g >
<title>expand_function_arguments (836,763,207 samples, 0.01%)</title><rect x="1057.2" y="421" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1060.21" y="431.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,362,804,834 samples, 0.01%)</title><rect x="407.3" y="405" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="410.26" y="415.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,768,842,470 samples, 0.02%)</title><rect x="1143.4" y="757" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1146.43" y="767.5" ></text>
</g>
<g >
<title>list_nth (3,637,585,295 samples, 0.04%)</title><rect x="1156.5" y="757" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1159.52" y="767.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,263,599,923 samples, 0.05%)</title><rect x="1047.7" y="405" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1050.65" y="415.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="533" width="2.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="85.62" y="543.5" ></text>
</g>
<g >
<title>pull_varnos_walker (4,444,386,999 samples, 0.05%)</title><rect x="968.3" y="341" width="0.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="971.29" y="351.5" ></text>
</g>
<g >
<title>pick_task_fair (2,597,183,538 samples, 0.03%)</title><rect x="159.5" y="309" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="162.51" y="319.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (16,078,703,874 samples, 0.17%)</title><rect x="901.1" y="405" width="2.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="904.14" y="415.5" ></text>
</g>
<g >
<title>get_opfamily_member (11,215,134,483 samples, 0.12%)</title><rect x="1009.3" y="293" width="1.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1012.28" y="303.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (1,472,568,058 samples, 0.02%)</title><rect x="395.0" y="341" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="398.02" y="351.5" ></text>
</g>
<g >
<title>wipe_mem (4,005,677,561 samples, 0.04%)</title><rect x="261.6" y="405" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="264.57" y="415.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,136,310,343 samples, 0.03%)</title><rect x="973.6" y="341" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="976.58" y="351.5" ></text>
</g>
<g >
<title>tag_hash (2,675,415,602 samples, 0.03%)</title><rect x="237.4" y="389" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="240.41" y="399.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (3,076,016,441 samples, 0.03%)</title><rect x="1031.2" y="229" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1034.24" y="239.5" ></text>
</g>
<g >
<title>preprocess_expression (25,847,967,100 samples, 0.27%)</title><rect x="1055.2" y="485" width="3.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1058.19" y="495.5" ></text>
</g>
<g >
<title>ExecScan (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="453" width="2.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="85.62" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,268,577,577 samples, 0.02%)</title><rect x="111.0" y="741" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="114.02" y="751.5" ></text>
</g>
<g >
<title>current_time (2,348,237,672 samples, 0.02%)</title><rect x="495.8" y="341" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="498.76" y="351.5" ></text>
</g>
<g >
<title>palloc (1,358,159,681 samples, 0.01%)</title><rect x="415.2" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="418.16" y="351.5" ></text>
</g>
<g >
<title>bms_union (2,730,084,248 samples, 0.03%)</title><rect x="957.9" y="453" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="960.86" y="463.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (883,244,281 samples, 0.01%)</title><rect x="860.9" y="453" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="863.89" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,418,667,084 samples, 0.02%)</title><rect x="354.7" y="181" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="357.65" y="191.5" ></text>
</g>
<g >
<title>heap_update (342,205,564,461 samples, 3.63%)</title><rect x="345.5" y="373" width="42.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="348.55" y="383.5" >heap..</text>
</g>
<g >
<title>bms_get_singleton_member (1,592,137,533 samples, 0.02%)</title><rect x="982.1" y="421" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="985.09" y="431.5" ></text>
</g>
<g >
<title>add_base_clause_to_rel (6,101,691,128 samples, 0.06%)</title><rect x="981.3" y="421" width="0.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="984.33" y="431.5" ></text>
</g>
<g >
<title>transformExpr (104,198,851,795 samples, 1.10%)</title><rect x="843.8" y="469" width="13.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="846.82" y="479.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (7,218,038,079 samples, 0.08%)</title><rect x="956.0" y="357" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="958.97" y="367.5" ></text>
</g>
<g >
<title>list_insert_nth (2,878,661,285 samples, 0.03%)</title><rect x="986.1" y="389" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="989.14" y="399.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="501" width="1.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="125.45" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (17,280,117,528 samples, 0.18%)</title><rect x="1049.8" y="469" width="2.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1052.83" y="479.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (4,652,428,536 samples, 0.05%)</title><rect x="29.2" y="757" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="32.21" y="767.5" ></text>
</g>
<g >
<title>FreeQueryDesc (6,182,061,015 samples, 0.07%)</title><rect x="452.7" y="533" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="455.70" y="543.5" ></text>
</g>
<g >
<title>_bt_freestack (1,932,420,812 samples, 0.02%)</title><rect x="321.5" y="261" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="324.54" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,958,358,170 samples, 0.02%)</title><rect x="396.2" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="399.20" y="383.5" ></text>
</g>
<g >
<title>newNode (1,942,518,643 samples, 0.02%)</title><rect x="1118.9" y="725" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1121.87" y="735.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,733,357,629 samples, 0.02%)</title><rect x="433.5" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="436.46" y="383.5" ></text>
</g>
<g >
<title>PinBufferForBlock (34,075,111,302 samples, 0.36%)</title><rect x="94.8" y="213" width="4.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="97.78" y="223.5" ></text>
</g>
<g >
<title>mod_memcg_state (877,359,169 samples, 0.01%)</title><rect x="195.4" y="277" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="198.43" y="287.5" ></text>
</g>
<g >
<title>sched_tick (1,130,685,344 samples, 0.01%)</title><rect x="750.5" y="405" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="753.53" y="415.5" ></text>
</g>
<g >
<title>detoast_attr (6,754,496,291 samples, 0.07%)</title><rect x="1008.4" y="261" width="0.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1011.43" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (6,482,171,240 samples, 0.07%)</title><rect x="912.1" y="437" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="915.08" y="447.5" ></text>
</g>
<g >
<title>GetSnapshotData (2,357,980,657 samples, 0.02%)</title><rect x="49.5" y="757" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="52.54" y="767.5" ></text>
</g>
<g >
<title>hash_search (3,254,680,051 samples, 0.03%)</title><rect x="948.4" y="341" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="951.41" y="351.5" ></text>
</g>
<g >
<title>ReserveXLogInsertLocation (5,707,685,725 samples, 0.06%)</title><rect x="380.4" y="309" width="0.7" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="383.41" y="319.5" ></text>
</g>
<g >
<title>try_to_block_task.constprop.0.isra.0 (48,404,692,536 samples, 0.51%)</title><rect x="165.6" y="341" width="6.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="168.61" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,049,368,021 samples, 0.01%)</title><rect x="919.3" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="922.35" y="431.5" ></text>
</g>
<g >
<title>ShowTransactionState (1,202,660,821 samples, 0.01%)</title><rect x="1077.7" y="533" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1080.66" y="543.5" ></text>
</g>
<g >
<title>BufferAlloc (20,131,167,521 samples, 0.21%)</title><rect x="298.0" y="149" width="2.5" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="300.97" y="159.5" ></text>
</g>
<g >
<title>pfree (3,123,720,234 samples, 0.03%)</title><rect x="429.0" y="405" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="432.05" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,351,697,495 samples, 0.09%)</title><rect x="936.9" y="213" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="939.89" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,105,949,671 samples, 0.01%)</title><rect x="1166.5" y="757" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1169.48" y="767.5" ></text>
</g>
<g >
<title>palloc0 (4,315,602,119 samples, 0.05%)</title><rect x="893.4" y="437" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="896.41" y="447.5" ></text>
</g>
<g >
<title>has_unique_index (1,735,540,982 samples, 0.02%)</title><rect x="1036.0" y="229" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1038.97" y="239.5" ></text>
</g>
<g >
<title>create_modifytable_path (12,970,281,015 samples, 0.14%)</title><rect x="911.3" y="485" width="1.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="914.28" y="495.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (5,128,758,488 samples, 0.05%)</title><rect x="1014.7" y="261" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1017.71" y="271.5" ></text>
</g>
<g >
<title>MemoryContextTraverseNext (8,813,221,673 samples, 0.09%)</title><rect x="796.6" y="549" width="1.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="799.58" y="559.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,281,108,790 samples, 0.01%)</title><rect x="412.7" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="415.67" y="431.5" ></text>
</g>
<g >
<title>palloc (1,217,575,699 samples, 0.01%)</title><rect x="1163.2" y="741" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1166.15" y="751.5" ></text>
</g>
<g >
<title>CheckForSerializableConflictIn (1,374,138,209 samples, 0.01%)</title><rect x="348.1" y="357" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="351.11" y="367.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,054,776,683 samples, 0.01%)</title><rect x="428.9" y="373" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="431.86" y="383.5" ></text>
</g>
<g >
<title>TransactionIdSetPageStatusInternal (12,561,757,201 samples, 0.13%)</title><rect x="471.5" y="453" width="1.6" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="474.49" y="463.5" ></text>
</g>
<g >
<title>ReleaseCatCache (2,095,513,726 samples, 0.02%)</title><rect x="822.8" y="341" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="825.81" y="351.5" ></text>
</g>
<g >
<title>expr_setup_walker (2,835,113,011 samples, 0.03%)</title><rect x="430.7" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="433.65" y="367.5" ></text>
</g>
<g >
<title>LWLockRelease (1,453,997,992 samples, 0.02%)</title><rect x="508.5" y="421" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="511.47" y="431.5" ></text>
</g>
<g >
<title>transformWhereClause (116,152,316,010 samples, 1.23%)</title><rect x="842.3" y="485" width="14.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="845.33" y="495.5" ></text>
</g>
<g >
<title>UnregisterSnapshotNoOwner (924,273,424 samples, 0.01%)</title><rect x="262.6" y="469" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="265.55" y="479.5" ></text>
</g>
<g >
<title>BufferGetBlock (971,778,546 samples, 0.01%)</title><rect x="378.2" y="309" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="381.19" y="319.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (972,276,427 samples, 0.01%)</title><rect x="1078.6" y="533" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1081.62" y="543.5" ></text>
</g>
<g >
<title>addNSItemToQuery (6,614,847,161 samples, 0.07%)</title><rect x="809.8" y="469" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="812.80" y="479.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (62,662,978,506 samples, 0.66%)</title><rect x="197.9" y="389" width="7.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="200.85" y="399.5" ></text>
</g>
<g >
<title>relation_open (14,823,230,610 samples, 0.16%)</title><rect x="394.0" y="373" width="1.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="397.05" y="383.5" ></text>
</g>
<g >
<title>addRTEPermissionInfo (5,671,514,976 samples, 0.06%)</title><rect x="811.5" y="453" width="0.8" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="814.54" y="463.5" ></text>
</g>
<g >
<title>assign_collations_walker (7,685,729,243 samples, 0.08%)</title><rect x="806.3" y="325" width="0.9" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="809.27" y="335.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,104,882,793 samples, 0.01%)</title><rect x="890.9" y="309" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="893.87" y="319.5" ></text>
</g>
<g >
<title>hash_search (4,323,209,690 samples, 0.05%)</title><rect x="811.0" y="421" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="813.99" y="431.5" ></text>
</g>
<g >
<title>get_row_security_policies (9,907,212,856 samples, 0.10%)</title><rect x="863.8" y="517" width="1.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="866.83" y="527.5" ></text>
</g>
<g >
<title>palloc0 (1,980,840,689 samples, 0.02%)</title><rect x="439.1" y="373" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="442.08" y="383.5" ></text>
</g>
<g >
<title>PageIsNew (2,623,661,081 samples, 0.03%)</title><rect x="335.9" y="197" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="338.89" y="207.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,263,413,588 samples, 0.01%)</title><rect x="1120.8" y="677" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1123.84" y="687.5" ></text>
</g>
<g >
<title>palloc (1,303,654,371 samples, 0.01%)</title><rect x="1071.7" y="453" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1074.74" y="463.5" ></text>
</g>
<g >
<title>_bt_search (8,437,718,514 samples, 0.09%)</title><rect x="123.2" y="293" width="1.0" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="126.18" y="303.5" ></text>
</g>
<g >
<title>reduce_unique_semijoins (993,350,630 samples, 0.01%)</title><rect x="1043.6" y="469" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1046.55" y="479.5" ></text>
</g>
<g >
<title>ProcArrayEndTransactionInternal (5,892,016,812 samples, 0.06%)</title><rect x="466.8" y="501" width="0.7" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="469.80" y="511.5" ></text>
</g>
<g >
<title>planner (2,826,087,191 samples, 0.03%)</title><rect x="124.2" y="581" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="127.24" y="591.5" ></text>
</g>
<g >
<title>palloc (1,287,818,056 samples, 0.01%)</title><rect x="871.4" y="501" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="874.35" y="511.5" ></text>
</g>
<g >
<title>VirtualXactLockTableCleanup (4,092,047,432 samples, 0.04%)</title><rect x="522.4" y="453" width="0.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="525.40" y="463.5" ></text>
</g>
<g >
<title>hash_search (11,104,747,293 samples, 0.12%)</title><rect x="865.9" y="437" width="1.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="868.92" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,051,064,298 samples, 0.01%)</title><rect x="813.0" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="816.01" y="431.5" ></text>
</g>
<g >
<title>palloc (2,892,858,887 samples, 0.03%)</title><rect x="992.3" y="325" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="995.30" y="335.5" ></text>
</g>
<g >
<title>ExecInterpExpr (25,246,091,352 samples, 0.27%)</title><rect x="286.0" y="293" width="3.2" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="289.03" y="303.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,239,914,350 samples, 0.02%)</title><rect x="897.0" y="453" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="899.97" y="463.5" ></text>
</g>
<g >
<title>pq_beginmessage (3,088,931,494 samples, 0.03%)</title><rect x="186.7" y="581" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="189.74" y="591.5" ></text>
</g>
<g >
<title>ExecReadyExpr (5,990,320,247 samples, 0.06%)</title><rect x="421.7" y="357" width="0.7" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="424.68" y="367.5" ></text>
</g>
<g >
<title>StartTransactionCommand (36,991,165,912 samples, 0.39%)</title><rect x="1074.1" y="565" width="4.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1077.13" y="575.5" ></text>
</g>
<g >
<title>AllocSetCheck (1,654,521,489 samples, 0.02%)</title><rect x="223.2" y="517" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="226.20" y="527.5" ></text>
</g>
<g >
<title>BufferAlloc (10,962,807,051 samples, 0.12%)</title><rect x="367.0" y="261" width="1.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="369.96" y="271.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (9,838,958,621 samples, 0.10%)</title><rect x="806.0" y="357" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="809.02" y="367.5" ></text>
</g>
<g >
<title>tag_hash (3,435,424,339 samples, 0.04%)</title><rect x="444.7" y="325" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="447.66" y="335.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,920,092,365 samples, 0.02%)</title><rect x="843.5" y="373" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="846.54" y="383.5" ></text>
</g>
<g >
<title>tag_hash (2,564,224,179 samples, 0.03%)</title><rect x="862.3" y="437" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="865.31" y="447.5" ></text>
</g>
<g >
<title>smgrnblocks (1,236,053,504 samples, 0.01%)</title><rect x="1183.4" y="757" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1186.43" y="767.5" ></text>
</g>
<g >
<title>futex_wake_mark (1,320,591,461 samples, 0.01%)</title><rect x="485.6" y="325" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="488.58" y="335.5" ></text>
</g>
<g >
<title>ExtractReplicaIdentity (2,802,632,669 samples, 0.03%)</title><rect x="46.8" y="757" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="49.78" y="767.5" ></text>
</g>
<g >
<title>futex_wait_setup (2,794,594,531 samples, 0.03%)</title><rect x="351.0" y="149" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="354.02" y="159.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (858,965,146 samples, 0.01%)</title><rect x="916.8" y="325" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="919.83" y="335.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,123,994,504 samples, 0.01%)</title><rect x="1134.0" y="613" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1136.99" y="623.5" ></text>
</g>
<g >
<title>InitBufferTag (804,105,453 samples, 0.01%)</title><rect x="299.3" y="133" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="302.32" y="143.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,293,287,512 samples, 0.01%)</title><rect x="398.5" y="357" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="401.49" y="367.5" ></text>
</g>
<g >
<title>IndexNext (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="357" width="1.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="127.59" y="367.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (1,663,654,592 samples, 0.02%)</title><rect x="198.8" y="309" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="201.82" y="319.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (3,377,348,041 samples, 0.04%)</title><rect x="503.3" y="437" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="506.30" y="447.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,175,631,341 samples, 0.03%)</title><rect x="296.6" y="245" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="299.59" y="255.5" ></text>
</g>
<g >
<title>is_andclause (2,023,658,457 samples, 0.02%)</title><rect x="1151.8" y="757" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1154.83" y="767.5" ></text>
</g>
<g >
<title>XLogInsert (22,623,180,134 samples, 0.24%)</title><rect x="506.5" y="485" width="2.8" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="509.48" y="495.5" ></text>
</g>
<g >
<title>RelationGetIndexAttOptions (2,539,776,563 samples, 0.03%)</title><rect x="930.5" y="405" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="933.55" y="415.5" ></text>
</g>
<g >
<title>BuildIndexInfo (12,348,862,502 samples, 0.13%)</title><rect x="392.0" y="389" width="1.5" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="395.00" y="399.5" ></text>
</g>
<g >
<title>table_close (1,510,599,442 samples, 0.02%)</title><rect x="1067.1" y="485" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1070.07" y="495.5" ></text>
</g>
<g >
<title>preprocess_rowmarks (949,485,864 samples, 0.01%)</title><rect x="1173.4" y="757" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1176.41" y="767.5" ></text>
</g>
<g >
<title>_copyVar (8,237,428,108 samples, 0.09%)</title><rect x="952.6" y="421" width="1.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="955.60" y="431.5" ></text>
</g>
<g >
<title>getRTEPermissionInfo (1,433,553,415 samples, 0.02%)</title><rect x="864.9" y="501" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="867.88" y="511.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4,741,822,835 samples, 0.05%)</title><rect x="751.1" y="469" width="0.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="754.11" y="479.5" ></text>
</g>
<g >
<title>FreeExecutorState (101,518,613,164 samples, 1.08%)</title><rect x="249.7" y="501" width="12.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="252.66" y="511.5" ></text>
</g>
<g >
<title>perf_ctx_enable (3,867,902,914 samples, 0.04%)</title><rect x="161.4" y="309" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="164.42" y="319.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (985,087,900 samples, 0.01%)</title><rect x="217.0" y="533" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="219.99" y="543.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,369,923,072 samples, 0.01%)</title><rect x="855.1" y="309" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="858.13" y="319.5" ></text>
</g>
<g >
<title>tag_hash (10,950,380,825 samples, 0.12%)</title><rect x="836.8" y="325" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="839.85" y="335.5" ></text>
</g>
<g >
<title>standard_qp_callback (5,521,844,196 samples, 0.06%)</title><rect x="1044.8" y="469" width="0.7" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1047.83" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (964,630,174 samples, 0.01%)</title><rect x="467.7" y="421" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="470.66" y="431.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (870,264,916 samples, 0.01%)</title><rect x="83.9" y="165" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="86.93" y="175.5" ></text>
</g>
<g >
<title>ExecEndNode (71,359,982,665 samples, 0.76%)</title><rect x="238.0" y="485" width="8.9" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="240.97" y="495.5" ></text>
</g>
<g >
<title>hash_bytes (2,646,927,184 samples, 0.03%)</title><rect x="399.8" y="229" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="402.80" y="239.5" ></text>
</g>
<g >
<title>PinBuffer (2,768,815,731 samples, 0.03%)</title><rect x="400.8" y="277" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="403.84" y="287.5" ></text>
</g>
<g >
<title>ReleaseCatCache (933,231,064 samples, 0.01%)</title><rect x="834.5" y="357" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="837.48" y="367.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,318,356,473 samples, 0.02%)</title><rect x="123.5" y="229" width="0.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="126.54" y="239.5" ></text>
</g>
<g >
<title>func_volatile (4,701,075,211 samples, 0.05%)</title><rect x="960.3" y="309" width="0.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="963.29" y="319.5" ></text>
</g>
<g >
<title>LWLockAcquire (15,399,460,476 samples, 0.16%)</title><rect x="349.6" y="309" width="2.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="352.63" y="319.5" ></text>
</g>
<g >
<title>new_list (2,313,054,196 samples, 0.02%)</title><rect x="944.2" y="389" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="947.19" y="399.5" ></text>
</g>
<g >
<title>_bt_check_compare (2,079,231,909 samples, 0.02%)</title><rect x="83.0" y="277" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="85.96" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,237,184,783 samples, 0.01%)</title><rect x="448.4" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="451.36" y="431.5" ></text>
</g>
<g >
<title>MemoryContextDelete (77,529,796,318 samples, 0.82%)</title><rect x="252.5" y="485" width="9.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="255.54" y="495.5" ></text>
</g>
<g >
<title>AllocSetCheck (1,521,920,550 samples, 0.02%)</title><rect x="223.7" y="485" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="226.70" y="495.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetTupleDesc (1,846,908,674 samples, 0.02%)</title><rect x="247.7" y="453" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="250.70" y="463.5" ></text>
</g>
<g >
<title>get_futex_key (1,856,960,696 samples, 0.02%)</title><rect x="351.1" y="133" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="354.14" y="143.5" ></text>
</g>
<g >
<title>btcanreturn (1,190,207,448 samples, 0.01%)</title><rect x="1123.7" y="757" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1126.71" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,225,420,212 samples, 0.01%)</title><rect x="272.1" y="357" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="275.13" y="367.5" ></text>
</g>
<g >
<title>get_tablespace (2,896,459,360 samples, 0.03%)</title><rect x="1016.6" y="309" width="0.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1019.61" y="319.5" ></text>
</g>
<g >
<title>unix_write_space (5,159,934,901 samples, 0.05%)</title><rect x="180.7" y="309" width="0.7" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="183.72" y="319.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,133,579,443 samples, 0.03%)</title><rect x="125.6" y="197" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="128.60" y="207.5" ></text>
</g>
<g >
<title>ExecInitNode (341,754,031,610 samples, 3.62%)</title><rect x="408.8" y="485" width="42.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="411.81" y="495.5" >Exec..</text>
</g>
<g >
<title>BufferGetBlockNumber (1,064,161,565 samples, 0.01%)</title><rect x="297.7" y="149" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="300.67" y="159.5" ></text>
</g>
<g >
<title>AfterTriggerBeginXact (1,849,911,752 samples, 0.02%)</title><rect x="1074.7" y="533" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1077.70" y="543.5" ></text>
</g>
<g >
<title>find_relation_notnullatts (4,029,086,504 samples, 0.04%)</title><rect x="938.6" y="405" width="0.5" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="941.62" y="415.5" ></text>
</g>
<g >
<title>hash_bytes (1,981,258,632 samples, 0.02%)</title><rect x="924.4" y="373" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="927.36" y="383.5" ></text>
</g>
<g >
<title>ktime_get_coarse_real_ts64_mg (1,570,050,883 samples, 0.02%)</title><rect x="495.9" y="325" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="498.85" y="335.5" ></text>
</g>
<g >
<title>list_free_private (1,934,373,407 samples, 0.02%)</title><rect x="993.9" y="325" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="996.87" y="335.5" ></text>
</g>
<g >
<title>LWLockAcquire (6,215,478,308 samples, 0.07%)</title><rect x="517.6" y="453" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="520.65" y="463.5" ></text>
</g>
<g >
<title>lappend (2,338,961,378 samples, 0.02%)</title><rect x="933.7" y="389" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="936.72" y="399.5" ></text>
</g>
<g >
<title>TransactionIdGetStatus (9,470,816,659 samples, 0.10%)</title><rect x="306.7" y="181" width="1.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="309.70" y="191.5" ></text>
</g>
<g >
<title>AllocSetAlloc (871,983,677 samples, 0.01%)</title><rect x="995.4" y="309" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="998.40" y="319.5" ></text>
</g>
<g >
<title>log@@GLIBC_2.29 (2,559,937,503 samples, 0.03%)</title><rect x="1015.7" y="309" width="0.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1018.74" y="319.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,277,505,605 samples, 0.01%)</title><rect x="407.3" y="389" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="410.27" y="399.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (3,508,847,124 samples, 0.04%)</title><rect x="510.2" y="517" width="0.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="513.22" y="527.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (1,646,287,004 samples, 0.02%)</title><rect x="127.1" y="757" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="130.09" y="767.5" ></text>
</g>
<g >
<title>ExecProcNode (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="501" width="2.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="85.62" y="511.5" ></text>
</g>
<g >
<title>tag_hash (2,176,304,616 samples, 0.02%)</title><rect x="440.8" y="341" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="443.80" y="351.5" ></text>
</g>
<g >
<title>copyObjectImpl (1,004,604,663 samples, 0.01%)</title><rect x="1129.1" y="757" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="1132.06" y="767.5" ></text>
</g>
<g >
<title>pfree (1,526,540,608 samples, 0.02%)</title><rect x="249.2" y="421" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="252.18" y="431.5" ></text>
</g>
<g >
<title>GetBufferDescriptor (1,222,271,671 samples, 0.01%)</title><rect x="48.1" y="757" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="51.11" y="767.5" ></text>
</g>
<g >
<title>PageRepairFragmentation (2,161,795,325 samples, 0.02%)</title><rect x="1145.4" y="725" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1148.39" y="735.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,387,123,297 samples, 0.01%)</title><rect x="1173.0" y="629" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1176.04" y="639.5" ></text>
</g>
<g >
<title>generic_write_checks (1,756,558,891 samples, 0.02%)</title><rect x="501.1" y="373" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="504.12" y="383.5" ></text>
</g>
<g >
<title>lcons (5,886,266,929 samples, 0.06%)</title><rect x="1115.8" y="725" width="0.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1118.84" y="735.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,328,814,815 samples, 0.01%)</title><rect x="896.8" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="899.76" y="431.5" ></text>
</g>
<g >
<title>tas (2,510,880,214 samples, 0.03%)</title><rect x="491.9" y="437" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="494.91" y="447.5" ></text>
</g>
<g >
<title>_bt_checkkeys (2,079,231,909 samples, 0.02%)</title><rect x="83.0" y="293" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="85.96" y="303.5" ></text>
</g>
<g >
<title>[[vdso]] (1,454,861,327 samples, 0.02%)</title><rect x="1080.0" y="565" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1082.96" y="575.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (8,192,677,773 samples, 0.09%)</title><rect x="430.0" y="405" width="1.0" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="432.99" y="415.5" ></text>
</g>
<g >
<title>element_alloc (9,499,706,893 samples, 0.10%)</title><rect x="1065.5" y="421" width="1.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="1068.54" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,113,537,261 samples, 0.01%)</title><rect x="893.8" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="896.80" y="431.5" ></text>
</g>
<g >
<title>do_futex (3,329,948,638 samples, 0.04%)</title><rect x="351.9" y="181" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="354.94" y="191.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (970,784,478 samples, 0.01%)</title><rect x="1037.8" y="261" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1040.79" y="271.5" ></text>
</g>
<g >
<title>palloc (3,626,800,390 samples, 0.04%)</title><rect x="1164.3" y="757" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1167.27" y="767.5" ></text>
</g>
<g >
<title>ReadyForQuery (168,351,580,218 samples, 1.78%)</title><rect x="186.3" y="597" width="21.0" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="189.29" y="607.5" ></text>
</g>
<g >
<title>LWLockWakeup (35,168,338,782 samples, 0.37%)</title><rect x="484.6" y="453" width="4.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="487.63" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (2,661,524,047 samples, 0.03%)</title><rect x="220.7" y="501" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="223.73" y="511.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,608,161,153 samples, 0.02%)</title><rect x="990.8" y="309" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="993.83" y="319.5" ></text>
</g>
<g >
<title>strlen@plt (1,328,699,547 samples, 0.01%)</title><rect x="852.3" y="357" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="855.31" y="367.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (4,451,602,919 samples, 0.05%)</title><rect x="10.9" y="741" width="0.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="13.88" y="751.5" ></text>
</g>
<g >
<title>eqsel_internal (803,901,079 samples, 0.01%)</title><rect x="126.6" y="293" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="129.56" y="303.5" ></text>
</g>
<g >
<title>ReleaseBuffer (3,301,940,035 samples, 0.03%)</title><rect x="248.7" y="437" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="251.73" y="447.5" ></text>
</g>
<g >
<title>create_projection_plan (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="485" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="127.24" y="495.5" ></text>
</g>
<g >
<title>pairingheap_remove (1,732,407,372 samples, 0.02%)</title><rect x="453.0" y="469" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="456.02" y="479.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (836,678,518 samples, 0.01%)</title><rect x="359.4" y="229" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="362.39" y="239.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,048,900,288 samples, 0.01%)</title><rect x="385.9" y="309" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="388.87" y="319.5" ></text>
</g>
<g >
<title>unix_destruct_scm (10,186,133,157 samples, 0.11%)</title><rect x="180.1" y="341" width="1.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="183.09" y="351.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (1,609,972,744 samples, 0.02%)</title><rect x="1170.1" y="757" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1173.09" y="767.5" ></text>
</g>
<g >
<title>relation_close (1,396,954,186 samples, 0.01%)</title><rect x="1067.1" y="469" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1070.09" y="479.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (1,444,744,149 samples, 0.02%)</title><rect x="354.7" y="213" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="357.65" y="223.5" ></text>
</g>
<g >
<title>ExecutePlan (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="517" width="1.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="127.59" y="527.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,457,075,811 samples, 0.02%)</title><rect x="326.9" y="229" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="329.94" y="239.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (14,984,635,225 samples, 0.16%)</title><rect x="915.9" y="453" width="1.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="918.88" y="463.5" ></text>
</g>
<g >
<title>__update_idle_core (2,241,625,543 samples, 0.02%)</title><rect x="160.9" y="309" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="163.87" y="319.5" ></text>
</g>
<g >
<title>ExecScanFetch (24,335,462,816 samples, 0.26%)</title><rect x="279.2" y="373" width="3.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="282.17" y="383.5" ></text>
</g>
<g >
<title>__libc_start_call_main (17,104,611,586 samples, 0.18%)</title><rect x="122.5" y="757" width="2.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="125.45" y="767.5" ></text>
</g>
<g >
<title>[[vdso]] (1,663,511,226 samples, 0.02%)</title><rect x="110.3" y="757" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="113.32" y="767.5" ></text>
</g>
<g >
<title>AllocSetCheck (100,246,304,761 samples, 1.06%)</title><rect x="134.2" y="549" width="12.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="137.18" y="559.5" ></text>
</g>
<g >
<title>ReleaseBuffer (3,081,811,052 samples, 0.03%)</title><rect x="279.6" y="309" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="282.59" y="319.5" ></text>
</g>
<g >
<title>LockAcquireExtended (6,951,676,941 samples, 0.07%)</title><rect x="440.2" y="373" width="0.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="443.21" y="383.5" ></text>
</g>
<g >
<title>update_load_avg (1,054,897,338 samples, 0.01%)</title><rect x="204.1" y="261" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="207.09" y="271.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (933,711,098 samples, 0.01%)</title><rect x="327.0" y="213" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="330.00" y="223.5" ></text>
</g>
<g >
<title>BufferIsDirty (4,425,299,671 samples, 0.05%)</title><rect x="386.0" y="325" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="389.00" y="335.5" ></text>
</g>
<g >
<title>malloc (2,155,475,505 samples, 0.02%)</title><rect x="277.9" y="325" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="280.87" y="335.5" ></text>
</g>
<g >
<title>_bt_check_natts (15,000,934,313 samples, 0.16%)</title><rect x="332.4" y="213" width="1.9" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="335.44" y="223.5" ></text>
</g>
<g >
<title>palloc0 (1,866,451,494 samples, 0.02%)</title><rect x="996.4" y="309" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="999.35" y="319.5" ></text>
</g>
<g >
<title>newNode (2,519,521,506 samples, 0.03%)</title><rect x="1056.1" y="437" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1059.15" y="447.5" ></text>
</g>
<g >
<title>ExecClearTuple (12,341,404,186 samples, 0.13%)</title><rect x="247.9" y="469" width="1.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="250.93" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,147,617,831 samples, 0.01%)</title><rect x="1147.6" y="565" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1150.60" y="575.5" ></text>
</g>
<g >
<title>pg_database_encoding_max_length (1,082,673,248 samples, 0.01%)</title><rect x="1114.3" y="677" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="1117.27" y="687.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (11,468,854,830 samples, 0.12%)</title><rect x="498.6" y="341" width="1.5" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="501.62" y="351.5" ></text>
</g>
<g >
<title>AllocSetFree (1,144,625,573 samples, 0.01%)</title><rect x="993.9" y="293" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="996.94" y="303.5" ></text>
</g>
<g >
<title>palloc0 (6,491,886,877 samples, 0.07%)</title><rect x="404.7" y="469" width="0.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="407.67" y="479.5" ></text>
</g>
<g >
<title>compute_new_xmax_infomask (1,184,537,371 samples, 0.01%)</title><rect x="1128.6" y="757" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1131.61" y="767.5" ></text>
</g>
<g >
<title>op_in_opfamily (8,668,007,976 samples, 0.09%)</title><rect x="1021.4" y="309" width="1.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1024.43" y="319.5" ></text>
</g>
<g >
<title>TransactionLogFetch (7,147,513,795 samples, 0.08%)</title><rect x="1147.0" y="677" width="0.9" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1149.97" y="687.5" ></text>
</g>
<g >
<title>getRTEPermissionInfo (1,240,892,050 samples, 0.01%)</title><rect x="928.3" y="421" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="931.29" y="431.5" ></text>
</g>
<g >
<title>newNode (3,585,646,691 samples, 0.04%)</title><rect x="1017.3" y="341" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1020.33" y="351.5" ></text>
</g>
<g >
<title>FileSize (14,332,466,525 samples, 0.15%)</title><rect x="936.3" y="245" width="1.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="939.30" y="255.5" ></text>
</g>
<g >
<title>fdatasync (9,598,719,120 samples, 0.10%)</title><rect x="502.0" y="437" width="1.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="504.97" y="447.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3,833,890,938 samples, 0.04%)</title><rect x="390.0" y="341" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="393.04" y="351.5" ></text>
</g>
<g >
<title>standard_ExecutorFinish (3,766,277,403 samples, 0.04%)</title><rect x="262.8" y="517" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="265.76" y="527.5" ></text>
</g>
<g >
<title>heap_getattr (6,280,255,602 samples, 0.07%)</title><rect x="360.7" y="341" width="0.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="363.67" y="351.5" ></text>
</g>
<g >
<title>ProcessClientWriteInterrupt (1,136,787,431 samples, 0.01%)</title><rect x="86.8" y="757" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="89.84" y="767.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,761,296,941 samples, 0.02%)</title><rect x="380.1" y="293" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="383.11" y="303.5" ></text>
</g>
<g >
<title>RelationClose (1,156,094,467 samples, 0.01%)</title><rect x="923.0" y="437" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="925.97" y="447.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (3,020,540,291 samples, 0.03%)</title><rect x="259.9" y="389" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="262.94" y="399.5" ></text>
</g>
<g >
<title>ActiveSnapshotSet (842,984,476 samples, 0.01%)</title><rect x="10.2" y="757" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="13.19" y="767.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (1,190,787,620 samples, 0.01%)</title><rect x="401.5" y="277" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="404.45" y="287.5" ></text>
</g>
<g >
<title>fetch_search_path_array (1,959,135,171 samples, 0.02%)</title><rect x="852.5" y="373" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="855.49" y="383.5" ></text>
</g>
<g >
<title>eval_const_expressions (1,610,408,406 samples, 0.02%)</title><rect x="1133.9" y="757" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1136.93" y="767.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (4,538,166,602 samples, 0.05%)</title><rect x="343.8" y="357" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="346.75" y="367.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,885,294,765 samples, 0.05%)</title><rect x="427.4" y="357" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="430.44" y="367.5" ></text>
</g>
<g >
<title>newNode (7,666,694,798 samples, 0.08%)</title><rect x="914.2" y="469" width="0.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="917.18" y="479.5" ></text>
</g>
<g >
<title>CopySnapshot (4,457,147,137 samples, 0.05%)</title><rect x="456.0" y="549" width="0.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="459.04" y="559.5" ></text>
</g>
<g >
<title>AllocSetAlloc (996,045,220 samples, 0.01%)</title><rect x="976.7" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="979.67" y="399.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (964,090,859 samples, 0.01%)</title><rect x="863.1" y="437" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="866.11" y="447.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,209,463,504 samples, 0.01%)</title><rect x="335.5" y="197" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="338.51" y="207.5" ></text>
</g>
<g >
<title>main (7,629,157,056,107 samples, 80.84%)</title><rect x="130.1" y="709" width="953.9" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="133.07" y="719.5" >main</text>
</g>
<g >
<title>downcase_identifier (11,223,720,720 samples, 0.12%)</title><rect x="1113.0" y="693" width="1.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1116.00" y="703.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (1,111,272,583 samples, 0.01%)</title><rect x="174.0" y="405" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="176.98" y="415.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (850,641,677 samples, 0.01%)</title><rect x="441.0" y="309" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="443.97" y="319.5" ></text>
</g>
<g >
<title>index_beginscan (29,568,279,427 samples, 0.31%)</title><rect x="289.7" y="325" width="3.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="292.65" y="335.5" ></text>
</g>
<g >
<title>LWLockReleaseClearVar (4,829,388,331 samples, 0.05%)</title><rect x="382.0" y="293" width="0.6" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="384.98" y="303.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (4,753,837,963 samples, 0.05%)</title><rect x="273.5" y="373" width="0.6" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="276.55" y="383.5" ></text>
</g>
<g >
<title>palloc0 (3,510,900,795 samples, 0.04%)</title><rect x="1117.2" y="709" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1120.16" y="719.5" ></text>
</g>
<g >
<title>LockAcquireExtended (21,760,064,265 samples, 0.23%)</title><rect x="940.4" y="357" width="2.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="943.43" y="367.5" ></text>
</g>
<g >
<title>get_futex_key (1,652,173,185 samples, 0.02%)</title><rect x="352.1" y="149" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="355.08" y="159.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (2,951,311,824 samples, 0.03%)</title><rect x="1079.9" y="581" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1082.91" y="591.5" ></text>
</g>
<g >
<title>AllocSetCheck (126,145,432,688 samples, 1.34%)</title><rect x="12.9" y="757" width="15.8" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="15.88" y="767.5" ></text>
</g>
<g >
<title>nameeqfast (2,458,987,478 samples, 0.03%)</title><rect x="824.6" y="293" width="0.4" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="827.64" y="303.5" ></text>
</g>
<g >
<title>futex_wake (1,910,122,977 samples, 0.02%)</title><rect x="363.7" y="197" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="366.69" y="207.5" ></text>
</g>
<g >
<title>_bt_metaversion (1,715,351,059 samples, 0.02%)</title><rect x="321.8" y="261" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="324.79" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,434,937,213 samples, 0.02%)</title><rect x="809.3" y="453" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="812.34" y="463.5" ></text>
</g>
<g >
<title>PinBufferForBlock (3,623,504,086 samples, 0.04%)</title><rect x="84.9" y="197" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="87.94" y="207.5" ></text>
</g>
<g >
<title>add_other_rels_to_query (1,130,018,439 samples, 0.01%)</title><rect x="950.3" y="469" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="953.30" y="479.5" ></text>
</g>
<g >
<title>CreateExecutorState (13,082,374,454 samples, 0.14%)</title><rect x="403.8" y="501" width="1.7" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text x="406.84" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (913,417,808 samples, 0.01%)</title><rect x="855.7" y="277" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="858.74" y="287.5" ></text>
</g>
<g >
<title>fdget (2,090,019,978 samples, 0.02%)</title><rect x="172.0" y="405" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="175.01" y="415.5" ></text>
</g>
<g >
<title>set_task_cpu (5,917,242,279 samples, 0.06%)</title><rect x="203.0" y="325" width="0.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="205.99" y="335.5" ></text>
</g>
<g >
<title>getRTEPermissionInfo (1,050,489,500 samples, 0.01%)</title><rect x="408.5" y="469" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="411.53" y="479.5" ></text>
</g>
<g >
<title>is_redundant_with_indexclauses (1,161,781,289 samples, 0.01%)</title><rect x="1016.4" y="309" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="1019.42" y="319.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (5,257,825,510 samples, 0.06%)</title><rect x="1053.9" y="437" width="0.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1056.92" y="447.5" ></text>
</g>
<g >
<title>examine_simple_variable (1,035,330,389 samples, 0.01%)</title><rect x="1134.3" y="757" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1137.34" y="767.5" ></text>
</g>
<g >
<title>my_log2 (1,250,426,822 samples, 0.01%)</title><rect x="1064.4" y="421" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="1067.40" y="431.5" ></text>
</g>
<g >
<title>AllocSetCheck (35,525,567,238 samples, 0.38%)</title><rect x="252.8" y="437" width="4.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="255.76" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (929,973,725 samples, 0.01%)</title><rect x="324.4" y="197" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="327.40" y="207.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="453" width="1.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="125.45" y="463.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (8,634,979,562 samples, 0.09%)</title><rect x="132.7" y="517" width="1.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="135.75" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (7,472,970,946 samples, 0.08%)</title><rect x="292.0" y="213" width="1.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="295.04" y="223.5" ></text>
</g>
<g >
<title>heapam_estimate_rel_size (1,734,917,393 samples, 0.02%)</title><rect x="1149.3" y="757" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1152.26" y="767.5" ></text>
</g>
<g >
<title>LockTagHashCode (3,037,862,860 samples, 0.03%)</title><rect x="354.9" y="277" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="357.95" y="287.5" ></text>
</g>
<g >
<title>RangeVarGetRelidExtended (79,727,208,207 samples, 0.84%)</title><rect x="817.8" y="421" width="9.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="820.76" y="431.5" ></text>
</g>
<g >
<title>lappend (971,583,917 samples, 0.01%)</title><rect x="425.3" y="357" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="428.32" y="367.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (2,949,452,680 samples, 0.03%)</title><rect x="851.0" y="325" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="854.01" y="335.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (856,748,572 samples, 0.01%)</title><rect x="951.7" y="373" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="954.70" y="383.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="453" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1161.36" y="463.5" ></text>
</g>
<g >
<title>BufTableHashCode (2,783,129,438 samples, 0.03%)</title><rect x="99.1" y="181" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="102.09" y="191.5" ></text>
</g>
<g >
<title>pull_varnos (10,096,254,828 samples, 0.11%)</title><rect x="974.0" y="405" width="1.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="976.98" y="415.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitialize (1,382,390,890 samples, 0.01%)</title><rect x="92.9" y="757" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="95.86" y="767.5" ></text>
</g>
<g >
<title>CreateExprContext (10,341,751,928 samples, 0.11%)</title><rect x="269.1" y="405" width="1.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="272.06" y="415.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (8,966,978,825 samples, 0.10%)</title><rect x="455.9" y="581" width="1.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="458.85" y="591.5" ></text>
</g>
<g >
<title>get_expr_width (9,398,703,902 samples, 0.10%)</title><rect x="1047.0" y="469" width="1.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1050.01" y="479.5" ></text>
</g>
<g >
<title>palloc (846,759,695 samples, 0.01%)</title><rect x="1018.7" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1021.73" y="351.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (2,106,573,335 samples, 0.02%)</title><rect x="521.0" y="389" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="523.95" y="399.5" ></text>
</g>
<g >
<title>BufferIsPermanent (1,046,425,900 samples, 0.01%)</title><rect x="1146.5" y="677" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1149.52" y="687.5" ></text>
</g>
<g >
<title>get_timeout_active (867,326,558 samples, 0.01%)</title><rect x="1140.9" y="757" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="1143.91" y="767.5" ></text>
</g>
<g >
<title>ExecutorRun (1,119,437,817,530 samples, 11.86%)</title><rect x="263.2" y="533" width="140.0" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="266.23" y="543.5" >ExecutorRun</text>
</g>
<g >
<title>do_syscall_64 (5,949,844,606 samples, 0.06%)</title><rect x="502.4" y="405" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="505.39" y="415.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableFullXid (2,745,504,067 samples, 0.03%)</title><rect x="303.5" y="213" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="306.49" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,317,334,040 samples, 0.01%)</title><rect x="299.6" y="85" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="302.63" y="95.5" ></text>
</g>
<g >
<title>CheckValidResultRel (10,425,466,962 samples, 0.11%)</title><rect x="411.2" y="453" width="1.3" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="414.17" y="463.5" ></text>
</g>
<g >
<title>table_index_fetch_end (2,633,458,872 samples, 0.03%)</title><rect x="246.5" y="405" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="249.47" y="415.5" ></text>
</g>
<g >
<title>fill_val (1,613,589,929 samples, 0.02%)</title><rect x="391.2" y="341" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="394.18" y="351.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (18,147,718,835 samples, 0.19%)</title><rect x="308.8" y="261" width="2.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="311.83" y="271.5" ></text>
</g>
<g >
<title>sched_balance_update_blocked_averages (1,277,417,898 samples, 0.01%)</title><rect x="750.9" y="453" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="753.91" y="463.5" ></text>
</g>
<g >
<title>wipe_mem (920,414,441 samples, 0.01%)</title><rect x="1189.7" y="757" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1192.72" y="767.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,131,194,266 samples, 0.01%)</title><rect x="845.1" y="373" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="848.14" y="383.5" ></text>
</g>
<g >
<title>avc_has_perm (1,915,821,729 samples, 0.02%)</title><rect x="191.4" y="389" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="194.43" y="399.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,419,531,450 samples, 0.02%)</title><rect x="1117.4" y="677" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1120.37" y="687.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (3,840,584,719 samples, 0.04%)</title><rect x="1013.3" y="293" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1016.30" y="303.5" ></text>
</g>
<g >
<title>WaitEventSetWait (187,191,614,834 samples, 1.98%)</title><rect x="151.7" y="517" width="23.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="154.68" y="527.5" >W..</text>
</g>
<g >
<title>__x64_sys_fdatasync (4,018,137,428 samples, 0.04%)</title><rect x="502.5" y="389" width="0.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="505.49" y="399.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,783,678,206 samples, 0.04%)</title><rect x="803.0" y="357" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="806.02" y="367.5" ></text>
</g>
<g >
<title>update_load_avg (4,505,515,508 samples, 0.05%)</title><rect x="481.0" y="213" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="483.99" y="223.5" ></text>
</g>
<g >
<title>_bt_fix_scankey_strategy (837,088,535 samples, 0.01%)</title><rect x="128.3" y="757" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="131.31" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (20,147,732,696 samples, 0.21%)</title><rect x="356.0" y="261" width="2.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="359.04" y="271.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (9,257,666,902 samples, 0.10%)</title><rect x="162.4" y="309" width="1.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="165.39" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (939,661,627 samples, 0.01%)</title><rect x="213.1" y="549" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="216.09" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (2,899,408,097 samples, 0.03%)</title><rect x="175.8" y="485" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="178.83" y="495.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,123,994,504 samples, 0.01%)</title><rect x="1134.0" y="693" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1136.99" y="703.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (1,109,776,569 samples, 0.01%)</title><rect x="239.6" y="389" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="242.64" y="399.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (51,633,510,269 samples, 0.55%)</title><rect x="177.9" y="405" width="6.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="180.89" y="415.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (972,274,918 samples, 0.01%)</title><rect x="846.5" y="357" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="849.48" y="367.5" ></text>
</g>
<g >
<title>list_make1_impl (4,645,379,596 samples, 0.05%)</title><rect x="1115.1" y="741" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1118.13" y="751.5" ></text>
</g>
<g >
<title>pairingheap_add (885,865,570 samples, 0.01%)</title><rect x="1164.1" y="757" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1167.11" y="767.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (77,118,402,757 samples, 0.82%)</title><rect x="252.6" y="469" width="9.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="255.59" y="479.5" ></text>
</g>
<g >
<title>palloc0 (1,574,989,621 samples, 0.02%)</title><rect x="839.0" y="325" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="842.05" y="335.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (4,007,373,464 samples, 0.04%)</title><rect x="255.5" y="421" width="0.5" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="258.48" y="431.5" ></text>
</g>
<g >
<title>newNode (5,250,551,231 samples, 0.06%)</title><rect x="1120.4" y="725" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1123.39" y="735.5" ></text>
</g>
<g >
<title>MarkBufferDirtyHint (5,668,473,203 samples, 0.06%)</title><rect x="305.8" y="197" width="0.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="308.77" y="207.5" ></text>
</g>
<g >
<title>ExecProcNode (1,319,622,605 samples, 0.01%)</title><rect x="401.8" y="453" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="404.78" y="463.5" ></text>
</g>
<g >
<title>pgstat_report_activity (6,167,338,887 samples, 0.07%)</title><rect x="1079.5" y="597" width="0.8" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1082.53" y="607.5" ></text>
</g>
<g >
<title>wake_up_q (19,690,026,464 samples, 0.21%)</title><rect x="486.3" y="325" width="2.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="489.26" y="335.5" ></text>
</g>
<g >
<title>secure_raw_write (145,435,166,955 samples, 1.54%)</title><rect x="189.1" y="517" width="18.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="192.06" y="527.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (34,932,396,469 samples, 0.37%)</title><rect x="94.7" y="229" width="4.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="97.67" y="239.5" ></text>
</g>
<g >
<title>clauselist_selectivity_ext (76,528,221,821 samples, 0.81%)</title><rect x="1028.6" y="373" width="9.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1031.56" y="383.5" ></text>
</g>
<g >
<title>newNode (4,455,698,483 samples, 0.05%)</title><rect x="967.6" y="373" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="970.63" y="383.5" ></text>
</g>
<g >
<title>table_index_fetch_begin (2,292,925,609 samples, 0.02%)</title><rect x="293.1" y="309" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="296.06" y="319.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (2,621,296,821 samples, 0.03%)</title><rect x="432.4" y="389" width="0.4" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="435.44" y="399.5" ></text>
</g>
<g >
<title>set_rel_width (1,355,712,340 samples, 0.01%)</title><rect x="1182.2" y="757" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1185.18" y="767.5" ></text>
</g>
<g >
<title>castNodeImpl (843,077,691 samples, 0.01%)</title><rect x="906.5" y="501" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="909.48" y="511.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,740,372,251 samples, 0.05%)</title><rect x="901.5" y="389" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="904.49" y="399.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs.isra.0 (3,906,132,072 samples, 0.04%)</title><rect x="173.5" y="389" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="176.49" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,251,622,179 samples, 0.03%)</title><rect x="1085.3" y="757" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1088.30" y="767.5" ></text>
</g>
<g >
<title>attnameAttNum (938,767,713 samples, 0.01%)</title><rect x="1086.8" y="757" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1089.82" y="767.5" ></text>
</g>
<g >
<title>__update_blocked_fair (969,898,211 samples, 0.01%)</title><rect x="750.9" y="437" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="753.92" y="447.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (845,038,045 samples, 0.01%)</title><rect x="445.6" y="309" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="448.62" y="319.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,909,580,848 samples, 0.04%)</title><rect x="407.5" y="389" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="410.54" y="399.5" ></text>
</g>
<g >
<title>ProcessQuery (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="613" width="2.8" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="85.62" y="623.5" ></text>
</g>
<g >
<title>pfree (2,220,128,022 samples, 0.02%)</title><rect x="1073.3" y="565" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1076.30" y="575.5" ></text>
</g>
<g >
<title>IsToastNamespace (860,625,379 samples, 0.01%)</title><rect x="407.1" y="389" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="410.11" y="399.5" ></text>
</g>
<g >
<title>ReadBufferExtended (801,296,149 samples, 0.01%)</title><rect x="1158.3" y="245" width="0.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="1161.26" y="255.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (7,552,074,846 samples, 0.08%)</title><rect x="889.5" y="293" width="1.0" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="892.55" y="303.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,714,732,467 samples, 0.02%)</title><rect x="400.5" y="277" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="403.50" y="287.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (7,001,543,793 samples, 0.07%)</title><rect x="271.4" y="405" width="0.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="274.41" y="415.5" ></text>
</g>
<g >
<title>BlockIdSet (1,015,604,371 samples, 0.01%)</title><rect x="33.9" y="757" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="36.93" y="767.5" ></text>
</g>
<g >
<title>ReadBuffer_common (18,083,246,842 samples, 0.19%)</title><rect x="99.0" y="261" width="2.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="102.04" y="271.5" ></text>
</g>
<g >
<title>btint4cmp (3,729,197,953 samples, 0.04%)</title><rect x="316.6" y="213" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="319.55" y="223.5" ></text>
</g>
<g >
<title>TransactionIdCommitTree (28,016,595,904 samples, 0.30%)</title><rect x="469.6" y="501" width="3.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="472.59" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,393,567,840 samples, 0.01%)</title><rect x="355.4" y="261" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="358.38" y="271.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (1,487,937,497 samples, 0.02%)</title><rect x="10.0" y="757" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="13.01" y="767.5" ></text>
</g>
<g >
<title>AllocSetFree (48,608,861,890 samples, 0.52%)</title><rect x="240.2" y="373" width="6.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="243.24" y="383.5" ></text>
</g>
<g >
<title>palloc0 (1,675,151,368 samples, 0.02%)</title><rect x="980.6" y="421" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="983.64" y="431.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (965,583,189 samples, 0.01%)</title><rect x="325.5" y="165" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="328.54" y="175.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (9,924,319,046 samples, 0.11%)</title><rect x="974.0" y="389" width="1.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="977.00" y="399.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (2,889,398,438 samples, 0.03%)</title><rect x="401.4" y="293" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="404.36" y="303.5" ></text>
</g>
<g >
<title>hash_search (18,762,485,346 samples, 0.20%)</title><rect x="849.0" y="373" width="2.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="852.04" y="383.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (1,217,297,839 samples, 0.01%)</title><rect x="124.1" y="261" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="127.08" y="271.5" ></text>
</g>
<g >
<title>heap_attisnull (895,601,475 samples, 0.01%)</title><rect x="392.4" y="357" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="395.42" y="367.5" ></text>
</g>
<g >
<title>bms_add_member (2,460,382,664 samples, 0.03%)</title><rect x="855.6" y="325" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="858.56" y="335.5" ></text>
</g>
<g >
<title>avc_lookup (1,481,978,142 samples, 0.02%)</title><rect x="191.5" y="357" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="194.48" y="367.5" ></text>
</g>
<g >
<title>_bt_binsrch (2,871,252,156 samples, 0.03%)</title><rect x="123.2" y="277" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="126.18" y="287.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableXid (832,734,647 samples, 0.01%)</title><rect x="1148.7" y="693" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1151.67" y="703.5" ></text>
</g>
<g >
<title>AllocSetAlloc (946,585,443 samples, 0.01%)</title><rect x="853.7" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="856.74" y="351.5" ></text>
</g>
<g >
<title>ReadBuffer (1,478,991,388 samples, 0.02%)</title><rect x="87.3" y="757" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="90.31" y="767.5" ></text>
</g>
<g >
<title>_bt_binsrch (42,339,002,253 samples, 0.45%)</title><rect x="329.6" y="245" width="5.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="332.61" y="255.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (1,268,536,024 samples, 0.01%)</title><rect x="503.6" y="421" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="506.57" y="431.5" ></text>
</g>
<g >
<title>ReleaseCatCache (862,599,286 samples, 0.01%)</title><rect x="1038.7" y="309" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1041.71" y="319.5" ></text>
</g>
<g >
<title>palloc (14,163,942,256 samples, 0.15%)</title><rect x="291.3" y="277" width="1.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="294.29" y="287.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (2,800,759,791 samples, 0.03%)</title><rect x="133.5" y="469" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="136.46" y="479.5" ></text>
</g>
<g >
<title>heapam_tuple_update (349,585,314,403 samples, 3.70%)</title><rect x="344.6" y="389" width="43.7" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="347.64" y="399.5" >heap..</text>
</g>
<g >
<title>GetPrivateRefCount (937,165,422 samples, 0.01%)</title><rect x="305.6" y="181" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="308.60" y="191.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (2,460,527,838 samples, 0.03%)</title><rect x="921.4" y="421" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="924.42" y="431.5" ></text>
</g>
<g >
<title>GetXLogBuffer (1,132,238,669 samples, 0.01%)</title><rect x="507.2" y="437" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="510.19" y="447.5" ></text>
</g>
<g >
<title>clauselist_selectivity_ext (803,901,079 samples, 0.01%)</title><rect x="126.6" y="389" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="129.56" y="399.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,256,797,002 samples, 0.02%)</title><rect x="832.5" y="453" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="835.52" y="463.5" ></text>
</g>
<g >
<title>select_task_rq_fair (2,213,046,869 samples, 0.02%)</title><rect x="488.0" y="277" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="491.00" y="287.5" ></text>
</g>
<g >
<title>do_futex (1,996,115,647 samples, 0.02%)</title><rect x="363.7" y="213" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="366.67" y="223.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (1,950,874,371 samples, 0.02%)</title><rect x="817.5" y="421" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="820.52" y="431.5" ></text>
</g>
<g >
<title>palloc (2,202,174,919 samples, 0.02%)</title><rect x="1115.4" y="709" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1118.41" y="719.5" ></text>
</g>
<g >
<title>exec_simple_query (81,441,377,880 samples, 0.86%)</title><rect x="94.7" y="677" width="10.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="97.67" y="687.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (894,126,186 samples, 0.01%)</title><rect x="91.6" y="757" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="94.63" y="767.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (1,075,851,368 samples, 0.01%)</title><rect x="401.2" y="277" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="404.18" y="287.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,428,737,271 samples, 0.02%)</title><rect x="100.4" y="133" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="103.37" y="143.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,001,651,420 samples, 0.04%)</title><rect x="430.5" y="373" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="433.51" y="383.5" ></text>
</g>
<g >
<title>get_relation_notnullatts (967,745,817 samples, 0.01%)</title><rect x="1140.2" y="757" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1143.24" y="767.5" ></text>
</g>
<g >
<title>RelationGetIndexList (3,750,808,496 samples, 0.04%)</title><rect x="393.5" y="389" width="0.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="396.55" y="399.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,296,167,945 samples, 0.01%)</title><rect x="279.7" y="261" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="282.70" y="271.5" ></text>
</g>
<g >
<title>AssignTransactionId (89,546,196,413 samples, 0.95%)</title><rect x="348.3" y="341" width="11.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="351.33" y="351.5" ></text>
</g>
<g >
<title>index_open (15,046,326,716 samples, 0.16%)</title><rect x="394.0" y="389" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="397.03" y="399.5" ></text>
</g>
<g >
<title>uint32_hash (1,516,137,612 samples, 0.02%)</title><rect x="925.0" y="405" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="928.04" y="415.5" ></text>
</g>
<g >
<title>SlruSelectLRUPage (3,468,742,584 samples, 0.04%)</title><rect x="471.9" y="421" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="474.88" y="431.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,194,236,097 samples, 0.01%)</title><rect x="215.7" y="549" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="218.70" y="559.5" ></text>
</g>
<g >
<title>gup_fast_fallback (2,733,460,336 samples, 0.03%)</title><rect x="485.9" y="309" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="488.85" y="319.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (856,200,212 samples, 0.01%)</title><rect x="236.2" y="421" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="239.23" y="431.5" ></text>
</g>
<g >
<title>bms_next_member (2,248,014,667 samples, 0.02%)</title><rect x="980.9" y="453" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="983.91" y="463.5" ></text>
</g>
<g >
<title>TupleDescAttr (1,007,336,152 samples, 0.01%)</title><rect x="115.6" y="741" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="118.62" y="751.5" ></text>
</g>
<g >
<title>get_quals_from_indexclauses (4,976,930,533 samples, 0.05%)</title><rect x="1012.7" y="293" width="0.6" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1015.68" y="303.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,448,398,293 samples, 0.05%)</title><rect x="1038.8" y="325" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1041.82" y="335.5" ></text>
</g>
<g >
<title>_bt_lockbuf (1,932,277,437 samples, 0.02%)</title><rect x="126.0" y="229" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="129.00" y="239.5" ></text>
</g>
<g >
<title>palloc0 (1,773,285,099 samples, 0.02%)</title><rect x="1118.9" y="709" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1121.89" y="719.5" ></text>
</g>
<g >
<title>new_list (1,709,550,661 samples, 0.02%)</title><rect x="1019.5" y="325" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1022.54" y="335.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,653,468,180 samples, 0.03%)</title><rect x="836.5" y="325" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="839.52" y="335.5" ></text>
</g>
<g >
<title>_bt_compare (2,392,388,877 samples, 0.03%)</title><rect x="127.9" y="757" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="130.87" y="767.5" ></text>
</g>
<g >
<title>tag_hash (11,665,778,961 samples, 0.12%)</title><rect x="849.9" y="357" width="1.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="852.93" y="367.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop (3,310,649,206 samples, 0.04%)</title><rect x="1055.4" y="469" width="0.5" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="1058.45" y="479.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,590,872,548 samples, 0.02%)</title><rect x="423.0" y="341" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="425.95" y="351.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4,960,745,595 samples, 0.05%)</title><rect x="95.5" y="165" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="98.47" y="175.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (7,907,523,754 samples, 0.08%)</title><rect x="288.2" y="245" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="291.17" y="255.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,959,284,489 samples, 0.02%)</title><rect x="520.0" y="405" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="522.99" y="415.5" ></text>
</g>
<g >
<title>BufferAlloc (17,544,117,270 samples, 0.19%)</title><rect x="99.0" y="197" width="2.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="102.05" y="207.5" ></text>
</g>
<g >
<title>pfree (1,331,036,800 samples, 0.01%)</title><rect x="966.8" y="357" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="969.80" y="367.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,087,128,597 samples, 0.01%)</title><rect x="522.6" y="421" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="525.59" y="431.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (950,851,619 samples, 0.01%)</title><rect x="923.0" y="421" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="925.99" y="431.5" ></text>
</g>
<g >
<title>new_list (1,920,796,439 samples, 0.02%)</title><rect x="956.6" y="293" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="959.62" y="303.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (2,574,810,915 samples, 0.03%)</title><rect x="1046.2" y="389" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1049.17" y="399.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (5,282,358,386 samples, 0.06%)</title><rect x="224.1" y="565" width="0.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="227.07" y="575.5" ></text>
</g>
<g >
<title>shmem_write_end (8,477,282,857 samples, 0.09%)</title><rect x="500.1" y="357" width="1.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="503.06" y="367.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="389" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="88.40" y="399.5" ></text>
</g>
<g >
<title>fdatasync@plt (931,926,685 samples, 0.01%)</title><rect x="503.2" y="437" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="506.17" y="447.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,610,429,450 samples, 0.02%)</title><rect x="1035.3" y="213" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1038.29" y="223.5" ></text>
</g>
<g >
<title>uint32_hash (1,238,130,706 samples, 0.01%)</title><rect x="949.1" y="341" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="952.15" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (7,314,667,134 samples, 0.08%)</title><rect x="750.8" y="533" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="753.84" y="543.5" ></text>
</g>
<g >
<title>fix_scan_expr (29,731,814,530 samples, 0.32%)</title><rect x="900.1" y="469" width="3.7" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="903.08" y="479.5" ></text>
</g>
<g >
<title>DynaHashAlloc (3,779,440,835 samples, 0.04%)</title><rect x="1061.4" y="453" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1064.41" y="463.5" ></text>
</g>
<g >
<title>exec_rt_fetch (907,791,528 samples, 0.01%)</title><rect x="443.9" y="421" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="446.86" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,038,398,311 samples, 0.01%)</title><rect x="398.7" y="309" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="401.66" y="319.5" ></text>
</g>
<g >
<title>list_make1_impl (1,055,791,948 samples, 0.01%)</title><rect x="1156.4" y="757" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1159.35" y="767.5" ></text>
</g>
<g >
<title>futex_hash (858,918,125 samples, 0.01%)</title><rect x="485.5" y="325" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="488.46" y="335.5" ></text>
</g>
<g >
<title>assign_query_collations_walker (2,069,711,771 samples, 0.02%)</title><rect x="1086.4" y="757" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1089.40" y="767.5" ></text>
</g>
<g >
<title>ExecShutdownNode_walker (7,282,247,651 samples, 0.08%)</title><rect x="402.1" y="469" width="1.0" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="405.14" y="479.5" ></text>
</g>
<g >
<title>finalize_plan (28,660,398,970 samples, 0.30%)</title><rect x="878.2" y="485" width="3.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="881.21" y="495.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,276,100,836 samples, 0.01%)</title><rect x="354.4" y="261" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="357.38" y="271.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,381,620,981 samples, 0.01%)</title><rect x="924.2" y="389" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="927.17" y="399.5" ></text>
</g>
<g >
<title>MemoryContextAllocExtended (1,431,571,239 samples, 0.02%)</title><rect x="1064.1" y="421" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1067.08" y="431.5" ></text>
</g>
<g >
<title>LWLockWakeup (1,605,006,433 samples, 0.02%)</title><rect x="354.6" y="245" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="357.64" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,602,953,622 samples, 0.03%)</title><rect x="885.5" y="373" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="888.45" y="383.5" ></text>
</g>
<g >
<title>GETSTRUCT (1,746,490,308 samples, 0.02%)</title><rect x="47.8" y="757" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="50.83" y="767.5" ></text>
</g>
<g >
<title>ExecTypeFromTLInternal (2,211,433,668 samples, 0.02%)</title><rect x="448.6" y="421" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="451.61" y="431.5" ></text>
</g>
<g >
<title>jit_compile_expr (979,193,897 samples, 0.01%)</title><rect x="1153.2" y="757" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1156.20" y="767.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,851,429,287 samples, 0.05%)</title><rect x="1042.3" y="325" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1045.33" y="335.5" ></text>
</g>
<g >
<title>TupleDescAttr (2,307,441,903 samples, 0.02%)</title><rect x="107.1" y="757" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="110.14" y="767.5" ></text>
</g>
<g >
<title>ExecInitInterpreter (838,228,521 samples, 0.01%)</title><rect x="43.4" y="757" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="46.42" y="767.5" ></text>
</g>
<g >
<title>newNode (5,480,968,631 samples, 0.06%)</title><rect x="808.8" y="485" width="0.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="811.84" y="495.5" ></text>
</g>
<g >
<title>bms_is_valid_set (3,732,284,698 samples, 0.04%)</title><rect x="1122.6" y="757" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1125.56" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,364,524,616 samples, 0.01%)</title><rect x="944.3" y="357" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="947.29" y="367.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,220,014,564 samples, 0.02%)</title><rect x="880.8" y="405" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="883.83" y="415.5" ></text>
</g>
<g >
<title>bms_union (876,268,247 samples, 0.01%)</title><rect x="878.1" y="485" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="881.10" y="495.5" ></text>
</g>
<g >
<title>pgstat_count_slru_blocks_hit (994,852,419 samples, 0.01%)</title><rect x="1171.0" y="757" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1174.05" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,608,629,525 samples, 0.05%)</title><rect x="881.2" y="389" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="884.21" y="399.5" ></text>
</g>
<g >
<title>lappend (2,835,150,788 samples, 0.03%)</title><rect x="1015.4" y="309" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1018.38" y="319.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="501" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="88.40" y="511.5" ></text>
</g>
<g >
<title>set_base_rel_sizes (132,372,590,481 samples, 1.40%)</title><rect x="1026.4" y="453" width="16.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1029.38" y="463.5" ></text>
</g>
<g >
<title>pg_class_aclcheck_ext (7,120,313,581 samples, 0.08%)</title><rect x="1034.4" y="181" width="0.8" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="1037.35" y="191.5" ></text>
</g>
<g >
<title>PredicateLockPage (1,123,777,488 samples, 0.01%)</title><rect x="86.3" y="757" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="89.26" y="767.5" ></text>
</g>
<g >
<title>subquery_planner (2,495,599,539 samples, 0.03%)</title><rect x="126.5" y="533" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="129.52" y="543.5" ></text>
</g>
<g >
<title>index_getattr (2,079,231,909 samples, 0.02%)</title><rect x="83.0" y="261" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="85.96" y="271.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (801,296,149 samples, 0.01%)</title><rect x="1158.3" y="277" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1161.26" y="287.5" ></text>
</g>
<g >
<title>base_yyparse (276,883,454,929 samples, 2.93%)</title><rect x="1087.0" y="757" width="34.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1090.04" y="767.5" >ba..</text>
</g>
<g >
<title>ProcReleaseLocks (113,991,473,671 samples, 1.21%)</title><rect x="511.1" y="485" width="14.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="514.11" y="495.5" ></text>
</g>
<g >
<title>create_scan_plan (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="453" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="127.24" y="463.5" ></text>
</g>
<g >
<title>newNode (6,141,599,429 samples, 0.07%)</title><rect x="442.0" y="421" width="0.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="444.97" y="431.5" ></text>
</g>
<g >
<title>lappend (848,213,615 samples, 0.01%)</title><rect x="920.9" y="437" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="923.87" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,672,220,930 samples, 0.03%)</title><rect x="490.1" y="437" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="493.08" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (842,740,396 samples, 0.01%)</title><rect x="1078.5" y="469" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="1081.51" y="479.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (8,344,125,969 samples, 0.09%)</title><rect x="825.0" y="309" width="1.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="827.95" y="319.5" ></text>
</g>
<g >
<title>palloc0 (5,087,508,768 samples, 0.05%)</title><rect x="953.0" y="389" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="955.99" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (800,913,797 samples, 0.01%)</title><rect x="518.6" y="421" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="521.62" y="431.5" ></text>
</g>
<g >
<title>verify_compact_attribute (926,263,447 samples, 0.01%)</title><rect x="122.0" y="741" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="125.00" y="751.5" ></text>
</g>
<g >
<title>estimate_rel_size (29,767,137,381 samples, 0.32%)</title><rect x="934.9" y="405" width="3.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="937.89" y="415.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (993,460,154 samples, 0.01%)</title><rect x="997.7" y="277" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1000.70" y="287.5" ></text>
</g>
<g >
<title>__futex_wait (908,539,829 samples, 0.01%)</title><rect x="381.8" y="149" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="384.79" y="159.5" ></text>
</g>
<g >
<title>__futex_wait (851,906,660 samples, 0.01%)</title><rect x="467.7" y="341" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="470.67" y="351.5" ></text>
</g>
<g >
<title>make_oper_cache_key (3,291,616,283 samples, 0.03%)</title><rect x="838.2" y="357" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="841.22" y="367.5" ></text>
</g>
<g >
<title>deconstruct_recurse (14,954,502,213 samples, 0.16%)</title><rect x="975.9" y="437" width="1.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="978.88" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,240,278,128 samples, 0.01%)</title><rect x="354.0" y="245" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="357.00" y="255.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (18,083,246,842 samples, 0.19%)</title><rect x="99.0" y="309" width="2.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="102.04" y="319.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple_internal (2,651,629,702 samples, 0.03%)</title><rect x="268.5" y="277" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="271.46" y="287.5" ></text>
</g>
<g >
<title>_bt_moveright (1,338,761,308 samples, 0.01%)</title><rect x="123.9" y="277" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="126.91" y="287.5" ></text>
</g>
<g >
<title>pg_class_aclcheck (7,342,704,253 samples, 0.08%)</title><rect x="1034.3" y="197" width="1.0" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1037.34" y="207.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (829,949,249 samples, 0.01%)</title><rect x="1046.0" y="389" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="1049.00" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,575,505,720 samples, 0.02%)</title><rect x="349.9" y="277" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="352.87" y="287.5" ></text>
</g>
<g >
<title>palloc (1,294,312,677 samples, 0.01%)</title><rect x="910.9" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="913.92" y="447.5" ></text>
</g>
<g >
<title>grouping_planner (1,163,868,766 samples, 0.01%)</title><rect x="126.5" y="517" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="129.52" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (65,725,706,555 samples, 0.70%)</title><rect x="493.5" y="453" width="8.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="496.48" y="463.5" ></text>
</g>
<g >
<title>_bt_getroot (11,970,693,185 samples, 0.13%)</title><rect x="83.2" y="309" width="1.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="86.22" y="319.5" ></text>
</g>
<g >
<title>Int32GetDatum (2,658,017,377 samples, 0.03%)</title><rect x="53.2" y="757" width="0.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="56.24" y="767.5" ></text>
</g>
<g >
<title>palloc (988,325,388 samples, 0.01%)</title><rect x="897.4" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="900.45" y="447.5" ></text>
</g>
<g >
<title>LockBuffer (9,960,534,486 samples, 0.11%)</title><rect x="362.8" y="357" width="1.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="365.76" y="367.5" ></text>
</g>
<g >
<title>palloc (1,123,994,504 samples, 0.01%)</title><rect x="1134.0" y="597" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1136.99" y="607.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,723,123,476 samples, 0.02%)</title><rect x="827.2" y="277" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="830.23" y="287.5" ></text>
</g>
<g >
<title>palloc (1,136,757,662 samples, 0.01%)</title><rect x="970.0" y="341" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="973.03" y="351.5" ></text>
</g>
<g >
<title>_bt_compare (37,371,334,094 samples, 0.40%)</title><rect x="330.2" y="229" width="4.7" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="333.21" y="239.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseAll (1,546,545,202 samples, 0.02%)</title><rect x="225.9" y="533" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="228.91" y="543.5" ></text>
</g>
<g >
<title>btgettreeheight (1,664,194,611 samples, 0.02%)</title><rect x="933.2" y="405" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="936.23" y="415.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,206,496,747 samples, 0.04%)</title><rect x="846.8" y="373" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="849.82" y="383.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (13,526,179,886 samples, 0.14%)</title><rect x="1075.7" y="517" width="1.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1078.71" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,476,730,229 samples, 0.03%)</title><rect x="951.6" y="389" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="954.55" y="399.5" ></text>
</g>
<g >
<title>futex_wait (966,647,202 samples, 0.01%)</title><rect x="381.8" y="165" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="384.78" y="175.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (3,280,995,992 samples, 0.03%)</title><rect x="430.0" y="389" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="433.03" y="399.5" ></text>
</g>
<g >
<title>schedule (3,549,766,079 samples, 0.04%)</title><rect x="206.4" y="437" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="209.45" y="447.5" ></text>
</g>
<g >
<title>make_pathkeys_for_sortclauses (1,686,844,792 samples, 0.02%)</title><rect x="1159.6" y="757" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1162.57" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,600,736,131 samples, 0.02%)</title><rect x="490.6" y="373" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="493.55" y="383.5" ></text>
</g>
<g >
<title>list_make1_impl (2,319,213,702 samples, 0.02%)</title><rect x="1020.6" y="309" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1023.64" y="319.5" ></text>
</g>
<g >
<title>IndexNext (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="405" width="2.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="85.62" y="415.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (1,041,397,737 samples, 0.01%)</title><rect x="100.7" y="165" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="103.72" y="175.5" ></text>
</g>
<g >
<title>XLogBeginInsert (1,239,691,500 samples, 0.01%)</title><rect x="377.9" y="341" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="380.94" y="351.5" ></text>
</g>
<g >
<title>printtup_create_DR (3,741,212,985 samples, 0.04%)</title><rect x="210.4" y="565" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="213.35" y="575.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (13,361,081,150 samples, 0.14%)</title><rect x="880.1" y="453" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="883.12" y="463.5" ></text>
</g>
<g >
<title>smgrDoPendingSyncs (1,412,207,320 samples, 0.01%)</title><rect x="526.6" y="517" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="529.55" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,340,820,401 samples, 0.01%)</title><rect x="1015.6" y="261" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1018.55" y="271.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,751,436,568 samples, 0.02%)</title><rect x="1078.2" y="501" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1081.19" y="511.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (3,503,971,899 samples, 0.04%)</title><rect x="268.4" y="309" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="271.35" y="319.5" ></text>
</g>
<g >
<title>subquery_planner (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="565" width="0.1" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="1161.36" y="575.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableXid (4,211,136,227 samples, 0.04%)</title><rect x="303.3" y="229" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="306.31" y="239.5" ></text>
</g>
<g >
<title>[[vdso]] (850,539,316 samples, 0.01%)</title><rect x="1072.6" y="549" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1075.56" y="559.5" ></text>
</g>
<g >
<title>table_close (3,059,349,232 samples, 0.03%)</title><rect x="865.2" y="517" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="868.20" y="527.5" ></text>
</g>
<g >
<title>[[vdso]] (1,148,090,673 samples, 0.01%)</title><rect x="207.7" y="565" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="210.66" y="575.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,987,046,298 samples, 0.03%)</title><rect x="918.4" y="437" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="921.39" y="447.5" ></text>
</g>
<g >
<title>add_path (5,704,025,124 samples, 0.06%)</title><rect x="988.8" y="389" width="0.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="991.80" y="399.5" ></text>
</g>
<g >
<title>hash_search (4,355,378,771 samples, 0.05%)</title><rect x="445.9" y="373" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="448.91" y="383.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (4,537,248,481 samples, 0.05%)</title><rect x="351.8" y="261" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="354.83" y="271.5" ></text>
</g>
<g >
<title>internal_flush_buffer (152,201,954,535 samples, 1.61%)</title><rect x="188.2" y="549" width="19.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="191.22" y="559.5" ></text>
</g>
<g >
<title>LockBufHdr (3,047,772,666 samples, 0.03%)</title><rect x="324.1" y="213" width="0.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="327.13" y="223.5" ></text>
</g>
<g >
<title>LWLockRelease (1,385,394,656 samples, 0.01%)</title><rect x="340.0" y="197" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="342.99" y="207.5" ></text>
</g>
<g >
<title>list_free (1,729,633,917 samples, 0.02%)</title><rect x="954.6" y="453" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="957.58" y="463.5" ></text>
</g>
<g >
<title>newNode (3,281,955,634 samples, 0.03%)</title><rect x="919.5" y="469" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="922.52" y="479.5" ></text>
</g>
<g >
<title>pg_atomic_read_membarrier_u64 (1,551,381,125 samples, 0.02%)</title><rect x="491.2" y="469" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="494.20" y="479.5" ></text>
</g>
<g >
<title>SearchSysCache3 (5,595,411,272 samples, 0.06%)</title><rect x="427.4" y="389" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="430.35" y="399.5" ></text>
</g>
<g >
<title>list_delete_nth_cell (2,680,357,056 samples, 0.03%)</title><rect x="993.8" y="357" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="996.80" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,100,375,785 samples, 0.01%)</title><rect x="986.3" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="989.34" y="335.5" ></text>
</g>
<g >
<title>IndexScanEnd (3,279,992,881 samples, 0.03%)</title><rect x="239.2" y="405" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="242.20" y="415.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,918,311,880 samples, 0.07%)</title><rect x="1039.4" y="341" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1042.38" y="351.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,019,232,232 samples, 0.01%)</title><rect x="325.3" y="181" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="328.35" y="191.5" ></text>
</g>
<g >
<title>palloc (1,592,931,793 samples, 0.02%)</title><rect x="964.2" y="341" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="967.18" y="351.5" ></text>
</g>
<g >
<title>select_idle_core.isra.0 (11,182,597,917 samples, 0.12%)</title><rect x="201.4" y="261" width="1.4" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="204.42" y="271.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (2,935,052,750 samples, 0.03%)</title><rect x="323.6" y="213" width="0.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="326.64" y="223.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,689,814,070 samples, 0.04%)</title><rect x="351.9" y="213" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="354.91" y="223.5" ></text>
</g>
<g >
<title>put_prev_entity (877,931,202 samples, 0.01%)</title><rect x="159.8" y="309" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="162.84" y="319.5" ></text>
</g>
<g >
<title>palloc0 (2,940,364,769 samples, 0.03%)</title><rect x="814.4" y="405" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="817.37" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,998,168,038 samples, 0.02%)</title><rect x="395.5" y="325" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="398.47" y="335.5" ></text>
</g>
<g >
<title>fastgetattr (1,371,052,444 samples, 0.01%)</title><rect x="1136.7" y="757" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="1139.72" y="767.5" ></text>
</g>
<g >
<title>sentinel_ok (2,564,052,540 samples, 0.03%)</title><rect x="256.9" y="421" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="259.88" y="431.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3,676,568,176 samples, 0.04%)</title><rect x="466.2" y="485" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="469.16" y="495.5" ></text>
</g>
<g >
<title>list_make1_impl (4,890,816,803 samples, 0.05%)</title><rect x="1119.3" y="725" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1122.32" y="735.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (9,019,532,849 samples, 0.10%)</title><rect x="806.1" y="341" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="809.13" y="351.5" ></text>
</g>
<g >
<title>hash_bytes (6,558,860,655 samples, 0.07%)</title><rect x="866.5" y="405" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="869.49" y="415.5" ></text>
</g>
<g >
<title>main (17,884,496,647 samples, 0.19%)</title><rect x="124.6" y="725" width="2.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="127.59" y="735.5" ></text>
</g>
<g >
<title>do_futex (27,845,629,230 samples, 0.30%)</title><rect x="485.2" y="357" width="3.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="488.24" y="367.5" ></text>
</g>
<g >
<title>ExecClearTuple (2,327,258,615 samples, 0.02%)</title><rect x="282.9" y="341" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="285.91" y="351.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (872,259,354 samples, 0.01%)</title><rect x="1057.4" y="405" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1060.42" y="415.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (907,974,538 samples, 0.01%)</title><rect x="300.1" y="117" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="303.07" y="127.5" ></text>
</g>
<g >
<title>get_op_opfamily_properties (7,761,315,600 samples, 0.08%)</title><rect x="427.1" y="405" width="1.0" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="430.08" y="415.5" ></text>
</g>
<g >
<title>bms_copy (2,381,169,399 samples, 0.03%)</title><rect x="451.9" y="485" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="454.88" y="495.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (984,135,320 samples, 0.01%)</title><rect x="481.2" y="197" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="484.21" y="207.5" ></text>
</g>
<g >
<title>query_planner (961,833,405,145 samples, 10.19%)</title><rect x="925.3" y="485" width="120.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="928.25" y="495.5" >query_planner</text>
</g>
<g >
<title>PageGetItemId (1,071,970,479 samples, 0.01%)</title><rect x="310.9" y="229" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="313.86" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (856,571,127 samples, 0.01%)</title><rect x="970.4" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="973.44" y="335.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (3,378,654,146 samples, 0.04%)</title><rect x="98.6" y="181" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="101.62" y="191.5" ></text>
</g>
<g >
<title>contain_volatile_functions (1,222,656,770 samples, 0.01%)</title><rect x="1020.4" y="309" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1023.44" y="319.5" ></text>
</g>
<g >
<title>LockRelationOid (1,075,123,651 samples, 0.01%)</title><rect x="58.1" y="757" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="61.15" y="767.5" ></text>
</g>
<g >
<title>clauselist_selectivity_ext (1,530,807,497 samples, 0.02%)</title><rect x="1012.5" y="277" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1015.47" y="287.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (2,314,758,137 samples, 0.02%)</title><rect x="1185.0" y="645" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.99" y="655.5" ></text>
</g>
<g >
<title>build_simple_rel (189,316,362,518 samples, 2.01%)</title><rect x="926.6" y="437" width="23.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="929.61" y="447.5" >b..</text>
</g>
<g >
<title>index_close (1,950,748,231 samples, 0.02%)</title><rect x="939.9" y="405" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="942.86" y="415.5" ></text>
</g>
<g >
<title>hash_bytes (10,860,989,399 samples, 0.12%)</title><rect x="836.9" y="309" width="1.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="839.86" y="319.5" ></text>
</g>
<g >
<title>bms_del_member (2,334,263,620 samples, 0.02%)</title><rect x="877.7" y="485" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="880.72" y="495.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (53,501,250,861 samples, 0.57%)</title><rect x="94.7" y="597" width="6.7" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="97.67" y="607.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (1,623,008,936 samples, 0.02%)</title><rect x="1138.6" y="757" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1141.58" y="767.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,585,398,720 samples, 0.02%)</title><rect x="454.2" y="501" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="457.24" y="511.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (6,824,826,572 samples, 0.07%)</title><rect x="438.5" y="389" width="0.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="441.48" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,116,783,469 samples, 0.01%)</title><rect x="451.7" y="453" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="454.72" y="463.5" ></text>
</g>
<g >
<title>lcons (1,858,215,054 samples, 0.02%)</title><rect x="269.7" y="373" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="272.67" y="383.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,190,560,038 samples, 0.01%)</title><rect x="1066.8" y="437" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1069.80" y="447.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (1,708,106,463 samples, 0.02%)</title><rect x="1073.0" y="581" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1076.05" y="591.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (1,863,503,745 samples, 0.02%)</title><rect x="1172.1" y="757" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1175.07" y="767.5" ></text>
</g>
<g >
<title>hash_bytes (2,465,836,987 samples, 0.03%)</title><rect x="394.7" y="293" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="397.70" y="303.5" ></text>
</g>
<g >
<title>table_close (1,078,599,306 samples, 0.01%)</title><rect x="1185.7" y="757" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1188.69" y="767.5" ></text>
</g>
<g >
<title>hash_search (2,680,434,915 samples, 0.03%)</title><rect x="1016.6" y="293" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1019.63" y="303.5" ></text>
</g>
<g >
<title>kfree (8,441,838,636 samples, 0.09%)</title><rect x="179.0" y="341" width="1.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="182.00" y="351.5" ></text>
</g>
<g >
<title>expr_setup_walker (10,809,319,063 samples, 0.11%)</title><rect x="417.4" y="341" width="1.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="420.40" y="351.5" ></text>
</g>
<g >
<title>security_socket_getpeersec_dgram (3,575,334,822 samples, 0.04%)</title><rect x="192.4" y="405" width="0.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="195.41" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,428,737,271 samples, 0.02%)</title><rect x="100.4" y="149" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="103.37" y="159.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,674,839,267 samples, 0.02%)</title><rect x="490.6" y="389" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="493.55" y="399.5" ></text>
</g>
<g >
<title>_int_free_merge_chunk (1,168,402,540 samples, 0.01%)</title><rect x="261.4" y="389" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="264.41" y="399.5" ></text>
</g>
<g >
<title>AtStart_Memory (1,393,747,281 samples, 0.01%)</title><rect x="1075.4" y="533" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1078.44" y="543.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,015,926,600 samples, 0.01%)</title><rect x="427.6" y="341" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="430.60" y="351.5" ></text>
</g>
<g >
<title>AllocSetReset (7,311,524,652 samples, 0.08%)</title><rect x="459.7" y="469" width="0.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="462.73" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (936,733,870 samples, 0.01%)</title><rect x="104.4" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="107.44" y="399.5" ></text>
</g>
<g >
<title>transformExprRecurse (32,455,041,936 samples, 0.34%)</title><rect x="852.8" y="421" width="4.0" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="855.79" y="431.5" ></text>
</g>
<g >
<title>clamp_row_est (1,148,722,465 samples, 0.01%)</title><rect x="1028.4" y="389" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1031.40" y="399.5" ></text>
</g>
<g >
<title>CopyIndexAttOptions (2,059,321,917 samples, 0.02%)</title><rect x="930.6" y="389" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="933.60" y="399.5" ></text>
</g>
<g >
<title>ForEachLWLockHeldByMe (1,290,984,487 samples, 0.01%)</title><rect x="47.2" y="757" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="50.23" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,400,659,554 samples, 0.01%)</title><rect x="1013.4" y="245" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1016.40" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (916,665,754 samples, 0.01%)</title><rect x="1017.7" y="309" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1020.66" y="319.5" ></text>
</g>
<g >
<title>pull_var_clause_walker (4,687,558,936 samples, 0.05%)</title><rect x="956.3" y="325" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="959.28" y="335.5" ></text>
</g>
<g >
<title>PortalDrop (38,938,871,355 samples, 0.41%)</title><rect x="222.6" y="581" width="4.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="225.61" y="591.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,210,716,317 samples, 0.01%)</title><rect x="381.6" y="261" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="384.58" y="271.5" ></text>
</g>
<g >
<title>BuildQueryCompletionString (8,492,612,849 samples, 0.09%)</title><rect x="215.3" y="565" width="1.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="218.32" y="575.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (963,191,835 samples, 0.01%)</title><rect x="339.4" y="197" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="342.38" y="207.5" ></text>
</g>
<g >
<title>psi_account_irqtime (5,863,374,427 samples, 0.06%)</title><rect x="163.5" y="341" width="0.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="166.54" y="351.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (960,156,260 samples, 0.01%)</title><rect x="401.0" y="261" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="404.03" y="271.5" ></text>
</g>
<g >
<title>fix_indexqual_references (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="453" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="88.40" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_add_u64_impl (1,253,075,728 samples, 0.01%)</title><rect x="491.2" y="437" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="494.24" y="447.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,072,609,482 samples, 0.02%)</title><rect x="56.1" y="757" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="59.07" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,420,520,067 samples, 0.02%)</title><rect x="860.1" y="453" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="863.05" y="463.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,889,814,044 samples, 0.02%)</title><rect x="430.8" y="325" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="433.77" y="335.5" ></text>
</g>
<g >
<title>cost_qual_eval_node (9,796,172,573 samples, 0.10%)</title><rect x="1045.8" y="469" width="1.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1048.78" y="479.5" ></text>
</g>
<g >
<title>_bt_first (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="309" width="1.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="125.45" y="319.5" ></text>
</g>
<g >
<title>new_list (1,692,220,231 samples, 0.02%)</title><rect x="1071.7" y="469" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1074.71" y="479.5" ></text>
</g>
<g >
<title>exprType (1,563,540,087 samples, 0.02%)</title><rect x="1035.5" y="229" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1038.51" y="239.5" ></text>
</g>
<g >
<title>SearchSysCache1 (5,345,134,265 samples, 0.06%)</title><rect x="102.9" y="453" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="105.88" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,995,939,757 samples, 0.02%)</title><rect x="470.0" y="421" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="472.97" y="431.5" ></text>
</g>
<g >
<title>transformUpdateStmt (446,762,155,623 samples, 4.73%)</title><rect x="801.0" y="501" width="55.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="804.00" y="511.5" >trans..</text>
</g>
<g >
<title>ExecInitModifyTable (1,683,100,516 samples, 0.02%)</title><rect x="43.5" y="757" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="46.52" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,311,383,769 samples, 0.01%)</title><rect x="848.0" y="373" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="850.97" y="383.5" ></text>
</g>
<g >
<title>ExecScanExtended (476,065,121,368 samples, 5.04%)</title><rect x="282.5" y="373" width="59.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="285.52" y="383.5" >ExecSc..</text>
</g>
<g >
<title>hash_search (8,398,575,009 samples, 0.09%)</title><rect x="211.6" y="549" width="1.0" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="214.58" y="559.5" ></text>
</g>
<g >
<title>ReleaseSysCache (2,258,987,847 samples, 0.02%)</title><rect x="822.8" y="357" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="825.79" y="367.5" ></text>
</g>
<g >
<title>var_eq_const (3,045,953,760 samples, 0.03%)</title><rect x="1036.6" y="261" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1039.56" y="271.5" ></text>
</g>
<g >
<title>SearchSysCache1 (2,884,395,725 samples, 0.03%)</title><rect x="94.0" y="757" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="96.96" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,269,954,888 samples, 0.01%)</title><rect x="1068.8" y="421" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1071.82" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (850,182,298 samples, 0.01%)</title><rect x="466.3" y="453" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="469.26" y="463.5" ></text>
</g>
<g >
<title>palloc0 (2,081,516,487 samples, 0.02%)</title><rect x="835.7" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="838.72" y="367.5" ></text>
</g>
<g >
<title>fix_indexqual_operand (5,300,462,761 samples, 0.06%)</title><rect x="888.0" y="357" width="0.6" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="890.96" y="367.5" ></text>
</g>
<g >
<title>pg_plan_queries (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="629" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1161.36" y="639.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (970,511,808 samples, 0.01%)</title><rect x="364.8" y="341" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="367.81" y="351.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="437" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1161.36" y="447.5" ></text>
</g>
<g >
<title>palloc (915,626,998 samples, 0.01%)</title><rect x="835.5" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="838.51" y="351.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,601,740,751 samples, 0.04%)</title><rect x="1038.9" y="293" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1041.92" y="303.5" ></text>
</g>
<g >
<title>index_close (2,047,197,195 samples, 0.02%)</title><rect x="238.7" y="421" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="241.71" y="431.5" ></text>
</g>
<g >
<title>XactLogCommitRecord (28,080,547,488 samples, 0.30%)</title><rect x="505.9" y="501" width="3.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="508.94" y="511.5" ></text>
</g>
<g >
<title>pgstat_get_xact_stack_level (3,812,175,367 samples, 0.04%)</title><rect x="387.9" y="309" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="390.86" y="319.5" ></text>
</g>
<g >
<title>BufTableHashCode (2,739,684,696 samples, 0.03%)</title><rect x="367.0" y="245" width="0.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="370.04" y="255.5" ></text>
</g>
<g >
<title>MemoryContextCheck (2,167,076,535,946 samples, 22.96%)</title><rect x="526.9" y="565" width="271.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="529.93" y="575.5" >MemoryContextCheck</text>
</g>
<g >
<title>tag_hash (2,614,930,713 samples, 0.03%)</title><rect x="298.1" y="101" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="301.07" y="111.5" ></text>
</g>
<g >
<title>new_list (2,032,057,681 samples, 0.02%)</title><rect x="890.0" y="261" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="892.98" y="271.5" ></text>
</g>
<g >
<title>enforce_generic_type_consistency (6,165,073,777 samples, 0.07%)</title><rect x="845.3" y="405" width="0.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="848.28" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4,436,750,604 samples, 0.05%)</title><rect x="821.1" y="357" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="824.07" y="367.5" ></text>
</g>
<g >
<title>list_copy (2,830,383,190 samples, 0.03%)</title><rect x="977.9" y="421" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="980.88" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,035,197,623 samples, 0.01%)</title><rect x="1147.6" y="533" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1150.60" y="543.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (2,585,677,031 samples, 0.03%)</title><rect x="960.6" y="261" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="963.55" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,104,757,967 samples, 0.02%)</title><rect x="192.1" y="405" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="195.13" y="415.5" ></text>
</g>
<g >
<title>palloc0 (2,164,085,012 samples, 0.02%)</title><rect x="833.8" y="405" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="836.78" y="415.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (1,444,744,149 samples, 0.02%)</title><rect x="354.7" y="229" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="357.65" y="239.5" ></text>
</g>
<g >
<title>_bt_checkpage (2,983,733,097 samples, 0.03%)</title><rect x="338.9" y="229" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="341.91" y="239.5" ></text>
</g>
<g >
<title>ttwu_do_activate (10,751,743,106 samples, 0.11%)</title><rect x="203.7" y="325" width="1.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="206.73" y="335.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (1,100,385,657 samples, 0.01%)</title><rect x="125.9" y="181" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="128.85" y="191.5" ></text>
</g>
<g >
<title>_bt_search (17,384,689,419 samples, 0.18%)</title><rect x="83.2" y="325" width="2.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="86.22" y="335.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (1,143,544,274 samples, 0.01%)</title><rect x="1175.1" y="757" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1178.11" y="767.5" ></text>
</g>
<g >
<title>PostgresMain (4,239,417,954 samples, 0.04%)</title><rect x="1157.9" y="661" width="0.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1160.94" y="671.5" ></text>
</g>
<g >
<title>AllocSetFree (2,123,615,478 samples, 0.02%)</title><rect x="510.4" y="485" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="513.38" y="495.5" ></text>
</g>
<g >
<title>exec_simple_query (17,104,611,586 samples, 0.18%)</title><rect x="122.5" y="629" width="2.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="125.45" y="639.5" ></text>
</g>
<g >
<title>ReadBuffer (34,932,396,469 samples, 0.37%)</title><rect x="94.7" y="293" width="4.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="97.67" y="303.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (64,335,606,086 samples, 0.68%)</title><rect x="176.3" y="453" width="8.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="179.30" y="463.5" ></text>
</g>
<g >
<title>wake_up_q (1,397,850,454 samples, 0.01%)</title><rect x="382.2" y="117" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="385.24" y="127.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (4,560,315,636 samples, 0.05%)</title><rect x="179.2" y="325" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="182.17" y="335.5" ></text>
</g>
<g >
<title>__GI___strlcpy (867,194,032 samples, 0.01%)</title><rect x="214.5" y="533" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="217.50" y="543.5" ></text>
</g>
<g >
<title>index_open (1,651,370,432 samples, 0.02%)</title><rect x="1150.5" y="757" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1153.50" y="767.5" ></text>
</g>
<g >
<title>x64_sys_call (953,800,130 samples, 0.01%)</title><rect x="206.9" y="453" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="209.89" y="463.5" ></text>
</g>
<g >
<title>PageGetItem (1,702,281,161 samples, 0.02%)</title><rect x="332.1" y="213" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="335.06" y="223.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (2,383,762,429 samples, 0.03%)</title><rect x="414.7" y="373" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="417.71" y="383.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (857,285,167 samples, 0.01%)</title><rect x="94.7" y="197" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="97.67" y="207.5" ></text>
</g>
<g >
<title>bms_union (2,912,437,966 samples, 0.03%)</title><rect x="967.1" y="373" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="970.10" y="383.5" ></text>
</g>
<g >
<title>index_getattr (1,338,761,308 samples, 0.01%)</title><rect x="123.9" y="245" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="126.91" y="255.5" ></text>
</g>
<g >
<title>_equalList (1,404,439,808 samples, 0.01%)</title><rect x="913.2" y="469" width="0.2" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="916.20" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,111,658,522 samples, 0.01%)</title><rect x="375.0" y="309" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="378.00" y="319.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (4,736,985,633 samples, 0.05%)</title><rect x="212.6" y="565" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="215.63" y="575.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,191,066,282 samples, 0.01%)</title><rect x="1083.5" y="565" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1086.53" y="575.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (3,922,983,179 samples, 0.04%)</title><rect x="420.2" y="309" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="423.22" y="319.5" ></text>
</g>
<g >
<title>pg_comp_crc32c_sse42 (1,227,892,045 samples, 0.01%)</title><rect x="509.1" y="453" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="512.12" y="463.5" ></text>
</g>
<g >
<title>IncrTupleDescRefCount (1,761,002,776 samples, 0.02%)</title><rect x="276.2" y="373" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="279.24" y="383.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,614,756,229 samples, 0.04%)</title><rect x="836.0" y="341" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="839.04" y="351.5" ></text>
</g>
<g >
<title>SimpleLruReadPage_ReadOnly (6,302,699,396 samples, 0.07%)</title><rect x="307.1" y="165" width="0.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="310.08" y="175.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (893,061,517 samples, 0.01%)</title><rect x="93.5" y="741" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="96.45" y="751.5" ></text>
</g>
<g >
<title>lcons (980,634,836 samples, 0.01%)</title><rect x="1154.0" y="757" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1157.04" y="767.5" ></text>
</g>
<g >
<title>gup_fast_pgd_range (1,297,883,686 samples, 0.01%)</title><rect x="351.2" y="85" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="354.21" y="95.5" ></text>
</g>
<g >
<title>make_indexscan (5,843,998,432 samples, 0.06%)</title><rect x="891.3" y="389" width="0.7" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="894.30" y="399.5" ></text>
</g>
<g >
<title>PinBuffer (4,461,308,387 samples, 0.05%)</title><rect x="100.7" y="181" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="103.66" y="191.5" ></text>
</g>
<g >
<title>futex_wait (940,728,870 samples, 0.01%)</title><rect x="363.4" y="213" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="366.40" y="223.5" ></text>
</g>
<g >
<title>[unknown] (1,744,030,300 samples, 0.02%)</title><rect x="174.8" y="501" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="177.77" y="511.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (19,716,156,553 samples, 0.21%)</title><rect x="337.7" y="245" width="2.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="340.71" y="255.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (911,385,890 samples, 0.01%)</title><rect x="386.6" y="309" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="389.62" y="319.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (1,141,927,528 samples, 0.01%)</title><rect x="1072.5" y="565" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1075.54" y="575.5" ></text>
</g>
<g >
<title>LWLockAcquire (5,154,291,814 samples, 0.05%)</title><rect x="231.8" y="517" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="234.79" y="527.5" ></text>
</g>
<g >
<title>bms_is_subset (942,335,630 samples, 0.01%)</title><rect x="1122.4" y="757" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1125.44" y="767.5" ></text>
</g>
<g >
<title>index_getattr (15,447,927,373 samples, 0.16%)</title><rect x="319.6" y="229" width="1.9" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="322.57" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,710,668,874 samples, 0.03%)</title><rect x="1165.3" y="741" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1168.32" y="751.5" ></text>
</g>
<g >
<title>BufTableHashCode (2,912,430,237 samples, 0.03%)</title><rect x="399.8" y="277" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="402.76" y="287.5" ></text>
</g>
<g >
<title>uint32_hash (1,394,273,079 samples, 0.01%)</title><rect x="830.8" y="373" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="833.80" y="383.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (1,118,585,686,514 samples, 11.85%)</title><rect x="263.3" y="517" width="139.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="266.34" y="527.5" >standard_Executor..</text>
</g>
<g >
<title>MemoryContextAlloc (1,515,949,906 samples, 0.02%)</title><rect x="1061.9" y="453" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1064.88" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,288,349,899 samples, 0.02%)</title><rect x="1018.3" y="309" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1021.27" y="319.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (3,143,943,269 samples, 0.03%)</title><rect x="463.1" y="501" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="466.06" y="511.5" ></text>
</g>
<g >
<title>pairingheap_add (915,611,902 samples, 0.01%)</title><rect x="234.3" y="485" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="237.33" y="495.5" ></text>
</g>
<g >
<title>__strlen_avx2 (939,077,941 samples, 0.01%)</title><rect x="1083.2" y="581" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1086.17" y="591.5" ></text>
</g>
<g >
<title>new_list (1,974,289,059 samples, 0.02%)</title><rect x="1013.1" y="261" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1016.05" y="271.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (2,110,556,920 samples, 0.02%)</title><rect x="420.4" y="293" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="423.44" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,457,591,375 samples, 0.03%)</title><rect x="890.7" y="325" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="893.75" y="335.5" ></text>
</g>
<g >
<title>uint32_hash (1,076,239,091 samples, 0.01%)</title><rect x="1188.9" y="757" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1191.88" y="767.5" ></text>
</g>
<g >
<title>preprocess_expression (886,882,643 samples, 0.01%)</title><rect x="124.5" y="517" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="127.48" y="527.5" ></text>
</g>
<g >
<title>pq_getbyte (282,007,372,295 samples, 2.99%)</title><rect x="149.6" y="565" width="35.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="152.60" y="575.5" >pq..</text>
</g>
<g >
<title>AllocSetReset (119,472,898,641 samples, 1.27%)</title><rect x="133.9" y="565" width="15.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="136.94" y="575.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (18,083,246,842 samples, 0.19%)</title><rect x="99.0" y="229" width="2.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="102.04" y="239.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (28,925,189,547 samples, 0.31%)</title><rect x="485.2" y="405" width="3.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="488.18" y="415.5" ></text>
</g>
<g >
<title>LockRelease (10,840,555,824 samples, 0.11%)</title><rect x="236.4" y="421" width="1.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="239.40" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,461,592,818 samples, 0.02%)</title><rect x="518.0" y="405" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="520.97" y="415.5" ></text>
</g>
<g >
<title>int2hashfast (843,400,675 samples, 0.01%)</title><rect x="1033.8" y="149" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1036.76" y="159.5" ></text>
</g>
<g >
<title>noop_dirty_folio (808,015,570 samples, 0.01%)</title><rect x="501.0" y="341" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="504.01" y="351.5" ></text>
</g>
<g >
<title>lappend (1,414,302,413 samples, 0.01%)</title><rect x="278.3" y="405" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="281.26" y="415.5" ></text>
</g>
<g >
<title>LockHeldByMe (10,394,066,677 samples, 0.11%)</title><rect x="947.5" y="357" width="1.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="950.52" y="367.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,754,767,386 samples, 0.05%)</title><rect x="407.4" y="421" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="410.43" y="431.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,034,311,388 samples, 0.01%)</title><rect x="939.0" y="357" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="941.99" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,552,783,294 samples, 0.02%)</title><rect x="178.7" y="373" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="181.65" y="383.5" ></text>
</g>
<g >
<title>palloc0 (4,587,429,299 samples, 0.05%)</title><rect x="1120.5" y="709" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1123.47" y="719.5" ></text>
</g>
<g >
<title>_bt_fix_scankey_strategy (1,262,015,434 samples, 0.01%)</title><rect x="322.6" y="245" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="325.61" y="255.5" ></text>
</g>
<g >
<title>get_typcollation (5,758,015,249 samples, 0.06%)</title><rect x="803.5" y="373" width="0.7" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="806.49" y="383.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,624,955,694 samples, 0.03%)</title><rect x="998.1" y="261" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1001.05" y="271.5" ></text>
</g>
<g >
<title>pstrdup (4,019,711,436 samples, 0.04%)</title><rect x="814.7" y="437" width="0.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="817.75" y="447.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (12,547,369,533 samples, 0.13%)</title><rect x="141.9" y="533" width="1.5" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="144.87" y="543.5" ></text>
</g>
<g >
<title>BufTableLookup (1,965,648,619 samples, 0.02%)</title><rect x="367.4" y="245" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="370.38" y="255.5" ></text>
</g>
<g >
<title>BTreeTupleIsPosting (1,165,727,160 samples, 0.01%)</title><rect x="33.6" y="757" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="36.61" y="767.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (905,502,345 samples, 0.01%)</title><rect x="1123.5" y="741" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1126.54" y="751.5" ></text>
</g>
<g >
<title>PinBufferForBlock (23,767,394,231 samples, 0.25%)</title><rect x="297.8" y="165" width="3.0" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="300.83" y="175.5" ></text>
</g>
<g >
<title>bms_equal (1,303,276,072 samples, 0.01%)</title><rect x="957.7" y="453" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="960.70" y="463.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (2,612,856,083 samples, 0.03%)</title><rect x="868.7" y="437" width="0.4" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="871.74" y="447.5" ></text>
</g>
<g >
<title>new_list (3,010,854,653 samples, 0.03%)</title><rect x="810.0" y="437" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="813.04" y="447.5" ></text>
</g>
<g >
<title>_int_free_merge_chunk (3,561,750,487 samples, 0.04%)</title><rect x="147.5" y="533" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="150.45" y="543.5" ></text>
</g>
<g >
<title>PostmasterMain (17,104,611,586 samples, 0.18%)</title><rect x="122.5" y="725" width="2.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="125.45" y="735.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3,017,083,035 samples, 0.03%)</title><rect x="953.2" y="373" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="956.24" y="383.5" ></text>
</g>
<g >
<title>create_projection_plan (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="517" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="88.40" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,043,775,765 samples, 0.01%)</title><rect x="933.9" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="936.86" y="351.5" ></text>
</g>
<g >
<title>HeapTupleHeaderGetXmin (4,745,048,062 samples, 0.05%)</title><rect x="302.5" y="245" width="0.6" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="305.55" y="255.5" ></text>
</g>
<g >
<title>markVarForSelectPriv (2,090,735,871 samples, 0.02%)</title><rect x="840.3" y="325" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="843.28" y="335.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,199,942,234 samples, 0.01%)</title><rect x="1135.3" y="757" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1138.31" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_futex (28,105,731,095 samples, 0.30%)</title><rect x="485.2" y="373" width="3.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="488.21" y="383.5" ></text>
</g>
<g >
<title>tas (2,550,364,376 samples, 0.03%)</title><rect x="515.1" y="421" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="518.12" y="431.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3,243,776,084 samples, 0.03%)</title><rect x="125.6" y="213" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="128.59" y="223.5" ></text>
</g>
<g >
<title>ProcessQuery (1,761,991,283,524 samples, 18.67%)</title><rect x="233.2" y="549" width="220.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="236.25" y="559.5" >ProcessQuery</text>
</g>
<g >
<title>make_const (3,443,711,668 samples, 0.04%)</title><rect x="838.8" y="373" width="0.4" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="841.81" y="383.5" ></text>
</g>
<g >
<title>PostgresMain (955,971,428 samples, 0.01%)</title><rect x="82.5" y="757" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="85.50" y="767.5" ></text>
</g>
<g >
<title>LWLockQueueSelf (3,032,544,077 samples, 0.03%)</title><rect x="474.5" y="469" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="477.51" y="479.5" ></text>
</g>
<g >
<title>RelationBuildPublicationDesc (1,188,371,041 samples, 0.01%)</title><rect x="88.3" y="757" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="91.32" y="767.5" ></text>
</g>
<g >
<title>new_list (1,338,755,933 samples, 0.01%)</title><rect x="1018.7" y="357" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1021.68" y="367.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (7,462,625,029 samples, 0.08%)</title><rect x="196.5" y="341" width="1.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="199.54" y="351.5" ></text>
</g>
<g >
<title>new_list (1,867,466,416 samples, 0.02%)</title><rect x="922.5" y="437" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="925.54" y="447.5" ></text>
</g>
<g >
<title>examine_variable (37,881,588,981 samples, 0.40%)</title><rect x="1031.6" y="245" width="4.8" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="1034.64" y="255.5" ></text>
</g>
<g >
<title>oper (21,202,343,544 samples, 0.22%)</title><rect x="836.0" y="373" width="2.6" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="838.98" y="383.5" ></text>
</g>
<g >
<title>socket_flush (153,748,549,775 samples, 1.63%)</title><rect x="188.1" y="581" width="19.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="191.11" y="591.5" ></text>
</g>
<g >
<title>eqsel (1,640,839,172 samples, 0.02%)</title><rect x="1133.5" y="757" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1136.53" y="767.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (5,086,780,310 samples, 0.05%)</title><rect x="177.3" y="405" width="0.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="180.25" y="415.5" ></text>
</g>
<g >
<title>newNode (2,514,912,872 samples, 0.03%)</title><rect x="847.8" y="405" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="850.82" y="415.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (2,012,395,515 samples, 0.02%)</title><rect x="822.8" y="325" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="825.82" y="335.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (4,784,563,854 samples, 0.05%)</title><rect x="124.6" y="277" width="0.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="127.59" y="287.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (951,266,807 samples, 0.01%)</title><rect x="799.3" y="485" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="802.29" y="495.5" ></text>
</g>
<g >
<title>ExecScanFetch (954,083,181 samples, 0.01%)</title><rect x="342.0" y="373" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="345.05" y="383.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (18,083,246,842 samples, 0.19%)</title><rect x="99.0" y="325" width="2.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="102.04" y="335.5" ></text>
</g>
<g >
<title>bsearch (11,925,768,231 samples, 0.13%)</title><rect x="284.4" y="261" width="1.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="287.35" y="271.5" ></text>
</g>
<g >
<title>_mdnblocks (8,379,072,786 samples, 0.09%)</title><rect x="932.1" y="357" width="1.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="935.12" y="367.5" ></text>
</g>
<g >
<title>ReadBufferExtended (11,970,693,185 samples, 0.13%)</title><rect x="83.2" y="261" width="1.5" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="86.22" y="271.5" ></text>
</g>
<g >
<title>markVarForSelectPriv (6,001,477,509 samples, 0.06%)</title><rect x="855.4" y="357" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="858.37" y="367.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,329,600,988 samples, 0.01%)</title><rect x="1147.6" y="597" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1150.58" y="607.5" ></text>
</g>
<g >
<title>add_row_identity_columns (13,479,153,927 samples, 0.14%)</title><rect x="920.6" y="469" width="1.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="923.60" y="479.5" ></text>
</g>
<g >
<title>table_openrv_extended (109,699,979,041 samples, 1.16%)</title><rect x="817.3" y="453" width="13.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="820.34" y="463.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,110,589,920 samples, 0.01%)</title><rect x="881.6" y="341" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="884.65" y="351.5" ></text>
</g>
<g >
<title>bms_add_member (2,455,004,040 samples, 0.03%)</title><rect x="1059.7" y="469" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1062.67" y="479.5" ></text>
</g>
<g >
<title>create_modifytable_plan (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="517" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="127.24" y="527.5" ></text>
</g>
<g >
<title>do_futex (1,792,791,505 samples, 0.02%)</title><rect x="382.2" y="149" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="385.19" y="159.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (799,899,706 samples, 0.01%)</title><rect x="110.7" y="741" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="113.69" y="751.5" ></text>
</g>
<g >
<title>_bt_checkpage (4,355,496,815 samples, 0.05%)</title><rect x="335.7" y="213" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="338.67" y="223.5" ></text>
</g>
<g >
<title>transformExpr (54,217,444,891 samples, 0.57%)</title><rect x="834.1" y="437" width="6.7" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="837.06" y="447.5" ></text>
</g>
<g >
<title>bms_add_member (4,370,609,951 samples, 0.05%)</title><rect x="976.0" y="421" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="979.04" y="431.5" ></text>
</g>
<g >
<title>ExecCheckOneRelPerms (10,962,028,603 samples, 0.12%)</title><rect x="406.7" y="469" width="1.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="409.69" y="479.5" ></text>
</g>
<g >
<title>add_base_rels_to_query (191,800,894,697 samples, 2.03%)</title><rect x="926.3" y="469" width="24.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="929.31" y="479.5" >a..</text>
</g>
<g >
<title>XLogBytePosToRecPtr (1,197,859,909 samples, 0.01%)</title><rect x="380.6" y="293" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="383.63" y="303.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,515,433,987 samples, 0.05%)</title><rect x="803.6" y="341" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="806.65" y="351.5" ></text>
</g>
<g >
<title>newNode (3,480,104,745 samples, 0.04%)</title><rect x="1116.7" y="709" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1119.65" y="719.5" ></text>
</g>
<g >
<title>AllocSetAlloc (823,654,814 samples, 0.01%)</title><rect x="970.1" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="973.07" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (1,072,480,914 samples, 0.01%)</title><rect x="276.3" y="341" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="279.32" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,100,437,583 samples, 0.01%)</title><rect x="882.1" y="469" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="885.07" y="479.5" ></text>
</g>
<g >
<title>heap_prune_chain (5,090,719,240 samples, 0.05%)</title><rect x="1145.8" y="725" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1148.80" y="735.5" ></text>
</g>
<g >
<title>AllocSetAlloc (13,334,878,159 samples, 0.14%)</title><rect x="291.4" y="261" width="1.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="294.38" y="271.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (3,396,767,320 samples, 0.04%)</title><rect x="205.1" y="325" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="208.08" y="335.5" ></text>
</g>
<g >
<title>AllocSetFree (1,160,705,047 samples, 0.01%)</title><rect x="1001.6" y="261" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1004.57" y="271.5" ></text>
</g>
<g >
<title>transformTargetList (63,503,310,725 samples, 0.67%)</title><rect x="832.9" y="469" width="7.9" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="835.90" y="479.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (840,831,470 samples, 0.01%)</title><rect x="341.6" y="293" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="344.59" y="303.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,078,494,568 samples, 0.02%)</title><rect x="362.3" y="325" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="365.31" y="335.5" ></text>
</g>
<g >
<title>list_make1_impl (2,446,408,950 samples, 0.03%)</title><rect x="994.2" y="341" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="997.15" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3,500,020,984 samples, 0.04%)</title><rect x="369.8" y="309" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="372.77" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (963,590,620 samples, 0.01%)</title><rect x="890.1" y="229" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="893.11" y="239.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,097,949,517 samples, 0.04%)</title><rect x="964.8" y="357" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="967.83" y="367.5" ></text>
</g>
<g >
<title>bms_add_members (2,241,343,566 samples, 0.02%)</title><rect x="975.6" y="437" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="978.60" y="447.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (2,079,231,909 samples, 0.02%)</title><rect x="83.0" y="245" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="85.96" y="255.5" ></text>
</g>
<g >
<title>_bt_first (1,000,886,773 samples, 0.01%)</title><rect x="128.2" y="757" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="131.18" y="767.5" ></text>
</g>
<g >
<title>table_close (1,764,884,996 samples, 0.02%)</title><rect x="860.8" y="517" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="863.79" y="527.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (2,534,523,026 samples, 0.03%)</title><rect x="1010.3" y="229" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1013.25" y="239.5" ></text>
</g>
<g >
<title>restriction_is_always_false (1,074,553,496 samples, 0.01%)</title><rect x="981.9" y="405" width="0.1" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="984.88" y="415.5" ></text>
</g>
<g >
<title>tag_hash (2,817,887,288 samples, 0.03%)</title><rect x="518.8" y="421" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="521.79" y="431.5" ></text>
</g>
<g >
<title>lappend (2,225,948,189 samples, 0.02%)</title><rect x="833.3" y="453" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="836.27" y="463.5" ></text>
</g>
<g >
<title>AllocSetReset (3,978,513,415 samples, 0.04%)</title><rect x="223.4" y="501" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="226.45" y="511.5" ></text>
</g>
<g >
<title>try_grab_folio_fast (1,316,078,721 samples, 0.01%)</title><rect x="483.2" y="229" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="486.25" y="239.5" ></text>
</g>
<g >
<title>newNode (4,449,532,778 samples, 0.05%)</title><rect x="944.8" y="405" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="947.78" y="415.5" ></text>
</g>
<g >
<title>set_grouped_rel_pathlist (1,063,626,410 samples, 0.01%)</title><rect x="1181.4" y="757" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1184.41" y="767.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (2,836,526,667 samples, 0.03%)</title><rect x="901.7" y="373" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="904.72" y="383.5" ></text>
</g>
<g >
<title>get_relation_statistics (2,467,205,671 samples, 0.03%)</title><rect x="939.2" y="405" width="0.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="942.21" y="415.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="533" width="3.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="104.45" y="543.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,452,444,236 samples, 0.02%)</title><rect x="953.4" y="357" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="956.37" y="367.5" ></text>
</g>
<g >
<title>XLogInsert (835,729,793 samples, 0.01%)</title><rect x="1145.7" y="725" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1148.66" y="735.5" ></text>
</g>
<g >
<title>ExecFindJunkAttributeInTlist (4,696,656,430 samples, 0.05%)</title><rect x="412.9" y="453" width="0.6" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="415.93" y="463.5" ></text>
</g>
<g >
<title>assign_collations_walker (12,550,840,051 samples, 0.13%)</title><rect x="802.7" y="389" width="1.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="805.66" y="399.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,125,108,793 samples, 0.01%)</title><rect x="1062.2" y="453" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1065.20" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,778,995,805 samples, 0.02%)</title><rect x="1167.3" y="757" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1170.32" y="767.5" ></text>
</g>
<g >
<title>bms_add_members (3,419,422,218 samples, 0.04%)</title><rect x="878.7" y="469" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="881.72" y="479.5" ></text>
</g>
<g >
<title>match_clause_to_indexcol (22,178,605,524 samples, 0.24%)</title><rect x="1019.8" y="341" width="2.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1022.76" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,116,617,332 samples, 0.01%)</title><rect x="363.4" y="261" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="366.39" y="271.5" ></text>
</g>
<g >
<title>index_endscan (62,615,411,642 samples, 0.66%)</title><rect x="239.0" y="421" width="7.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="241.97" y="431.5" ></text>
</g>
<g >
<title>ExecInitExprRec (23,376,274,234 samples, 0.25%)</title><rect x="418.7" y="357" width="3.0" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="421.75" y="367.5" ></text>
</g>
<g >
<title>ExecIndexScan (1,421,941,776 samples, 0.02%)</title><rect x="43.0" y="757" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="45.96" y="767.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (9,584,892,437 samples, 0.10%)</title><rect x="250.1" y="453" width="1.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="253.11" y="463.5" ></text>
</g>
<g >
<title>order_qual_clauses (1,356,639,565 samples, 0.01%)</title><rect x="892.0" y="389" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="895.03" y="399.5" ></text>
</g>
<g >
<title>pfree (1,374,314,605 samples, 0.01%)</title><rect x="994.5" y="357" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="997.46" y="367.5" ></text>
</g>
<g >
<title>tag_hash (3,579,278,038 samples, 0.04%)</title><rect x="948.0" y="309" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="950.95" y="319.5" ></text>
</g>
<g >
<title>table_close (1,535,344,026 samples, 0.02%)</title><rect x="922.9" y="469" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="925.92" y="479.5" ></text>
</g>
<g >
<title>bms_add_members (2,775,940,946 samples, 0.03%)</title><rect x="877.3" y="485" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="880.31" y="495.5" ></text>
</g>
<g >
<title>ExecScanFetch (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="405" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1160.94" y="415.5" ></text>
</g>
<g >
<title>vruntime_eligible (1,229,357,175 samples, 0.01%)</title><rect x="171.4" y="277" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="174.43" y="287.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (979,646,950 samples, 0.01%)</title><rect x="347.6" y="357" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="350.61" y="367.5" ></text>
</g>
<g >
<title>InjectionPointRun (3,409,486,832 samples, 0.04%)</title><rect x="362.2" y="357" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="365.16" y="367.5" ></text>
</g>
<g >
<title>_start (7,629,157,056,107 samples, 80.84%)</title><rect x="130.1" y="757" width="953.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="133.07" y="767.5" >_start</text>
</g>
<g >
<title>BackendStartup (4,239,417,954 samples, 0.04%)</title><rect x="1157.9" y="709" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1160.94" y="719.5" ></text>
</g>
<g >
<title>set_cheapest (6,002,329,311 samples, 0.06%)</title><rect x="985.1" y="421" width="0.7" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="988.09" y="431.5" ></text>
</g>
<g >
<title>eval_const_expressions (2,314,758,137 samples, 0.02%)</title><rect x="1185.0" y="725" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1187.99" y="735.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (842,079,426 samples, 0.01%)</title><rect x="126.0" y="197" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="129.00" y="207.5" ></text>
</g>
<g >
<title>hash_bytes (3,662,157,416 samples, 0.04%)</title><rect x="867.6" y="421" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="870.63" y="431.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3,849,736,508 samples, 0.04%)</title><rect x="261.6" y="389" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="264.59" y="399.5" ></text>
</g>
<g >
<title>pg_plan_queries (2,495,599,539 samples, 0.03%)</title><rect x="126.5" y="597" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="129.52" y="607.5" ></text>
</g>
<g >
<title>palloc0 (2,072,461,251 samples, 0.02%)</title><rect x="118.1" y="741" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="121.14" y="751.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,795,923,128 samples, 0.02%)</title><rect x="221.1" y="533" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="224.15" y="543.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (29,181,461,865 samples, 0.31%)</title><rect x="297.2" y="261" width="3.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="300.20" y="271.5" ></text>
</g>
<g >
<title>bms_next_member (1,954,007,809 samples, 0.02%)</title><rect x="360.1" y="341" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="363.08" y="351.5" ></text>
</g>
<g >
<title>__libc_recv (813,248,969 samples, 0.01%)</title><rect x="122.4" y="757" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="125.35" y="767.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (14,067,847,285 samples, 0.15%)</title><rect x="888.7" y="341" width="1.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="891.74" y="351.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (2,893,093,801 samples, 0.03%)</title><rect x="269.3" y="373" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="272.29" y="383.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (2,790,595,953 samples, 0.03%)</title><rect x="454.1" y="533" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="457.09" y="543.5" ></text>
</g>
<g >
<title>_bt_moveright (8,153,263,592 samples, 0.09%)</title><rect x="336.7" y="245" width="1.0" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="339.69" y="255.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos64 (991,266,965 samples, 0.01%)</title><rect x="1169.1" y="757" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1172.12" y="767.5" ></text>
</g>
<g >
<title>SearchCatCache3 (8,271,685,263 samples, 0.09%)</title><rect x="1033.0" y="197" width="1.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1036.03" y="207.5" ></text>
</g>
<g >
<title>BufferAlloc (1,170,278,593 samples, 0.01%)</title><rect x="34.6" y="757" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="37.58" y="767.5" ></text>
</g>
<g >
<title>DeconstructQualifiedName (2,039,846,816 samples, 0.02%)</title><rect x="851.8" y="373" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="854.79" y="383.5" ></text>
</g>
<g >
<title>IsTidEqualClause (1,120,760,728 samples, 0.01%)</title><rect x="54.3" y="757" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="57.27" y="767.5" ></text>
</g>
<g >
<title>inode_needs_update_time.part.0 (2,889,942,210 samples, 0.03%)</title><rect x="495.7" y="357" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="498.69" y="367.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,198,847,170 samples, 0.01%)</title><rect x="846.5" y="389" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="849.46" y="399.5" ></text>
</g>
<g >
<title>hash_bytes (2,649,272,489 samples, 0.03%)</title><rect x="95.1" y="133" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="98.12" y="143.5" ></text>
</g>
<g >
<title>AtEOXact_Buffers (3,038,626,343 samples, 0.03%)</title><rect x="461.1" y="517" width="0.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="464.15" y="527.5" ></text>
</g>
<g >
<title>colNameToVar (19,505,756,175 samples, 0.21%)</title><rect x="854.2" y="389" width="2.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="857.25" y="399.5" ></text>
</g>
<g >
<title>transformColumnRef (23,771,471,386 samples, 0.25%)</title><rect x="853.9" y="405" width="2.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="856.88" y="415.5" ></text>
</g>
<g >
<title>_bt_next (10,278,226,071 samples, 0.11%)</title><rect x="280.4" y="293" width="1.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="283.44" y="303.5" ></text>
</g>
<g >
<title>PageGetItemId (3,507,611,952 samples, 0.04%)</title><rect x="80.2" y="757" width="0.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="83.16" y="767.5" ></text>
</g>
<g >
<title>MemoryContextAllocExtended (1,303,191,673 samples, 0.01%)</title><rect x="1064.7" y="405" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1067.71" y="415.5" ></text>
</g>
<g >
<title>new_list (1,347,212,180 samples, 0.01%)</title><rect x="896.4" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="899.42" y="447.5" ></text>
</g>
<g >
<title>sched_balance_newidle (3,666,456,715 samples, 0.04%)</title><rect x="159.9" y="309" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="162.95" y="319.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (1,447,545,201 samples, 0.02%)</title><rect x="1170.9" y="757" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1173.86" y="767.5" ></text>
</g>
<g >
<title>newNode (2,645,324,402 samples, 0.03%)</title><rect x="811.9" y="437" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="814.91" y="447.5" ></text>
</g>
<g >
<title>lappend (2,970,968,260 samples, 0.03%)</title><rect x="815.2" y="453" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="818.25" y="463.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (2,878,902,493 samples, 0.03%)</title><rect x="1033.6" y="165" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1036.58" y="175.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (835,763,000 samples, 0.01%)</title><rect x="399.5" y="293" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="402.46" y="303.5" ></text>
</g>
<g >
<title>create_plan_recurse (51,371,126,200 samples, 0.54%)</title><rect x="885.8" y="437" width="6.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="888.81" y="447.5" ></text>
</g>
<g >
<title>ReadBuffer (18,083,246,842 samples, 0.19%)</title><rect x="99.0" y="293" width="2.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="102.04" y="303.5" ></text>
</g>
<g >
<title>propagate_entity_load_avg (1,291,196,798 samples, 0.01%)</title><rect x="171.2" y="261" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="174.16" y="271.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,668,131,060 samples, 0.05%)</title><rect x="1042.4" y="309" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1045.35" y="319.5" ></text>
</g>
<g >
<title>LWLockWakeup (2,368,863,812 samples, 0.03%)</title><rect x="470.3" y="421" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="473.28" y="431.5" ></text>
</g>
<g >
<title>list_copy (2,637,465,642 samples, 0.03%)</title><rect x="899.4" y="469" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="902.38" y="479.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (1,689,915,162 samples, 0.02%)</title><rect x="266.4" y="389" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="269.37" y="399.5" ></text>
</g>
<g >
<title>epoll_wait (171,042,344,225 samples, 1.81%)</title><rect x="153.4" y="485" width="21.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="156.38" y="495.5" >e..</text>
</g>
<g >
<title>ExecShutdownNode_walker (3,620,728,284 samples, 0.04%)</title><rect x="402.5" y="437" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="405.48" y="447.5" ></text>
</g>
<g >
<title>_find_next_bit (2,037,552,904 samples, 0.02%)</title><rect x="201.9" y="245" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="204.92" y="255.5" ></text>
</g>
<g >
<title>ExecutePlan (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="565" width="2.8" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="85.62" y="575.5" ></text>
</g>
<g >
<title>GetCurrentTransactionId (90,124,061,275 samples, 0.95%)</title><rect x="348.3" y="357" width="11.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="351.28" y="367.5" ></text>
</g>
<g >
<title>skb_release_head_state (10,423,271,009 samples, 0.11%)</title><rect x="180.1" y="357" width="1.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="183.06" y="367.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="533" width="1.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="127.59" y="543.5" ></text>
</g>
<g >
<title>__futex_wait (925,058,534 samples, 0.01%)</title><rect x="296.8" y="101" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="299.85" y="111.5" ></text>
</g>
<g >
<title>__futex_hash (832,486,541 samples, 0.01%)</title><rect x="482.3" y="293" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="485.29" y="303.5" ></text>
</g>
<g >
<title>datumIsEqual (1,164,474,894 samples, 0.01%)</title><rect x="1130.8" y="757" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1133.77" y="767.5" ></text>
</g>
<g >
<title>bms_copy (2,439,436,943 samples, 0.03%)</title><rect x="967.1" y="357" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="970.11" y="367.5" ></text>
</g>
<g >
<title>palloc0 (3,648,667,279 samples, 0.04%)</title><rect x="891.6" y="357" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="894.57" y="367.5" ></text>
</g>
<g >
<title>SetHintBits (3,621,908,865 samples, 0.04%)</title><rect x="1146.5" y="693" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1149.52" y="703.5" ></text>
</g>
<g >
<title>bms_copy (3,425,241,920 samples, 0.04%)</title><rect x="879.5" y="453" width="0.4" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="882.45" y="463.5" ></text>
</g>
<g >
<title>init_htab (10,759,939,116 samples, 0.11%)</title><rect x="1063.7" y="453" width="1.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1066.74" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irq (872,704,541 samples, 0.01%)</title><rect x="156.0" y="373" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="159.01" y="383.5" ></text>
</g>
<g >
<title>balance_dirty_pages_ratelimited_flags (2,270,378,856 samples, 0.02%)</title><rect x="496.3" y="357" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="499.28" y="367.5" ></text>
</g>
<g >
<title>_bt_search (801,296,149 samples, 0.01%)</title><rect x="1158.3" y="309" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="1161.26" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,585,770,857 samples, 0.02%)</title><rect x="340.3" y="229" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="343.26" y="239.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,433,017,387 samples, 0.02%)</title><rect x="400.5" y="261" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="403.53" y="271.5" ></text>
</g>
<g >
<title>clauselist_selectivity (803,901,079 samples, 0.01%)</title><rect x="126.6" y="405" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="129.56" y="415.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (1,016,382,047 samples, 0.01%)</title><rect x="382.3" y="37" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="385.25" y="47.5" ></text>
</g>
<g >
<title>finalize_primnode (5,406,581,071 samples, 0.06%)</title><rect x="881.1" y="405" width="0.7" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="884.11" y="415.5" ></text>
</g>
<g >
<title>psi_group_change (6,389,213,685 samples, 0.07%)</title><rect x="164.6" y="325" width="0.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="167.59" y="335.5" ></text>
</g>
<g >
<title>lappend (2,549,506,231 samples, 0.03%)</title><rect x="1013.0" y="277" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1015.98" y="287.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (1,053,678,242 samples, 0.01%)</title><rect x="81.2" y="757" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="84.17" y="767.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (833,108,571 samples, 0.01%)</title><rect x="364.5" y="309" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="367.47" y="319.5" ></text>
</g>
<g >
<title>list_copy (3,701,829,405 samples, 0.04%)</title><rect x="931.1" y="389" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="934.13" y="399.5" ></text>
</g>
<g >
<title>ReleaseCatCache (929,251,302 samples, 0.01%)</title><rect x="973.4" y="357" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="976.41" y="367.5" ></text>
</g>
<g >
<title>_bt_compare (6,445,443,762 samples, 0.07%)</title><rect x="125.2" y="245" width="0.8" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="128.19" y="255.5" ></text>
</g>
<g >
<title>update_entity_lag (2,996,225,688 samples, 0.03%)</title><rect x="169.4" y="277" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="172.41" y="287.5" ></text>
</g>
<g >
<title>make_eq_member (6,059,993,427 samples, 0.06%)</title><rect x="970.6" y="373" width="0.7" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="973.57" y="383.5" ></text>
</g>
<g >
<title>bms_copy (1,707,657,308 samples, 0.02%)</title><rect x="882.0" y="501" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="884.99" y="511.5" ></text>
</g>
<g >
<title>__wake_up_common (2,462,322,841 samples, 0.03%)</title><rect x="181.0" y="277" width="0.3" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="184.02" y="287.5" ></text>
</g>
<g >
<title>palloc (2,307,150,765 samples, 0.02%)</title><rect x="1079.1" y="565" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1082.15" y="575.5" ></text>
</g>
<g >
<title>AtEOXact_Aio (834,395,689 samples, 0.01%)</title><rect x="30.7" y="757" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="33.75" y="767.5" ></text>
</g>
<g >
<title>ExecInitIndexScan (995,157,116 samples, 0.01%)</title><rect x="43.3" y="757" width="0.1" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="46.29" y="767.5" ></text>
</g>
<g >
<title>get_opmethod_canorder (941,543,698 samples, 0.01%)</title><rect x="963.7" y="373" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="966.73" y="383.5" ></text>
</g>
<g >
<title>new_list (1,348,908,445 samples, 0.01%)</title><rect x="977.2" y="405" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="980.21" y="415.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (28,718,092,470 samples, 0.30%)</title><rect x="193.9" y="389" width="3.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="196.92" y="399.5" ></text>
</g>
<g >
<title>newNode (4,692,271,083 samples, 0.05%)</title><rect x="893.4" y="453" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="896.36" y="463.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (2,832,400,306 samples, 0.03%)</title><rect x="404.2" y="485" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="407.24" y="495.5" ></text>
</g>
<g >
<title>set_sentinel (1,892,021,518 samples, 0.02%)</title><rect x="1182.3" y="757" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1185.35" y="767.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (1,038,291,033 samples, 0.01%)</title><rect x="333.2" y="181" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="336.22" y="191.5" ></text>
</g>
<g >
<title>pfree (50,233,350,431 samples, 0.53%)</title><rect x="240.2" y="389" width="6.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="243.16" y="399.5" ></text>
</g>
<g >
<title>ReleaseCatCache (958,125,529 samples, 0.01%)</title><rect x="964.6" y="357" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="967.59" y="367.5" ></text>
</g>
<g >
<title>available_idle_cpu (1,006,977,122 samples, 0.01%)</title><rect x="200.6" y="277" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="203.56" y="287.5" ></text>
</g>
<g >
<title>ReadBuffer_common (2,294,684,148 samples, 0.02%)</title><rect x="123.5" y="213" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="126.54" y="223.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (4,378,938,923 samples, 0.05%)</title><rect x="12.0" y="741" width="0.6" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="15.02" y="751.5" ></text>
</g>
<g >
<title>_bt_getroot (34,932,396,469 samples, 0.37%)</title><rect x="94.7" y="325" width="4.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="97.67" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,006,464,559 samples, 0.01%)</title><rect x="1059.8" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1062.83" y="431.5" ></text>
</g>
<g >
<title>file_remove_privs_flags (1,086,661,258 samples, 0.01%)</title><rect x="495.4" y="373" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="498.43" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,693,747,635 samples, 0.02%)</title><rect x="1079.2" y="549" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1082.23" y="559.5" ></text>
</g>
<g >
<title>record_times (2,604,745,673 samples, 0.03%)</title><rect x="163.9" y="325" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="166.87" y="335.5" ></text>
</g>
<g >
<title>postmaster_child_launch (17,104,611,586 samples, 0.18%)</title><rect x="122.5" y="677" width="2.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="125.45" y="687.5" ></text>
</g>
<g >
<title>set_base_rel_sizes (803,901,079 samples, 0.01%)</title><rect x="126.6" y="469" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="129.56" y="479.5" ></text>
</g>
<g >
<title>index_open (32,097,238,189 samples, 0.34%)</title><rect x="940.1" y="405" width="4.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="943.10" y="415.5" ></text>
</g>
<g >
<title>list_free (1,748,588,045 samples, 0.02%)</title><rect x="251.9" y="421" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="254.87" y="431.5" ></text>
</g>
<g >
<title>_bt_search (10,604,333,254 samples, 0.11%)</title><rect x="125.2" y="277" width="1.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="128.19" y="287.5" ></text>
</g>
<g >
<title>index_getnext_slot (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="405" width="6.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="97.67" y="415.5" ></text>
</g>
<g >
<title>XLogRecPtrToBytePos (1,279,777,161 samples, 0.01%)</title><rect x="380.8" y="293" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="383.78" y="303.5" ></text>
</g>
<g >
<title>LockTagHashCode (4,256,535,457 samples, 0.05%)</title><rect x="820.2" y="373" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="823.17" y="383.5" ></text>
</g>
<g >
<title>hash_search (4,045,493,379 samples, 0.04%)</title><rect x="443.4" y="389" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="446.35" y="399.5" ></text>
</g>
<g >
<title>newNode (4,075,369,666 samples, 0.04%)</title><rect x="1117.1" y="725" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1120.09" y="735.5" ></text>
</g>
<g >
<title>get_timeout_active (1,194,799,849 samples, 0.01%)</title><rect x="797.9" y="549" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="800.94" y="559.5" ></text>
</g>
<g >
<title>shmem_file_write_iter (48,801,298,488 samples, 0.52%)</title><rect x="495.3" y="389" width="6.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="498.29" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (964,630,174 samples, 0.01%)</title><rect x="467.7" y="405" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="470.66" y="415.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,050,953,049 samples, 0.01%)</title><rect x="860.9" y="469" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="863.87" y="479.5" ></text>
</g>
<g >
<title>index_other_operands_eval_cost (4,061,864,277 samples, 0.04%)</title><rect x="1013.8" y="293" width="0.5" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="1016.78" y="303.5" ></text>
</g>
<g >
<title>copyObjectImpl (11,801,582,555 samples, 0.13%)</title><rect x="952.2" y="437" width="1.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="955.20" y="447.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (8,004,512,788 samples, 0.08%)</title><rect x="889.5" y="309" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="892.50" y="319.5" ></text>
</g>
<g >
<title>futex_wait (1,600,736,131 samples, 0.02%)</title><rect x="490.6" y="341" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="493.55" y="351.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (1,611,855,632 samples, 0.02%)</title><rect x="268.6" y="261" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="271.56" y="271.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (7,053,214,840 samples, 0.07%)</title><rect x="322.0" y="261" width="0.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="325.01" y="271.5" ></text>
</g>
<g >
<title>lappend (2,542,735,187 samples, 0.03%)</title><rect x="869.2" y="533" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="872.15" y="543.5" ></text>
</g>
<g >
<title>subquery_planner (2,948,854,979 samples, 0.03%)</title><rect x="1184.9" y="757" width="0.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="1187.92" y="767.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,869,021,804 samples, 0.02%)</title><rect x="296.4" y="245" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="299.35" y="255.5" ></text>
</g>
<g >
<title>ExecScan (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="469" width="6.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="97.67" y="479.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (1,690,084,868 samples, 0.02%)</title><rect x="822.0" y="389" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="825.04" y="399.5" ></text>
</g>
<g >
<title>bms_copy (1,936,166,773 samples, 0.02%)</title><rect x="878.8" y="453" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="881.79" y="463.5" ></text>
</g>
<g >
<title>_bt_lockbuf (3,611,842,618 samples, 0.04%)</title><rect x="336.2" y="213" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="339.22" y="223.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,443,244,912 samples, 0.03%)</title><rect x="444.3" y="325" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="447.35" y="335.5" ></text>
</g>
<g >
<title>bsearch (6,440,795,777 samples, 0.07%)</title><rect x="266.9" y="325" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="269.87" y="335.5" ></text>
</g>
<g >
<title>new_list (1,611,130,333 samples, 0.02%)</title><rect x="897.7" y="453" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="900.67" y="463.5" ></text>
</g>
<g >
<title>get_restriction_variable (803,901,079 samples, 0.01%)</title><rect x="126.6" y="277" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="129.56" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,021,382,914 samples, 0.01%)</title><rect x="1054.7" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1057.70" y="399.5" ></text>
</g>
<g >
<title>palloc0 (4,527,202,154 samples, 0.05%)</title><rect x="799.6" y="533" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="802.55" y="543.5" ></text>
</g>
<g >
<title>PortalRunMulti (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="581" width="1.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="127.59" y="591.5" ></text>
</g>
<g >
<title>transformAssignedExpr (11,172,551,588 samples, 0.12%)</title><rect x="840.9" y="453" width="1.4" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" />
<text x="843.93" y="463.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (12,193,958,647 samples, 0.13%)</title><rect x="861.1" y="485" width="1.5" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="864.11" y="495.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,004,809,256 samples, 0.01%)</title><rect x="354.7" y="101" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="357.71" y="111.5" ></text>
</g>
<g >
<title>IsTransactionOrTransactionBlock (1,128,014,306 samples, 0.01%)</title><rect x="54.5" y="757" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="57.49" y="767.5" ></text>
</g>
<g >
<title>ExecUpdatePrologue (61,790,980,876 samples, 0.65%)</title><rect x="388.7" y="421" width="7.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="391.74" y="431.5" ></text>
</g>
<g >
<title>ExecTypeFromTL (36,603,844,297 samples, 0.39%)</title><rect x="433.7" y="405" width="4.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="436.73" y="415.5" ></text>
</g>
<g >
<title>eval_const_expressions (16,356,130,295 samples, 0.17%)</title><rect x="1055.9" y="469" width="2.0" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1058.86" y="479.5" ></text>
</g>
<g >
<title>hash_search (6,024,055,885 samples, 0.06%)</title><rect x="867.3" y="453" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="870.34" y="463.5" ></text>
</g>
<g >
<title>hash_bytes (2,176,304,616 samples, 0.02%)</title><rect x="440.8" y="325" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="443.80" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (951,620,768 samples, 0.01%)</title><rect x="910.0" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="912.98" y="431.5" ></text>
</g>
<g >
<title>add_tabstat_xact_level (7,987,082,596 samples, 0.08%)</title><rect x="387.3" y="325" width="1.0" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="390.34" y="335.5" ></text>
</g>
<g >
<title>finalize_plan (1,348,135,316 samples, 0.01%)</title><rect x="1137.2" y="757" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1140.21" y="767.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (2,295,493,124 samples, 0.02%)</title><rect x="814.8" y="405" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="817.85" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,816,924,155 samples, 0.02%)</title><rect x="862.9" y="453" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="865.87" y="463.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (2,314,758,137 samples, 0.02%)</title><rect x="1185.0" y="597" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.99" y="607.5" ></text>
</g>
<g >
<title>tts_buffer_heap_init (860,864,497 samples, 0.01%)</title><rect x="1188.3" y="757" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1191.28" y="767.5" ></text>
</g>
<g >
<title>ExecIndexScan (30,411,646,289 samples, 0.32%)</title><rect x="278.6" y="421" width="3.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="281.59" y="431.5" ></text>
</g>
<g >
<title>palloc (1,507,764,954 samples, 0.02%)</title><rect x="860.0" y="469" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="863.04" y="479.5" ></text>
</g>
<g >
<title>analyze_requires_snapshot (812,530,130 samples, 0.01%)</title><rect x="457.1" y="581" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="460.05" y="591.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (3,605,761,980 samples, 0.04%)</title><rect x="483.6" y="389" width="0.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="486.58" y="399.5" ></text>
</g>
<g >
<title>do_epoll_wait (143,870,570,715 samples, 1.52%)</title><rect x="154.3" y="421" width="18.0" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="157.29" y="431.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (2,015,623,714 samples, 0.02%)</title><rect x="185.8" y="533" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="188.78" y="543.5" ></text>
</g>
<g >
<title>pg_qsort (1,294,125,140 samples, 0.01%)</title><rect x="1169.6" y="757" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1172.57" y="767.5" ></text>
</g>
<g >
<title>pfree (2,489,491,219 samples, 0.03%)</title><rect x="187.2" y="565" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="190.22" y="575.5" ></text>
</g>
<g >
<title>palloc0 (6,325,597,044 samples, 0.07%)</title><rect x="949.4" y="405" width="0.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="952.45" y="415.5" ></text>
</g>
<g >
<title>AllocSetFree (1,313,927,560 samples, 0.01%)</title><rect x="321.6" y="229" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="324.60" y="239.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,050,140,203 samples, 0.04%)</title><rect x="846.8" y="357" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="849.84" y="367.5" ></text>
</g>
<g >
<title>core_yyensure_buffer_stack (2,694,396,288 samples, 0.03%)</title><rect x="871.0" y="501" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="873.98" y="511.5" ></text>
</g>
<g >
<title>wipe_mem (2,851,019,751 samples, 0.03%)</title><rect x="133.5" y="485" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="136.46" y="495.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,145,363,902 samples, 0.03%)</title><rect x="1046.6" y="421" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1049.59" y="431.5" ></text>
</g>
<g >
<title>PortalDefineQuery (1,601,466,573 samples, 0.02%)</title><rect x="222.4" y="581" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="225.41" y="591.5" ></text>
</g>
<g >
<title>_bt_drop_lock_and_maybe_pin (19,745,523,586 samples, 0.21%)</title><rect x="323.2" y="245" width="2.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="326.20" y="255.5" ></text>
</g>
<g >
<title>remove_useless_joins (923,791,639 samples, 0.01%)</title><rect x="1175.9" y="757" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1178.85" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,287,061,791 samples, 0.02%)</title><rect x="441.5" y="357" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="444.46" y="367.5" ></text>
</g>
<g >
<title>select_task_rq (2,471,554,979 samples, 0.03%)</title><rect x="488.0" y="293" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="490.97" y="303.5" ></text>
</g>
<g >
<title>hash_search (8,377,145,025 samples, 0.09%)</title><rect x="829.9" y="389" width="1.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="832.93" y="399.5" ></text>
</g>
<g >
<title>tag_hash (2,344,320,464 samples, 0.02%)</title><rect x="942.9" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="945.86" y="335.5" ></text>
</g>
<g >
<title>pick_task_fair (936,406,081 samples, 0.01%)</title><rect x="206.5" y="373" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="209.51" y="383.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (897,745,432 samples, 0.01%)</title><rect x="872.7" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="875.72" y="511.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (1,977,147,596 samples, 0.02%)</title><rect x="470.3" y="389" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="473.31" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,252,972,481 samples, 0.01%)</title><rect x="1061.9" y="437" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1064.91" y="447.5" ></text>
</g>
<g >
<title>bms_is_valid_set (822,272,665 samples, 0.01%)</title><rect x="376.2" y="341" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="379.20" y="351.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (6,331,336,411 samples, 0.07%)</title><rect x="1041.3" y="325" width="0.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1044.27" y="335.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (918,288,973 samples, 0.01%)</title><rect x="126.7" y="405" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="129.71" y="415.5" ></text>
</g>
<g >
<title>ExecTypeFromTL (2,464,904,726 samples, 0.03%)</title><rect x="448.6" y="437" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="451.58" y="447.5" ></text>
</g>
<g >
<title>internal_putbytes (2,061,149,292 samples, 0.02%)</title><rect x="187.6" y="549" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="190.63" y="559.5" ></text>
</g>
<g >
<title>WALInsertLockAcquire (6,526,216,529 samples, 0.07%)</title><rect x="381.1" y="309" width="0.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="384.12" y="319.5" ></text>
</g>
<g >
<title>get_hash_entry (1,089,570,486 samples, 0.01%)</title><rect x="214.6" y="533" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="217.61" y="543.5" ></text>
</g>
<g >
<title>main (17,104,611,586 samples, 0.18%)</title><rect x="122.5" y="741" width="2.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="125.45" y="751.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,091,204,463 samples, 0.01%)</title><rect x="508.5" y="405" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="511.52" y="415.5" ></text>
</g>
<g >
<title>_bt_readpage (20,300,675,888 samples, 0.22%)</title><rect x="325.7" y="245" width="2.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="328.67" y="255.5" ></text>
</g>
<g >
<title>TidRangeQualFromRestrictInfoList (3,515,562,238 samples, 0.04%)</title><rect x="1025.8" y="389" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1028.83" y="399.5" ></text>
</g>
<g >
<title>prune_freeze_plan (16,815,267,368 samples, 0.18%)</title><rect x="1145.8" y="741" width="2.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1148.79" y="751.5" ></text>
</g>
<g >
<title>_bt_readpage (2,568,695,668 samples, 0.03%)</title><rect x="1157.9" y="293" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1160.94" y="303.5" ></text>
</g>
<g >
<title>eval_const_expressions (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="517" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1161.36" y="527.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (852,879,021 samples, 0.01%)</title><rect x="1014.1" y="261" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1017.13" y="271.5" ></text>
</g>
<g >
<title>is_redundant_with_indexclauses (821,962,795 samples, 0.01%)</title><rect x="1152.9" y="757" width="0.1" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="1155.85" y="767.5" ></text>
</g>
<g >
<title>check_lock_if_inplace_updateable_rel (930,634,504 samples, 0.01%)</title><rect x="376.3" y="357" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="379.30" y="367.5" ></text>
</g>
<g >
<title>TransactionIdGetStatus (846,240,897 samples, 0.01%)</title><rect x="106.5" y="757" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="109.45" y="767.5" ></text>
</g>
<g >
<title>palloc (1,712,086,258 samples, 0.02%)</title><rect x="1015.5" y="277" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1018.51" y="287.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (1,147,327,467 samples, 0.01%)</title><rect x="1052.9" y="357" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1055.94" y="367.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,253,333,426 samples, 0.01%)</title><rect x="338.0" y="213" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="340.99" y="223.5" ></text>
</g>
<g >
<title>HeapCheckForSerializableConflictOut (1,231,795,487 samples, 0.01%)</title><rect x="302.3" y="245" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="305.35" y="255.5" ></text>
</g>
<g >
<title>get_typavgwidth (6,254,676,316 samples, 0.07%)</title><rect x="1047.4" y="453" width="0.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1050.40" y="463.5" ></text>
</g>
<g >
<title>create_lateral_join_info (1,134,356,096 samples, 0.01%)</title><rect x="957.0" y="469" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="959.98" y="479.5" ></text>
</g>
<g >
<title>ExecInitScanTupleSlot (10,608,699,820 samples, 0.11%)</title><rect x="438.3" y="421" width="1.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="441.31" y="431.5" ></text>
</g>
<g >
<title>lappend (2,153,691,108 samples, 0.02%)</title><rect x="972.3" y="389" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="975.30" y="399.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (4,238,255,368 samples, 0.04%)</title><rect x="1059.1" y="469" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1062.12" y="479.5" ></text>
</g>
<g >
<title>pg_plan_query (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="645" width="3.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="104.45" y="655.5" ></text>
</g>
<g >
<title>GetNewTransactionId (1,043,943,199 samples, 0.01%)</title><rect x="48.8" y="757" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="51.78" y="767.5" ></text>
</g>
<g >
<title>int4pl (1,445,057,981 samples, 0.02%)</title><rect x="287.8" y="277" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="290.78" y="287.5" ></text>
</g>
<g >
<title>ExecInitResultTypeTL (2,853,079,797 samples, 0.03%)</title><rect x="448.5" y="453" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="451.53" y="463.5" ></text>
</g>
<g >
<title>WaitEventSetWaitBlock (177,914,013,986 samples, 1.89%)</title><rect x="152.5" y="501" width="22.3" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="155.53" y="511.5" >W..</text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (3,360,522,681 samples, 0.04%)</title><rect x="452.8" y="501" width="0.4" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="455.83" y="511.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (1,503,171,958 samples, 0.02%)</title><rect x="33.4" y="757" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="36.42" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,898,458,741 samples, 0.02%)</title><rect x="1055.6" y="421" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1058.63" y="431.5" ></text>
</g>
<g >
<title>get_tablespace (6,875,272,800 samples, 0.07%)</title><rect x="1022.9" y="357" width="0.9" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1025.93" y="367.5" ></text>
</g>
<g >
<title>palloc0 (2,565,935,392 samples, 0.03%)</title><rect x="855.0" y="325" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="857.99" y="335.5" ></text>
</g>
<g >
<title>tag_hash (2,598,569,904 samples, 0.03%)</title><rect x="829.2" y="357" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="832.24" y="367.5" ></text>
</g>
<g >
<title>hash_bytes (2,158,166,009 samples, 0.02%)</title><rect x="227.0" y="533" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="229.97" y="543.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (5,426,309,603 samples, 0.06%)</title><rect x="807.7" y="309" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="810.69" y="319.5" ></text>
</g>
<g >
<title>deconstruct_jointree (1,328,444,012 samples, 0.01%)</title><rect x="1131.1" y="757" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1134.12" y="767.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,138,590,205 samples, 0.01%)</title><rect x="1081.2" y="581" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1084.24" y="591.5" ></text>
</g>
<g >
<title>LWLockRelease (1,323,806,609 samples, 0.01%)</title><rect x="96.7" y="181" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="99.74" y="191.5" ></text>
</g>
<g >
<title>lappend (2,502,057,927 samples, 0.03%)</title><rect x="1019.4" y="341" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1022.45" y="351.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,304,156,389 samples, 0.04%)</title><rect x="960.5" y="293" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="963.47" y="303.5" ></text>
</g>
<g >
<title>create_plan (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="581" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="88.40" y="591.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,716,047,301 samples, 0.05%)</title><rect x="220.5" y="549" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="223.51" y="559.5" ></text>
</g>
<g >
<title>create_tidscan_paths (15,329,392,259 samples, 0.16%)</title><rect x="1024.4" y="405" width="1.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1027.36" y="415.5" ></text>
</g>
<g >
<title>TrackNewBufferPin (1,226,963,335 samples, 0.01%)</title><rect x="97.7" y="165" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="100.67" y="175.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,266,527,733 samples, 0.01%)</title><rect x="1000.1" y="309" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1003.08" y="319.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,483,413,931 samples, 0.02%)</title><rect x="896.1" y="469" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="899.13" y="479.5" ></text>
</g>
<g >
<title>ReadBuffer_common (11,970,693,185 samples, 0.13%)</title><rect x="83.2" y="245" width="1.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="86.22" y="255.5" ></text>
</g>
<g >
<title>newNode (2,682,736,135 samples, 0.03%)</title><rect x="934.6" y="373" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="937.55" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (66,459,520,487 samples, 0.70%)</title><rect x="176.2" y="485" width="8.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="179.19" y="495.5" ></text>
</g>
<g >
<title>updateTargetListEntry (11,881,316,486 samples, 0.13%)</title><rect x="840.8" y="469" width="1.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="843.84" y="479.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (868,575,976 samples, 0.01%)</title><rect x="1055.8" y="405" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1058.75" y="415.5" ></text>
</g>
<g >
<title>btendscan (53,325,494,917 samples, 0.57%)</title><rect x="239.8" y="405" width="6.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="242.78" y="415.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="581" width="2.8" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="85.62" y="591.5" ></text>
</g>
<g >
<title>build_base_rel_tlists (51,490,199,832 samples, 0.55%)</title><rect x="950.5" y="469" width="6.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="953.54" y="479.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (1,529,243,091 samples, 0.02%)</title><rect x="272.8" y="405" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="275.76" y="415.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (4,956,481,461 samples, 0.05%)</title><rect x="1039.6" y="309" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1042.62" y="319.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (1,327,973,706 samples, 0.01%)</title><rect x="251.1" y="437" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="254.14" y="447.5" ></text>
</g>
<g >
<title>SearchCatCache1 (5,325,745,657 samples, 0.06%)</title><rect x="848.3" y="373" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="851.34" y="383.5" ></text>
</g>
<g >
<title>heapam_tuple_update (1,480,747,967 samples, 0.02%)</title><rect x="1149.9" y="757" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1152.89" y="767.5" ></text>
</g>
<g >
<title>enqueue_task_fair (8,302,851,312 samples, 0.09%)</title><rect x="203.8" y="293" width="1.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="206.77" y="303.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,072,232,131 samples, 0.01%)</title><rect x="1000.1" y="277" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="1003.11" y="287.5" ></text>
</g>
<g >
<title>newNode (4,835,491,553 samples, 0.05%)</title><rect x="392.9" y="357" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="395.94" y="367.5" ></text>
</g>
<g >
<title>new_list (1,823,131,288 samples, 0.02%)</title><rect x="433.0" y="389" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="435.95" y="399.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (801,296,149 samples, 0.01%)</title><rect x="1158.3" y="197" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1161.26" y="207.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="501" width="3.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="104.45" y="511.5" ></text>
</g>
<g >
<title>RestrictInfoIsTidQual (854,064,580 samples, 0.01%)</title><rect x="92.2" y="757" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="95.19" y="767.5" ></text>
</g>
<g >
<title>bms_add_member (2,589,805,574 samples, 0.03%)</title><rect x="974.7" y="309" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="977.74" y="319.5" ></text>
</g>
<g >
<title>newNode (11,270,101,472 samples, 0.12%)</title><rect x="1161.5" y="757" width="1.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1164.52" y="767.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (2,699,887,698 samples, 0.03%)</title><rect x="417.0" y="325" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="420.05" y="335.5" ></text>
</g>
<g >
<title>available_idle_cpu (5,115,141,020 samples, 0.05%)</title><rect x="202.2" y="245" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="205.18" y="255.5" ></text>
</g>
<g >
<title>palloc (1,285,443,939 samples, 0.01%)</title><rect x="877.5" y="453" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="880.45" y="463.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,952,517,856 samples, 0.05%)</title><rect x="964.7" y="373" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="967.72" y="383.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,653,179,243 samples, 0.02%)</title><rect x="467.6" y="485" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="470.58" y="495.5" ></text>
</g>
<g >
<title>relation_open (27,901,231,774 samples, 0.30%)</title><rect x="865.6" y="501" width="3.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="868.61" y="511.5" ></text>
</g>
<g >
<title>cost_seqscan (8,466,733,926 samples, 0.09%)</title><rect x="1022.7" y="389" width="1.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1025.73" y="399.5" ></text>
</g>
<g >
<title>ReadBuffer (2,318,356,473 samples, 0.02%)</title><rect x="123.5" y="245" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="126.54" y="255.5" ></text>
</g>
<g >
<title>hash_search (6,017,165,153 samples, 0.06%)</title><rect x="947.6" y="325" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="950.65" y="335.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (11,118,486,749 samples, 0.12%)</title><rect x="960.1" y="357" width="1.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="963.05" y="367.5" ></text>
</g>
<g >
<title>pgstat_count_io_op_time (7,054,542,594 samples, 0.07%)</title><rect x="504.1" y="469" width="0.8" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="507.07" y="479.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (1,000,701,191 samples, 0.01%)</title><rect x="33.8" y="757" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="36.81" y="767.5" ></text>
</g>
<g >
<title>list_concat_copy (5,897,847,809 samples, 0.06%)</title><rect x="992.0" y="373" width="0.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="994.98" y="383.5" ></text>
</g>
<g >
<title>hash_bytes (3,375,151,209 samples, 0.04%)</title><rect x="923.7" y="357" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="926.69" y="367.5" ></text>
</g>
<g >
<title>AllocSetFree (1,660,331,763 samples, 0.02%)</title><rect x="1073.3" y="549" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1076.32" y="559.5" ></text>
</g>
<g >
<title>CheckForSerializableConflictOutNeeded (837,238,861 samples, 0.01%)</title><rect x="38.4" y="757" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="41.45" y="767.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (2,416,707,241 samples, 0.03%)</title><rect x="504.6" y="437" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="507.64" y="447.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,836,151,002 samples, 0.02%)</title><rect x="867.1" y="389" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="870.08" y="399.5" ></text>
</g>
<g >
<title>int4hashfast (1,122,872,629 samples, 0.01%)</title><rect x="1010.4" y="213" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1013.40" y="223.5" ></text>
</g>
<g >
<title>hash_bytes (2,700,772,419 samples, 0.03%)</title><rect x="518.8" y="405" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="521.81" y="415.5" ></text>
</g>
<g >
<title>palloc (1,188,299,097 samples, 0.01%)</title><rect x="1054.7" y="405" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1057.68" y="415.5" ></text>
</g>
<g >
<title>makeTargetEntry (3,061,531,521 samples, 0.03%)</title><rect x="921.0" y="437" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="924.01" y="447.5" ></text>
</g>
<g >
<title>BufferGetPage (1,470,006,073 samples, 0.02%)</title><rect x="370.6" y="341" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="373.58" y="351.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,212,365,903 samples, 0.01%)</title><rect x="1144.3" y="741" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1147.26" y="751.5" ></text>
</g>
<g >
<title>fetch_upper_rel (986,828,449 samples, 0.01%)</title><rect x="894.0" y="517" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="896.96" y="527.5" ></text>
</g>
<g >
<title>transformUpdateTargetList (86,434,145,877 samples, 0.92%)</title><rect x="831.5" y="485" width="10.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="834.52" y="495.5" ></text>
</g>
<g >
<title>ReleaseSysCache (840,479,820 samples, 0.01%)</title><rect x="427.2" y="389" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="430.25" y="399.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,437,356,697 samples, 0.05%)</title><rect x="103.0" y="437" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="105.99" y="447.5" ></text>
</g>
<g >
<title>ExecScanFetch (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="437" width="6.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="97.67" y="447.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (4,896,985,485 samples, 0.05%)</title><rect x="343.7" y="373" width="0.6" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="346.71" y="383.5" ></text>
</g>
<g >
<title>LWLockConflictsWithVar (4,168,215,345 samples, 0.04%)</title><rect x="489.9" y="453" width="0.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="492.90" y="463.5" ></text>
</g>
<g >
<title>LWLockReleaseClearVar (879,348,778 samples, 0.01%)</title><rect x="57.0" y="757" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="60.02" y="767.5" ></text>
</g>
<g >
<title>new_list (4,235,642,377 samples, 0.04%)</title><rect x="1116.0" y="709" width="0.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1119.05" y="719.5" ></text>
</g>
<g >
<title>list_nth_cell (851,466,178 samples, 0.01%)</title><rect x="888.6" y="357" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="891.63" y="367.5" ></text>
</g>
<g >
<title>palloc (1,288,164,753 samples, 0.01%)</title><rect x="994.3" y="309" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="997.29" y="319.5" ></text>
</g>
<g >
<title>FileSize (8,006,597,601 samples, 0.08%)</title><rect x="932.2" y="341" width="1.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="935.16" y="351.5" ></text>
</g>
<g >
<title>table_block_relation_estimate_size (27,359,105,218 samples, 0.29%)</title><rect x="935.2" y="357" width="3.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="938.19" y="367.5" ></text>
</g>
<g >
<title>index_getnext_slot (810,372,740 samples, 0.01%)</title><rect x="1150.3" y="757" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="1153.31" y="767.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (11,936,751,764 samples, 0.13%)</title><rect x="1053.3" y="453" width="1.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1056.35" y="463.5" ></text>
</g>
<g >
<title>hash_bytes (2,512,916,668 samples, 0.03%)</title><rect x="862.3" y="421" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="865.32" y="431.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (5,847,035,702 samples, 0.06%)</title><rect x="519.5" y="421" width="0.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="522.51" y="431.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (2,142,913,540 samples, 0.02%)</title><rect x="231.4" y="517" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="234.37" y="527.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (3,106,076,506 samples, 0.03%)</title><rect x="1055.5" y="453" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1058.47" y="463.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="357" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="127.24" y="367.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (5,903,045,148 samples, 0.06%)</title><rect x="402.3" y="453" width="0.8" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="405.31" y="463.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (1,095,644,757 samples, 0.01%)</title><rect x="435.5" y="309" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="438.46" y="319.5" ></text>
</g>
<g >
<title>call_function_single_prep_ipi (1,110,602,642 samples, 0.01%)</title><rect x="205.3" y="293" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="208.26" y="303.5" ></text>
</g>
<g >
<title>lappend (842,827,026 samples, 0.01%)</title><rect x="956.9" y="357" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="959.87" y="367.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (3,549,094,500 samples, 0.04%)</title><rect x="1073.6" y="581" width="0.4" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="1076.60" y="591.5" ></text>
</g>
<g >
<title>newNode (2,326,943,211 samples, 0.02%)</title><rect x="934.1" y="373" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="937.12" y="383.5" ></text>
</g>
<g >
<title>btcost_correlation (75,376,536,871 samples, 0.80%)</title><rect x="1001.3" y="309" width="9.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1004.28" y="319.5" ></text>
</g>
<g >
<title>hash_search (3,739,237,843 samples, 0.04%)</title><rect x="441.4" y="373" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="444.43" y="383.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,835,753,011 samples, 0.02%)</title><rect x="427.7" y="341" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="430.73" y="351.5" ></text>
</g>
<g >
<title>RecordTransactionCommit (337,812,104,264 samples, 3.58%)</title><rect x="468.0" y="517" width="42.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="470.98" y="527.5" >Rec..</text>
</g>
<g >
<title>pfree (1,548,621,376 samples, 0.02%)</title><rect x="995.8" y="341" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="998.75" y="351.5" ></text>
</g>
<g >
<title>table_close (1,115,538,672 samples, 0.01%)</title><rect x="947.3" y="405" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="950.28" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9,557,540,302 samples, 0.10%)</title><rect x="277.0" y="357" width="1.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="280.04" y="367.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,387,123,297 samples, 0.01%)</title><rect x="1173.0" y="597" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1176.04" y="607.5" ></text>
</g>
<g >
<title>match_foreign_keys_to_quals (967,086,773 samples, 0.01%)</title><rect x="1160.4" y="757" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1163.37" y="767.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,104,601,623 samples, 0.03%)</title><rect x="1046.1" y="421" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1049.10" y="431.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="565" width="0.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="1160.94" y="575.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (3,805,040,164 samples, 0.04%)</title><rect x="452.8" y="517" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="455.78" y="527.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,801,963,844 samples, 0.02%)</title><rect x="339.5" y="197" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="342.50" y="207.5" ></text>
</g>
<g >
<title>preprocess_function_rtes (1,129,744,187 samples, 0.01%)</title><rect x="1173.2" y="757" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1176.21" y="767.5" ></text>
</g>
<g >
<title>palloc0 (1,545,372,171 samples, 0.02%)</title><rect x="832.6" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="835.61" y="447.5" ></text>
</g>
<g >
<title>__put_user_nocheck_4 (1,848,327,248 samples, 0.02%)</title><rect x="155.6" y="373" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="158.56" y="383.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (3,134,921,548 samples, 0.03%)</title><rect x="1016.6" y="325" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1019.58" y="335.5" ></text>
</g>
<g >
<title>folio_mark_accessed (868,658,241 samples, 0.01%)</title><rect x="499.9" y="325" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="502.95" y="335.5" ></text>
</g>
<g >
<title>getRTEPermissionInfo (1,211,019,665 samples, 0.01%)</title><rect x="897.3" y="469" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="900.25" y="479.5" ></text>
</g>
<g >
<title>futex_wait (953,486,843 samples, 0.01%)</title><rect x="398.7" y="245" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="401.67" y="255.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (5,615,521,597 samples, 0.06%)</title><rect x="192.9" y="389" width="0.7" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="195.94" y="399.5" ></text>
</g>
<g >
<title>BackendMain (81,441,377,880 samples, 0.86%)</title><rect x="94.7" y="709" width="10.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="97.67" y="719.5" ></text>
</g>
<g >
<title>InitPlan (372,718,195,831 samples, 3.95%)</title><rect x="405.6" y="501" width="46.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="408.59" y="511.5" >Init..</text>
</g>
<g >
<title>hash_bytes (2,435,394,107 samples, 0.03%)</title><rect x="237.4" y="373" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="240.43" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,066,912,046 samples, 0.01%)</title><rect x="871.2" y="453" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="874.18" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (928,196,930 samples, 0.01%)</title><rect x="220.6" y="517" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="223.60" y="527.5" ></text>
</g>
<g >
<title>index_getnext_tid (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="373" width="2.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="85.62" y="383.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (8,156,076,739 samples, 0.09%)</title><rect x="1033.0" y="181" width="1.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1036.05" y="191.5" ></text>
</g>
<g >
<title>BufferGetPage (1,336,423,447 samples, 0.01%)</title><rect x="323.5" y="213" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="326.45" y="223.5" ></text>
</g>
<g >
<title>get_rightop (1,142,077,380 samples, 0.01%)</title><rect x="972.1" y="389" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="975.13" y="399.5" ></text>
</g>
<g >
<title>ObjectIdGetDatum (4,365,395,117 samples, 0.05%)</title><rect x="78.9" y="757" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="81.93" y="767.5" ></text>
</g>
<g >
<title>DynaHashAlloc (1,561,120,995 samples, 0.02%)</title><rect x="1064.7" y="421" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1067.68" y="431.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (30,909,648,913 samples, 0.33%)</title><rect x="485.0" y="421" width="3.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="487.96" y="431.5" ></text>
</g>
<g >
<title>list_make2_impl (2,554,422,013 samples, 0.03%)</title><rect x="847.3" y="405" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="850.35" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,716,178,557 samples, 0.02%)</title><rect x="1115.5" y="693" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1118.46" y="703.5" ></text>
</g>
<g >
<title>lappend_int (2,534,631,004 samples, 0.03%)</title><rect x="432.9" y="405" width="0.3" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="435.88" y="415.5" ></text>
</g>
<g >
<title>InitBufferTag (837,808,102 samples, 0.01%)</title><rect x="96.1" y="181" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="99.10" y="191.5" ></text>
</g>
<g >
<title>uint32_hash (2,788,799,258 samples, 0.03%)</title><rect x="868.7" y="453" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="871.72" y="463.5" ></text>
</g>
<g >
<title>get_hash_value (2,711,089,561 samples, 0.03%)</title><rect x="367.0" y="229" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="370.04" y="239.5" ></text>
</g>
<g >
<title>reconsider_outer_join_clauses (3,309,817,196 samples, 0.04%)</title><rect x="1043.1" y="469" width="0.5" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1046.14" y="479.5" ></text>
</g>
<g >
<title>relation_close (1,665,535,155 samples, 0.02%)</title><rect x="235.5" y="453" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="238.46" y="463.5" ></text>
</g>
<g >
<title>fix_expr_common (1,986,780,965 samples, 0.02%)</title><rect x="903.2" y="405" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="906.15" y="415.5" ></text>
</g>
<g >
<title>list_insert_nth (2,576,417,759 samples, 0.03%)</title><rect x="994.1" y="357" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="997.14" y="367.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,080,306,982 samples, 0.01%)</title><rect x="363.8" y="165" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="366.79" y="175.5" ></text>
</g>
<g >
<title>PreCommit_CheckForSerializationFailure (1,030,966,680 samples, 0.01%)</title><rect x="85.6" y="757" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="88.64" y="767.5" ></text>
</g>
<g >
<title>scanner_init (22,907,829,967 samples, 0.24%)</title><rect x="870.0" y="549" width="2.9" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="873.01" y="559.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,879,507,580 samples, 0.02%)</title><rect x="352.6" y="277" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="355.55" y="287.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (968,784,187 samples, 0.01%)</title><rect x="421.3" y="293" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="424.34" y="303.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,761,640,540 samples, 0.07%)</title><rect x="974.4" y="341" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="977.39" y="351.5" ></text>
</g>
<g >
<title>_bt_compare (1,617,278,417 samples, 0.02%)</title><rect x="126.2" y="245" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="129.24" y="255.5" ></text>
</g>
<g >
<title>add_function_cost (6,418,545,119 samples, 0.07%)</title><rect x="1038.6" y="341" width="0.8" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="1041.57" y="351.5" ></text>
</g>
<g >
<title>index_can_return (2,683,056,664 samples, 0.03%)</title><rect x="939.5" y="405" width="0.4" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="942.53" y="415.5" ></text>
</g>
<g >
<title>HeapTupleIsSurelyDead (5,482,298,111 samples, 0.06%)</title><rect x="303.2" y="245" width="0.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="306.20" y="255.5" ></text>
</g>
<g >
<title>tts_virtual_clear (980,604,066 samples, 0.01%)</title><rect x="1188.7" y="757" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="1191.66" y="767.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (2,684,539,826 samples, 0.03%)</title><rect x="256.0" y="421" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="258.98" y="431.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (3,274,418,285 samples, 0.03%)</title><rect x="902.6" y="341" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="905.55" y="351.5" ></text>
</g>
<g >
<title>namestrcpy (3,920,078,234 samples, 0.04%)</title><rect x="436.7" y="357" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="439.68" y="367.5" ></text>
</g>
<g >
<title>exprSetInputCollation (835,015,022 samples, 0.01%)</title><rect x="805.9" y="357" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="808.87" y="367.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (926,993,718 samples, 0.01%)</title><rect x="827.6" y="389" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="830.59" y="399.5" ></text>
</g>
<g >
<title>BackendMain (7,629,157,056,107 samples, 80.84%)</title><rect x="130.1" y="629" width="953.9" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="133.07" y="639.5" >BackendMain</text>
</g>
<g >
<title>exprTypmod (1,680,665,955 samples, 0.02%)</title><rect x="438.1" y="373" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="441.08" y="383.5" ></text>
</g>
<g >
<title>CreatePortal (34,070,659,826 samples, 0.36%)</title><rect x="210.8" y="581" width="4.3" height="15.0" fill="rgb(219,66,16)" rx="2" ry="2" />
<text x="213.82" y="591.5" ></text>
</g>
<g >
<title>relation_open (19,692,526,449 samples, 0.21%)</title><rect x="444.0" y="405" width="2.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="447.01" y="415.5" ></text>
</g>
<g >
<title>SearchCatCache3 (5,471,464,671 samples, 0.06%)</title><rect x="1014.7" y="277" width="0.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1017.67" y="287.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,503,672,321 samples, 0.04%)</title><rect x="835.0" y="341" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="837.99" y="351.5" ></text>
</g>
<g >
<title>CommitTransaction (1,004,974,376 samples, 0.01%)</title><rect x="38.8" y="757" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="41.77" y="767.5" ></text>
</g>
<g >
<title>verify_compact_attribute (8,397,232,289 samples, 0.09%)</title><rect x="273.1" y="389" width="1.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="276.09" y="399.5" ></text>
</g>
<g >
<title>LWLockRelease (1,506,375,855 samples, 0.02%)</title><rect x="820.0" y="373" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="822.98" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,019,819,570 samples, 0.01%)</title><rect x="466.2" y="469" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="469.23" y="479.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (9,468,881,089 samples, 0.10%)</title><rect x="1045.8" y="453" width="1.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1048.82" y="463.5" ></text>
</g>
<g >
<title>create_scan_plan (50,437,577,736 samples, 0.53%)</title><rect x="885.9" y="421" width="6.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="888.93" y="431.5" ></text>
</g>
<g >
<title>IsTidEqualClause (3,677,219,367 samples, 0.04%)</title><rect x="1025.2" y="357" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1028.24" y="367.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,390,942,130 samples, 0.01%)</title><rect x="124.2" y="293" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="127.24" y="303.5" ></text>
</g>
<g >
<title>hash_seq_init (2,007,854,009 samples, 0.02%)</title><rect x="523.4" y="453" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="526.37" y="463.5" ></text>
</g>
<g >
<title>LockHeldByMe (11,641,646,446 samples, 0.12%)</title><rect x="861.2" y="469" width="1.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="864.18" y="479.5" ></text>
</g>
<g >
<title>palloc (1,506,189,487 samples, 0.02%)</title><rect x="452.0" y="469" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="454.99" y="479.5" ></text>
</g>
<g >
<title>XLogBytePosToEndRecPtr (968,222,142 samples, 0.01%)</title><rect x="490.8" y="469" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="493.79" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (968,121,387 samples, 0.01%)</title><rect x="274.3" y="357" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="277.34" y="367.5" ></text>
</g>
<g >
<title>bms_add_member (2,403,467,265 samples, 0.03%)</title><rect x="408.1" y="469" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="411.06" y="479.5" ></text>
</g>
<g >
<title>AllocSetCheck (2,386,732,888 samples, 0.03%)</title><rect x="77.3" y="741" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="80.28" y="751.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,634,768,417 samples, 0.05%)</title><rect x="932.5" y="309" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="935.53" y="319.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="325" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="88.40" y="335.5" ></text>
</g>
<g >
<title>unix_stream_read_generic (49,750,773,934 samples, 0.53%)</title><rect x="178.1" y="389" width="6.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="181.12" y="399.5" ></text>
</g>
<g >
<title>put_prev_task_fair (827,407,020 samples, 0.01%)</title><rect x="477.1" y="261" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="480.14" y="271.5" ></text>
</g>
<g >
<title>AllocSetFree (2,517,013,599 samples, 0.03%)</title><rect x="429.1" y="389" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="432.09" y="399.5" ></text>
</g>
<g >
<title>BufferAlloc (13,195,088,607 samples, 0.14%)</title><rect x="399.7" y="293" width="1.6" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="402.68" y="303.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,485,697,547 samples, 0.02%)</title><rect x="820.7" y="373" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="823.70" y="383.5" ></text>
</g>
<g >
<title>palloc (2,724,367,955 samples, 0.03%)</title><rect x="428.7" y="405" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="431.71" y="415.5" ></text>
</g>
<g >
<title>pg_class_aclmask_ext (9,525,828,964 samples, 0.10%)</title><rect x="406.9" y="437" width="1.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="409.86" y="447.5" ></text>
</g>
<g >
<title>pfree (1,844,427,138 samples, 0.02%)</title><rect x="227.3" y="565" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="230.25" y="575.5" ></text>
</g>
<g >
<title>set_plan_refs (32,890,934,484 samples, 0.35%)</title><rect x="899.7" y="485" width="4.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="902.71" y="495.5" ></text>
</g>
<g >
<title>pfree (5,074,295,802 samples, 0.05%)</title><rect x="375.4" y="341" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="378.42" y="351.5" ></text>
</g>
<g >
<title>LockHeldByMe (18,853,764,403 samples, 0.20%)</title><rect x="865.7" y="469" width="2.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="868.75" y="479.5" ></text>
</g>
<g >
<title>ScanKeywordLookup (19,995,714,700 samples, 0.21%)</title><rect x="1110.3" y="709" width="2.5" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="1113.34" y="719.5" ></text>
</g>
<g >
<title>update_entity_lag (1,898,250,031 samples, 0.02%)</title><rect x="480.8" y="213" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="483.76" y="223.5" ></text>
</g>
<g >
<title>pg_ulltoa_n (2,665,029,078 samples, 0.03%)</title><rect x="216.0" y="549" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="219.03" y="559.5" ></text>
</g>
<g >
<title>addRangeTableEntryForRelation (51,773,958,363 samples, 0.55%)</title><rect x="810.6" y="469" width="6.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="813.62" y="479.5" ></text>
</g>
<g >
<title>heap_attr_equals (2,769,518,479 samples, 0.03%)</title><rect x="360.3" y="341" width="0.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="363.33" y="351.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (957,718,935 samples, 0.01%)</title><rect x="339.9" y="197" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="342.87" y="207.5" ></text>
</g>
<g >
<title>parse_analyze_fixedparams (467,821,077,692 samples, 4.96%)</title><rect x="798.4" y="565" width="58.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="801.38" y="575.5" >parse_..</text>
</g>
<g >
<title>transformColumnRef (12,658,801,562 samples, 0.13%)</title><rect x="839.2" y="373" width="1.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="842.24" y="383.5" ></text>
</g>
<g >
<title>new_list (1,340,551,491 samples, 0.01%)</title><rect x="972.6" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="975.62" y="383.5" ></text>
</g>
<g >
<title>lappend (2,423,450,409 samples, 0.03%)</title><rect x="1057.5" y="405" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1060.53" y="415.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,162,250,303 samples, 0.01%)</title><rect x="302.1" y="229" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="305.10" y="239.5" ></text>
</g>
<g >
<title>pg_atomic_read_u64_impl (1,616,952,486 samples, 0.02%)</title><rect x="505.4" y="469" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="508.44" y="479.5" ></text>
</g>
<g >
<title>pfree (1,443,273,435 samples, 0.02%)</title><rect x="944.6" y="373" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="947.58" y="383.5" ></text>
</g>
<g >
<title>hash_search (4,182,426,571 samples, 0.04%)</title><rect x="862.1" y="453" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="865.11" y="463.5" ></text>
</g>
<g >
<title>palloc0 (4,055,598,685 samples, 0.04%)</title><rect x="1121.1" y="725" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1124.12" y="735.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,098,251,836 samples, 0.01%)</title><rect x="846.5" y="373" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="849.46" y="383.5" ></text>
</g>
<g >
<title>cost_qual_eval (17,179,399,645 samples, 0.18%)</title><rect x="1038.1" y="389" width="2.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1041.13" y="399.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,075,132,847 samples, 0.01%)</title><rect x="296.8" y="213" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="299.84" y="223.5" ></text>
</g>
<g >
<title>palloc0 (1,955,876,135 samples, 0.02%)</title><rect x="954.3" y="437" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="957.32" y="447.5" ></text>
</g>
<g >
<title>tag_hash (3,460,716,433 samples, 0.04%)</title><rect x="923.7" y="373" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="926.68" y="383.5" ></text>
</g>
<g >
<title>ExecInitFunc (17,088,975,546 samples, 0.18%)</title><rect x="419.4" y="341" width="2.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="422.37" y="351.5" ></text>
</g>
<g >
<title>newNode (6,860,903,007 samples, 0.07%)</title><rect x="949.4" y="421" width="0.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="952.38" y="431.5" ></text>
</g>
<g >
<title>palloc (1,102,137,313 samples, 0.01%)</title><rect x="896.4" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="899.45" y="431.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,411,572,167 samples, 0.05%)</title><rect x="960.9" y="341" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="963.89" y="351.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (5,413,996,234 samples, 0.06%)</title><rect x="84.7" y="309" width="0.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="87.72" y="319.5" ></text>
</g>
<g >
<title>hash_initial_lookup (992,096,081 samples, 0.01%)</title><rect x="444.5" y="309" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="447.53" y="319.5" ></text>
</g>
<g >
<title>palloc (1,454,288,519 samples, 0.02%)</title><rect x="375.0" y="325" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="377.96" y="335.5" ></text>
</g>
<g >
<title>ReadBufferExtended (5,413,996,234 samples, 0.06%)</title><rect x="84.7" y="261" width="0.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="87.72" y="271.5" ></text>
</g>
<g >
<title>StartReadBuffer (801,296,149 samples, 0.01%)</title><rect x="1158.3" y="213" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1161.26" y="223.5" ></text>
</g>
<g >
<title>newNode (2,271,515,298 samples, 0.02%)</title><rect x="853.6" y="373" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="856.59" y="383.5" ></text>
</g>
<g >
<title>hash_bytes (1,954,419,081 samples, 0.02%)</title><rect x="212.4" y="517" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="215.39" y="527.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,471,284,667 samples, 0.02%)</title><rect x="352.6" y="245" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="355.60" y="255.5" ></text>
</g>
<g >
<title>LockHeldByMe (10,831,507,295 samples, 0.11%)</title><rect x="923.3" y="421" width="1.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="926.25" y="431.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,918,099,958 samples, 0.02%)</title><rect x="490.5" y="453" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="493.53" y="463.5" ></text>
</g>
<g >
<title>LockHeldByMe (5,136,126,372 samples, 0.05%)</title><rect x="810.9" y="437" width="0.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="813.90" y="447.5" ></text>
</g>
<g >
<title>palloc0 (4,811,395,854 samples, 0.05%)</title><rect x="808.9" y="469" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="811.93" y="479.5" ></text>
</g>
<g >
<title>update_load_avg (2,364,090,286 samples, 0.03%)</title><rect x="204.5" y="277" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="207.50" y="287.5" ></text>
</g>
<g >
<title>bms_copy (1,940,280,520 samples, 0.02%)</title><rect x="877.4" y="469" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="880.37" y="479.5" ></text>
</g>
<g >
<title>put_prev_task_fair (1,576,824,359 samples, 0.02%)</title><rect x="160.6" y="325" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="163.56" y="335.5" ></text>
</g>
<g >
<title>AssertBufferLocksPermitCatalogRead (1,067,692,530 samples, 0.01%)</title><rect x="30.4" y="741" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="33.36" y="751.5" ></text>
</g>
<g >
<title>palloc0 (1,426,841,158 samples, 0.02%)</title><rect x="1070.4" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1073.40" y="447.5" ></text>
</g>
<g >
<title>XLogBeginInsert (1,518,171,410 samples, 0.02%)</title><rect x="109.1" y="757" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="112.08" y="767.5" ></text>
</g>
<g >
<title>palloc0 (3,055,741,479 samples, 0.03%)</title><rect x="919.6" y="453" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="922.55" y="463.5" ></text>
</g>
<g >
<title>pg_client_to_server (1,607,961,122 samples, 0.02%)</title><rect x="1168.2" y="757" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1171.24" y="767.5" ></text>
</g>
<g >
<title>RelationGetIndexPredicate (1,186,581,437 samples, 0.01%)</title><rect x="392.4" y="373" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="395.39" y="383.5" ></text>
</g>
<g >
<title>ExecMaterializeSlot (22,470,992,109 samples, 0.24%)</title><rect x="388.8" y="405" width="2.8" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="391.83" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,672,676,872 samples, 0.04%)</title><rect x="226.4" y="549" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="229.40" y="559.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (1,680,197,108 samples, 0.02%)</title><rect x="90.8" y="757" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="93.76" y="767.5" ></text>
</g>
<g >
<title>LockErrorCleanup (1,181,764,675 samples, 0.01%)</title><rect x="511.2" y="469" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="514.22" y="479.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (2,302,812,315 samples, 0.02%)</title><rect x="55.3" y="757" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="58.31" y="767.5" ></text>
</g>
<g >
<title>SearchCatCache1 (853,658,537 samples, 0.01%)</title><rect x="93.2" y="757" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="96.21" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,284,959,160 samples, 0.02%)</title><rect x="394.4" y="309" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="397.41" y="319.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (3,436,721,256 samples, 0.04%)</title><rect x="181.8" y="357" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="184.77" y="367.5" ></text>
</g>
<g >
<title>relation_open (15,075,674,704 samples, 0.16%)</title><rect x="1067.3" y="469" width="1.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1070.29" y="479.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (843,170,650 samples, 0.01%)</title><rect x="968.1" y="325" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="971.05" y="335.5" ></text>
</g>
<g >
<title>new_list (2,067,590,915 samples, 0.02%)</title><rect x="858.5" y="501" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="861.49" y="511.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,159,311,281 samples, 0.01%)</title><rect x="212.1" y="517" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="215.09" y="527.5" ></text>
</g>
<g >
<title>pgstat_report_activity (6,864,929,428 samples, 0.07%)</title><rect x="1072.1" y="581" width="0.9" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1075.09" y="591.5" ></text>
</g>
<g >
<title>XLogInsertRecord (33,551,283,699 samples, 0.36%)</title><rect x="378.5" y="325" width="4.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="381.53" y="335.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (14,757,981,681 samples, 0.16%)</title><rect x="1038.4" y="357" width="1.9" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1041.43" y="367.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (894,502,187 samples, 0.01%)</title><rect x="828.9" y="309" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="831.92" y="319.5" ></text>
</g>
<g >
<title>FreeExprContext (21,726,244,092 samples, 0.23%)</title><rect x="249.8" y="485" width="2.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="252.82" y="495.5" ></text>
</g>
<g >
<title>ExecutorRun (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="549" width="1.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="127.59" y="559.5" ></text>
</g>
<g >
<title>XactLockTableInsert (52,917,824,329 samples, 0.56%)</title><rect x="352.9" y="325" width="6.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="355.90" y="335.5" ></text>
</g>
<g >
<title>new_list (3,826,010,468 samples, 0.04%)</title><rect x="992.2" y="341" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="995.23" y="351.5" ></text>
</g>
<g >
<title>ReleaseSysCache (975,904,025 samples, 0.01%)</title><rect x="916.5" y="373" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="919.47" y="383.5" ></text>
</g>
<g >
<title>max_parallel_hazard_walker (2,415,744,047 samples, 0.03%)</title><rect x="917.4" y="389" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="920.45" y="399.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (9,965,080,953 samples, 0.11%)</title><rect x="162.3" y="325" width="1.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="165.30" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (985,310,139 samples, 0.01%)</title><rect x="434.3" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="437.30" y="351.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (5,424,452,157 samples, 0.06%)</title><rect x="421.7" y="341" width="0.7" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="424.70" y="351.5" ></text>
</g>
<g >
<title>skb_copy_datagram_from_iter (7,887,466,457 samples, 0.08%)</title><rect x="192.9" y="405" width="0.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="195.85" y="415.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,387,123,297 samples, 0.01%)</title><rect x="1173.0" y="725" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1176.04" y="735.5" ></text>
</g>
<g >
<title>BufferIsValid (1,416,243,865 samples, 0.02%)</title><rect x="112.1" y="741" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="115.09" y="751.5" ></text>
</g>
<g >
<title>makeIntConst (4,719,831,293 samples, 0.05%)</title><rect x="1117.6" y="741" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1120.61" y="751.5" ></text>
</g>
<g >
<title>log_heap_update (82,964,585,995 samples, 0.88%)</title><rect x="376.7" y="357" width="10.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="379.70" y="367.5" ></text>
</g>
<g >
<title>extract_nonindex_conditions (3,365,765,620 samples, 0.04%)</title><rect x="1016.1" y="325" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1019.15" y="335.5" ></text>
</g>
<g >
<title>ReadBuffer (1,217,297,839 samples, 0.01%)</title><rect x="124.1" y="245" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="127.08" y="255.5" ></text>
</g>
<g >
<title>ExecutorStart (395,843,700,216 samples, 4.19%)</title><rect x="403.2" y="533" width="49.5" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="406.20" y="543.5" >Exec..</text>
</g>
<g >
<title>GetTransactionSnapshot (34,827,388,444 samples, 0.37%)</title><rect x="217.3" y="581" width="4.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="220.26" y="591.5" ></text>
</g>
<g >
<title>psi_task_change (954,993,170 samples, 0.01%)</title><rect x="204.8" y="293" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="207.81" y="303.5" ></text>
</g>
<g >
<title>set_next_task_idle (1,222,531,555 samples, 0.01%)</title><rect x="477.2" y="261" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="480.24" y="271.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,002,258,860 samples, 0.01%)</title><rect x="97.8" y="165" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="100.83" y="175.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (6,344,392,543 samples, 0.07%)</title><rect x="147.1" y="549" width="0.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="150.11" y="559.5" ></text>
</g>
<g >
<title>new_list (1,520,754,044 samples, 0.02%)</title><rect x="1048.3" y="485" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1051.28" y="495.5" ></text>
</g>
<g >
<title>BufferGetPage (970,461,366 samples, 0.01%)</title><rect x="335.8" y="197" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="338.76" y="207.5" ></text>
</g>
<g >
<title>__ceil_sse41 (1,313,311,658 samples, 0.01%)</title><rect x="1012.2" y="293" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1015.15" y="303.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (4,343,470,434 samples, 0.05%)</title><rect x="256.3" y="421" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="259.31" y="431.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (803,901,079 samples, 0.01%)</title><rect x="126.6" y="229" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="129.56" y="239.5" ></text>
</g>
<g >
<title>ExecReadyExpr (3,726,852,257 samples, 0.04%)</title><rect x="272.3" y="405" width="0.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="275.29" y="415.5" ></text>
</g>
<g >
<title>ReadBuffer (801,296,149 samples, 0.01%)</title><rect x="1158.3" y="261" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1161.26" y="271.5" ></text>
</g>
<g >
<title>heap_page_prune_and_freeze (8,508,876,719 samples, 0.09%)</title><rect x="1148.0" y="741" width="1.0" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1150.97" y="751.5" ></text>
</g>
<g >
<title>sock_alloc_send_pskb (30,486,170,407 samples, 0.32%)</title><rect x="193.9" y="405" width="3.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="196.86" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,404,061,525 samples, 0.01%)</title><rect x="508.1" y="389" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="511.11" y="399.5" ></text>
</g>
<g >
<title>preprocess_expression (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="533" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1161.36" y="543.5" ></text>
</g>
<g >
<title>new_list (1,825,100,980 samples, 0.02%)</title><rect x="393.8" y="357" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="396.79" y="367.5" ></text>
</g>
<g >
<title>new_list (2,288,947,187 samples, 0.02%)</title><rect x="860.0" y="485" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="862.96" y="495.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (820,415,596 samples, 0.01%)</title><rect x="971.1" y="309" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="974.15" y="319.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,222,645,769 samples, 0.01%)</title><rect x="1030.8" y="229" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="1033.78" y="239.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (53,501,250,861 samples, 0.57%)</title><rect x="94.7" y="549" width="6.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="97.67" y="559.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,144,889,166 samples, 0.01%)</title><rect x="941.6" y="309" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="944.58" y="319.5" ></text>
</g>
<g >
<title>find_duplicate_ors (987,294,575 samples, 0.01%)</title><rect x="1055.3" y="453" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1058.32" y="463.5" ></text>
</g>
<g >
<title>BufferIsValid (7,179,375,854 samples, 0.08%)</title><rect x="36.3" y="757" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="39.31" y="767.5" ></text>
</g>
<g >
<title>index_getnext_slot (17,824,932,041 samples, 0.19%)</title><rect x="280.0" y="341" width="2.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="282.98" y="351.5" ></text>
</g>
<g >
<title>fdget_pos (3,257,099,698 samples, 0.03%)</title><rect x="937.2" y="165" width="0.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="940.22" y="175.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (1,016,382,047 samples, 0.01%)</title><rect x="382.3" y="69" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="385.25" y="79.5" ></text>
</g>
<g >
<title>mutex_lock (2,661,730,368 samples, 0.03%)</title><rect x="157.7" y="373" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="160.68" y="383.5" ></text>
</g>
<g >
<title>__errno_location (2,510,860,208 samples, 0.03%)</title><rect x="151.3" y="501" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="154.29" y="511.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (3,320,427,863 samples, 0.04%)</title><rect x="97.1" y="165" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="100.07" y="175.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (5,675,091,634 samples, 0.06%)</title><rect x="902.3" y="373" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="905.26" y="383.5" ></text>
</g>
<g >
<title>_bt_getbuf (1,932,277,437 samples, 0.02%)</title><rect x="126.0" y="245" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="129.00" y="255.5" ></text>
</g>
<g >
<title>new_list (1,720,820,747 samples, 0.02%)</title><rect x="847.4" y="389" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="850.45" y="399.5" ></text>
</g>
<g >
<title>preprocess_rowmarks (11,177,214,061 samples, 0.12%)</title><rect x="1069.2" y="501" width="1.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1072.18" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,520,120,280 samples, 0.02%)</title><rect x="275.3" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="278.26" y="383.5" ></text>
</g>
<g >
<title>check_lock_if_inplace_updateable_rel (975,063,221 samples, 0.01%)</title><rect x="1126.3" y="757" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1129.34" y="767.5" ></text>
</g>
<g >
<title>select_task_rq (28,258,298,894 samples, 0.30%)</title><rect x="199.5" y="325" width="3.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="202.46" y="335.5" ></text>
</g>
<g >
<title>palloc0 (5,402,732,582 samples, 0.06%)</title><rect x="442.1" y="405" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="445.06" y="415.5" ></text>
</g>
<g >
<title>WalSndWakeupProcessRequests (5,915,487,806 samples, 0.06%)</title><rect x="491.5" y="485" width="0.7" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="494.49" y="495.5" ></text>
</g>
<g >
<title>clause_selectivity_ext (1,004,575,219 samples, 0.01%)</title><rect x="1012.5" y="261" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1015.51" y="271.5" ></text>
</g>
<g >
<title>new_list (4,137,929,705 samples, 0.04%)</title><rect x="1018.1" y="341" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1021.07" y="351.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="309" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="127.24" y="319.5" ></text>
</g>
<g >
<title>murmurhash32 (1,193,479,504 samples, 0.01%)</title><rect x="825.2" y="277" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="828.18" y="287.5" ></text>
</g>
<g >
<title>AtEOXact_RelationMap (2,609,988,942 samples, 0.03%)</title><rect x="463.7" y="517" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="466.68" y="527.5" ></text>
</g>
<g >
<title>new_list (1,775,622,503 samples, 0.02%)</title><rect x="1020.7" y="293" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1023.70" y="303.5" ></text>
</g>
<g >
<title>IndexNext (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="389" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1160.94" y="399.5" ></text>
</g>
<g >
<title>pg_plan_query (2,826,087,191 samples, 0.03%)</title><rect x="124.2" y="597" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="127.24" y="607.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,468,604,515 samples, 0.04%)</title><rect x="836.1" y="325" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="839.06" y="335.5" ></text>
</g>
<g >
<title>pstrdup (2,589,197,096 samples, 0.03%)</title><rect x="921.4" y="437" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="924.40" y="447.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (3,696,150,877 samples, 0.04%)</title><rect x="195.1" y="325" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="198.14" y="335.5" ></text>
</g>
<g >
<title>new_list (1,548,060,476 samples, 0.02%)</title><rect x="981.7" y="389" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="984.69" y="399.5" ></text>
</g>
<g >
<title>lappend (2,408,299,604 samples, 0.03%)</title><rect x="970.3" y="373" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="973.27" y="383.5" ></text>
</g>
<g >
<title>makeAlias (6,182,541,227 samples, 0.07%)</title><rect x="815.6" y="453" width="0.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="818.63" y="463.5" ></text>
</g>
<g >
<title>scm_recv_unix (2,332,158,925 samples, 0.02%)</title><rect x="182.8" y="373" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="185.79" y="383.5" ></text>
</g>
<g >
<title>__libc_start_main@@GLIBC_2.34 (17,884,496,647 samples, 0.19%)</title><rect x="124.6" y="757" width="2.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="127.59" y="767.5" ></text>
</g>
<g >
<title>palloc0 (3,333,922,818 samples, 0.04%)</title><rect x="906.1" y="485" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="909.06" y="495.5" ></text>
</g>
<g >
<title>BTreeTupleIsPosting (960,846,788 samples, 0.01%)</title><rect x="331.4" y="213" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="334.43" y="223.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,218,169,166 samples, 0.01%)</title><rect x="35.2" y="757" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="38.19" y="767.5" ></text>
</g>
<g >
<title>AssertTransactionIdInAllowableRange (968,345,408 samples, 0.01%)</title><rect x="303.4" y="197" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="306.36" y="207.5" ></text>
</g>
<g >
<title>choose_bitmap_and (2,229,172,097 samples, 0.02%)</title><rect x="989.5" y="389" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="992.54" y="399.5" ></text>
</g>
<g >
<title>palloc (1,082,301,332 samples, 0.01%)</title><rect x="1048.3" y="469" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1051.32" y="479.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (975,684,566 samples, 0.01%)</title><rect x="1007.8" y="149" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1010.81" y="159.5" ></text>
</g>
<g >
<title>SearchSysCache1 (5,996,572,605 samples, 0.06%)</title><rect x="864.1" y="485" width="0.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="867.13" y="495.5" ></text>
</g>
<g >
<title>create_indexscan_plan (46,489,542,884 samples, 0.49%)</title><rect x="886.4" y="405" width="5.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="889.38" y="415.5" ></text>
</g>
<g >
<title>add_function_cost (4,989,405,707 samples, 0.05%)</title><rect x="1045.9" y="437" width="0.6" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="1048.87" y="447.5" ></text>
</g>
<g >
<title>index_getnext_tid (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="325" width="1.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="127.59" y="335.5" ></text>
</g>
<g >
<title>PortalRun (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="645" width="2.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="85.62" y="655.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (1,579,578,658 samples, 0.02%)</title><rect x="150.8" y="517" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="153.79" y="527.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,760,180,403 samples, 0.04%)</title><rect x="1034.7" y="133" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1037.73" y="143.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (1,436,419,082 samples, 0.02%)</title><rect x="248.5" y="437" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="251.55" y="447.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,710,727,735 samples, 0.03%)</title><rect x="398.5" y="373" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="401.46" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,207,431,016 samples, 0.01%)</title><rect x="307.4" y="117" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="310.40" y="127.5" ></text>
</g>
<g >
<title>get_futex_key (3,598,816,503 samples, 0.04%)</title><rect x="485.7" y="325" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="488.74" y="335.5" ></text>
</g>
<g >
<title>make_one_rel (1,163,868,766 samples, 0.01%)</title><rect x="126.5" y="485" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="129.52" y="495.5" ></text>
</g>
<g >
<title>schedule (44,914,714,941 samples, 0.48%)</title><rect x="476.2" y="309" width="5.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="479.23" y="319.5" ></text>
</g>
<g >
<title>palloc0 (3,709,452,243 samples, 0.04%)</title><rect x="1117.7" y="709" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1120.73" y="719.5" ></text>
</g>
<g >
<title>table_relation_estimate_size (29,265,790,846 samples, 0.31%)</title><rect x="935.0" y="389" width="3.6" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="937.96" y="399.5" ></text>
</g>
<g >
<title>new_list (1,619,025,464 samples, 0.02%)</title><rect x="884.8" y="405" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="887.81" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (121,593,685,990 samples, 1.29%)</title><rect x="510.7" y="501" width="15.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="513.73" y="511.5" ></text>
</g>
<g >
<title>try_to_block_task.constprop.0.isra.0 (20,319,229,734 samples, 0.22%)</title><rect x="479.1" y="277" width="2.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="482.13" y="287.5" ></text>
</g>
<g >
<title>ServerLoop (24,212,439,197 samples, 0.26%)</title><rect x="82.6" y="741" width="3.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="85.62" y="751.5" ></text>
</g>
<g >
<title>AllocSetCheck (2,079,723,834 samples, 0.02%)</title><rect x="457.6" y="565" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="460.60" y="575.5" ></text>
</g>
<g >
<title>SearchCatCache3 (6,512,743,256 samples, 0.07%)</title><rect x="1041.3" y="341" width="0.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1044.26" y="351.5" ></text>
</g>
<g >
<title>set_rel_size (128,875,238,762 samples, 1.37%)</title><rect x="1026.8" y="437" width="16.1" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1029.82" y="447.5" ></text>
</g>
<g >
<title>pg_comp_crc32c_sse42 (926,970,170 samples, 0.01%)</title><rect x="1168.4" y="757" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1171.44" y="767.5" ></text>
</g>
<g >
<title>buildNSItemFromTupleDesc (7,971,159,674 samples, 0.08%)</title><rect x="812.3" y="453" width="1.0" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="815.26" y="463.5" ></text>
</g>
<g >
<title>new_list (2,136,242,179 samples, 0.02%)</title><rect x="983.7" y="421" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="986.70" y="431.5" ></text>
</g>
<g >
<title>__errno_location (847,184,047 samples, 0.01%)</title><rect x="492.9" y="469" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="495.90" y="479.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (2,035,435,790 samples, 0.02%)</title><rect x="1059.4" y="437" width="0.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1062.40" y="447.5" ></text>
</g>
<g >
<title>planner (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="629" width="3.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="104.45" y="639.5" ></text>
</g>
<g >
<title>create_projection_plan (66,560,528,221 samples, 0.71%)</title><rect x="884.1" y="453" width="8.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="887.09" y="463.5" ></text>
</g>
<g >
<title>UnGrantLock (1,976,558,730 samples, 0.02%)</title><rect x="522.1" y="453" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="525.15" y="463.5" ></text>
</g>
<g >
<title>transformStmt (450,184,607,096 samples, 4.77%)</title><rect x="800.6" y="517" width="56.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="803.58" y="527.5" >trans..</text>
</g>
<g >
<title>AllocSetAlloc (2,183,393,624 samples, 0.02%)</title><rect x="428.4" y="389" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="431.42" y="399.5" ></text>
</g>
<g >
<title>lcons (2,584,731,637 samples, 0.03%)</title><rect x="910.4" y="453" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="913.39" y="463.5" ></text>
</g>
<g >
<title>smgrnblocks (10,483,722,019 samples, 0.11%)</title><rect x="931.9" y="389" width="1.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="934.88" y="399.5" ></text>
</g>
<g >
<title>palloc0 (2,845,613,098 samples, 0.03%)</title><rect x="977.4" y="421" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="980.39" y="431.5" ></text>
</g>
<g >
<title>ExecModifyTable (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="501" width="0.5" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1160.94" y="511.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (5,848,294,780 samples, 0.06%)</title><rect x="1021.8" y="245" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1024.77" y="255.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (2,768,473,694 samples, 0.03%)</title><rect x="82.6" y="325" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="85.62" y="335.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (2,421,126,990 samples, 0.03%)</title><rect x="272.0" y="389" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="274.99" y="399.5" ></text>
</g>
<g >
<title>__update_load_avg_se (871,708,146 samples, 0.01%)</title><rect x="481.3" y="197" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="484.34" y="207.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1,000,322,092 samples, 0.01%)</title><rect x="207.8" y="565" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="210.81" y="575.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,387,123,297 samples, 0.01%)</title><rect x="1173.0" y="613" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1176.04" y="623.5" ></text>
</g>
<g >
<title>list_make1_impl (2,011,925,160 samples, 0.02%)</title><rect x="1048.2" y="501" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1051.22" y="511.5" ></text>
</g>
<g >
<title>create_seqscan_path (14,368,907,245 samples, 0.15%)</title><rect x="1022.6" y="405" width="1.8" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1025.57" y="415.5" ></text>
</g>
<g >
<title>pfree (1,474,603,754 samples, 0.02%)</title><rect x="993.9" y="309" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="996.93" y="319.5" ></text>
</g>
<g >
<title>pgstat_count_slru_blocks_hit (921,505,580 samples, 0.01%)</title><rect x="307.8" y="149" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="310.75" y="159.5" ></text>
</g>
<g >
<title>ExecGetRangeTableRelation (1,522,984,930 samples, 0.02%)</title><rect x="439.7" y="405" width="0.2" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text x="442.68" y="415.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,434,718,407 samples, 0.02%)</title><rect x="301.9" y="245" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="304.92" y="255.5" ></text>
</g>
<g >
<title>HeapDetermineColumnsInfo (15,245,372,907 samples, 0.16%)</title><rect x="359.6" y="357" width="1.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="362.55" y="367.5" ></text>
</g>
<g >
<title>xas_start (1,699,342,556 samples, 0.02%)</title><rect x="499.7" y="293" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="502.73" y="303.5" ></text>
</g>
<g >
<title>ItemPointerEquals (3,101,488,775 samples, 0.03%)</title><rect x="293.6" y="309" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="296.62" y="319.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,123,994,504 samples, 0.01%)</title><rect x="1134.0" y="725" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1136.99" y="735.5" ></text>
</g>
<g >
<title>AllocSetFree (3,931,144,336 samples, 0.04%)</title><rect x="521.3" y="421" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="524.30" y="431.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (911,182,199 samples, 0.01%)</title><rect x="90.0" y="757" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="93.00" y="767.5" ></text>
</g>
<g >
<title>palloc (1,055,790,557 samples, 0.01%)</title><rect x="1057.7" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1060.67" y="383.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (4,658,756,202 samples, 0.05%)</title><rect x="24.7" y="741" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="27.72" y="751.5" ></text>
</g>
<g >
<title>ReadBuffer (18,810,485,137 samples, 0.20%)</title><rect x="366.4" y="357" width="2.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="369.39" y="367.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,558,426,216 samples, 0.02%)</title><rect x="436.2" y="309" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="439.22" y="319.5" ></text>
</g>
<g >
<title>LockReleaseAll (1,322,036,205 samples, 0.01%)</title><rect x="58.4" y="757" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="61.39" y="767.5" ></text>
</g>
<g >
<title>__virt_addr_valid (3,630,650,035 samples, 0.04%)</title><rect x="193.1" y="357" width="0.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="196.11" y="367.5" ></text>
</g>
<g >
<title>_bt_getbuf (11,970,693,185 samples, 0.13%)</title><rect x="83.2" y="293" width="1.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="86.22" y="303.5" ></text>
</g>
<g >
<title>ExecutorRun (53,501,250,861 samples, 0.57%)</title><rect x="94.7" y="613" width="6.7" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="97.67" y="623.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,687,286,754 samples, 0.02%)</title><rect x="470.3" y="357" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="473.35" y="367.5" ></text>
</g>
<g >
<title>LockHeldByMe (6,845,059,265 samples, 0.07%)</title><rect x="861.2" y="453" width="0.9" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="864.25" y="463.5" ></text>
</g>
<g >
<title>ExecProcNode (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="533" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1160.94" y="543.5" ></text>
</g>
<g >
<title>TransactionGroupUpdateXidStatus (5,261,457,778 samples, 0.06%)</title><rect x="470.8" y="453" width="0.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="473.83" y="463.5" ></text>
</g>
<g >
<title>bms_difference (2,559,732,497 samples, 0.03%)</title><rect x="966.4" y="373" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="969.44" y="383.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (3,510,045,615 samples, 0.04%)</title><rect x="78.0" y="757" width="0.4" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="81.00" y="767.5" ></text>
</g>
<g >
<title>newNode (3,615,249,357 samples, 0.04%)</title><rect x="814.3" y="421" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="817.28" y="431.5" ></text>
</g>
<g >
<title>newNode (2,787,766,733 samples, 0.03%)</title><rect x="921.9" y="437" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="924.93" y="447.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (9,133,550,721 samples, 0.10%)</title><rect x="1081.9" y="533" width="1.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1084.94" y="543.5" ></text>
</g>
<g >
<title>clauselist_selectivity (1,653,989,611 samples, 0.02%)</title><rect x="1012.5" y="293" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1015.46" y="303.5" ></text>
</g>
<g >
<title>tag_hash (3,897,863,881 samples, 0.04%)</title><rect x="861.6" y="421" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="864.61" y="431.5" ></text>
</g>
<g >
<title>SearchCatCache1 (6,922,868,022 samples, 0.07%)</title><rect x="423.2" y="325" width="0.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="426.21" y="335.5" ></text>
</g>
<g >
<title>get_tablespace (3,548,633,453 samples, 0.04%)</title><rect x="990.8" y="341" width="0.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="993.79" y="351.5" ></text>
</g>
<g >
<title>sysvec_thermal (1,075,229,263 samples, 0.01%)</title><rect x="791.7" y="501" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="794.69" y="511.5" ></text>
</g>
<g >
<title>hash_search (3,690,597,177 samples, 0.04%)</title><rect x="924.1" y="405" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="927.14" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (2,092,106,222 samples, 0.02%)</title><rect x="490.1" y="421" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="493.15" y="431.5" ></text>
</g>
<g >
<title>palloc (1,407,086,535 samples, 0.01%)</title><rect x="878.9" y="437" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="881.86" y="447.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,943,355,936 samples, 0.02%)</title><rect x="855.6" y="309" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="858.62" y="319.5" ></text>
</g>
<g >
<title>list_nth_cell (1,002,197,072 samples, 0.01%)</title><rect x="856.7" y="389" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="859.72" y="399.5" ></text>
</g>
<g >
<title>LWLockRelease (1,160,922,356 samples, 0.01%)</title><rect x="398.8" y="373" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="401.80" y="383.5" ></text>
</g>
<g >
<title>uint32_hash (1,608,792,599 samples, 0.02%)</title><rect x="991.0" y="309" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="994.03" y="319.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="501" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1161.36" y="511.5" ></text>
</g>
<g >
<title>generate_base_implied_equalities_const (9,461,083,912 samples, 0.10%)</title><rect x="981.2" y="453" width="1.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="984.20" y="463.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (815,927,151 samples, 0.01%)</title><rect x="86.4" y="757" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="89.42" y="767.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (33,532,079,411 samples, 0.36%)</title><rect x="1003.8" y="197" width="4.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1006.84" y="207.5" ></text>
</g>
<g >
<title>LockHeldByMe (7,970,980,310 samples, 0.08%)</title><rect x="828.0" y="373" width="1.0" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="831.04" y="383.5" ></text>
</g>
<g >
<title>malloc (2,651,562,701 samples, 0.03%)</title><rect x="912.5" y="405" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="915.52" y="415.5" ></text>
</g>
<g >
<title>deconstruct_jointree (178,582,971,348 samples, 1.89%)</title><rect x="957.1" y="469" width="22.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="960.14" y="479.5" >d..</text>
</g>
<g >
<title>PostgresMain (81,441,377,880 samples, 0.86%)</title><rect x="94.7" y="693" width="10.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="97.67" y="703.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (1,674,174,199 samples, 0.02%)</title><rect x="344.1" y="293" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="347.08" y="303.5" ></text>
</g>
<g >
<title>newNode (27,198,529,610 samples, 0.29%)</title><rect x="1048.6" y="501" width="3.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1051.61" y="511.5" ></text>
</g>
<g >
<title>XLogWrite (104,293,958,364 samples, 1.11%)</title><rect x="492.3" y="485" width="13.0" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="495.27" y="495.5" ></text>
</g>
<g >
<title>list_free_private (1,641,171,714 samples, 0.02%)</title><rect x="954.6" y="437" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="957.59" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,135,026,398 samples, 0.01%)</title><rect x="417.2" y="293" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="420.23" y="303.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (9,066,291,436 samples, 0.10%)</title><rect x="1147.9" y="757" width="1.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1150.90" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (9,168,220,771 samples, 0.10%)</title><rect x="997.2" y="309" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1000.24" y="319.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="549" width="1.7" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="125.45" y="559.5" ></text>
</g>
<g >
<title>PortalRunMulti (53,501,250,861 samples, 0.57%)</title><rect x="94.7" y="645" width="6.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="97.67" y="655.5" ></text>
</g>
<g >
<title>PinBufferForBlock (16,885,685,466 samples, 0.18%)</title><rect x="399.6" y="309" width="2.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="402.61" y="319.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,597,697,164 samples, 0.05%)</title><rect x="1047.6" y="421" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1050.61" y="431.5" ></text>
</g>
<g >
<title>AllocSetFree (2,050,119,159 samples, 0.02%)</title><rect x="187.2" y="549" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="190.24" y="559.5" ></text>
</g>
<g >
<title>unlink_chunk.isra.0 (1,136,090,054 samples, 0.01%)</title><rect x="292.8" y="197" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="295.83" y="207.5" ></text>
</g>
<g >
<title>palloc0 (1,871,747,785 samples, 0.02%)</title><rect x="860.3" y="501" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="863.32" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,385,229,393 samples, 0.03%)</title><rect x="1165.0" y="741" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1168.02" y="751.5" ></text>
</g>
<g >
<title>uint32_hash (1,483,475,017 samples, 0.02%)</title><rect x="1066.8" y="453" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1069.77" y="463.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,730,810,649 samples, 0.05%)</title><rect x="802.9" y="373" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="805.90" y="383.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (6,666,748,927 samples, 0.07%)</title><rect x="423.2" y="309" width="0.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="426.24" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,059,131,075 samples, 0.01%)</title><rect x="847.5" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="850.52" y="367.5" ></text>
</g>
<g >
<title>get_op_opfamily_strategy (8,176,518,950 samples, 0.09%)</title><rect x="1014.3" y="309" width="1.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1017.33" y="319.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (7,808,261,197 samples, 0.08%)</title><rect x="459.7" y="485" width="1.0" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="462.69" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,420,192,478 samples, 0.02%)</title><rect x="973.1" y="357" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="976.12" y="367.5" ></text>
</g>
<g >
<title>ReleaseSysCache (2,080,572,717 samples, 0.02%)</title><rect x="90.2" y="757" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="93.20" y="767.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (1,292,560,940 samples, 0.01%)</title><rect x="303.3" y="213" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="306.33" y="223.5" ></text>
</g>
<g >
<title>__check_heap_object (836,505,831 samples, 0.01%)</title><rect x="183.8" y="293" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="186.76" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,230,709,463 samples, 0.01%)</title><rect x="873.4" y="517" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="876.36" y="527.5" ></text>
</g>
<g >
<title>__libc_start_call_main (17,884,496,647 samples, 0.19%)</title><rect x="124.6" y="741" width="2.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="127.59" y="751.5" ></text>
</g>
<g >
<title>pfree (1,314,832,661 samples, 0.01%)</title><rect x="1069.8" y="469" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1072.78" y="479.5" ></text>
</g>
<g >
<title>PortalStart (8,844,201,837 samples, 0.09%)</title><rect x="454.7" y="581" width="1.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="457.75" y="591.5" ></text>
</g>
<g >
<title>standard_qp_callback (1,150,751,802 samples, 0.01%)</title><rect x="1184.5" y="757" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1187.55" y="767.5" ></text>
</g>
<g >
<title>palloc (1,621,391,192 samples, 0.02%)</title><rect x="449.8" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="452.77" y="431.5" ></text>
</g>
<g >
<title>fmgr_info (3,469,940,489 samples, 0.04%)</title><rect x="1037.0" y="309" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1039.95" y="319.5" ></text>
</g>
<g >
<title>palloc (2,331,707,684 samples, 0.02%)</title><rect x="234.5" y="517" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="237.46" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (922,567,553 samples, 0.01%)</title><rect x="448.7" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="451.74" y="383.5" ></text>
</g>
<g >
<title>process_equivalence (40,978,371,857 samples, 0.43%)</title><rect x="968.9" y="405" width="5.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="971.86" y="415.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (2,171,518,979 samples, 0.02%)</title><rect x="1046.7" y="405" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1049.71" y="415.5" ></text>
</g>
<g >
<title>newNode (2,683,461,947 samples, 0.03%)</title><rect x="896.6" y="453" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="899.60" y="463.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (908,110,346 samples, 0.01%)</title><rect x="462.0" y="517" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="464.99" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (65,672,740,014 samples, 0.70%)</title><rect x="493.5" y="437" width="8.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="496.48" y="447.5" ></text>
</g>
<g >
<title>palloc (3,083,161,260 samples, 0.03%)</title><rect x="951.5" y="405" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="954.48" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u64_impl (998,791,099 samples, 0.01%)</title><rect x="491.0" y="437" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="494.03" y="447.5" ></text>
</g>
<g >
<title>bms_copy (1,899,271,165 samples, 0.02%)</title><rect x="975.6" y="421" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="978.63" y="431.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,734,757,561 samples, 0.04%)</title><rect x="1059.2" y="453" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1062.18" y="463.5" ></text>
</g>
<g >
<title>lappend (2,196,780,006 samples, 0.02%)</title><rect x="893.1" y="453" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="896.07" y="463.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,387,123,297 samples, 0.01%)</title><rect x="1173.0" y="661" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1176.04" y="671.5" ></text>
</g>
<g >
<title>ExecStorePinnedBufferHeapTuple (2,671,957,668 samples, 0.03%)</title><rect x="397.2" y="405" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="400.15" y="415.5" ></text>
</g>
<g >
<title>_bt_readpage (2,079,231,909 samples, 0.02%)</title><rect x="83.0" y="309" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="85.96" y="319.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (7,555,275,284 samples, 0.08%)</title><rect x="1135.5" y="757" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1138.46" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,051,670,352 samples, 0.01%)</title><rect x="1056.3" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1059.33" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,120,865,920 samples, 0.02%)</title><rect x="474.2" y="453" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="477.21" y="463.5" ></text>
</g>
<g >
<title>__libc_start_main@@GLIBC_2.34 (7,629,157,056,107 samples, 80.84%)</title><rect x="130.1" y="741" width="953.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="133.07" y="751.5" >__libc_start_main@@GLIBC_2.34</text>
</g>
<g >
<title>palloc0 (2,543,857,723 samples, 0.03%)</title><rect x="978.3" y="437" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="981.30" y="447.5" ></text>
</g>
<g >
<title>LockBuffer (3,441,328,013 samples, 0.04%)</title><rect x="339.3" y="213" width="0.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="342.30" y="223.5" ></text>
</g>
<g >
<title>pfree (5,041,799,362 samples, 0.05%)</title><rect x="521.2" y="437" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="524.23" y="447.5" ></text>
</g>
<g >
<title>transformAExprOp (98,582,555,706 samples, 1.04%)</title><rect x="844.5" y="437" width="12.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="847.52" y="447.5" ></text>
</g>
<g >
<title>create_seqscan_path (1,216,757,170 samples, 0.01%)</title><rect x="1130.6" y="757" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1133.57" y="767.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (827,869,453 samples, 0.01%)</title><rect x="471.0" y="405" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="473.95" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,389,202,554 samples, 0.01%)</title><rect x="816.9" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="819.90" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (2,032,839,131 samples, 0.02%)</title><rect x="466.4" y="453" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="469.37" y="463.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,753,223,390 samples, 0.04%)</title><rect x="836.0" y="357" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="839.02" y="367.5" ></text>
</g>
<g >
<title>UnpinBuffer (851,228,299 samples, 0.01%)</title><rect x="108.0" y="757" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="111.00" y="767.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,599,928,533 samples, 0.05%)</title><rect x="803.6" y="357" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="806.64" y="367.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (9,717,387,733 samples, 0.10%)</title><rect x="143.4" y="533" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="146.44" y="543.5" ></text>
</g>
<g >
<title>heap_prune_satisfies_vacuum (3,190,381,856 samples, 0.03%)</title><rect x="1148.6" y="709" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1151.63" y="719.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (988,161,197 samples, 0.01%)</title><rect x="102.8" y="421" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="105.75" y="431.5" ></text>
</g>
<g >
<title>ReleaseCatCache (2,134,193,276 samples, 0.02%)</title><rect x="435.3" y="341" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="438.34" y="351.5" ></text>
</g>
<g >
<title>RelationClose (2,358,123,629 samples, 0.02%)</title><rect x="865.3" y="485" width="0.3" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="868.27" y="495.5" ></text>
</g>
<g >
<title>PortalRun (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="613" width="1.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="125.45" y="623.5" ></text>
</g>
<g >
<title>hash_search (5,394,610,019 samples, 0.06%)</title><rect x="868.4" y="469" width="0.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="871.39" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,654,353,835 samples, 0.02%)</title><rect x="456.8" y="533" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="459.76" y="543.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,315,719,021 samples, 0.01%)</title><rect x="862.1" y="437" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="865.15" y="447.5" ></text>
</g>
<g >
<title>_bt_first (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="325" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1160.94" y="335.5" ></text>
</g>
<g >
<title>tag_hash (3,797,902,078 samples, 0.04%)</title><rect x="867.6" y="437" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="870.61" y="447.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (1,080,132,254 samples, 0.01%)</title><rect x="826.2" y="309" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="829.16" y="319.5" ></text>
</g>
<g >
<title>check_enable_rls (7,323,046,490 samples, 0.08%)</title><rect x="864.0" y="501" width="0.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="866.96" y="511.5" ></text>
</g>
<g >
<title>palloc0 (4,563,725,334 samples, 0.05%)</title><rect x="393.0" y="341" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="395.97" y="351.5" ></text>
</g>
<g >
<title>hash_initial_lookup (972,526,286 samples, 0.01%)</title><rect x="821.5" y="341" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="824.51" y="351.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (3,366,648,300 samples, 0.04%)</title><rect x="338.5" y="197" width="0.4" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="341.46" y="207.5" ></text>
</g>
<g >
<title>update_process_times (1,613,611,367 samples, 0.02%)</title><rect x="750.5" y="421" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="753.47" y="431.5" ></text>
</g>
<g >
<title>pull_up_subqueries_recurse (2,474,716,427 samples, 0.03%)</title><rect x="1071.1" y="469" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1074.10" y="479.5" ></text>
</g>
<g >
<title>setTargetTable (172,693,408,262 samples, 1.83%)</title><rect x="809.6" y="485" width="21.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="812.56" y="495.5" >s..</text>
</g>
<g >
<title>IsTidRangeClause (1,874,727,000 samples, 0.02%)</title><rect x="1026.0" y="373" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1029.01" y="383.5" ></text>
</g>
<g >
<title>LockBuffer (3,172,973,216 samples, 0.03%)</title><rect x="325.3" y="197" width="0.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="328.26" y="207.5" ></text>
</g>
<g >
<title>markRTEForSelectPriv (1,885,385,960 samples, 0.02%)</title><rect x="840.3" y="309" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="843.31" y="319.5" ></text>
</g>
<g >
<title>hash_bytes (2,221,587,457 samples, 0.02%)</title><rect x="443.6" y="357" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="446.58" y="367.5" ></text>
</g>
<g >
<title>XLogInsert (49,913,954,668 samples, 0.53%)</title><rect x="378.4" y="341" width="6.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="381.38" y="351.5" ></text>
</g>
<g >
<title>ensure_tabstat_xact_level (1,067,526,090 samples, 0.01%)</title><rect x="1132.9" y="757" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1135.91" y="767.5" ></text>
</g>
<g >
<title>palloc (2,756,130,897 samples, 0.03%)</title><rect x="890.7" y="341" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="893.71" y="351.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (817,927,632 samples, 0.01%)</title><rect x="960.4" y="261" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="963.36" y="271.5" ></text>
</g>
<g >
<title>LockHeldByMe (13,224,649,275 samples, 0.14%)</title><rect x="827.9" y="389" width="1.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="830.93" y="399.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (901,857,180 samples, 0.01%)</title><rect x="32.8" y="757" width="0.2" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="35.85" y="767.5" ></text>
</g>
<g >
<title>palloc0 (2,924,240,591 samples, 0.03%)</title><rect x="1120.0" y="693" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1123.02" y="703.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,178,407,354 samples, 0.03%)</title><rect x="288.7" y="181" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="291.67" y="191.5" ></text>
</g>
<g >
<title>_bt_getrootheight (1,513,629,304 samples, 0.02%)</title><rect x="933.2" y="389" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="936.25" y="399.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (2,033,455,786 samples, 0.02%)</title><rect x="435.3" y="325" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="438.35" y="335.5" ></text>
</g>
<g >
<title>LockHeldByMe (6,695,190,628 samples, 0.07%)</title><rect x="947.6" y="341" width="0.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="950.56" y="351.5" ></text>
</g>
<g >
<title>UnlockBufHdr (1,342,663,286 samples, 0.01%)</title><rect x="324.5" y="213" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="327.53" y="223.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (3,407,274,089 samples, 0.04%)</title><rect x="325.2" y="213" width="0.5" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="328.24" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_read_u64 (2,493,329,070 samples, 0.03%)</title><rect x="505.3" y="485" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="508.33" y="495.5" ></text>
</g>
<g >
<title>AllocSetFree (991,779,624 samples, 0.01%)</title><rect x="994.5" y="341" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="997.47" y="351.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (6,676,282,795 samples, 0.07%)</title><rect x="416.6" y="341" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="419.56" y="351.5" ></text>
</g>
<g >
<title>hash_bytes (2,728,308,702 samples, 0.03%)</title><rect x="820.4" y="325" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="823.36" y="335.5" ></text>
</g>
<g >
<title>list_make1_impl (1,988,411,184 samples, 0.02%)</title><rect x="908.6" y="453" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="911.60" y="463.5" ></text>
</g>
<g >
<title>pq_getmessage (11,153,967,975 samples, 0.12%)</title><rect x="184.9" y="565" width="1.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="187.86" y="575.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,450,880,216 samples, 0.04%)</title><rect x="390.1" y="325" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="393.09" y="335.5" ></text>
</g>
<g >
<title>PinBuffer (1,757,898,060 samples, 0.02%)</title><rect x="368.1" y="245" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="371.08" y="255.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (9,644,165,946 samples, 0.10%)</title><rect x="288.0" y="277" width="1.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="290.96" y="287.5" ></text>
</g>
<g >
<title>AllocSetDelete (6,889,019,738 samples, 0.07%)</title><rect x="223.1" y="533" width="0.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="226.10" y="543.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (5,097,576,411 samples, 0.05%)</title><rect x="848.4" y="357" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="851.36" y="367.5" ></text>
</g>
<g >
<title>standard_planner (1,980,044,175 samples, 0.02%)</title><rect x="85.4" y="597" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="88.40" y="607.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (886,882,643 samples, 0.01%)</title><rect x="124.5" y="421" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="127.48" y="431.5" ></text>
</g>
<g >
<title>estimate_expression_value (803,901,079 samples, 0.01%)</title><rect x="126.6" y="261" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="129.56" y="271.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,501,365,315 samples, 0.04%)</title><rect x="1078.0" y="517" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1080.97" y="527.5" ></text>
</g>
<g >
<title>ReadBuffer (1,404,600,886 samples, 0.01%)</title><rect x="335.5" y="213" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="338.50" y="223.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (2,602,827,348 samples, 0.03%)</title><rect x="76.7" y="757" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="79.65" y="767.5" ></text>
</g>
<g >
<title>BufferGetPage (1,873,258,057 samples, 0.02%)</title><rect x="309.6" y="245" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="312.57" y="255.5" ></text>
</g>
<g >
<title>SearchCatCacheList (8,537,128,675 samples, 0.09%)</title><rect x="962.6" y="357" width="1.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="965.64" y="367.5" ></text>
</g>
<g >
<title>set_plain_rel_pathlist (324,043,465,427 samples, 3.43%)</title><rect x="985.9" y="421" width="40.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="988.87" y="431.5" >set..</text>
</g>
<g >
<title>pull_varnos (5,093,814,385 samples, 0.05%)</title><rect x="968.2" y="373" width="0.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="971.21" y="383.5" ></text>
</g>
<g >
<title>palloc0 (1,727,885,562 samples, 0.02%)</title><rect x="913.7" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="916.69" y="447.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (1,636,903,328 samples, 0.02%)</title><rect x="441.1" y="373" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="444.08" y="383.5" ></text>
</g>
<g >
<title>AdvanceXLInsertBuffer (804,770,827 samples, 0.01%)</title><rect x="379.9" y="277" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="382.95" y="287.5" ></text>
</g>
<g >
<title>newNode (2,542,619,483 samples, 0.03%)</title><rect x="833.7" y="421" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="836.73" y="431.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,068,815,456 samples, 0.01%)</title><rect x="398.7" y="325" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="401.66" y="335.5" ></text>
</g>
<g >
<title>AtEOXact_Enum (1,294,093,953 samples, 0.01%)</title><rect x="31.0" y="757" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="34.02" y="767.5" ></text>
</g>
<g >
<title>simplify_function (19,324,085,564 samples, 0.20%)</title><rect x="102.4" y="469" width="2.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="105.41" y="479.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (891,507,353 samples, 0.01%)</title><rect x="338.3" y="197" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="341.35" y="207.5" ></text>
</g>
<g >
<title>InjectionPointCacheRefresh (3,227,070,935 samples, 0.03%)</title><rect x="362.2" y="341" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="365.17" y="351.5" ></text>
</g>
<g >
<title>fdget (2,298,924,565 samples, 0.02%)</title><rect x="176.8" y="421" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="179.79" y="431.5" ></text>
</g>
<g >
<title>pg_plan_query (1,587,594,640,731 samples, 16.82%)</title><rect x="873.5" y="565" width="198.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="876.55" y="575.5" >pg_plan_query</text>
</g>
<g >
<title>verify_compact_attribute (1,368,564,439 samples, 0.01%)</title><rect x="268.6" y="245" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="271.59" y="255.5" ></text>
</g>
<g >
<title>XLogFlush (914,738,712 samples, 0.01%)</title><rect x="109.4" y="757" width="0.2" height="15.0" fill="rgb(251,213,50)" rx="2" ry="2" />
<text x="112.44" y="767.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesMVCC (32,955,381,451 samples, 0.35%)</title><rect x="304.1" y="229" width="4.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="307.11" y="239.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,131,160,257 samples, 0.01%)</title><rect x="323.5" y="197" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="326.48" y="207.5" ></text>
</g>
<g >
<title>ExecAssignExprContext (10,444,913,934 samples, 0.11%)</title><rect x="414.4" y="421" width="1.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="417.41" y="431.5" ></text>
</g>
<g >
<title>ExecInitExprRec (11,207,895,693 samples, 0.12%)</title><rect x="431.0" y="405" width="1.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="434.02" y="415.5" ></text>
</g>
<g >
<title>RelationGetNumberOfBlocksInFork (22,427,398,684 samples, 0.24%)</title><rect x="935.4" y="341" width="2.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="938.43" y="351.5" ></text>
</g>
<g >
<title>HeapTupleHeaderXminFrozen (4,305,227,308 samples, 0.05%)</title><rect x="302.6" y="229" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="305.60" y="239.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,257,793,925 samples, 0.03%)</title><rect x="973.6" y="357" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="976.57" y="367.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,635,510,285 samples, 0.02%)</title><rect x="37.6" y="757" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="40.57" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,369,631,848 samples, 0.01%)</title><rect x="189.4" y="485" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="192.43" y="495.5" ></text>
</g>
<g >
<title>check_functions_in_node (6,980,752,066 samples, 0.07%)</title><rect x="916.2" y="421" width="0.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="919.23" y="431.5" ></text>
</g>
<g >
<title>palloc (1,358,335,168 samples, 0.01%)</title><rect x="922.6" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="925.59" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,218,264,295 samples, 0.01%)</title><rect x="860.4" y="485" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="863.41" y="495.5" ></text>
</g>
<g >
<title>namestrcmp (2,775,743,010 samples, 0.03%)</title><rect x="832.1" y="453" width="0.4" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="835.12" y="463.5" ></text>
</g>
<g >
<title>mutex_unlock (1,228,680,756 samples, 0.01%)</title><rect x="182.6" y="373" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="185.64" y="383.5" ></text>
</g>
<g >
<title>ExecInitScanTupleSlot (1,570,722,331 samples, 0.02%)</title><rect x="44.0" y="757" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="47.04" y="767.5" ></text>
</g>
<g >
<title>list_free_deep (5,878,483,285 samples, 0.06%)</title><rect x="978.6" y="453" width="0.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="981.63" y="463.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableFullXid (1,988,806,330 samples, 0.02%)</title><rect x="310.3" y="229" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="313.26" y="239.5" ></text>
</g>
<g >
<title>lappend (2,227,811,531 samples, 0.02%)</title><rect x="981.6" y="405" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="984.60" y="415.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (10,670,317,115 samples, 0.11%)</title><rect x="947.5" y="373" width="1.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="950.49" y="383.5" ></text>
</g>
<g >
<title>LockReassignOwner (3,140,391,278 samples, 0.03%)</title><rect x="225.5" y="517" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="228.49" y="527.5" ></text>
</g>
<g >
<title>ExecutorRun (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="581" width="0.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="1160.94" y="591.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,094,230,857 samples, 0.01%)</title><rect x="941.8" y="325" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="944.84" y="335.5" ></text>
</g>
<g >
<title>object_aclcheck (1,932,176,355 samples, 0.02%)</title><rect x="420.7" y="325" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="423.73" y="335.5" ></text>
</g>
<g >
<title>hash_initial_lookup (803,788,687 samples, 0.01%)</title><rect x="440.7" y="325" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="443.70" y="335.5" ></text>
</g>
<g >
<title>palloc0 (1,549,328,571 samples, 0.02%)</title><rect x="974.9" y="277" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="977.87" y="287.5" ></text>
</g>
<g >
<title>palloc (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="309" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="88.40" y="319.5" ></text>
</g>
<g >
<title>XLogRegisterData (833,667,847 samples, 0.01%)</title><rect x="509.3" y="485" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="512.31" y="495.5" ></text>
</g>
<g >
<title>get_typlen (6,665,871,369 samples, 0.07%)</title><rect x="1042.1" y="357" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1045.10" y="367.5" ></text>
</g>
<g >
<title>LWLockWakeup (2,428,468,505 samples, 0.03%)</title><rect x="363.6" y="309" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="366.64" y="319.5" ></text>
</g>
<g >
<title>BufferAlloc (26,684,185,460 samples, 0.28%)</title><rect x="94.8" y="197" width="3.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="97.79" y="207.5" ></text>
</g>
<g >
<title>__pick_next_task (15,873,601,603 samples, 0.17%)</title><rect x="159.2" y="341" width="2.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="162.17" y="351.5" ></text>
</g>
<g >
<title>SearchSysCache3 (5,452,754,940 samples, 0.06%)</title><rect x="1010.9" y="293" width="0.7" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1013.95" y="303.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (1,027,371,916 samples, 0.01%)</title><rect x="300.6" y="133" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="303.58" y="143.5" ></text>
</g>
<g >
<title>_int_malloc (2,021,878,420 samples, 0.02%)</title><rect x="912.6" y="389" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="915.60" y="399.5" ></text>
</g>
<g >
<title>bms_del_members (816,098,573 samples, 0.01%)</title><rect x="879.1" y="469" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="882.15" y="479.5" ></text>
</g>
<g >
<title>cpuacct_charge (1,123,579,800 samples, 0.01%)</title><rect x="169.3" y="245" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="172.27" y="255.5" ></text>
</g>
<g >
<title>get_leftop (1,013,196,930 samples, 0.01%)</title><rect x="972.0" y="389" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="975.01" y="399.5" ></text>
</g>
<g >
<title>__task_rq_lock (811,735,690 samples, 0.01%)</title><rect x="354.7" y="85" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="357.71" y="95.5" ></text>
</g>
<g >
<title>tag_hash (2,462,350,871 samples, 0.03%)</title><rect x="355.0" y="245" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="358.02" y="255.5" ></text>
</g>
<g >
<title>_int_free_merge_chunk (3,301,374,757 samples, 0.03%)</title><rect x="241.2" y="341" width="0.5" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="244.25" y="351.5" ></text>
</g>
<g >
<title>LockHeldByMe (6,536,167,978 samples, 0.07%)</title><rect x="1067.4" y="421" width="0.9" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1070.44" y="431.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,674,395,068 samples, 0.04%)</title><rect x="1056.7" y="405" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1059.69" y="415.5" ></text>
</g>
<g >
<title>palloc0 (4,730,988,301 samples, 0.05%)</title><rect x="816.5" y="437" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="819.48" y="447.5" ></text>
</g>
<g >
<title>UnpinBuffer (2,022,784,425 samples, 0.02%)</title><rect x="374.2" y="341" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="377.22" y="351.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (1,027,064,660 samples, 0.01%)</title><rect x="91.8" y="757" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="94.79" y="767.5" ></text>
</g>
<g >
<title>lappend (3,334,822,066 samples, 0.04%)</title><rect x="889.8" y="277" width="0.5" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="892.85" y="287.5" ></text>
</g>
<g >
<title>hash_initial_lookup (2,109,372,957 samples, 0.02%)</title><rect x="514.9" y="421" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="517.86" y="431.5" ></text>
</g>
<g >
<title>gup_fast_fallback (1,647,591,694 samples, 0.02%)</title><rect x="351.2" y="117" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="354.17" y="127.5" ></text>
</g>
<g >
<title>ProcessQuery (53,501,250,861 samples, 0.57%)</title><rect x="94.7" y="629" width="6.7" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="97.67" y="639.5" ></text>
</g>
<g >
<title>BackendMain (24,212,439,197 samples, 0.26%)</title><rect x="82.6" y="693" width="3.0" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="85.62" y="703.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="501" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="127.24" y="511.5" ></text>
</g>
<g >
<title>do_syscall_64 (8,174,462,190 samples, 0.09%)</title><rect x="936.9" y="197" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="939.91" y="207.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,982,794,754 samples, 0.03%)</title><rect x="469.8" y="437" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="472.84" y="447.5" ></text>
</g>
<g >
<title>palloc (1,502,406,841 samples, 0.02%)</title><rect x="873.3" y="533" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="876.33" y="543.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (862,970,815 samples, 0.01%)</title><rect x="436.1" y="309" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="439.12" y="319.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (2,438,514,431 samples, 0.03%)</title><rect x="333.4" y="197" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="336.38" y="207.5" ></text>
</g>
<g >
<title>get_relation_notnullatts (65,523,862,200 samples, 0.69%)</title><rect x="1058.8" y="485" width="8.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1061.77" y="495.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (920,045,266 samples, 0.01%)</title><rect x="28.9" y="741" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="31.90" y="751.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (10,541,597,028 samples, 0.11%)</title><rect x="997.1" y="325" width="1.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1000.07" y="335.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,128,658,246 samples, 0.01%)</title><rect x="237.3" y="373" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="240.27" y="383.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,482,607,802 samples, 0.02%)</title><rect x="819.8" y="357" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="822.79" y="367.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,387,123,297 samples, 0.01%)</title><rect x="1173.0" y="693" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1176.04" y="703.5" ></text>
</g>
<g >
<title>ExecModifyTable (53,501,250,861 samples, 0.57%)</title><rect x="94.7" y="533" width="6.7" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="97.67" y="543.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (19,447,790,340 samples, 0.21%)</title><rect x="901.0" y="421" width="2.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="903.97" y="431.5" ></text>
</g>
<g >
<title>ReadBuffer_common (801,296,149 samples, 0.01%)</title><rect x="1158.3" y="229" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1161.26" y="239.5" ></text>
</g>
<g >
<title>generate_base_implied_equalities (19,173,611,572 samples, 0.20%)</title><rect x="980.0" y="469" width="2.4" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="983.01" y="479.5" ></text>
</g>
<g >
<title>__sigsetjmp (1,863,706,088 samples, 0.02%)</title><rect x="185.3" y="549" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="188.30" y="559.5" ></text>
</g>
<g >
<title>dequeue_entity (39,145,811,681 samples, 0.41%)</title><rect x="166.7" y="293" width="4.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="169.69" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,324,855,659 samples, 0.01%)</title><rect x="1173.0" y="565" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1176.04" y="575.5" ></text>
</g>
<g >
<title>futex_wake (27,545,769,084 samples, 0.29%)</title><rect x="485.3" y="341" width="3.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="488.28" y="351.5" ></text>
</g>
<g >
<title>lappend (1,468,943,018 samples, 0.02%)</title><rect x="897.4" y="469" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="900.40" y="479.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (4,369,057,098 samples, 0.05%)</title><rect x="349.7" y="293" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="352.75" y="303.5" ></text>
</g>
<g >
<title>table_index_fetch_reset (1,482,128,195 samples, 0.02%)</title><rect x="341.7" y="309" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="344.73" y="319.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,355,954,048 samples, 0.04%)</title><rect x="508.0" y="437" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="511.02" y="447.5" ></text>
</g>
<g >
<title>list_last_cell (1,687,501,329 samples, 0.02%)</title><rect x="1154.8" y="757" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1157.83" y="767.5" ></text>
</g>
<g >
<title>pgstat_count_slru_blocks_hit (1,237,933,197 samples, 0.01%)</title><rect x="472.3" y="421" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="475.31" y="431.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="469" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="127.24" y="479.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (26,749,603,550 samples, 0.28%)</title><rect x="297.5" y="181" width="3.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="300.46" y="191.5" ></text>
</g>
<g >
<title>WalSndWakeup (4,648,221,645 samples, 0.05%)</title><rect x="491.6" y="469" width="0.6" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="494.64" y="479.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,267,508,550 samples, 0.01%)</title><rect x="518.2" y="405" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="521.18" y="415.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,188,203,772 samples, 0.01%)</title><rect x="395.7" y="309" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="398.73" y="319.5" ></text>
</g>
<g >
<title>LWLockWakeup (2,614,500,691 samples, 0.03%)</title><rect x="382.1" y="245" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="385.11" y="255.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,262,820,018 samples, 0.02%)</title><rect x="942.6" y="325" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="945.57" y="335.5" ></text>
</g>
<g >
<title>smgrnblocks_cached (929,200,748 samples, 0.01%)</title><rect x="938.1" y="277" width="0.1" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="941.11" y="287.5" ></text>
</g>
<g >
<title>AllocSetFree (2,620,987,918 samples, 0.03%)</title><rect x="252.1" y="453" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="255.14" y="463.5" ></text>
</g>
<g >
<title>heap_update (1,514,571,508 samples, 0.02%)</title><rect x="1149.1" y="757" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1152.07" y="767.5" ></text>
</g>
<g >
<title>LWLockAcquire (6,334,093,665 samples, 0.07%)</title><rect x="381.1" y="293" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="384.14" y="303.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,116,942,226 samples, 0.04%)</title><rect x="1056.6" y="421" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1059.64" y="431.5" ></text>
</g>
<g >
<title>log_heap_prune_and_freeze (1,087,897,863 samples, 0.01%)</title><rect x="1145.7" y="741" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1148.66" y="751.5" ></text>
</g>
<g >
<title>pfree (1,512,546,163 samples, 0.02%)</title><rect x="877.8" y="469" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="880.82" y="479.5" ></text>
</g>
<g >
<title>set_baserel_size_estimates (803,901,079 samples, 0.01%)</title><rect x="126.6" y="421" width="0.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="129.56" y="431.5" ></text>
</g>
<g >
<title>RestrictInfoIsTidQual (5,515,093,782 samples, 0.06%)</title><rect x="1025.1" y="373" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1028.05" y="383.5" ></text>
</g>
<g >
<title>newNode (2,217,801,030 samples, 0.02%)</title><rect x="835.7" y="373" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="838.70" y="383.5" ></text>
</g>
<g >
<title>__task_rq_lock (1,016,382,047 samples, 0.01%)</title><rect x="382.3" y="85" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="385.25" y="95.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,916,633,182 samples, 0.02%)</title><rect x="37.8" y="757" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="40.77" y="767.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (8,778,672,728 samples, 0.09%)</title><rect x="315.9" y="229" width="1.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="318.92" y="239.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (7,518,641,940 samples, 0.08%)</title><rect x="1009.7" y="245" width="1.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1012.74" y="255.5" ></text>
</g>
<g >
<title>UnpinBuffer (3,228,855,107 samples, 0.03%)</title><rect x="324.8" y="197" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="327.83" y="207.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,387,123,297 samples, 0.01%)</title><rect x="1173.0" y="677" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1176.04" y="687.5" ></text>
</g>
<g >
<title>nocachegetattr (44,841,942,633 samples, 0.48%)</title><rect x="1002.7" y="213" width="5.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1005.69" y="223.5" ></text>
</g>
<g >
<title>__futex_wait (853,688,244 samples, 0.01%)</title><rect x="398.7" y="229" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="401.69" y="239.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,392,288,237 samples, 0.04%)</title><rect x="1052.7" y="389" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1055.68" y="399.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (865,784,686 samples, 0.01%)</title><rect x="423.0" y="293" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="426.03" y="303.5" ></text>
</g>
<g >
<title>AllocSetFree (853,738,746 samples, 0.01%)</title><rect x="1069.8" y="453" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1072.82" y="463.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (811,735,690 samples, 0.01%)</title><rect x="354.7" y="37" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="357.71" y="47.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (145,809,087,310 samples, 1.55%)</title><rect x="154.0" y="437" width="18.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="157.05" y="447.5" ></text>
</g>
<g >
<title>hash_bytes (3,254,773,028 samples, 0.03%)</title><rect x="444.7" y="309" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="447.67" y="319.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (1,669,655,671 samples, 0.02%)</title><rect x="174.6" y="469" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="177.56" y="479.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,090,198,011 samples, 0.01%)</title><rect x="126.1" y="181" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="129.10" y="191.5" ></text>
</g>
<g >
<title>getRTEPermissionInfo (1,604,375,863 samples, 0.02%)</title><rect x="855.9" y="325" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="858.88" y="335.5" ></text>
</g>
<g >
<title>LockTagHashCode (2,921,714,654 samples, 0.03%)</title><rect x="942.0" y="341" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="944.98" y="351.5" ></text>
</g>
<g >
<title>bms_is_valid_set (853,301,545 samples, 0.01%)</title><rect x="879.0" y="453" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="882.03" y="463.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (2,423,896,142 samples, 0.03%)</title><rect x="354.6" y="261" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="357.61" y="271.5" ></text>
</g>
<g >
<title>dequeue_entities (18,475,895,140 samples, 0.20%)</title><rect x="479.4" y="245" width="2.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="482.36" y="255.5" ></text>
</g>
<g >
<title>sentinel_ok (1,149,348,748 samples, 0.01%)</title><rect x="261.0" y="389" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="264.04" y="399.5" ></text>
</g>
<g >
<title>preprocess_qual_conditions (975,983,726 samples, 0.01%)</title><rect x="126.7" y="517" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="129.71" y="527.5" ></text>
</g>
<g >
<title>LockHeldByMe (4,582,157,558 samples, 0.05%)</title><rect x="443.3" y="405" width="0.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="446.29" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,147,892,373 samples, 0.01%)</title><rect x="307.4" y="101" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="310.41" y="111.5" ></text>
</g>
<g >
<title>palloc (1,454,050,364 samples, 0.02%)</title><rect x="1020.7" y="277" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1023.74" y="287.5" ></text>
</g>
<g >
<title>AllocSetCheck (2,037,033,666,294 samples, 21.59%)</title><rect x="537.1" y="549" width="254.7" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="540.12" y="559.5" >AllocSetCheck</text>
</g>
<g >
<title>__x64_sys_sendto (131,462,536,470 samples, 1.39%)</title><rect x="189.8" y="453" width="16.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="192.79" y="463.5" ></text>
</g>
<g >
<title>avc_has_perm_noaudit (1,106,526,628 samples, 0.01%)</title><rect x="177.7" y="357" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="180.75" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,344,505,706 samples, 0.02%)</title><rect x="1121.3" y="709" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1124.33" y="719.5" ></text>
</g>
<g >
<title>GetUserId (1,508,955,635 samples, 0.02%)</title><rect x="50.0" y="757" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="53.04" y="767.5" ></text>
</g>
<g >
<title>new_list (1,495,485,314 samples, 0.02%)</title><rect x="833.4" y="437" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="836.35" y="447.5" ></text>
</g>
<g >
<title>palloc (1,228,822,670 samples, 0.01%)</title><rect x="933.8" y="357" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="936.84" y="367.5" ></text>
</g>
<g >
<title>replace_nestloop_params (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="389" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="127.24" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,066,144,589 samples, 0.05%)</title><rect x="350.8" y="245" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="353.77" y="255.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,183,056,938 samples, 0.02%)</title><rect x="400.2" y="261" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="403.15" y="271.5" ></text>
</g>
<g >
<title>ExecutorRun (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="565" width="1.7" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="125.45" y="575.5" ></text>
</g>
<g >
<title>exprCollation (1,481,652,228 samples, 0.02%)</title><rect x="971.5" y="373" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="974.50" y="383.5" ></text>
</g>
<g >
<title>LWLockConditionalAcquire (4,416,263,830 samples, 0.05%)</title><rect x="466.1" y="501" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="469.07" y="511.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (869,487,046 samples, 0.01%)</title><rect x="386.2" y="293" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="389.22" y="303.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (46,145,179,058 samples, 0.49%)</title><rect x="19.0" y="741" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="21.95" y="751.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,164,696,126 samples, 0.01%)</title><rect x="711.9" y="501" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="714.86" y="511.5" ></text>
</g>
<g >
<title>pq_beginmessage (970,773,939 samples, 0.01%)</title><rect x="1172.5" y="757" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1175.49" y="767.5" ></text>
</g>
<g >
<title>BackendMain (4,239,417,954 samples, 0.04%)</title><rect x="1157.9" y="677" width="0.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1160.94" y="687.5" ></text>
</g>
<g >
<title>AllocSetAlloc (7,820,841,377 samples, 0.08%)</title><rect x="946.3" y="389" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="949.26" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,344,196,461 samples, 0.01%)</title><rect x="891.9" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="894.86" y="351.5" ></text>
</g>
<g >
<title>wakeup_preempt (864,591,013 samples, 0.01%)</title><rect x="205.6" y="325" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="208.57" y="335.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (2,871,252,156 samples, 0.03%)</title><rect x="123.2" y="229" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="126.18" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,033,370,213 samples, 0.01%)</title><rect x="840.1" y="277" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="843.09" y="287.5" ></text>
</g>
<g >
<title>HeapTupleHeaderXminCommitted (865,954,008 samples, 0.01%)</title><rect x="51.5" y="757" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="54.47" y="767.5" ></text>
</g>
<g >
<title>heap_fetch (33,989,644,301 samples, 0.36%)</title><rect x="397.5" y="405" width="4.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="400.52" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (857,954,703 samples, 0.01%)</title><rect x="489.0" y="453" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="492.03" y="463.5" ></text>
</g>
<g >
<title>xactGetCommittedChildren (839,446,438 samples, 0.01%)</title><rect x="1189.8" y="757" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1192.84" y="767.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,013,969,305 samples, 0.01%)</title><rect x="797.7" y="533" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="800.70" y="543.5" ></text>
</g>
<g >
<title>BufTableLookup (5,764,061,619 samples, 0.06%)</title><rect x="99.4" y="181" width="0.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="102.44" y="191.5" ></text>
</g>
<g >
<title>simplify_function (1,123,994,504 samples, 0.01%)</title><rect x="1134.0" y="661" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1136.99" y="671.5" ></text>
</g>
<g >
<title>XLogFlush (261,746,002,979 samples, 2.77%)</title><rect x="473.2" y="501" width="32.7" height="15.0" fill="rgb(251,213,50)" rx="2" ry="2" />
<text x="476.20" y="511.5" >XL..</text>
</g>
<g >
<title>populate_compact_attribute_internal (1,052,767,760 samples, 0.01%)</title><rect x="268.6" y="229" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="271.63" y="239.5" ></text>
</g>
<g >
<title>ReadBuffer (28,787,750,420 samples, 0.31%)</title><rect x="297.2" y="245" width="3.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="300.25" y="255.5" ></text>
</g>
<g >
<title>eqsel_internal (52,322,615,973 samples, 0.55%)</title><rect x="1030.4" y="277" width="6.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1033.40" y="287.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (7,651,708,527 samples, 0.08%)</title><rect x="223.1" y="549" width="0.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="226.07" y="559.5" ></text>
</g>
<g >
<title>list_free_private (5,602,385,853 samples, 0.06%)</title><rect x="978.7" y="437" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="981.66" y="447.5" ></text>
</g>
<g >
<title>palloc (1,915,338,284 samples, 0.02%)</title><rect x="889.3" y="309" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="892.26" y="319.5" ></text>
</g>
<g >
<title>AtEOXact_Namespace (990,695,039 samples, 0.01%)</title><rect x="32.0" y="757" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="34.98" y="767.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (7,656,391,098 samples, 0.08%)</title><rect x="868.1" y="485" width="1.0" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="871.11" y="495.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (8,467,507,735 samples, 0.09%)</title><rect x="213.3" y="565" width="1.0" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="216.26" y="575.5" ></text>
</g>
<g >
<title>relation_open (17,886,124,952 samples, 0.19%)</title><rect x="861.0" y="501" width="2.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="864.01" y="511.5" ></text>
</g>
<g >
<title>palloc (1,387,123,297 samples, 0.01%)</title><rect x="1173.0" y="581" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1176.04" y="591.5" ></text>
</g>
<g >
<title>AllocSetFree (3,228,964,248 samples, 0.03%)</title><rect x="224.3" y="533" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="227.31" y="543.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,389,009,045 samples, 0.01%)</title><rect x="964.2" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="967.20" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,242,295,980 samples, 0.01%)</title><rect x="102.2" y="437" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="105.21" y="447.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (1,504,840,530 samples, 0.02%)</title><rect x="483.8" y="357" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="486.76" y="367.5" ></text>
</g>
<g >
<title>tts_virtual_clear (845,986,418 samples, 0.01%)</title><rect x="249.4" y="453" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="252.37" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (9,494,296,293 samples, 0.10%)</title><rect x="514.3" y="437" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="517.25" y="447.5" ></text>
</g>
<g >
<title>list_make1_impl (7,245,151,100 samples, 0.08%)</title><rect x="917.9" y="485" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="920.92" y="495.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (13,679,434,038 samples, 0.14%)</title><rect x="955.3" y="421" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="958.26" y="431.5" ></text>
</g>
<g >
<title>makeRawStmt (2,374,751,097 samples, 0.03%)</title><rect x="1118.8" y="741" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1121.81" y="751.5" ></text>
</g>
<g >
<title>__sys_sendto (129,708,484,625 samples, 1.37%)</title><rect x="190.0" y="437" width="16.2" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="193.01" y="447.5" ></text>
</g>
<g >
<title>_bt_first (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="341" width="2.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="85.62" y="351.5" ></text>
</g>
<g >
<title>update_min_vruntime (1,097,996,481 samples, 0.01%)</title><rect x="168.5" y="261" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="171.48" y="271.5" ></text>
</g>
<g >
<title>deconstruct_recurse (26,774,216,926 samples, 0.28%)</title><rect x="975.3" y="453" width="3.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="978.27" y="463.5" ></text>
</g>
<g >
<title>bms_copy (1,990,360,055 samples, 0.02%)</title><rect x="374.9" y="341" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="377.90" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,790,268,817 samples, 0.03%)</title><rect x="872.5" y="517" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="875.50" y="527.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (7,052,572,533 samples, 0.07%)</title><rect x="98.2" y="197" width="0.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="101.16" y="207.5" ></text>
</g>
<g >
<title>heapam_fetch_row_version (37,741,913,733 samples, 0.40%)</title><rect x="397.1" y="421" width="4.7" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="400.06" y="431.5" ></text>
</g>
<g >
<title>AtEOXact_ApplyLauncher (833,657,345 samples, 0.01%)</title><rect x="30.9" y="757" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="33.85" y="767.5" ></text>
</g>
<g >
<title>palloc (1,095,424,844 samples, 0.01%)</title><rect x="972.6" y="357" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="975.65" y="367.5" ></text>
</g>
<g >
<title>castNodeImpl (878,386,775 samples, 0.01%)</title><rect x="274.7" y="405" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="277.71" y="415.5" ></text>
</g>
<g >
<title>heap_fill_tuple (6,967,049,409 samples, 0.07%)</title><rect x="390.5" y="357" width="0.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="393.52" y="367.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (1,283,787,477 samples, 0.01%)</title><rect x="397.3" y="389" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="400.32" y="399.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,947,840,314 samples, 0.03%)</title><rect x="299.4" y="133" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="302.42" y="143.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (3,891,036,043 samples, 0.04%)</title><rect x="268.3" y="341" width="0.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="271.31" y="351.5" ></text>
</g>
<g >
<title>palloc (1,168,921,261 samples, 0.01%)</title><rect x="897.7" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="900.71" y="447.5" ></text>
</g>
<g >
<title>relation_close (2,356,471,078 samples, 0.02%)</title><rect x="799.1" y="517" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="802.13" y="527.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (901,971,316 samples, 0.01%)</title><rect x="364.7" y="341" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="367.69" y="351.5" ></text>
</g>
<g >
<title>palloc (1,331,089,593 samples, 0.01%)</title><rect x="958.0" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="960.99" y="431.5" ></text>
</g>
<g >
<title>process_equivalence (1,502,833,478 samples, 0.02%)</title><rect x="1173.8" y="757" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1176.75" y="767.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (2,812,478,926 samples, 0.03%)</title><rect x="525.4" y="485" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="528.36" y="495.5" ></text>
</g>
<g >
<title>hash_search (7,537,713,188 samples, 0.08%)</title><rect x="226.3" y="565" width="1.0" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="229.31" y="575.5" ></text>
</g>
<g >
<title>subquery_planner (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="597" width="3.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="104.45" y="607.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (1,288,352,411 samples, 0.01%)</title><rect x="199.0" y="309" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="202.03" y="319.5" ></text>
</g>
<g >
<title>sched_tick (1,526,172,241 samples, 0.02%)</title><rect x="791.4" y="405" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="794.41" y="415.5" ></text>
</g>
<g >
<title>transformOptionalSelectInto (450,501,512,655 samples, 4.77%)</title><rect x="800.5" y="533" width="56.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="803.54" y="543.5" >trans..</text>
</g>
<g >
<title>BufferGetBlockNumber (2,717,130,474 samples, 0.03%)</title><rect x="83.7" y="181" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="86.71" y="191.5" ></text>
</g>
<g >
<title>create_index_paths (835,885,566 samples, 0.01%)</title><rect x="1129.9" y="757" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1132.86" y="767.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,979,861,304 samples, 0.02%)</title><rect x="865.3" y="469" width="0.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="868.32" y="479.5" ></text>
</g>
<g >
<title>record_times (1,384,175,991 samples, 0.01%)</title><rect x="478.4" y="261" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="481.41" y="271.5" ></text>
</g>
<g >
<title>canonicalize_ec_expression (3,388,995,240 samples, 0.04%)</title><rect x="971.4" y="389" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="974.35" y="399.5" ></text>
</g>
<g >
<title>ExecProject (51,595,225,219 samples, 0.55%)</title><rect x="282.8" y="357" width="6.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="285.81" y="367.5" ></text>
</g>
<g >
<title>examine_indexcol_variable (6,716,826,540 samples, 0.07%)</title><rect x="1010.8" y="309" width="0.8" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1013.79" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,852,593,071 samples, 0.02%)</title><rect x="367.4" y="229" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="370.40" y="239.5" ></text>
</g>
<g >
<title>list_make1_impl (2,825,651,879 samples, 0.03%)</title><rect x="1058.1" y="453" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1061.07" y="463.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,837,719,727 samples, 0.02%)</title><rect x="365.4" y="341" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="368.36" y="351.5" ></text>
</g>
<g >
<title>ReleaseSysCache (865,710,376 samples, 0.01%)</title><rect x="807.3" y="341" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="810.33" y="351.5" ></text>
</g>
<g >
<title>HeapTupleIsHeapOnly (942,405,251 samples, 0.01%)</title><rect x="51.6" y="757" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="54.61" y="767.5" ></text>
</g>
<g >
<title>MaintainLatestCompletedXid (3,063,508,982 samples, 0.03%)</title><rect x="467.2" y="485" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="470.15" y="495.5" ></text>
</g>
<g >
<title>remove_useless_self_joins (1,621,750,316 samples, 0.02%)</title><rect x="1044.0" y="469" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1047.01" y="479.5" ></text>
</g>
<g >
<title>MemoryContextReset (137,544,758,175 samples, 1.46%)</title><rect x="131.7" y="597" width="17.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="134.72" y="607.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (1,521,971,557 samples, 0.02%)</title><rect x="279.7" y="277" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="282.67" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (857,993,181 samples, 0.01%)</title><rect x="913.8" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="916.79" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,333,888,620 samples, 0.01%)</title><rect x="1020.7" y="261" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1023.75" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,353,417,383 samples, 0.01%)</title><rect x="424.4" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="427.44" y="335.5" ></text>
</g>
<g >
<title>standard_ExecutorStart (393,850,000,999 samples, 4.17%)</title><rect x="403.5" y="517" width="49.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="406.45" y="527.5" >stan..</text>
</g>
<g >
<title>yy_init_globals (857,478,604 samples, 0.01%)</title><rect x="872.2" y="517" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="875.24" y="527.5" ></text>
</g>
<g >
<title>newNode (9,358,461,286 samples, 0.10%)</title><rect x="911.7" y="469" width="1.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="914.72" y="479.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetLock (2,294,446,474 samples, 0.02%)</title><rect x="521.9" y="453" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="524.86" y="463.5" ></text>
</g>
<g >
<title>hash_search (5,978,823,523 samples, 0.06%)</title><rect x="237.0" y="405" width="0.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="239.99" y="415.5" ></text>
</g>
<g >
<title>core_yylex (87,838,964,353 samples, 0.93%)</title><rect x="1104.0" y="725" width="11.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1106.98" y="735.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,057,162,934 samples, 0.01%)</title><rect x="448.1" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="451.11" y="399.5" ></text>
</g>
<g >
<title>bms_add_member (2,637,733,854 samples, 0.03%)</title><rect x="832.5" y="469" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="835.47" y="479.5" ></text>
</g>
<g >
<title>preprocess_relation_rtes (85,739,396,343 samples, 0.91%)</title><rect x="1058.5" y="501" width="10.7" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1061.46" y="511.5" ></text>
</g>
<g >
<title>smgrDoPendingSyncs (1,108,623,850 samples, 0.01%)</title><rect x="1183.2" y="757" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1186.18" y="767.5" ></text>
</g>
<g >
<title>bms_add_member (3,558,179,538 samples, 0.04%)</title><rect x="997.9" y="277" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1000.94" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,665,446,276 samples, 0.02%)</title><rect x="470.3" y="341" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="473.35" y="351.5" ></text>
</g>
<g >
<title>palloc (1,652,448,084 samples, 0.02%)</title><rect x="272.1" y="373" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="275.08" y="383.5" ></text>
</g>
<g >
<title>PortalRun (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="597" width="1.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="127.59" y="607.5" ></text>
</g>
<g >
<title>palloc0 (2,127,510,227 samples, 0.02%)</title><rect x="815.8" y="421" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="818.75" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,090,951,542 samples, 0.02%)</title><rect x="971.0" y="325" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="974.03" y="335.5" ></text>
</g>
<g >
<title>IsAbortedTransactionBlockState (1,183,873,310 samples, 0.01%)</title><rect x="131.5" y="597" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="134.52" y="607.5" ></text>
</g>
<g >
<title>index_beginscan_internal (26,044,089,435 samples, 0.28%)</title><rect x="289.8" y="309" width="3.3" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="292.81" y="319.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (3,821,183,569 samples, 0.04%)</title><rect x="948.8" y="373" width="0.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="951.82" y="383.5" ></text>
</g>
<g >
<title>hash_bytes (2,574,894,328 samples, 0.03%)</title><rect x="829.2" y="341" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="832.25" y="351.5" ></text>
</g>
<g >
<title>TransactionLogFetch (10,310,258,267 samples, 0.11%)</title><rect x="306.6" y="197" width="1.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="309.59" y="207.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (48,435,147,055 samples, 0.51%)</title><rect x="64.6" y="757" width="6.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="67.61" y="767.5" ></text>
</g>
<g >
<title>update_rq_clock (922,947,735 samples, 0.01%)</title><rect x="171.7" y="341" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="174.67" y="351.5" ></text>
</g>
<g >
<title>ExecInitFunc (9,872,138,341 samples, 0.10%)</title><rect x="431.1" y="389" width="1.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="434.13" y="399.5" ></text>
</g>
<g >
<title>bms_copy (4,076,694,584 samples, 0.04%)</title><rect x="951.4" y="421" width="0.5" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="954.35" y="431.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (1,803,774,615 samples, 0.02%)</title><rect x="262.4" y="485" width="0.3" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="265.44" y="495.5" ></text>
</g>
<g >
<title>ExecIndexScan (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="453" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1160.94" y="463.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (855,157,050 samples, 0.01%)</title><rect x="315.7" y="229" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="318.73" y="239.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumber (896,535,760 samples, 0.01%)</title><rect x="293.9" y="293" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="296.89" y="303.5" ></text>
</g>
<g >
<title>ExecInitResultRelation (44,967,336,667 samples, 0.48%)</title><rect x="442.9" y="453" width="5.6" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="445.91" y="463.5" ></text>
</g>
<g >
<title>new_list (1,874,778,279 samples, 0.02%)</title><rect x="910.5" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="913.47" y="447.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (886,882,643 samples, 0.01%)</title><rect x="124.5" y="485" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="127.48" y="495.5" ></text>
</g>
<g >
<title>_mm_set1_epi8 (2,319,758,898 samples, 0.02%)</title><rect x="1082.6" y="485" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1085.63" y="495.5" ></text>
</g>
<g >
<title>set_rel_size (803,901,079 samples, 0.01%)</title><rect x="126.6" y="453" width="0.1" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="129.56" y="463.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,274,209,964 samples, 0.01%)</title><rect x="921.5" y="405" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="924.55" y="415.5" ></text>
</g>
<g >
<title>int4hashfast (1,173,218,345 samples, 0.01%)</title><rect x="423.7" y="277" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="426.70" y="287.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (2,039,547,984 samples, 0.02%)</title><rect x="360.4" y="325" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="363.40" y="335.5" ></text>
</g>
<g >
<title>ExecScanFetch (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="373" width="1.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="127.59" y="383.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,849,644,793 samples, 0.02%)</title><rect x="819.7" y="373" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="822.75" y="383.5" ></text>
</g>
<g >
<title>exec_simple_query (4,239,417,954 samples, 0.04%)</title><rect x="1157.9" y="645" width="0.6" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1160.94" y="655.5" ></text>
</g>
<g >
<title>RelationGetIndexList (4,384,166,444 samples, 0.05%)</title><rect x="931.1" y="405" width="0.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="934.05" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (139,237,482,350 samples, 1.48%)</title><rect x="189.6" y="485" width="17.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="192.60" y="495.5" ></text>
</g>
<g >
<title>create_indexscan_plan (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="469" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="88.40" y="479.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (991,727,909 samples, 0.01%)</title><rect x="306.3" y="181" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="309.32" y="191.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (2,476,158,138 samples, 0.03%)</title><rect x="207.6" y="581" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="210.63" y="591.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="341" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="88.40" y="351.5" ></text>
</g>
<g >
<title>handle_softirqs (1,559,540,350 samples, 0.02%)</title><rect x="750.9" y="485" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="753.87" y="495.5" ></text>
</g>
<g >
<title>query_tree_walker_impl (56,333,435,022 samples, 0.60%)</title><rect x="801.5" y="469" width="7.0" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="804.49" y="479.5" ></text>
</g>
<g >
<title>fix_expr_common (1,050,418,394 samples, 0.01%)</title><rect x="902.8" y="325" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="905.83" y="335.5" ></text>
</g>
<g >
<title>pgstat_count_io_op_time (3,499,376,825 samples, 0.04%)</title><rect x="503.3" y="453" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="506.29" y="463.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (886,882,643 samples, 0.01%)</title><rect x="124.5" y="453" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="127.48" y="463.5" ></text>
</g>
<g >
<title>palloc (2,224,153,278 samples, 0.02%)</title><rect x="340.2" y="245" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="343.19" y="255.5" ></text>
</g>
<g >
<title>selinux_file_permission (3,346,544,753 samples, 0.04%)</title><rect x="494.9" y="357" width="0.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="497.87" y="367.5" ></text>
</g>
<g >
<title>native_write_msr (3,099,312,016 samples, 0.03%)</title><rect x="161.4" y="277" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="164.45" y="287.5" ></text>
</g>
<g >
<title>pgstat_report_plan_id (2,737,729,362 samples, 0.03%)</title><rect x="874.0" y="533" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="877.05" y="543.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (2,079,231,909 samples, 0.02%)</title><rect x="83.0" y="325" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="85.96" y="335.5" ></text>
</g>
<g >
<title>castNodeImpl (6,529,480,881 samples, 0.07%)</title><rect x="1124.9" y="757" width="0.8" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1127.91" y="767.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,033,276,146 samples, 0.01%)</title><rect x="467.7" y="469" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="470.66" y="479.5" ></text>
</g>
<g >
<title>estimate_expression_value (3,397,404,926 samples, 0.04%)</title><rect x="1031.2" y="245" width="0.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1034.21" y="255.5" ></text>
</g>
<g >
<title>pull_varattnos (11,297,960,034 samples, 0.12%)</title><rect x="997.0" y="341" width="1.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="999.98" y="351.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (901,778,171 samples, 0.01%)</title><rect x="964.6" y="341" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="967.60" y="351.5" ></text>
</g>
<g >
<title>LockAcquireExtended (30,275,932,855 samples, 0.32%)</title><rect x="818.2" y="389" width="3.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="821.21" y="399.5" ></text>
</g>
<g >
<title>IsBinaryTidClause (3,268,976,203 samples, 0.03%)</title><rect x="1025.3" y="341" width="0.4" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="1028.28" y="351.5" ></text>
</g>
<g >
<title>ep_done_scan (2,363,917,908 samples, 0.03%)</title><rect x="156.1" y="373" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="159.12" y="383.5" ></text>
</g>
<g >
<title>list_nth_cell (891,985,513 samples, 0.01%)</title><rect x="979.4" y="453" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="982.36" y="463.5" ></text>
</g>
<g >
<title>ExecAssignScanProjectionInfo (79,881,849,599 samples, 0.85%)</title><rect x="415.7" y="421" width="10.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="418.71" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,123,994,504 samples, 0.01%)</title><rect x="1134.0" y="581" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1136.99" y="591.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,208,256,248 samples, 0.01%)</title><rect x="877.5" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="880.46" y="447.5" ></text>
</g>
<g >
<title>handle_softirqs (866,318,073 samples, 0.01%)</title><rect x="791.2" y="469" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="794.16" y="479.5" ></text>
</g>
<g >
<title>palloc (1,332,387,157 samples, 0.01%)</title><rect x="871.1" y="469" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="874.15" y="479.5" ></text>
</g>
<g >
<title>heap_page_prune_execute (1,371,185,405 samples, 0.01%)</title><rect x="1148.0" y="725" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1151.01" y="735.5" ></text>
</g>
<g >
<title>equal (816,326,830 samples, 0.01%)</title><rect x="1133.7" y="757" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1136.75" y="767.5" ></text>
</g>
<g >
<title>update_se (3,183,939,445 samples, 0.03%)</title><rect x="480.4" y="197" width="0.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="483.36" y="207.5" ></text>
</g>
<g >
<title>EvalPlanQualSetPlan (801,897,149 samples, 0.01%)</title><rect x="412.8" y="453" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="415.83" y="463.5" ></text>
</g>
<g >
<title>verify_compact_attribute (2,049,139,193 samples, 0.02%)</title><rect x="83.0" y="229" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="85.97" y="239.5" ></text>
</g>
<g >
<title>ExecScanExtended (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="405" width="1.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="125.45" y="415.5" ></text>
</g>
<g >
<title>selinux_socket_sendmsg (5,105,506,192 samples, 0.05%)</title><rect x="191.0" y="405" width="0.7" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="194.03" y="415.5" ></text>
</g>
<g >
<title>palloc0 (1,850,220,646 samples, 0.02%)</title><rect x="888.4" y="293" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="891.35" y="303.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (857,285,167 samples, 0.01%)</title><rect x="94.7" y="165" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="97.67" y="175.5" ></text>
</g>
<g >
<title>_mdnblocks (15,889,278,736 samples, 0.17%)</title><rect x="936.1" y="261" width="2.0" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="939.10" y="271.5" ></text>
</g>
<g >
<title>QueryRewrite (1,194,128,620 samples, 0.01%)</title><rect x="87.1" y="757" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="90.07" y="767.5" ></text>
</g>
<g >
<title>string_hash (2,166,111,304 samples, 0.02%)</title><rect x="214.8" y="549" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="217.81" y="559.5" ></text>
</g>
<g >
<title>__futex_wait (884,973,785 samples, 0.01%)</title><rect x="363.4" y="197" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="366.41" y="207.5" ></text>
</g>
<g >
<title>set_next_task_idle (3,122,835,178 samples, 0.03%)</title><rect x="160.8" y="325" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="163.76" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,083,305,400 samples, 0.01%)</title><rect x="1013.1" y="229" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1016.14" y="239.5" ></text>
</g>
<g >
<title>index_getnext_slot (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="357" width="1.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="125.45" y="367.5" ></text>
</g>
<g >
<title>standard_planner (2,495,599,539 samples, 0.03%)</title><rect x="126.5" y="549" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="129.52" y="559.5" ></text>
</g>
<g >
<title>list_concat (2,822,906,261 samples, 0.03%)</title><rect x="899.4" y="485" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="902.35" y="495.5" ></text>
</g>
<g >
<title>is_redundant_with_indexclauses (1,439,844,552 samples, 0.02%)</title><rect x="891.1" y="389" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="894.10" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,305,154,704 samples, 0.01%)</title><rect x="349.9" y="261" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="352.90" y="271.5" ></text>
</g>
<g >
<title>add_row_identity_var (7,939,602,976 samples, 0.08%)</title><rect x="920.7" y="453" width="1.0" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="923.73" y="463.5" ></text>
</g>
<g >
<title>pull_var_clause_walker (8,733,915,880 samples, 0.09%)</title><rect x="955.9" y="373" width="1.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="958.88" y="383.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,161,549,664 samples, 0.02%)</title><rect x="274.2" y="389" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="277.19" y="399.5" ></text>
</g>
<g >
<title>pfree (4,468,470,764 samples, 0.05%)</title><rect x="978.8" y="421" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="981.80" y="431.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (9,885,165,119 samples, 0.10%)</title><rect x="173.1" y="437" width="1.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="176.06" y="447.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,559,561,492 samples, 0.02%)</title><rect x="344.1" y="277" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="347.10" y="287.5" ></text>
</g>
<g >
<title>new_list (2,440,907,466 samples, 0.03%)</title><rect x="449.2" y="437" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="452.23" y="447.5" ></text>
</g>
<g >
<title>pgstat_count_heap_update (9,958,854,518 samples, 0.11%)</title><rect x="387.1" y="357" width="1.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="390.09" y="367.5" ></text>
</g>
<g >
<title>try_to_wake_up (896,553,262 samples, 0.01%)</title><rect x="470.4" y="277" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="473.44" y="287.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,654,671,758 samples, 0.02%)</title><rect x="296.6" y="229" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="299.62" y="239.5" ></text>
</g>
<g >
<title>dequeue_entity (16,231,831,711 samples, 0.17%)</title><rect x="479.6" y="229" width="2.0" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="482.61" y="239.5" ></text>
</g>
<g >
<title>new_list (4,641,557,119 samples, 0.05%)</title><rect x="1162.9" y="757" width="0.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1165.94" y="767.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (1,318,387,264 samples, 0.01%)</title><rect x="426.8" y="373" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="429.84" y="383.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (1,189,490,969 samples, 0.01%)</title><rect x="868.2" y="469" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="871.23" y="479.5" ></text>
</g>
<g >
<title>enlargeStringInfo (911,142,644 samples, 0.01%)</title><rect x="188.0" y="549" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="190.95" y="559.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="127.24" y="383.5" ></text>
</g>
<g >
<title>palloc (3,159,038,139 samples, 0.03%)</title><rect x="945.3" y="405" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="948.34" y="415.5" ></text>
</g>
<g >
<title>_copyVar (3,369,540,887 samples, 0.04%)</title><rect x="888.2" y="325" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="891.16" y="335.5" ></text>
</g>
<g >
<title>planstate_walk_subplans (1,073,575,633 samples, 0.01%)</title><rect x="1172.3" y="757" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1175.30" y="767.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (2,273,783,911 samples, 0.02%)</title><rect x="363.6" y="293" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="366.65" y="303.5" ></text>
</g>
<g >
<title>ShowTransactionState (1,111,797,917 samples, 0.01%)</title><rect x="105.0" y="757" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="108.04" y="767.5" ></text>
</g>
<g >
<title>pg_analyze_and_rewrite_fixedparams (570,565,614,590 samples, 6.05%)</title><rect x="798.2" y="581" width="71.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="801.20" y="591.5" >pg_analy..</text>
</g>
<g >
<title>ProcessQuery (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="597" width="0.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1160.94" y="607.5" ></text>
</g>
<g >
<title>exec_rt_fetch (1,114,860,165 samples, 0.01%)</title><rect x="439.9" y="421" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="442.89" y="431.5" ></text>
</g>
<g >
<title>verify_compact_attribute (2,524,987,728 samples, 0.03%)</title><rect x="1189.4" y="757" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1192.41" y="767.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (1,179,151,144 samples, 0.01%)</title><rect x="1077.2" y="469" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1080.19" y="479.5" ></text>
</g>
<g >
<title>pg_plan_query (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="613" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1161.36" y="623.5" ></text>
</g>
<g >
<title>AllocSetFree (1,220,523,978 samples, 0.01%)</title><rect x="249.2" y="405" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="252.19" y="415.5" ></text>
</g>
<g >
<title>fix_indexqual_references (30,749,781,246 samples, 0.33%)</title><rect x="887.3" y="389" width="3.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="890.25" y="399.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,047,421,377 samples, 0.01%)</title><rect x="400.3" y="245" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="403.29" y="255.5" ></text>
</g>
<g >
<title>lappend (3,429,797,266 samples, 0.04%)</title><rect x="884.6" y="421" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="887.62" y="431.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,031,759,564 samples, 0.02%)</title><rect x="828.2" y="341" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="831.17" y="351.5" ></text>
</g>
<g >
<title>relation_open (31,838,526,188 samples, 0.34%)</title><rect x="940.1" y="389" width="4.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="943.13" y="399.5" ></text>
</g>
<g >
<title>list_nth_cell (4,344,746,424 samples, 0.05%)</title><rect x="1157.0" y="757" width="0.5" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1159.97" y="767.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,218,570,205 samples, 0.01%)</title><rect x="232.0" y="485" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="234.99" y="495.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (7,014,131,750 samples, 0.07%)</title><rect x="285.0" y="245" width="0.8" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="287.96" y="255.5" ></text>
</g>
<g >
<title>palloc0 (4,033,733,464 samples, 0.04%)</title><rect x="421.0" y="325" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="424.00" y="335.5" ></text>
</g>
<g >
<title>remove_useless_groupby_columns (1,931,717,671 samples, 0.02%)</title><rect x="1043.7" y="469" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1046.68" y="479.5" ></text>
</g>
<g >
<title>create_empty_pathtarget (1,833,519,991 samples, 0.02%)</title><rect x="913.7" y="469" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="916.68" y="479.5" ></text>
</g>
<g >
<title>restriction_selectivity (66,522,931,421 samples, 0.70%)</title><rect x="1029.7" y="341" width="8.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1032.70" y="351.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (3,908,141,928 samples, 0.04%)</title><rect x="203.2" y="309" width="0.5" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="206.24" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,050,202,787 samples, 0.01%)</title><rect x="296.8" y="165" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="299.84" y="175.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (826,528,478 samples, 0.01%)</title><rect x="78.7" y="757" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="81.72" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,377,722,920 samples, 0.03%)</title><rect x="446.0" y="357" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="448.99" y="367.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (1,393,708,179 samples, 0.01%)</title><rect x="122.5" y="277" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="125.45" y="287.5" ></text>
</g>
<g >
<title>hash_bytes (2,499,941,538 samples, 0.03%)</title><rect x="367.1" y="197" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="370.07" y="207.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,323,557,501 samples, 0.01%)</title><rect x="1047.9" y="373" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1050.91" y="383.5" ></text>
</g>
<g >
<title>socket_putmessage (2,848,053,623 samples, 0.03%)</title><rect x="187.5" y="565" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="190.53" y="575.5" ></text>
</g>
<g >
<title>relation_openrv_extended (109,097,271,938 samples, 1.16%)</title><rect x="817.4" y="437" width="13.6" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="820.39" y="447.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,264,334,352 samples, 0.01%)</title><rect x="363.4" y="325" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="366.38" y="335.5" ></text>
</g>
<g >
<title>create_indexscan_plan (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="437" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="127.24" y="447.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,941,658,797 samples, 0.02%)</title><rect x="423.6" y="293" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="426.61" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,116,617,332 samples, 0.01%)</title><rect x="363.4" y="277" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="366.39" y="287.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (20,340,886,046 samples, 0.22%)</title><rect x="275.7" y="405" width="2.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="278.72" y="415.5" ></text>
</g>
<g >
<title>SearchSysCache1 (7,465,633,656 samples, 0.08%)</title><rect x="807.4" y="341" width="1.0" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="810.44" y="351.5" ></text>
</g>
<g >
<title>InjectionPointRun (898,656,866 samples, 0.01%)</title><rect x="53.1" y="757" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="56.10" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (984,416,934 samples, 0.01%)</title><rect x="978.1" y="373" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="981.09" y="383.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,074,793,147 samples, 0.01%)</title><rect x="428.5" y="373" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="431.52" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,280,631,859 samples, 0.01%)</title><rect x="898.0" y="453" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="900.95" y="463.5" ></text>
</g>
<g >
<title>PointerGetDatum (2,972,797,032 samples, 0.03%)</title><rect x="81.7" y="757" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="84.68" y="767.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (876,126,871 samples, 0.01%)</title><rect x="868.0" y="405" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="870.98" y="415.5" ></text>
</g>
<g >
<title>pfree (1,569,317,336 samples, 0.02%)</title><rect x="321.6" y="245" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="324.58" y="255.5" ></text>
</g>
<g >
<title>ReportChangedGUCOptions (1,275,168,666 samples, 0.01%)</title><rect x="207.3" y="597" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="210.34" y="607.5" ></text>
</g>
<g >
<title>eval_const_expressions (975,983,726 samples, 0.01%)</title><rect x="126.7" y="485" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="129.71" y="495.5" ></text>
</g>
<g >
<title>tas (1,045,131,235 samples, 0.01%)</title><rect x="507.9" y="437" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="510.87" y="447.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (2,870,735,029 samples, 0.03%)</title><rect x="272.3" y="389" width="0.4" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="275.32" y="399.5" ></text>
</g>
<g >
<title>wipe_mem (847,294,073 samples, 0.01%)</title><rect x="521.7" y="405" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="524.69" y="415.5" ></text>
</g>
<g >
<title>finalize_in_progress_typentries (836,275,155 samples, 0.01%)</title><rect x="1137.1" y="757" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1140.10" y="767.5" ></text>
</g>
<g >
<title>pg_ulltoa_n (1,666,366,157 samples, 0.02%)</title><rect x="1169.9" y="757" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1172.88" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,618,736,767 samples, 0.02%)</title><rect x="814.9" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="817.92" y="399.5" ></text>
</g>
<g >
<title>ceil@plt (921,226,412 samples, 0.01%)</title><rect x="1012.3" y="293" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1015.34" y="303.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (3,039,681,679 samples, 0.03%)</title><rect x="456.6" y="549" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="459.59" y="559.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (967,911,353 samples, 0.01%)</title><rect x="1166.4" y="757" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="1169.36" y="767.5" ></text>
</g>
<g >
<title>ExecUpdatePrepareSlot (802,628,656 samples, 0.01%)</title><rect x="344.4" y="405" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="347.37" y="415.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (9,627,323,022 samples, 0.10%)</title><rect x="486.6" y="245" width="1.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="489.60" y="255.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,533,240,777 samples, 0.04%)</title><rect x="866.0" y="421" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="869.01" y="431.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (116,455,594,683 samples, 1.23%)</title><rect x="191.7" y="421" width="14.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="194.67" y="431.5" ></text>
</g>
<g >
<title>FreeSnapshot (1,664,998,059 samples, 0.02%)</title><rect x="232.9" y="533" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="235.91" y="543.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,123,994,504 samples, 0.01%)</title><rect x="1134.0" y="709" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1136.99" y="719.5" ></text>
</g>
<g >
<title>fix_expr_common (3,069,260,076 samples, 0.03%)</title><rect x="903.4" y="437" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="906.40" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,927,252,364 samples, 0.02%)</title><rect x="1116.8" y="677" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1119.84" y="687.5" ></text>
</g>
<g >
<title>ExecInterpExpr (1,034,833,313 samples, 0.01%)</title><rect x="44.4" y="757" width="0.1" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="47.35" y="767.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (803,236,650 samples, 0.01%)</title><rect x="368.0" y="229" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="370.98" y="239.5" ></text>
</g>
<g >
<title>ExecIndexScan (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="469" width="2.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="85.62" y="479.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (2,287,305,201 samples, 0.02%)</title><rect x="1185.0" y="581" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1187.99" y="591.5" ></text>
</g>
<g >
<title>make_modifytable (12,089,425,633 samples, 0.13%)</title><rect x="892.4" y="469" width="1.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="895.44" y="479.5" ></text>
</g>
<g >
<title>index_getnext_slot (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="341" width="1.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="127.59" y="351.5" ></text>
</g>
<g >
<title>palloc (1,298,727,118 samples, 0.01%)</title><rect x="978.1" y="389" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="981.05" y="399.5" ></text>
</g>
<g >
<title>table_close (2,517,234,961 samples, 0.03%)</title><rect x="799.1" y="533" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="802.11" y="543.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (1,084,078,111 samples, 0.01%)</title><rect x="39.1" y="757" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="42.07" y="767.5" ></text>
</g>
<g >
<title>secure_read (276,831,650,799 samples, 2.93%)</title><rect x="150.2" y="533" width="34.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="153.21" y="543.5" >se..</text>
</g>
<g >
<title>palloc0 (2,661,918,344 samples, 0.03%)</title><rect x="877.0" y="453" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="879.98" y="463.5" ></text>
</g>
<g >
<title>hash_bytes (3,440,276,739 samples, 0.04%)</title><rect x="825.5" y="277" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="828.52" y="287.5" ></text>
</g>
<g >
<title>AllocSetDelete (14,323,127,708 samples, 0.15%)</title><rect x="132.0" y="533" width="1.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="135.04" y="543.5" ></text>
</g>
<g >
<title>SearchCatCache3 (4,934,294,837 samples, 0.05%)</title><rect x="1011.0" y="277" width="0.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1014.01" y="287.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,212,025,269 samples, 0.02%)</title><rect x="1144.1" y="757" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1147.14" y="767.5" ></text>
</g>
<g >
<title>check_index_only (19,420,187,942 samples, 0.21%)</title><rect x="996.0" y="357" width="2.4" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="998.96" y="367.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (815,249,886 samples, 0.01%)</title><rect x="113.9" y="741" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="116.93" y="751.5" ></text>
</g>
<g >
<title>__log_finite@GLIBC_2.15@plt (3,793,989,002 samples, 0.04%)</title><rect x="1000.8" y="309" width="0.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1003.78" y="319.5" ></text>
</g>
<g >
<title>palloc (1,355,312,356 samples, 0.01%)</title><rect x="815.4" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="818.43" y="431.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,024,861,062 samples, 0.04%)</title><rect x="407.5" y="405" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="410.52" y="415.5" ></text>
</g>
<g >
<title>CreateExprContext (10,213,189,258 samples, 0.11%)</title><rect x="414.4" y="405" width="1.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="417.44" y="415.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,163,523,597 samples, 0.01%)</title><rect x="1069.0" y="405" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1072.01" y="415.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,411,762,772 samples, 0.03%)</title><rect x="996.3" y="325" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="999.29" y="335.5" ></text>
</g>
<g >
<title>pstrdup (3,082,561,379 samples, 0.03%)</title><rect x="816.0" y="437" width="0.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="819.02" y="447.5" ></text>
</g>
<g >
<title>palloc (1,206,980,858 samples, 0.01%)</title><rect x="393.9" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="396.85" y="351.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (5,398,623,691 samples, 0.06%)</title><rect x="350.7" y="261" width="0.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="353.74" y="271.5" ></text>
</g>
<g >
<title>GetCurrentTransactionStopTimestamp (4,175,603,632 samples, 0.04%)</title><rect x="468.8" y="501" width="0.5" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="471.78" y="511.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (803,901,079 samples, 0.01%)</title><rect x="126.6" y="245" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="129.56" y="255.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (165,355,302,821 samples, 1.75%)</title><rect x="153.8" y="469" width="20.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="156.80" y="479.5" ></text>
</g>
<g >
<title>LWLockConflictsWithVar (1,023,428,235 samples, 0.01%)</title><rect x="56.5" y="757" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="59.49" y="767.5" ></text>
</g>
<g >
<title>__update_idle_core (1,036,576,931 samples, 0.01%)</title><rect x="477.3" y="245" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="480.26" y="255.5" ></text>
</g>
<g >
<title>ReleaseSysCache (2,339,448,378 samples, 0.02%)</title><rect x="435.3" y="357" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="438.32" y="367.5" ></text>
</g>
<g >
<title>PortalRunMulti (992,692,643 samples, 0.01%)</title><rect x="82.3" y="757" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="85.30" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,375,100,389 samples, 0.05%)</title><rect x="418.2" y="261" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="421.20" y="271.5" ></text>
</g>
<g >
<title>hash_bytes (3,382,762,691 samples, 0.04%)</title><rect x="359.1" y="245" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="362.07" y="255.5" ></text>
</g>
<g >
<title>tag_hash (2,747,427,520 samples, 0.03%)</title><rect x="1186.5" y="757" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1189.53" y="767.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,103,642,114 samples, 0.01%)</title><rect x="347.8" y="341" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="350.77" y="351.5" ></text>
</g>
<g >
<title>btbeginscan (22,429,128,076 samples, 0.24%)</title><rect x="290.3" y="293" width="2.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="293.26" y="303.5" ></text>
</g>
<g >
<title>palloc0 (2,258,186,547 samples, 0.02%)</title><rect x="812.9" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="815.86" y="447.5" ></text>
</g>
<g >
<title>_bt_binsrch (60,929,855,501 samples, 0.65%)</title><rect x="313.9" y="261" width="7.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="316.90" y="271.5" ></text>
</g>
<g >
<title>__strlen_avx2 (923,050,285 samples, 0.01%)</title><rect x="1112.7" y="693" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1115.69" y="703.5" ></text>
</g>
<g >
<title>lappend (2,972,015,979 samples, 0.03%)</title><rect x="919.1" y="469" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="922.12" y="479.5" ></text>
</g>
<g >
<title>__libc_start_call_main (7,629,157,056,107 samples, 80.84%)</title><rect x="130.1" y="725" width="953.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="133.07" y="735.5" >__libc_start_call_main</text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,337,850,130 samples, 0.01%)</title><rect x="381.8" y="261" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="384.76" y="271.5" ></text>
</g>
<g >
<title>__futex_wait (1,514,989,439 samples, 0.02%)</title><rect x="490.6" y="325" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="493.56" y="335.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (964,630,174 samples, 0.01%)</title><rect x="467.7" y="437" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="470.66" y="447.5" ></text>
</g>
<g >
<title>newNode (4,167,390,496 samples, 0.04%)</title><rect x="891.5" y="373" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="894.51" y="383.5" ></text>
</g>
<g >
<title>DynaHashAlloc (1,644,660,769 samples, 0.02%)</title><rect x="1064.1" y="437" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1067.05" y="447.5" ></text>
</g>
<g >
<title>StartReadBuffer (26,936,985,946 samples, 0.29%)</title><rect x="297.4" y="197" width="3.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="300.43" y="207.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (1,468,653,060 samples, 0.02%)</title><rect x="293.7" y="293" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="296.71" y="303.5" ></text>
</g>
<g >
<title>switch_fpu_return (5,808,646,739 samples, 0.06%)</title><rect x="172.3" y="421" width="0.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="175.33" y="431.5" ></text>
</g>
<g >
<title>tag_hash (2,752,133,059 samples, 0.03%)</title><rect x="820.4" y="341" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="823.36" y="351.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (953,117,129 samples, 0.01%)</title><rect x="389.6" y="357" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="392.65" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,900,260,385 samples, 0.02%)</title><rect x="814.5" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="817.49" y="399.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (862,281,137 samples, 0.01%)</title><rect x="89.7" y="757" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="92.66" y="767.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs.isra.0 (959,245,051 samples, 0.01%)</title><rect x="483.8" y="341" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="486.83" y="351.5" ></text>
</g>
<g >
<title>AllocSetFree (3,412,943,860 samples, 0.04%)</title><rect x="28.8" y="757" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="31.79" y="767.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,098,373,844 samples, 0.01%)</title><rect x="232.5" y="501" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="235.49" y="511.5" ></text>
</g>
<g >
<title>make_plain_restrictinfo (24,468,151,337 samples, 0.26%)</title><rect x="965.8" y="389" width="3.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="968.78" y="399.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (1,246,201,243 samples, 0.01%)</title><rect x="85.1" y="165" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="88.13" y="175.5" ></text>
</g>
<g >
<title>bms_add_members (3,065,037,232 samples, 0.03%)</title><rect x="969.9" y="373" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="972.88" y="383.5" ></text>
</g>
<g >
<title>find_oper_cache_entry (13,807,117,198 samples, 0.15%)</title><rect x="836.5" y="357" width="1.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="839.49" y="367.5" ></text>
</g>
<g >
<title>palloc0 (3,359,567,899 samples, 0.04%)</title><rect x="428.3" y="405" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="431.29" y="415.5" ></text>
</g>
<g >
<title>postgres (9,437,180,925,478 samples, 100.00%)</title><rect x="10.0" y="773" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="783.5" >postgres</text>
</g>
<g >
<title>pg_class_aclmask (9,780,708,039 samples, 0.10%)</title><rect x="406.8" y="453" width="1.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="409.83" y="463.5" ></text>
</g>
<g >
<title>do_futex (1,600,736,131 samples, 0.02%)</title><rect x="490.6" y="357" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="493.55" y="367.5" ></text>
</g>
<g >
<title>ExecClearTuple (884,922,045 samples, 0.01%)</title><rect x="42.1" y="757" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="45.09" y="767.5" ></text>
</g>
<g >
<title>expand_virtual_generated_columns (871,699,727 samples, 0.01%)</title><rect x="1058.7" y="485" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1061.66" y="495.5" ></text>
</g>
<g >
<title>heapam_slot_callbacks (1,730,192,845 samples, 0.02%)</title><rect x="1149.7" y="757" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="1152.68" y="767.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,188,508,199 samples, 0.01%)</title><rect x="364.4" y="325" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="367.42" y="335.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (4,019,711,436 samples, 0.04%)</title><rect x="814.7" y="421" width="0.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="817.75" y="431.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="469" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1160.94" y="479.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (2,169,823,607 samples, 0.02%)</title><rect x="359.8" y="341" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="362.80" y="351.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (5,404,915,678 samples, 0.06%)</title><rect x="830.1" y="373" width="0.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="833.13" y="383.5" ></text>
</g>
<g >
<title>object_aclmask_ext (1,054,538,514 samples, 0.01%)</title><rect x="420.8" y="293" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="423.83" y="303.5" ></text>
</g>
<g >
<title>LockHeldByMe (986,139,823 samples, 0.01%)</title><rect x="58.0" y="757" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="60.96" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,674,839,267 samples, 0.02%)</title><rect x="490.6" y="405" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="493.55" y="415.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (5,318,639,462 samples, 0.06%)</title><rect x="221.7" y="581" width="0.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="224.75" y="591.5" ></text>
</g>
<g >
<title>bms_overlap (1,854,488,419 samples, 0.02%)</title><rect x="376.1" y="357" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="379.07" y="367.5" ></text>
</g>
<g >
<title>printtup_create_DR (853,868,650 samples, 0.01%)</title><rect x="1173.6" y="757" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1176.57" y="767.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (3,487,181,926 samples, 0.04%)</title><rect x="343.9" y="325" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="346.88" y="335.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,278,440,340 samples, 0.05%)</title><rect x="96.2" y="181" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="99.20" y="191.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (2,043,583,317 samples, 0.02%)</title><rect x="961.2" y="309" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="964.17" y="319.5" ></text>
</g>
<g >
<title>btgettuple (12,435,172,942 samples, 0.13%)</title><rect x="280.2" y="309" width="1.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="283.20" y="319.5" ></text>
</g>
<g >
<title>build_index_paths (191,514,419,509 samples, 2.03%)</title><rect x="994.6" y="373" width="24.0" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="997.65" y="383.5" >b..</text>
</g>
<g >
<title>LockAcquireExtended (1,360,462,136 samples, 0.01%)</title><rect x="57.5" y="757" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="60.47" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,134,240,196 samples, 0.01%)</title><rect x="354.4" y="213" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="357.39" y="223.5" ></text>
</g>
<g >
<title>index_getnext_tid (17,333,438,750 samples, 0.18%)</title><rect x="280.0" y="325" width="2.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="283.04" y="335.5" ></text>
</g>
<g >
<title>ReleaseSysCache (850,106,674 samples, 0.01%)</title><rect x="960.4" y="293" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="963.36" y="303.5" ></text>
</g>
<g >
<title>palloc0 (1,307,955,479 samples, 0.01%)</title><rect x="810.5" y="437" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="813.46" y="447.5" ></text>
</g>
<g >
<title>palloc (1,292,827,613 samples, 0.01%)</title><rect x="847.5" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="850.49" y="383.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,090,198,011 samples, 0.01%)</title><rect x="126.1" y="197" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="129.10" y="207.5" ></text>
</g>
<g >
<title>RelationGetIndexAttrBitmap (11,781,874,405 samples, 0.12%)</title><rect x="368.7" y="357" width="1.5" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="371.75" y="367.5" ></text>
</g>
<g >
<title>get_func_retset (7,993,348,119 samples, 0.08%)</title><rect x="846.3" y="405" width="1.0" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="849.35" y="415.5" ></text>
</g>
<g >
<title>AtEOXact_Snapshot (2,391,190,032 samples, 0.03%)</title><rect x="464.2" y="517" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="467.18" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (960,049,647 samples, 0.01%)</title><rect x="839.1" y="309" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="842.12" y="319.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (1,111,691,687 samples, 0.01%)</title><rect x="465.9" y="517" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="468.86" y="527.5" ></text>
</g>
<g >
<title>LWLockRelease (2,113,139,705 samples, 0.02%)</title><rect x="221.1" y="549" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="224.11" y="559.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,253,765,743 samples, 0.01%)</title><rect x="943.9" y="325" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="946.92" y="335.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (3,165,517,359 samples, 0.03%)</title><rect x="281.8" y="293" width="0.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="284.81" y="303.5" ></text>
</g>
<g >
<title>tag_hash (4,860,712,628 samples, 0.05%)</title><rect x="828.4" y="341" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="831.43" y="351.5" ></text>
</g>
<g >
<title>int4eqfast (1,416,829,266 samples, 0.02%)</title><rect x="1151.2" y="757" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="1154.19" y="767.5" ></text>
</g>
<g >
<title>FreeSnapshot (2,323,569,695 samples, 0.02%)</title><rect x="221.9" y="565" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="224.90" y="575.5" ></text>
</g>
<g >
<title>palloc (1,281,262,778 samples, 0.01%)</title><rect x="899.5" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="902.52" y="447.5" ></text>
</g>
<g >
<title>StartReadBuffer (17,789,300,448 samples, 0.19%)</title><rect x="366.5" y="309" width="2.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="369.50" y="319.5" ></text>
</g>
<g >
<title>PortalRun (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="629" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1160.94" y="639.5" ></text>
</g>
<g >
<title>make_rel_from_joinlist (1,096,779,060 samples, 0.01%)</title><rect x="1159.9" y="757" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1162.87" y="767.5" ></text>
</g>
<g >
<title>do_futex (60,882,863,825 samples, 0.65%)</title><rect x="475.8" y="373" width="7.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="478.81" y="383.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (1,013,607,850 samples, 0.01%)</title><rect x="168.3" y="261" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="171.30" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,697,669,191 samples, 0.03%)</title><rect x="428.7" y="389" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="431.71" y="399.5" ></text>
</g>
<g >
<title>extract_update_targetlist_colnos (3,843,807,125 samples, 0.04%)</title><rect x="922.3" y="469" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="925.30" y="479.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,006,400,843 samples, 0.01%)</title><rect x="96.0" y="149" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="98.96" y="159.5" ></text>
</g>
<g >
<title>AllocSetFree (2,178,445,211 samples, 0.02%)</title><rect x="798.8" y="517" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="801.80" y="527.5" ></text>
</g>
<g >
<title>table_slot_create (23,298,784,360 samples, 0.25%)</title><rect x="275.6" y="421" width="2.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="278.62" y="431.5" ></text>
</g>
<g >
<title>hash_search (4,248,126,274 samples, 0.05%)</title><rect x="440.5" y="357" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="443.54" y="367.5" ></text>
</g>
<g >
<title>btint4cmp (1,365,484,364 samples, 0.01%)</title><rect x="1124.2" y="757" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1127.17" y="767.5" ></text>
</g>
<g >
<title>pull_var_clause (17,435,996,045 samples, 0.18%)</title><rect x="954.8" y="453" width="2.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="957.80" y="463.5" ></text>
</g>
<g >
<title>bsearch@plt (816,113,865 samples, 0.01%)</title><rect x="285.8" y="261" width="0.1" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="288.84" y="271.5" ></text>
</g>
<g >
<title>PortalRunMulti (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="597" width="1.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="125.45" y="607.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,110,453,897 samples, 0.01%)</title><rect x="1014.9" y="245" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1017.85" y="255.5" ></text>
</g>
<g >
<title>selinux_socket_recvmsg (4,300,973,778 samples, 0.05%)</title><rect x="177.3" y="389" width="0.6" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="180.35" y="399.5" ></text>
</g>
<g >
<title>CopyXLogRecordToWAL (9,663,899,662 samples, 0.10%)</title><rect x="379.2" y="309" width="1.2" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="382.15" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (851,486,225 samples, 0.01%)</title><rect x="945.2" y="373" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="948.22" y="383.5" ></text>
</g>
<g >
<title>create_bitmap_heap_path (14,889,761,417 samples, 0.16%)</title><rect x="989.8" y="389" width="1.9" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="992.82" y="399.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (7,266,181,855 samples, 0.08%)</title><rect x="298.4" y="117" width="0.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="301.41" y="127.5" ></text>
</g>
<g >
<title>hash_bytes (11,485,276,461 samples, 0.12%)</title><rect x="849.9" y="341" width="1.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="852.94" y="351.5" ></text>
</g>
<g >
<title>heap_getattr (9,092,132,779 samples, 0.10%)</title><rect x="826.4" y="357" width="1.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="829.38" y="367.5" ></text>
</g>
<g >
<title>check_redundant_nullability_qual (1,042,115,703 samples, 0.01%)</title><rect x="965.3" y="405" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="968.34" y="415.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (5,413,996,234 samples, 0.06%)</title><rect x="84.7" y="293" width="0.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="87.72" y="303.5" ></text>
</g>
<g >
<title>setup_eager_aggregation (841,298,501 samples, 0.01%)</title><rect x="1044.2" y="469" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1047.24" y="479.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,903,728,468 samples, 0.04%)</title><rect x="964.9" y="341" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="967.85" y="351.5" ></text>
</g>
<g >
<title>list_delete_ptr (5,445,843,031 samples, 0.06%)</title><rect x="251.4" y="469" width="0.7" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="254.44" y="479.5" ></text>
</g>
<g >
<title>LockBuffer (6,387,107,417 samples, 0.07%)</title><rect x="398.2" y="389" width="0.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="401.15" y="399.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (4,266,551,562 samples, 0.05%)</title><rect x="1054.0" y="421" width="0.6" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1057.04" y="431.5" ></text>
</g>
<g >
<title>LWLockWakeup (7,038,800,237 samples, 0.07%)</title><rect x="351.7" y="277" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="354.67" y="287.5" ></text>
</g>
<g >
<title>_bt_relbuf (7,388,287,010 samples, 0.08%)</title><rect x="324.7" y="229" width="1.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="327.74" y="239.5" ></text>
</g>
<g >
<title>base_yylex (92,047,656,846 samples, 0.98%)</title><rect x="1103.5" y="741" width="11.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1106.47" y="751.5" ></text>
</g>
<g >
<title>proclist_push_head_offset (961,411,365 samples, 0.01%)</title><rect x="474.8" y="453" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="477.77" y="463.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,006,933,506 samples, 0.01%)</title><rect x="398.7" y="277" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="401.67" y="287.5" ></text>
</g>
<g >
<title>index_close (13,230,057,433 samples, 0.14%)</title><rect x="236.1" y="453" width="1.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="239.10" y="463.5" ></text>
</g>
<g >
<title>ExecCheckPermissions (20,199,736,930 samples, 0.21%)</title><rect x="406.1" y="485" width="2.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="409.15" y="495.5" ></text>
</g>
<g >
<title>table_index_fetch_reset (3,628,120,789 samples, 0.04%)</title><rect x="281.8" y="309" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="284.75" y="319.5" ></text>
</g>
<g >
<title>LockBuffer (8,036,028,049 samples, 0.09%)</title><rect x="296.2" y="261" width="1.0" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="299.18" y="271.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (12,488,711,083 samples, 0.13%)</title><rect x="1075.8" y="501" width="1.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1078.81" y="511.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,658,179,519 samples, 0.02%)</title><rect x="288.9" y="165" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="291.86" y="175.5" ></text>
</g>
<g >
<title>ReleaseSysCache (866,754,178 samples, 0.01%)</title><rect x="1056.5" y="421" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1059.53" y="431.5" ></text>
</g>
<g >
<title>AssertTransactionIdInAllowableRange (1,705,897,301 samples, 0.02%)</title><rect x="310.0" y="213" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="313.04" y="223.5" ></text>
</g>
<g >
<title>tag_hash (2,925,242,434 samples, 0.03%)</title><rect x="445.4" y="341" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="448.36" y="351.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (14,709,367,593 samples, 0.16%)</title><rect x="119.4" y="741" width="1.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="122.39" y="751.5" ></text>
</g>
<g >
<title>standard_ExecutorEnd (222,751,119,073 samples, 2.36%)</title><rect x="234.8" y="517" width="27.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="237.84" y="527.5" >s..</text>
</g>
<g >
<title>RelationGetNumberOfBlocksInFork (11,300,070,965 samples, 0.12%)</title><rect x="931.8" y="405" width="1.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="934.77" y="415.5" ></text>
</g>
<g >
<title>CreateExecutorState (895,408,435 samples, 0.01%)</title><rect x="39.4" y="757" width="0.1" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text x="42.41" y="767.5" ></text>
</g>
<g >
<title>clause_selectivity_ext (73,931,853,763 samples, 0.78%)</title><rect x="1028.8" y="357" width="9.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1031.81" y="367.5" ></text>
</g>
<g >
<title>genericcostestimate (21,570,724,734 samples, 0.23%)</title><rect x="1011.6" y="309" width="2.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1014.63" y="319.5" ></text>
</g>
<g >
<title>list_copy (3,142,417,912 samples, 0.03%)</title><rect x="393.6" y="373" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="396.62" y="383.5" ></text>
</g>
<g >
<title>ReleaseSysCache (860,275,277 samples, 0.01%)</title><rect x="1014.5" y="293" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1017.50" y="303.5" ></text>
</g>
<g >
<title>makeString (4,026,684,481 samples, 0.04%)</title><rect x="1116.6" y="725" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1119.59" y="735.5" ></text>
</g>
<g >
<title>page_verify_redirects (987,531,719 samples, 0.01%)</title><rect x="1148.1" y="709" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1151.06" y="719.5" ></text>
</g>
<g >
<title>process_integer_literal (3,062,871,444 samples, 0.03%)</title><rect x="1114.4" y="709" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1117.42" y="719.5" ></text>
</g>
<g >
<title>generate_base_implied_equalities (1,425,556,393 samples, 0.02%)</title><rect x="1139.0" y="757" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="1142.04" y="767.5" ></text>
</g>
<g >
<title>uint32_hash (1,219,537,086 samples, 0.01%)</title><rect x="1016.8" y="277" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1019.82" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (843,114,520 samples, 0.01%)</title><rect x="871.4" y="485" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="874.40" y="495.5" ></text>
</g>
<g >
<title>set_rel_pathlist (335,029,955,320 samples, 3.55%)</title><rect x="984.5" y="437" width="41.9" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="987.49" y="447.5" >set..</text>
</g>
<g >
<title>get_restriction_variable (44,792,031,446 samples, 0.47%)</title><rect x="1031.0" y="261" width="5.6" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1033.95" y="271.5" ></text>
</g>
<g >
<title>futex_wake (1,605,003,608 samples, 0.02%)</title><rect x="470.4" y="309" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="473.36" y="319.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (4,864,702,396 samples, 0.05%)</title><rect x="183.7" y="309" width="0.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="186.73" y="319.5" ></text>
</g>
<g >
<title>lappend (2,830,488,899 samples, 0.03%)</title><rect x="976.8" y="421" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="979.80" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,365,645,079 samples, 0.01%)</title><rect x="449.4" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="452.36" y="415.5" ></text>
</g>
<g >
<title>ExecScanExtended (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="389" width="1.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="127.59" y="399.5" ></text>
</g>
<g >
<title>get_relname_relid (40,670,556,973 samples, 0.43%)</title><rect x="822.5" y="389" width="5.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="825.51" y="399.5" ></text>
</g>
<g >
<title>pgstat_report_wait_start (901,932,183 samples, 0.01%)</title><rect x="1171.5" y="757" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1174.55" y="767.5" ></text>
</g>
<g >
<title>ExecConditionalAssignProjectionInfo (79,433,751,100 samples, 0.84%)</title><rect x="415.8" y="405" width="9.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="418.77" y="415.5" ></text>
</g>
<g >
<title>PortalRunMulti (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="613" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1160.94" y="623.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,460,175,412 samples, 0.05%)</title><rect x="1052.5" y="421" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1055.55" y="431.5" ></text>
</g>
<g >
<title>AfterTriggerBeginXact (943,547,687 samples, 0.01%)</title><rect x="10.3" y="757" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="13.32" y="767.5" ></text>
</g>
<g >
<title>table_open (15,359,312,359 samples, 0.16%)</title><rect x="1067.3" y="485" width="1.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1070.26" y="495.5" ></text>
</g>
<g >
<title>ChoosePortalStrategy (3,267,619,470 samples, 0.03%)</title><rect x="455.2" y="565" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="458.18" y="575.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (1,022,431,433 samples, 0.01%)</title><rect x="182.3" y="341" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="185.29" y="351.5" ></text>
</g>
<g >
<title>palloc (916,027,998 samples, 0.01%)</title><rect x="981.8" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="984.76" y="383.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,138,976,822 samples, 0.01%)</title><rect x="295.6" y="213" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="298.55" y="223.5" ></text>
</g>
<g >
<title>ExecEndIndexScan (65,628,078,743 samples, 0.70%)</title><rect x="238.6" y="437" width="8.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="241.61" y="447.5" ></text>
</g>
<g >
<title>palloc (1,477,709,315 samples, 0.02%)</title><rect x="417.2" y="309" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="420.20" y="319.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (4,918,249,590 samples, 0.05%)</title><rect x="441.3" y="389" width="0.6" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="444.29" y="399.5" ></text>
</g>
<g >
<title>makeFromExpr (2,368,158,493 samples, 0.03%)</title><rect x="808.5" y="485" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="811.55" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (943,873,443 samples, 0.01%)</title><rect x="1019.6" y="293" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1022.61" y="303.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,843,097,366 samples, 0.02%)</title><rect x="350.1" y="277" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="353.06" y="287.5" ></text>
</g>
<g >
<title>SysCacheGetAttrNotNull (49,245,008,738 samples, 0.52%)</title><rect x="1002.1" y="277" width="6.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1005.15" y="287.5" ></text>
</g>
<g >
<title>unix_poll (3,072,329,504 samples, 0.03%)</title><rect x="157.3" y="341" width="0.4" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="160.30" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (852,532,760 samples, 0.01%)</title><rect x="1078.3" y="469" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1081.27" y="479.5" ></text>
</g>
<g >
<title>select_task_rq_fair (27,095,655,447 samples, 0.29%)</title><rect x="199.6" y="309" width="3.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="202.61" y="319.5" ></text>
</g>
<g >
<title>HeapTupleHeaderAdvanceConflictHorizon (861,619,540 samples, 0.01%)</title><rect x="1146.0" y="709" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1149.02" y="719.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (2,025,970,730 samples, 0.02%)</title><rect x="325.0" y="181" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="327.98" y="191.5" ></text>
</g>
<g >
<title>shmem_file_llseek (1,641,907,696 samples, 0.02%)</title><rect x="932.9" y="261" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="935.89" y="271.5" ></text>
</g>
<g >
<title>makeVar (3,799,508,687 samples, 0.04%)</title><rect x="934.4" y="389" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="937.42" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,214,431,617 samples, 0.01%)</title><rect x="1058.2" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1061.24" y="415.5" ></text>
</g>
<g >
<title>BufferIsLockedByMeInMode (3,037,013,076 samples, 0.03%)</title><rect x="364.3" y="341" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="367.25" y="351.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,239,263,977 samples, 0.01%)</title><rect x="102.7" y="453" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="105.72" y="463.5" ></text>
</g>
<g >
<title>ReadBuffer (5,413,996,234 samples, 0.06%)</title><rect x="84.7" y="277" width="0.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="87.72" y="287.5" ></text>
</g>
<g >
<title>wake_affine (1,413,626,855 samples, 0.01%)</title><rect x="202.8" y="293" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="205.82" y="303.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (4,153,320,640 samples, 0.04%)</title><rect x="233.9" y="501" width="0.5" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="236.93" y="511.5" ></text>
</g>
<g >
<title>XLogRecordAssemble (14,750,576,546 samples, 0.16%)</title><rect x="382.7" y="325" width="1.9" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="385.72" y="335.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="533" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="88.40" y="543.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple_internal (6,341,113,793 samples, 0.07%)</title><rect x="288.4" y="213" width="0.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="291.36" y="223.5" ></text>
</g>
<g >
<title>make_parsestate (5,495,144,209 samples, 0.06%)</title><rect x="799.4" y="549" width="0.7" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="802.43" y="559.5" ></text>
</g>
<g >
<title>futex_wake (1,418,667,084 samples, 0.02%)</title><rect x="354.7" y="133" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="357.65" y="143.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (958,784,958 samples, 0.01%)</title><rect x="1166.9" y="757" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1169.86" y="767.5" ></text>
</g>
<g >
<title>PageGetLSN (905,321,982 samples, 0.01%)</title><rect x="80.6" y="757" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="83.60" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,066,417,037 samples, 0.01%)</title><rect x="922.6" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="925.62" y="415.5" ></text>
</g>
<g >
<title>MarkBufferDirtyHint (2,416,535,618 samples, 0.03%)</title><rect x="1146.7" y="677" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1149.66" y="687.5" ></text>
</g>
<g >
<title>LWLockConditionalAcquire (3,234,326,015 samples, 0.03%)</title><rect x="469.8" y="453" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="472.81" y="463.5" ></text>
</g>
<g >
<title>replace_nestloop_params (14,125,778,347 samples, 0.15%)</title><rect x="888.7" y="357" width="1.8" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="891.73" y="367.5" ></text>
</g>
<g >
<title>schedule (107,500,493,911 samples, 1.14%)</title><rect x="158.6" y="373" width="13.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="161.57" y="383.5" ></text>
</g>
<g >
<title>HeapTupleHasNulls (887,160,945 samples, 0.01%)</title><rect x="50.8" y="757" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="53.82" y="767.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (1,217,297,839 samples, 0.01%)</title><rect x="124.1" y="277" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="127.08" y="287.5" ></text>
</g>
<g >
<title>LWLockRelease (3,669,367,424 samples, 0.04%)</title><rect x="363.5" y="341" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="366.55" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,020,466,053 samples, 0.02%)</title><rect x="945.9" y="389" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="948.94" y="399.5" ></text>
</g>
<g >
<title>fetch_att (860,419,010 samples, 0.01%)</title><rect x="1136.9" y="757" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1139.91" y="767.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,579,923,334 samples, 0.03%)</title><rect x="100.2" y="181" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="103.23" y="191.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (1,663,979,181 samples, 0.02%)</title><rect x="397.8" y="389" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="400.84" y="399.5" ></text>
</g>
<g >
<title>list_free (1,579,855,057 samples, 0.02%)</title><rect x="395.9" y="389" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="398.92" y="399.5" ></text>
</g>
<g >
<title>pfree (3,392,170,985 samples, 0.04%)</title><rect x="224.3" y="549" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="227.30" y="559.5" ></text>
</g>
<g >
<title>bms_add_members (1,100,188,250 samples, 0.01%)</title><rect x="1121.8" y="757" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="1124.81" y="767.5" ></text>
</g>
<g >
<title>ItemPointerIsValid (2,222,080,396 samples, 0.02%)</title><rect x="55.6" y="757" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="58.60" y="767.5" ></text>
</g>
<g >
<title>pg_nextpower2_32 (1,727,625,086 samples, 0.02%)</title><rect x="1163.3" y="741" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1166.31" y="751.5" ></text>
</g>
<g >
<title>AllocSetFree (1,163,214,572 samples, 0.01%)</title><rect x="877.8" y="453" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="880.84" y="463.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,115,623,333 samples, 0.01%)</title><rect x="89.8" y="757" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="92.85" y="767.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (310,290,018,988 samples, 3.29%)</title><rect x="712.0" y="533" width="38.8" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="715.04" y="543.5" >Mem..</text>
</g>
<g >
<title>FunctionCall2Coll (1,588,978,839 samples, 0.02%)</title><rect x="122.6" y="229" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="125.63" y="239.5" ></text>
</g>
<g >
<title>SearchSysCache1 (5,523,016,716 samples, 0.06%)</title><rect x="1042.2" y="341" width="0.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1045.25" y="351.5" ></text>
</g>
<g >
<title>tag_hash (2,709,571,307 samples, 0.03%)</title><rect x="95.1" y="149" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="98.11" y="159.5" ></text>
</g>
<g >
<title>GetScanKeyword (2,011,022,255 samples, 0.02%)</title><rect x="1111.2" y="693" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1114.22" y="703.5" ></text>
</g>
<g >
<title>simplify_function (2,314,758,137 samples, 0.02%)</title><rect x="1185.0" y="629" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1187.99" y="639.5" ></text>
</g>
<g >
<title>palloc0 (8,846,029,005 samples, 0.09%)</title><rect x="911.8" y="453" width="1.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="914.79" y="463.5" ></text>
</g>
<g >
<title>AllocSetAllocLarge (11,731,141,455 samples, 0.12%)</title><rect x="291.5" y="245" width="1.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="294.54" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,037,111,545 samples, 0.01%)</title><rect x="878.9" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="881.90" y="431.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (4,936,021,069 samples, 0.05%)</title><rect x="924.6" y="437" width="0.6" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="927.61" y="447.5" ></text>
</g>
<g >
<title>get_typlen (9,944,859,674 samples, 0.11%)</title><rect x="422.8" y="357" width="1.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="425.83" y="367.5" ></text>
</g>
<g >
<title>add_vars_to_targetlist (28,615,761,282 samples, 0.30%)</title><rect x="950.7" y="453" width="3.6" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="953.68" y="463.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (7,424,660,116 samples, 0.08%)</title><rect x="288.2" y="229" width="1.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="291.23" y="239.5" ></text>
</g>
<g >
<title>exprLocation (2,132,001,021 samples, 0.02%)</title><rect x="806.8" y="309" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="809.84" y="319.5" ></text>
</g>
<g >
<title>ReleaseCatCacheList (1,211,175,912 samples, 0.01%)</title><rect x="962.3" y="373" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="965.32" y="383.5" ></text>
</g>
<g >
<title>setup_simple_rel_arrays (3,863,134,391 samples, 0.04%)</title><rect x="1044.3" y="469" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1047.34" y="479.5" ></text>
</g>
<g >
<title>sched_clock_cpu (809,365,050 samples, 0.01%)</title><rect x="171.7" y="325" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="174.68" y="335.5" ></text>
</g>
<g >
<title>CreateCommandTag (2,188,843,457 samples, 0.02%)</title><rect x="209.9" y="581" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="212.94" y="591.5" ></text>
</g>
<g >
<title>initStringInfo (2,941,314,159 samples, 0.03%)</title><rect x="186.7" y="565" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="189.75" y="575.5" ></text>
</g>
<g >
<title>TupleDescAttr (890,283,347 samples, 0.01%)</title><rect x="827.0" y="277" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="830.04" y="287.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,264,334,352 samples, 0.01%)</title><rect x="363.4" y="309" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="366.38" y="319.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,573,153,694 samples, 0.02%)</title><rect x="111.3" y="741" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="114.30" y="751.5" ></text>
</g>
<g >
<title>psi_task_switch (3,770,055,510 samples, 0.04%)</title><rect x="478.6" y="277" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="481.61" y="287.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (3,352,899,693 samples, 0.04%)</title><rect x="268.4" y="293" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="271.37" y="303.5" ></text>
</g>
<g >
<title>pthread_testcancel@@GLIBC_2.34 (864,019,100 samples, 0.01%)</title><rect x="484.4" y="437" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="487.37" y="447.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (2,247,747,610 samples, 0.02%)</title><rect x="80.7" y="757" width="0.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="83.71" y="767.5" ></text>
</g>
<g >
<title>ExecutePlan (1,113,079,919,834 samples, 11.79%)</title><rect x="263.9" y="501" width="139.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="266.89" y="511.5" >ExecutePlan</text>
</g>
<g >
<title>AllocSetAlloc (1,222,348,979 samples, 0.01%)</title><rect x="1118.7" y="693" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1121.66" y="703.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,935,307,708 samples, 0.03%)</title><rect x="418.4" y="245" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="421.38" y="255.5" ></text>
</g>
<g >
<title>do_futex (940,728,870 samples, 0.01%)</title><rect x="363.4" y="229" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="366.40" y="239.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_object (1,306,731,137 samples, 0.01%)</title><rect x="504.8" y="421" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="507.78" y="431.5" ></text>
</g>
<g >
<title>AllocSetFree (1,630,182,992 samples, 0.02%)</title><rect x="989.3" y="357" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="992.27" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_monotonic_advance_u64 (2,244,454,767 samples, 0.02%)</title><rect x="490.9" y="469" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="493.92" y="479.5" ></text>
</g>
<g >
<title>__sysvec_thermal (1,577,756,675 samples, 0.02%)</title><rect x="751.8" y="501" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="754.82" y="511.5" ></text>
</g>
<g >
<title>finalize_primnode (1,037,260,390 samples, 0.01%)</title><rect x="881.0" y="389" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="883.98" y="399.5" ></text>
</g>
<g >
<title>index_getnext_tid (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="341" width="1.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="125.45" y="351.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (905,048,235 samples, 0.01%)</title><rect x="834.8" y="325" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="837.84" y="335.5" ></text>
</g>
<g >
<title>sock_poll (6,516,209,004 samples, 0.07%)</title><rect x="156.9" y="357" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="159.87" y="367.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,123,994,504 samples, 0.01%)</title><rect x="1134.0" y="677" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1136.99" y="687.5" ></text>
</g>
<g >
<title>ServerLoop (7,629,157,056,107 samples, 80.84%)</title><rect x="130.1" y="677" width="953.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="133.07" y="687.5" >ServerLoop</text>
</g>
<g >
<title>EndCommand (16,361,681,566 samples, 0.17%)</title><rect x="215.1" y="581" width="2.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="218.08" y="591.5" ></text>
</g>
<g >
<title>secure_write (1,321,209,385 samples, 0.01%)</title><rect x="1177.1" y="757" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1180.06" y="767.5" ></text>
</g>
<g >
<title>get_futex_key (7,421,100,911 samples, 0.08%)</title><rect x="482.5" y="309" width="0.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="485.49" y="319.5" ></text>
</g>
<g >
<title>heapam_index_fetch_begin (1,887,959,506 samples, 0.02%)</title><rect x="293.1" y="293" width="0.3" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text x="296.11" y="303.5" ></text>
</g>
<g >
<title>wake_up_q (919,445,600 samples, 0.01%)</title><rect x="470.4" y="293" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="473.44" y="303.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,489,146,792 samples, 0.02%)</title><rect x="925.0" y="389" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="928.04" y="399.5" ></text>
</g>
<g >
<title>make_parsestate (1,180,620,922 samples, 0.01%)</title><rect x="1159.4" y="757" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1162.43" y="767.5" ></text>
</g>
<g >
<title>AtEOXact_Snapshot (809,521,992 samples, 0.01%)</title><rect x="33.0" y="757" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="35.96" y="767.5" ></text>
</g>
<g >
<title>lappend (4,702,695,812 samples, 0.05%)</title><rect x="890.5" y="373" width="0.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="893.50" y="383.5" ></text>
</g>
<g >
<title>palloc (1,619,358,875 samples, 0.02%)</title><rect x="983.8" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="986.75" y="415.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (3,370,774,812 samples, 0.04%)</title><rect x="232.8" y="549" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="235.82" y="559.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (4,534,859,334 samples, 0.05%)</title><rect x="473.9" y="469" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="476.91" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,078,647,951 samples, 0.01%)</title><rect x="502.3" y="421" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="505.25" y="431.5" ></text>
</g>
<g >
<title>set_pathtarget_cost_width (21,129,584,188 samples, 0.22%)</title><rect x="1045.5" y="485" width="2.7" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="1048.54" y="495.5" ></text>
</g>
<g >
<title>vfs_write (59,329,540,342 samples, 0.63%)</title><rect x="494.0" y="405" width="7.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="496.98" y="415.5" ></text>
</g>
<g >
<title>ExecUpdateAct (363,503,329,882 samples, 3.85%)</title><rect x="342.9" y="421" width="45.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="345.91" y="431.5" >Exec..</text>
</g>
<g >
<title>BufferDescriptorGetBuffer (1,149,245,609 samples, 0.01%)</title><rect x="299.9" y="117" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="302.93" y="127.5" ></text>
</g>
<g >
<title>palloc0 (1,717,739,053 samples, 0.02%)</title><rect x="293.1" y="277" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="296.14" y="287.5" ></text>
</g>
<g >
<title>_bt_compare (1,338,761,308 samples, 0.01%)</title><rect x="123.9" y="261" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="126.91" y="271.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,502,079,788 samples, 0.02%)</title><rect x="1023.5" y="309" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1026.49" y="319.5" ></text>
</g>
<g >
<title>GlobalVisTestFor (1,232,036,239 samples, 0.01%)</title><rect x="309.8" y="245" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="312.82" y="255.5" ></text>
</g>
<g >
<title>hash_search (4,944,399,482 samples, 0.05%)</title><rect x="394.4" y="325" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="397.40" y="335.5" ></text>
</g>
<g >
<title>uint32_hash (1,392,307,894 samples, 0.01%)</title><rect x="1069.0" y="421" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1071.98" y="431.5" ></text>
</g>
<g >
<title>int4pl (1,279,163,086 samples, 0.01%)</title><rect x="1151.6" y="757" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1154.58" y="767.5" ></text>
</g>
<g >
<title>do_futex (1,635,169,642 samples, 0.02%)</title><rect x="470.4" y="325" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="473.35" y="335.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="517" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1160.94" y="527.5" ></text>
</g>
<g >
<title>palloc0 (2,447,133,431 samples, 0.03%)</title><rect x="425.0" y="341" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="428.01" y="351.5" ></text>
</g>
<g >
<title>palloc0 (1,973,978,440 samples, 0.02%)</title><rect x="853.6" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="856.62" y="367.5" ></text>
</g>
<g >
<title>palloc (3,274,855,486 samples, 0.03%)</title><rect x="871.8" y="501" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="874.81" y="511.5" ></text>
</g>
<g >
<title>LockRelationOid (23,998,565,187 samples, 0.25%)</title><rect x="940.3" y="373" width="3.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="943.28" y="383.5" ></text>
</g>
<g >
<title>list_make1_impl (1,738,661,515 samples, 0.02%)</title><rect x="972.6" y="389" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="975.57" y="399.5" ></text>
</g>
<g >
<title>get_typcollation (8,971,219,343 samples, 0.10%)</title><rect x="807.3" y="357" width="1.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="810.25" y="367.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,492,639,098 samples, 0.05%)</title><rect x="864.3" y="453" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="867.31" y="463.5" ></text>
</g>
<g >
<title>AllocSetFree (899,540,635 samples, 0.01%)</title><rect x="954.7" y="405" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="957.66" y="415.5" ></text>
</g>
<g >
<title>PortalRun (1,817,074,711,274 samples, 19.25%)</title><rect x="227.5" y="581" width="227.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="230.50" y="591.5" >PortalRun</text>
</g>
<g >
<title>LWLockAttemptLock (3,720,522,411 samples, 0.04%)</title><rect x="96.3" y="165" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="99.27" y="175.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (1,060,137,340 samples, 0.01%)</title><rect x="296.0" y="261" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="299.01" y="271.5" ></text>
</g>
<g >
<title>tas (952,288,078 samples, 0.01%)</title><rect x="358.2" y="229" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="361.24" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,327,734,082 samples, 0.01%)</title><rect x="387.7" y="293" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="390.69" y="303.5" ></text>
</g>
<g >
<title>newNode (3,239,783,603 samples, 0.03%)</title><rect x="909.7" y="453" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="912.71" y="463.5" ></text>
</g>
<g >
<title>pg_parse_query (26,852,953,248 samples, 0.28%)</title><rect x="869.5" y="581" width="3.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="872.54" y="591.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (1,753,890,525 samples, 0.02%)</title><rect x="399.4" y="309" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="402.39" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (165,208,223,590 samples, 1.75%)</title><rect x="153.8" y="453" width="20.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="156.82" y="463.5" ></text>
</g>
<g >
<title>PinBuffer (4,698,696,939 samples, 0.05%)</title><rect x="299.9" y="133" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="302.87" y="143.5" ></text>
</g>
<g >
<title>BlockNumberIsValid (2,774,151,055 samples, 0.03%)</title><rect x="34.1" y="757" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="37.06" y="767.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,982,430,372 samples, 0.02%)</title><rect x="1011.3" y="245" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1014.28" y="255.5" ></text>
</g>
<g >
<title>_bt_check_compare (2,568,695,668 samples, 0.03%)</title><rect x="1157.9" y="261" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1160.94" y="271.5" ></text>
</g>
<g >
<title>finalize_primnode (14,459,074,695 samples, 0.15%)</title><rect x="880.0" y="469" width="1.8" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="882.99" y="479.5" ></text>
</g>
<g >
<title>list_delete_nth_cell (3,806,838,489 samples, 0.04%)</title><rect x="251.6" y="437" width="0.5" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="254.64" y="447.5" ></text>
</g>
<g >
<title>lappend (4,795,466,642 samples, 0.05%)</title><rect x="1153.3" y="757" width="0.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1156.32" y="767.5" ></text>
</g>
<g >
<title>TransactionIdSetPageStatus (26,940,974,785 samples, 0.29%)</title><rect x="469.7" y="469" width="3.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="472.70" y="479.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (7,454,096,212 samples, 0.08%)</title><rect x="240.7" y="357" width="1.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="243.73" y="367.5" ></text>
</g>
<g >
<title>hash_bytes (2,602,840,619 samples, 0.03%)</title><rect x="811.2" y="389" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="814.20" y="399.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberTupleDesc (1,361,513,433 samples, 0.01%)</title><rect x="276.3" y="357" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="279.29" y="367.5" ></text>
</g>
<g >
<title>create_plan (1,078,082,070 samples, 0.01%)</title><rect x="1130.2" y="757" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1133.19" y="767.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,771,464,562 samples, 0.02%)</title><rect x="107.7" y="741" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="110.74" y="751.5" ></text>
</g>
<g >
<title>obj_cgroup_charge_pages (1,437,923,572 samples, 0.02%)</title><rect x="195.4" y="293" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="198.40" y="303.5" ></text>
</g>
<g >
<title>_int_free (864,430,769 samples, 0.01%)</title><rect x="147.3" y="533" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="150.34" y="543.5" ></text>
</g>
<g >
<title>_bt_getroot (14,094,754,105 samples, 0.15%)</title><rect x="334.9" y="245" width="1.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="337.92" y="255.5" ></text>
</g>
<g >
<title>XLogRecordAssemble (3,523,160,067 samples, 0.04%)</title><rect x="508.8" y="469" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="511.84" y="479.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (5,413,996,234 samples, 0.06%)</title><rect x="84.7" y="213" width="0.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="87.72" y="223.5" ></text>
</g>
<g >
<title>verify_compact_attribute (2,871,252,156 samples, 0.03%)</title><rect x="123.2" y="213" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="126.18" y="223.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (1,307,247,510 samples, 0.01%)</title><rect x="32.5" y="757" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="35.46" y="767.5" ></text>
</g>
<g >
<title>replace_nestloop_params (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="421" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="88.40" y="431.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (826,749,802 samples, 0.01%)</title><rect x="283.1" y="309" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="286.09" y="319.5" ></text>
</g>
<g >
<title>ReleaseCatCache (864,137,029 samples, 0.01%)</title><rect x="1046.0" y="405" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1049.00" y="415.5" ></text>
</g>
<g >
<title>HeapTupleSetHeapOnly (947,384,474 samples, 0.01%)</title><rect x="362.0" y="357" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="365.00" y="367.5" ></text>
</g>
<g >
<title>newNode (2,038,406,325 samples, 0.02%)</title><rect x="888.3" y="309" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="891.33" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,177,366,135 samples, 0.01%)</title><rect x="977.0" y="373" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="979.98" y="383.5" ></text>
</g>
<g >
<title>ExecFetchSlotHeapTuple (2,278,114,108 samples, 0.02%)</title><rect x="345.0" y="373" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="347.97" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,421,308,255 samples, 0.02%)</title><rect x="1066.5" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1069.53" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (861,601,226 samples, 0.01%)</title><rect x="299.5" y="101" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="302.51" y="111.5" ></text>
</g>
<g >
<title>IsSystemClass (1,950,300,908 samples, 0.02%)</title><rect x="407.0" y="421" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="409.99" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (803,901,079 samples, 0.01%)</title><rect x="126.6" y="197" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="129.56" y="207.5" ></text>
</g>
<g >
<title>BufferIsPermanent (2,388,759,659 samples, 0.03%)</title><rect x="305.4" y="197" width="0.3" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="308.45" y="207.5" ></text>
</g>
<g >
<title>apply_scanjoin_target_to_paths (14,790,522,374 samples, 0.16%)</title><rect x="908.9" y="485" width="1.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="911.86" y="495.5" ></text>
</g>
<g >
<title>bms_difference (2,157,362,777 samples, 0.02%)</title><rect x="882.0" y="517" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="884.97" y="527.5" ></text>
</g>
<g >
<title>tts_buffer_heap_materialize (1,234,009,875 samples, 0.01%)</title><rect x="1188.4" y="757" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1191.39" y="767.5" ></text>
</g>
<g >
<title>core_yy_load_buffer_state (998,839,354 samples, 0.01%)</title><rect x="870.9" y="501" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="873.86" y="511.5" ></text>
</g>
<g >
<title>int4hashfast (1,712,064,080 samples, 0.02%)</title><rect x="1151.4" y="757" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1154.37" y="767.5" ></text>
</g>
<g >
<title>XLogRegisterBufData (5,056,773,797 samples, 0.05%)</title><rect x="384.6" y="341" width="0.7" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="387.64" y="351.5" ></text>
</g>
<g >
<title>new_list (1,792,098,665 samples, 0.02%)</title><rect x="919.3" y="453" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="922.27" y="463.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (975,983,726 samples, 0.01%)</title><rect x="126.7" y="437" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="129.71" y="447.5" ></text>
</g>
<g >
<title>scanRTEForColumn (1,970,798,245 samples, 0.02%)</title><rect x="840.5" y="325" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="843.55" y="335.5" ></text>
</g>
<g >
<title>build_index_tlist (11,645,594,183 samples, 0.12%)</title><rect x="933.4" y="405" width="1.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="936.44" y="415.5" ></text>
</g>
<g >
<title>ExecScanExtended (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="453" width="6.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="97.67" y="463.5" ></text>
</g>
<g >
<title>initStringInfo (3,346,309,443 samples, 0.04%)</title><rect x="1079.1" y="597" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1082.06" y="607.5" ></text>
</g>
<g >
<title>index_getattr (2,871,252,156 samples, 0.03%)</title><rect x="123.2" y="245" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="126.18" y="255.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (10,113,640,878 samples, 0.11%)</title><rect x="248.1" y="453" width="1.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="251.10" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,844,845,426 samples, 0.02%)</title><rect x="440.6" y="341" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="443.57" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,961,359,880 samples, 0.02%)</title><rect x="872.0" y="485" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="874.97" y="495.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (4,219,387,214 samples, 0.04%)</title><rect x="1057.3" y="421" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1060.32" y="431.5" ></text>
</g>
<g >
<title>palloc0 (4,230,552,764 samples, 0.04%)</title><rect x="431.8" y="373" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="434.83" y="383.5" ></text>
</g>
<g >
<title>bms_equal (1,196,429,127 samples, 0.01%)</title><rect x="983.1" y="453" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="986.09" y="463.5" ></text>
</g>
<g >
<title>make_rel_from_joinlist (6,398,252,039 samples, 0.07%)</title><rect x="983.3" y="453" width="0.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="986.29" y="463.5" ></text>
</g>
<g >
<title>new_list (1,921,991,063 samples, 0.02%)</title><rect x="815.4" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="818.38" y="447.5" ></text>
</g>
<g >
<title>palloc (1,265,541,821 samples, 0.01%)</title><rect x="893.2" y="421" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="896.16" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,121,404,409 samples, 0.02%)</title><rect x="1117.9" y="693" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1120.91" y="703.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (2,314,758,137 samples, 0.02%)</title><rect x="1185.0" y="709" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.99" y="719.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_object (1,629,901,716 samples, 0.02%)</title><rect x="98.8" y="165" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="101.84" y="175.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (13,375,545,250 samples, 0.14%)</title><rect x="1053.2" y="469" width="1.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1056.18" y="479.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (5,502,474,906 samples, 0.06%)</title><rect x="151.0" y="517" width="0.7" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="153.99" y="527.5" ></text>
</g>
<g >
<title>UnregisterSnapshotNoOwner (2,391,989,560 samples, 0.03%)</title><rect x="452.9" y="485" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="455.94" y="495.5" ></text>
</g>
<g >
<title>ExecScanFetch (421,419,578,134 samples, 4.47%)</title><rect x="289.3" y="357" width="52.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="292.26" y="367.5" >ExecS..</text>
</g>
<g >
<title>contain_volatile_functions_walker (1,004,398,571 samples, 0.01%)</title><rect x="1128.9" y="757" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1131.85" y="767.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (969,090,889 samples, 0.01%)</title><rect x="52.1" y="757" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="55.09" y="767.5" ></text>
</g>
<g >
<title>XLogNeedsFlush (859,651,908 samples, 0.01%)</title><rect x="109.8" y="757" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="112.80" y="767.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,099,355,822 samples, 0.01%)</title><rect x="1016.8" y="261" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1019.83" y="271.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,443,285,421 samples, 0.02%)</title><rect x="518.5" y="437" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="521.54" y="447.5" ></text>
</g>
<g >
<title>LockReassignCurrentOwner (4,808,950,144 samples, 0.05%)</title><rect x="225.3" y="533" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="228.31" y="543.5" ></text>
</g>
<g >
<title>pq_getbytes (3,912,967,208 samples, 0.04%)</title><rect x="185.6" y="549" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="188.63" y="559.5" ></text>
</g>
<g >
<title>LWLockQueueSelf (1,234,464,932 samples, 0.01%)</title><rect x="350.5" y="293" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="353.51" y="303.5" ></text>
</g>
<g >
<title>enqueue_entity (2,653,738,561 samples, 0.03%)</title><rect x="203.9" y="277" width="0.3" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="206.89" y="287.5" ></text>
</g>
<g >
<title>StartReadBuffer (11,970,693,185 samples, 0.13%)</title><rect x="83.2" y="229" width="1.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="86.22" y="239.5" ></text>
</g>
<g >
<title>grouping_planner (1,131,175,381,385 samples, 11.99%)</title><rect x="906.8" y="501" width="141.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="909.77" y="511.5" >grouping_planner</text>
</g>
<g >
<title>set_cheapest (3,428,468,120 samples, 0.04%)</title><rect x="910.3" y="469" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="913.28" y="479.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,289,183,885 samples, 0.01%)</title><rect x="1016.7" y="277" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1019.66" y="287.5" ></text>
</g>
<g >
<title>log_heap_update (2,165,021,221 samples, 0.02%)</title><rect x="1157.7" y="757" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1160.67" y="767.5" ></text>
</g>
<g >
<title>generic_write_check_limits (1,074,424,052 samples, 0.01%)</title><rect x="501.2" y="357" width="0.1" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text x="504.20" y="367.5" ></text>
</g>
<g >
<title>StartTransaction (34,975,466,932 samples, 0.37%)</title><rect x="1074.4" y="549" width="4.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1077.37" y="559.5" ></text>
</g>
<g >
<title>pg_fdatasync (10,705,566,224 samples, 0.11%)</title><rect x="501.9" y="453" width="1.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="504.95" y="463.5" ></text>
</g>
<g >
<title>heap_compute_data_size (5,890,551,548 samples, 0.06%)</title><rect x="389.8" y="357" width="0.7" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="392.79" y="367.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,062,515,007 samples, 0.01%)</title><rect x="522.8" y="421" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="525.78" y="431.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,560,777,898 samples, 0.03%)</title><rect x="430.7" y="341" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="433.69" y="351.5" ></text>
</g>
<g >
<title>ExecAssignProjectionInfo (70,554,760,944 samples, 0.75%)</title><rect x="415.8" y="389" width="8.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="418.83" y="399.5" ></text>
</g>
<g >
<title>get_oprrest (4,778,657,341 samples, 0.05%)</title><rect x="1037.4" y="325" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1040.42" y="335.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (5,497,035,850 samples, 0.06%)</title><rect x="161.3" y="325" width="0.7" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="164.34" y="335.5" ></text>
</g>
<g >
<title>CheckExprStillValid (8,090,072,918 samples, 0.09%)</title><rect x="266.7" y="357" width="1.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="269.70" y="367.5" ></text>
</g>
<g >
<title>RelationGetIndexExpressions (1,503,567,060 samples, 0.02%)</title><rect x="930.9" y="405" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="933.86" y="415.5" ></text>
</g>
<g >
<title>__schedule (105,962,157,836 samples, 1.12%)</title><rect x="158.8" y="357" width="13.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="161.76" y="367.5" ></text>
</g>
<g >
<title>CheckCmdReplicaIdentity (7,148,074,270 samples, 0.08%)</title><rect x="411.5" y="437" width="0.9" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="414.53" y="447.5" ></text>
</g>
<g >
<title>check_functions_in_node (1,496,880,573 samples, 0.02%)</title><rect x="959.9" y="357" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="962.87" y="367.5" ></text>
</g>
<g >
<title>ReleaseCatCache (989,313,226 samples, 0.01%)</title><rect x="834.8" y="341" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="837.84" y="351.5" ></text>
</g>
<g >
<title>newNode (2,802,152,626 samples, 0.03%)</title><rect x="855.0" y="341" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="857.96" y="351.5" ></text>
</g>
<g >
<title>ExecEndNode (66,911,448,439 samples, 0.71%)</title><rect x="238.5" y="453" width="8.3" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="241.48" y="463.5" ></text>
</g>
<g >
<title>uint32_hash (1,233,349,446 samples, 0.01%)</title><rect x="441.7" y="357" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="444.75" y="367.5" ></text>
</g>
<g >
<title>add_rtes_to_flat_rtable (20,919,260,118 samples, 0.22%)</title><rect x="895.5" y="501" width="2.6" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="898.52" y="511.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (15,165,387,576 samples, 0.16%)</title><rect x="284.1" y="277" width="1.9" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="287.05" y="287.5" ></text>
</g>
<g >
<title>_copy_from_iter (1,569,809,700 samples, 0.02%)</title><rect x="193.6" y="389" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="196.64" y="399.5" ></text>
</g>
<g >
<title>is_publishable_relation (820,852,016 samples, 0.01%)</title><rect x="412.2" y="405" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="415.23" y="415.5" ></text>
</g>
<g >
<title>futex_wait_setup (11,912,207,490 samples, 0.13%)</title><rect x="481.9" y="325" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="484.92" y="335.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (4,099,158,758 samples, 0.04%)</title><rect x="231.9" y="501" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="234.88" y="511.5" ></text>
</g>
<g >
<title>_bt_checkkeys (4,418,702,744 samples, 0.05%)</title><rect x="122.6" y="261" width="0.6" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="125.63" y="271.5" ></text>
</g>
<g >
<title>IndexNext (24,158,740,785 samples, 0.26%)</title><rect x="279.2" y="357" width="3.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="282.19" y="367.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (5,289,593,129 samples, 0.06%)</title><rect x="83.5" y="197" width="0.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="86.50" y="207.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,092,375,782 samples, 0.01%)</title><rect x="885.6" y="357" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="888.58" y="367.5" ></text>
</g>
<g >
<title>pfree (3,357,301,308 samples, 0.04%)</title><rect x="252.1" y="469" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="255.12" y="479.5" ></text>
</g>
<g >
<title>makeColumnRef (15,181,812,941 samples, 0.16%)</title><rect x="1115.7" y="741" width="1.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1118.71" y="751.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (5,177,556,579 samples, 0.05%)</title><rect x="279.3" y="325" width="0.7" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="282.33" y="335.5" ></text>
</g>
<g >
<title>fdget_pos (1,217,229,414 samples, 0.01%)</title><rect x="932.7" y="261" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="935.71" y="271.5" ></text>
</g>
<g >
<title>prepare_task_switch (10,180,103,317 samples, 0.11%)</title><rect x="162.3" y="341" width="1.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="165.27" y="351.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (76,451,845,678 samples, 0.81%)</title><rect x="474.9" y="469" width="9.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="477.94" y="479.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,060,015,742 samples, 0.03%)</title><rect x="390.8" y="325" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="393.80" y="335.5" ></text>
</g>
<g >
<title>create_plan_recurse (91,728,301,447 samples, 0.97%)</title><rect x="882.5" y="501" width="11.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="885.49" y="511.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,181,595,429 samples, 0.01%)</title><rect x="398.7" y="357" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="401.66" y="367.5" ></text>
</g>
<g >
<title>murmurhash32 (1,011,866,332 samples, 0.01%)</title><rect x="423.7" y="261" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="426.73" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,302,190,712 samples, 0.01%)</title><rect x="456.3" y="517" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="459.27" y="527.5" ></text>
</g>
<g >
<title>SocketBackend (297,446,276,367 samples, 3.15%)</title><rect x="149.1" y="581" width="37.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="152.09" y="591.5" >Soc..</text>
</g>
<g >
<title>palloc0 (1,513,760,155 samples, 0.02%)</title><rect x="855.7" y="293" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="858.67" y="303.5" ></text>
</g>
<g >
<title>__sys_recvfrom (63,650,122,283 samples, 0.67%)</title><rect x="176.4" y="437" width="7.9" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="179.39" y="447.5" ></text>
</g>
<g >
<title>epoll_wait (1,744,030,300 samples, 0.02%)</title><rect x="174.8" y="485" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="177.77" y="495.5" ></text>
</g>
<g >
<title>PageGetItem (926,025,039 samples, 0.01%)</title><rect x="327.3" y="229" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="330.28" y="239.5" ></text>
</g>
<g >
<title>get_hash_value (3,106,909,423 samples, 0.03%)</title><rect x="518.8" y="437" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="521.76" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,045,476,124 samples, 0.01%)</title><rect x="958.0" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="961.01" y="415.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,430,590,009 samples, 0.02%)</title><rect x="49.3" y="757" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="52.34" y="767.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (901,278,717 samples, 0.01%)</title><rect x="430.1" y="373" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="433.09" y="383.5" ></text>
</g>
<g >
<title>__virt_addr_valid (955,256,778 samples, 0.01%)</title><rect x="184.2" y="277" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="187.18" y="287.5" ></text>
</g>
<g >
<title>native_write_msr (1,056,607,369 samples, 0.01%)</title><rect x="477.5" y="213" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="480.53" y="223.5" ></text>
</g>
<g >
<title>new_list (2,062,245,138 samples, 0.02%)</title><rect x="994.2" y="325" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="997.20" y="335.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,363,002,046 samples, 0.01%)</title><rect x="365.4" y="325" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="368.42" y="335.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,099,612,506 samples, 0.03%)</title><rect x="916.7" y="341" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="919.66" y="351.5" ></text>
</g>
<g >
<title>get_hash_value (3,710,333,973 samples, 0.04%)</title><rect x="95.0" y="165" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="97.99" y="175.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (11,096,201,232 samples, 0.12%)</title><rect x="829.6" y="405" width="1.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="832.59" y="415.5" ></text>
</g>
<g >
<title>palloc (1,382,127,983 samples, 0.01%)</title><rect x="975.7" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="978.69" y="415.5" ></text>
</g>
<g >
<title>palloc0 (2,003,209,274 samples, 0.02%)</title><rect x="847.9" y="389" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="850.88" y="399.5" ></text>
</g>
<g >
<title>hash_search (7,168,821,777 samples, 0.08%)</title><rect x="828.1" y="357" width="0.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="831.14" y="367.5" ></text>
</g>
<g >
<title>ExecUpdate (432,576,653,946 samples, 4.58%)</title><rect x="342.4" y="437" width="54.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="345.45" y="447.5" >ExecU..</text>
</g>
<g >
<title>palloc0 (1,958,117,809 samples, 0.02%)</title><rect x="934.2" y="357" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="937.17" y="367.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (3,710,526,870 samples, 0.04%)</title><rect x="824.5" y="309" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="827.49" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,980,296,158 samples, 0.02%)</title><rect x="1143.8" y="741" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1146.78" y="751.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,304,332,163 samples, 0.01%)</title><rect x="833.9" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="836.89" y="399.5" ></text>
</g>
<g >
<title>ReleaseCatCacheListWithOwner (1,093,348,912 samples, 0.01%)</title><rect x="962.3" y="357" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="965.33" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u64 (1,375,055,131 samples, 0.01%)</title><rect x="491.0" y="453" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="493.99" y="463.5" ></text>
</g>
<g >
<title>ExecModifyTable (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="485" width="1.7" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="125.45" y="495.5" ></text>
</g>
<g >
<title>xas_load (4,285,587,205 samples, 0.05%)</title><rect x="499.4" y="309" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="502.41" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,114,434,518 samples, 0.02%)</title><rect x="363.7" y="261" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="366.66" y="271.5" ></text>
</g>
<g >
<title>LWLockRelease (9,787,617,554 samples, 0.10%)</title><rect x="351.6" y="309" width="1.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="354.57" y="319.5" ></text>
</g>
<g >
<title>match_foreign_keys_to_quals (1,058,819,836 samples, 0.01%)</title><rect x="1043.0" y="469" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1045.99" y="479.5" ></text>
</g>
<g >
<title>ReserveXLogInsertLocation (4,333,978,973 samples, 0.05%)</title><rect x="507.5" y="453" width="0.5" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="510.46" y="463.5" ></text>
</g>
<g >
<title>MemoryContextCheck (4,043,390,878 samples, 0.04%)</title><rect x="77.2" y="757" width="0.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="80.25" y="767.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,557,198,707 samples, 0.02%)</title><rect x="391.0" y="309" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="393.98" y="319.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (2,187,083,772 samples, 0.02%)</title><rect x="504.4" y="437" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="507.37" y="447.5" ></text>
</g>
<g >
<title>makeIndexInfo (8,007,070,251 samples, 0.08%)</title><rect x="392.5" y="373" width="1.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="395.54" y="383.5" ></text>
</g>
<g >
<title>bms_copy (2,011,697,217 samples, 0.02%)</title><rect x="957.9" y="437" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="960.91" y="447.5" ></text>
</g>
<g >
<title>palloc (8,093,163,978 samples, 0.09%)</title><rect x="946.3" y="405" width="1.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="949.26" y="415.5" ></text>
</g>
<g >
<title>index_open (15,172,699,445 samples, 0.16%)</title><rect x="440.1" y="421" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="443.06" y="431.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,754,891,449 samples, 0.02%)</title><rect x="362.9" y="341" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="365.93" y="351.5" ></text>
</g>
<g >
<title>ExecProcNode (510,117,137,222 samples, 5.41%)</title><rect x="278.5" y="437" width="63.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="281.54" y="447.5" >ExecPro..</text>
</g>
<g >
<title>IncrTupleDescRefCount (1,944,917,604 samples, 0.02%)</title><rect x="438.8" y="373" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="441.82" y="383.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (1,099,617,154 samples, 0.01%)</title><rect x="290.1" y="293" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="293.12" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (979,412,122 samples, 0.01%)</title><rect x="899.6" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="902.56" y="431.5" ></text>
</g>
<g >
<title>index_fetch_heap (136,345,995,961 samples, 1.44%)</title><rect x="294.1" y="309" width="17.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="297.06" y="319.5" ></text>
</g>
<g >
<title>XLogInsertRecord (945,667,145 samples, 0.01%)</title><rect x="109.7" y="757" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="112.68" y="767.5" ></text>
</g>
<g >
<title>hash_search (6,079,245,216 samples, 0.06%)</title><rect x="444.3" y="341" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="447.32" y="351.5" ></text>
</g>
<g >
<title>set_sentinel (1,892,721,499 samples, 0.02%)</title><rect x="12.6" y="741" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="15.57" y="751.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (3,869,836,487 samples, 0.04%)</title><rect x="1052.6" y="405" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1055.62" y="415.5" ></text>
</g>
<g >
<title>colNameToVar (11,449,870,506 samples, 0.12%)</title><rect x="839.4" y="357" width="1.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="842.36" y="367.5" ></text>
</g>
<g >
<title>fetch_att (1,229,558,913 samples, 0.01%)</title><rect x="321.3" y="213" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="324.35" y="223.5" ></text>
</g>
<g >
<title>new_list (1,972,162,088 samples, 0.02%)</title><rect x="869.2" y="517" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="872.23" y="527.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,229,340,899 samples, 0.03%)</title><rect x="881.4" y="373" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="884.38" y="383.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (1,286,522,611 samples, 0.01%)</title><rect x="963.4" y="341" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="966.43" y="351.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (1,401,664,762 samples, 0.01%)</title><rect x="865.4" y="453" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="868.39" y="463.5" ></text>
</g>
<g >
<title>__futex_wait (58,999,884,472 samples, 0.63%)</title><rect x="476.0" y="341" width="7.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="479.04" y="351.5" ></text>
</g>
<g >
<title>PostgresMain (17,884,496,647 samples, 0.19%)</title><rect x="124.6" y="629" width="2.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="127.59" y="639.5" ></text>
</g>
<g >
<title>pq_sendint8 (1,219,918,298 samples, 0.01%)</title><rect x="187.9" y="565" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="190.95" y="575.5" ></text>
</g>
<g >
<title>ExecInitModifyTable (337,028,191,893 samples, 3.57%)</title><rect x="409.3" y="469" width="42.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="412.27" y="479.5" >Exe..</text>
</g>
<g >
<title>makeSimpleA_Expr (15,536,950,957 samples, 0.16%)</title><rect x="1119.1" y="741" width="2.0" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1122.11" y="751.5" ></text>
</g>
<g >
<title>transformExprRecurse (103,544,088,885 samples, 1.10%)</title><rect x="843.9" y="453" width="13.0" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="846.90" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,043,494,886 samples, 0.01%)</title><rect x="1078.2" y="485" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="1081.24" y="495.5" ></text>
</g>
<g >
<title>lcons (2,890,149,063 samples, 0.03%)</title><rect x="944.1" y="405" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="947.12" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (848,227,045 samples, 0.01%)</title><rect x="1057.7" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1060.69" y="367.5" ></text>
</g>
<g >
<title>get_typavgwidth (6,893,502,912 samples, 0.07%)</title><rect x="1042.1" y="373" width="0.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1045.07" y="383.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (1,781,141,046 samples, 0.02%)</title><rect x="169.0" y="245" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="172.05" y="255.5" ></text>
</g>
<g >
<title>gup_fast (6,036,401,898 samples, 0.06%)</title><rect x="482.7" y="277" width="0.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="485.66" y="287.5" ></text>
</g>
<g >
<title>bms_add_members (4,725,152,473 samples, 0.05%)</title><rect x="951.3" y="437" width="0.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="954.31" y="447.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (980,617,970 samples, 0.01%)</title><rect x="302.0" y="229" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="304.98" y="239.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,162,197,000 samples, 0.01%)</title><rect x="291.1" y="229" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="294.06" y="239.5" ></text>
</g>
<g >
<title>update_process_times (3,755,269,844 samples, 0.04%)</title><rect x="751.2" y="437" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="754.18" y="447.5" ></text>
</g>
<g >
<title>_bt_first (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="357" width="6.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="97.67" y="367.5" ></text>
</g>
<g >
<title>hash_search (7,205,185,158 samples, 0.08%)</title><rect x="358.6" y="277" width="0.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="361.59" y="287.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="341" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="127.24" y="351.5" ></text>
</g>
<g >
<title>AllocSetFree (1,006,899,954 samples, 0.01%)</title><rect x="1166.1" y="741" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1169.11" y="751.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (2,297,024,922 samples, 0.02%)</title><rect x="382.1" y="213" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="385.14" y="223.5" ></text>
</g>
<g >
<title>do_futex (966,647,202 samples, 0.01%)</title><rect x="381.8" y="181" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="384.78" y="191.5" ></text>
</g>
<g >
<title>check_heap_object (3,653,122,710 samples, 0.04%)</title><rect x="183.9" y="293" width="0.4" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="186.86" y="303.5" ></text>
</g>
<g >
<title>SPI_inside_nonatomic_context (886,798,561 samples, 0.01%)</title><rect x="92.6" y="757" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="95.56" y="767.5" ></text>
</g>
<g >
<title>RelationClose (1,147,599,230 samples, 0.01%)</title><rect x="1067.1" y="453" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="1070.11" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,947,735,967 samples, 0.02%)</title><rect x="362.3" y="309" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="365.33" y="319.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2,650,857,371 samples, 0.03%)</title><rect x="791.3" y="453" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="794.30" y="463.5" ></text>
</g>
<g >
<title>perf_ctx_disable (7,111,178,126 samples, 0.08%)</title><rect x="162.7" y="293" width="0.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="165.65" y="303.5" ></text>
</g>
<g >
<title>FastPathGrantRelationLock (6,330,614,017 samples, 0.07%)</title><rect x="818.8" y="373" width="0.8" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text x="821.80" y="383.5" ></text>
</g>
<g >
<title>PageXLogRecPtrGet (1,025,518,256 samples, 0.01%)</title><rect x="81.3" y="757" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="84.30" y="767.5" ></text>
</g>
<g >
<title>LockHeldByMe (12,790,686,889 samples, 0.14%)</title><rect x="444.1" y="373" width="1.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="447.13" y="383.5" ></text>
</g>
<g >
<title>tag_hash (2,337,860,981 samples, 0.02%)</title><rect x="942.0" y="309" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="945.05" y="319.5" ></text>
</g>
<g >
<title>makeTargetEntry (3,459,570,070 samples, 0.04%)</title><rect x="833.6" y="437" width="0.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="836.62" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (875,450,931 samples, 0.01%)</title><rect x="994.3" y="293" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="997.33" y="303.5" ></text>
</g>
<g >
<title>match_opclause_to_indexcol (20,008,164,790 samples, 0.21%)</title><rect x="1020.0" y="325" width="2.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1023.01" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (944,844,737 samples, 0.01%)</title><rect x="295.8" y="213" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="298.80" y="223.5" ></text>
</g>
<g >
<title>bms_add_member (2,616,544,328 samples, 0.03%)</title><rect x="980.5" y="453" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="983.52" y="463.5" ></text>
</g>
<g >
<title>IsBinaryTidClause (1,525,392,229 samples, 0.02%)</title><rect x="1026.0" y="357" width="0.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="1029.04" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (995,978,367 samples, 0.01%)</title><rect x="452.6" y="485" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="455.57" y="495.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,038,398,311 samples, 0.01%)</title><rect x="398.7" y="293" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="401.66" y="303.5" ></text>
</g>
<g >
<title>pull_var_clause_walker (16,372,556,319 samples, 0.17%)</title><rect x="954.9" y="437" width="2.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="957.93" y="447.5" ></text>
</g>
<g >
<title>palloc0 (2,325,738,820 samples, 0.02%)</title><rect x="934.6" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="937.60" y="367.5" ></text>
</g>
<g >
<title>MemoryContextTraverseNext (2,280,280,273 samples, 0.02%)</title><rect x="78.4" y="757" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="81.44" y="767.5" ></text>
</g>
<g >
<title>pick_next_task_fair (9,528,939,711 samples, 0.10%)</title><rect x="159.3" y="325" width="1.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="162.33" y="335.5" ></text>
</g>
<g >
<title>AllocSetCheck (27,747,280,927 samples, 0.29%)</title><rect x="257.7" y="405" width="3.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="260.72" y="415.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,387,123,297 samples, 0.01%)</title><rect x="1173.0" y="709" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1176.04" y="719.5" ></text>
</g>
<g >
<title>pfree (1,640,597,507 samples, 0.02%)</title><rect x="246.6" y="373" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="249.59" y="383.5" ></text>
</g>
<g >
<title>shmem_file_llseek (2,106,618,633 samples, 0.02%)</title><rect x="937.6" y="165" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="940.64" y="175.5" ></text>
</g>
<g >
<title>namestrcpy (858,840,059 samples, 0.01%)</title><rect x="1161.4" y="757" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1164.41" y="767.5" ></text>
</g>
<g >
<title>lappend (2,690,493,502 samples, 0.03%)</title><rect x="983.6" y="437" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="986.63" y="447.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (7,455,280,719 samples, 0.08%)</title><rect x="213.4" y="549" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="216.36" y="559.5" ></text>
</g>
<g >
<title>TransactionIdDidCommit (7,147,513,795 samples, 0.08%)</title><rect x="1147.0" y="693" width="0.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1149.97" y="703.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,410,329,829 samples, 0.01%)</title><rect x="381.8" y="277" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="384.76" y="287.5" ></text>
</g>
<g >
<title>fireASTriggers (1,106,571,322 samples, 0.01%)</title><rect x="396.7" y="437" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="399.67" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,683,873,573 samples, 0.02%)</title><rect x="1119.6" y="677" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1122.63" y="687.5" ></text>
</g>
<g >
<title>TupleDescInitEntryCollation (1,113,601,426 samples, 0.01%)</title><rect x="437.5" y="373" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="440.48" y="383.5" ></text>
</g>
<g >
<title>string_compare (882,154,198 samples, 0.01%)</title><rect x="226.7" y="533" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="229.74" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (6,577,674,580 samples, 0.07%)</title><rect x="1051.1" y="421" width="0.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1054.07" y="431.5" ></text>
</g>
<g >
<title>BackendMain (17,884,496,647 samples, 0.19%)</title><rect x="124.6" y="645" width="2.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="127.59" y="655.5" ></text>
</g>
<g >
<title>CopyXLogRecordToWAL (3,295,450,357 samples, 0.03%)</title><rect x="507.0" y="453" width="0.4" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="510.03" y="463.5" ></text>
</g>
<g >
<title>futex_wait (4,391,689,701 samples, 0.05%)</title><rect x="350.8" y="181" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="353.82" y="191.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (6,415,446,137 samples, 0.07%)</title><rect x="295.1" y="245" width="0.8" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="298.13" y="255.5" ></text>
</g>
<g >
<title>relation_close (2,645,714,073 samples, 0.03%)</title><rect x="865.3" y="501" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="868.25" y="511.5" ></text>
</g>
<g >
<title>fix_expr_common (1,362,768,323 samples, 0.01%)</title><rect x="903.0" y="373" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="905.97" y="383.5" ></text>
</g>
<g >
<title>tick_nohz_handler (3,972,867,047 samples, 0.04%)</title><rect x="751.2" y="453" width="0.5" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="754.16" y="463.5" ></text>
</g>
<g >
<title>LockHeldByMe (10,390,989,548 samples, 0.11%)</title><rect x="1067.4" y="437" width="1.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1070.37" y="447.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,254,494,249 samples, 0.01%)</title><rect x="412.1" y="405" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="415.07" y="415.5" ></text>
</g>
<g >
<title>SearchSysCache3 (7,063,094,595 samples, 0.07%)</title><rect x="1041.2" y="357" width="0.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1044.19" y="367.5" ></text>
</g>
<g >
<title>prune_freeze_plan (6,705,999,285 samples, 0.07%)</title><rect x="1148.2" y="725" width="0.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1151.19" y="735.5" ></text>
</g>
<g >
<title>AllocSetAlloc (866,881,167 samples, 0.01%)</title><rect x="972.7" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="975.67" y="351.5" ></text>
</g>
<g >
<title>palloc0 (1,669,073,304 samples, 0.02%)</title><rect x="927.6" y="405" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="930.64" y="415.5" ></text>
</g>
<g >
<title>ExecCloseIndices (16,422,274,179 samples, 0.17%)</title><rect x="235.9" y="469" width="2.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="238.89" y="479.5" ></text>
</g>
<g >
<title>new_list (2,614,249,085 samples, 0.03%)</title><rect x="964.1" y="357" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="967.07" y="367.5" ></text>
</g>
<g >
<title>AllocSetDelete (6,318,373,198 samples, 0.07%)</title><rect x="250.3" y="437" width="0.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="253.28" y="447.5" ></text>
</g>
<g >
<title>ServerLoop (17,104,611,586 samples, 0.18%)</title><rect x="122.5" y="709" width="2.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="125.45" y="719.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,085,701,648 samples, 0.01%)</title><rect x="978.5" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="981.49" y="431.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (877,669,091 samples, 0.01%)</title><rect x="1068.3" y="405" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1071.28" y="415.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,455,385,594 samples, 0.02%)</title><rect x="126.9" y="757" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="129.91" y="767.5" ></text>
</g>
<g >
<title>ReadBuffer_common (5,413,996,234 samples, 0.06%)</title><rect x="84.7" y="245" width="0.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="87.72" y="255.5" ></text>
</g>
<g >
<title>_bt_lockbuf (3,610,517,911 samples, 0.04%)</title><rect x="339.3" y="229" width="0.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="342.28" y="239.5" ></text>
</g>
<g >
<title>kmem_cache_free (8,120,220,080 samples, 0.09%)</title><rect x="181.4" y="373" width="1.0" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="184.40" y="383.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (1,229,399,354 samples, 0.01%)</title><rect x="89.3" y="757" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="92.30" y="767.5" ></text>
</g>
<g >
<title>PageGetHeapFreeSpace (4,218,283,942 samples, 0.04%)</title><rect x="310.5" y="245" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="313.52" y="255.5" ></text>
</g>
<g >
<title>wipe_mem (35,634,002,487 samples, 0.38%)</title><rect x="241.9" y="357" width="4.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="244.87" y="367.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,546,004,627 samples, 0.02%)</title><rect x="1013.6" y="229" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1016.58" y="239.5" ></text>
</g>
<g >
<title>pull_varnos (1,414,859,144 samples, 0.01%)</title><rect x="1036.2" y="229" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1039.19" y="239.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,464,790,840 samples, 0.04%)</title><rect x="1037.6" y="309" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1040.58" y="319.5" ></text>
</g>
<g >
<title>palloc0 (4,029,736,087 samples, 0.04%)</title><rect x="944.8" y="389" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="947.83" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,414,076,305 samples, 0.01%)</title><rect x="928.1" y="373" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="931.06" y="383.5" ></text>
</g>
<g >
<title>SimpleLruReadPage_ReadOnly (5,266,597,177 samples, 0.06%)</title><rect x="1147.2" y="645" width="0.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1150.19" y="655.5" ></text>
</g>
<g >
<title>canonicalize_qual (1,413,866,068 samples, 0.01%)</title><rect x="1055.3" y="469" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1058.27" y="479.5" ></text>
</g>
<g >
<title>socket_putmessage (1,915,779,420 samples, 0.02%)</title><rect x="1183.7" y="757" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1186.65" y="767.5" ></text>
</g>
<g >
<title>planner (1,584,787,541,025 samples, 16.79%)</title><rect x="873.9" y="549" width="198.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="876.90" y="559.5" >planner</text>
</g>
<g >
<title>CreateTemplateTupleDesc (2,137,958,966 samples, 0.02%)</title><rect x="434.2" y="373" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="437.16" y="383.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat (8,087,658,608 samples, 0.09%)</title><rect x="462.4" y="517" width="1.1" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="465.44" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,985,553,827 samples, 0.06%)</title><rect x="502.4" y="421" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="505.39" y="431.5" ></text>
</g>
<g >
<title>select_idle_sibling (21,454,358,423 samples, 0.23%)</title><rect x="200.1" y="293" width="2.7" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="203.13" y="303.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1,785,025,036 samples, 0.02%)</title><rect x="477.5" y="261" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="480.48" y="271.5" ></text>
</g>
<g >
<title>fdget (4,031,368,803 samples, 0.04%)</title><rect x="190.5" y="421" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="193.46" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,534,198,266 samples, 0.02%)</title><rect x="919.7" y="437" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="922.73" y="447.5" ></text>
</g>
<g >
<title>ReadBuffer (11,970,693,185 samples, 0.13%)</title><rect x="83.2" y="277" width="1.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="86.22" y="287.5" ></text>
</g>
<g >
<title>ExecInitNode (864,044,589 samples, 0.01%)</title><rect x="43.7" y="757" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="46.73" y="767.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,173,615,450 samples, 0.03%)</title><rect x="750.3" y="501" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="753.32" y="511.5" ></text>
</g>
<g >
<title>set_ps_display (6,364,146,273 samples, 0.07%)</title><rect x="1083.1" y="597" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1086.14" y="607.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (1,989,301,285 samples, 0.02%)</title><rect x="416.8" y="325" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="419.80" y="335.5" ></text>
</g>
<g >
<title>CleanUpLock (11,459,405,484 samples, 0.12%)</title><rect x="514.0" y="453" width="1.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="517.00" y="463.5" ></text>
</g>
<g >
<title>_bt_checkkeys (3,382,337,140 samples, 0.04%)</title><rect x="327.7" y="229" width="0.4" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="330.67" y="239.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (1,052,371,179 samples, 0.01%)</title><rect x="206.2" y="453" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="209.23" y="463.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (9,911,313,283 samples, 0.11%)</title><rect x="486.6" y="277" width="1.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="489.57" y="287.5" ></text>
</g>
<g >
<title>fastgetattr (46,782,264,731 samples, 0.50%)</title><rect x="1002.4" y="229" width="5.9" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="1005.45" y="239.5" ></text>
</g>
<g >
<title>bms_add_members (1,549,789,576 samples, 0.02%)</title><rect x="995.3" y="357" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="998.34" y="367.5" ></text>
</g>
<g >
<title>palloc0 (26,612,332,773 samples, 0.28%)</title><rect x="1048.7" y="485" width="3.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1051.69" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,040,552,818 samples, 0.01%)</title><rect x="393.9" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="396.87" y="335.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (7,178,497,424 samples, 0.08%)</title><rect x="435.7" y="325" width="0.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="438.71" y="335.5" ></text>
</g>
<g >
<title>ExecScan (477,391,824,181 samples, 5.06%)</title><rect x="282.5" y="389" width="59.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="285.48" y="399.5" >ExecScan</text>
</g>
<g >
<title>file_update_time (4,030,006,442 samples, 0.04%)</title><rect x="495.6" y="373" width="0.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="498.56" y="383.5" ></text>
</g>
<g >
<title>tag_hash (7,830,204,602 samples, 0.08%)</title><rect x="520.2" y="421" width="1.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="523.24" y="431.5" ></text>
</g>
<g >
<title>BufTableHashCode (2,805,703,809 samples, 0.03%)</title><rect x="298.0" y="133" width="0.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="301.05" y="143.5" ></text>
</g>
<g >
<title>list_insert_nth (2,154,113,756 samples, 0.02%)</title><rect x="908.6" y="469" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="911.59" y="479.5" ></text>
</g>
<g >
<title>pg_ceil_log2_64 (890,068,881 samples, 0.01%)</title><rect x="1064.4" y="405" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1067.44" y="415.5" ></text>
</g>
<g >
<title>bms_make_singleton (3,559,881,921 samples, 0.04%)</title><rect x="876.9" y="469" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="879.86" y="479.5" ></text>
</g>
<g >
<title>AtEOXact_Parallel (1,348,555,151 samples, 0.01%)</title><rect x="32.1" y="757" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="35.10" y="767.5" ></text>
</g>
<g >
<title>_bt_first (231,466,074,617 samples, 2.45%)</title><rect x="311.7" y="277" width="29.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="314.75" y="287.5" >_b..</text>
</g>
<g >
<title>GlobalVisUpdate (1,810,538,987 samples, 0.02%)</title><rect x="310.3" y="213" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="313.28" y="223.5" ></text>
</g>
<g >
<title>heap_freetuple (1,637,762,519 samples, 0.02%)</title><rect x="249.2" y="437" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="252.16" y="447.5" ></text>
</g>
<g >
<title>relation_open (26,333,369,033 samples, 0.28%)</title><rect x="827.7" y="421" width="3.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="830.74" y="431.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,274,198,684 samples, 0.02%)</title><rect x="750.4" y="469" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="753.42" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,662,596,813 samples, 0.03%)</title><rect x="290.9" y="245" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="293.93" y="255.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (44,718,528,546 samples, 0.47%)</title><rect x="59.0" y="757" width="5.6" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="62.02" y="767.5" ></text>
</g>
<g >
<title>DynaHashAlloc (1,125,296,997 samples, 0.01%)</title><rect x="40.9" y="757" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="43.87" y="767.5" ></text>
</g>
<g >
<title>new_list (1,785,405,187 samples, 0.02%)</title><rect x="448.0" y="421" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="451.05" y="431.5" ></text>
</g>
<g >
<title>SetupLockInTable (24,041,077,292 samples, 0.25%)</title><rect x="355.6" y="277" width="3.0" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="358.55" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (847,867,855 samples, 0.01%)</title><rect x="156.3" y="357" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="159.31" y="367.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (3,571,709,823 samples, 0.04%)</title><rect x="1061.0" y="453" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1063.96" y="463.5" ></text>
</g>
<g >
<title>pfree (1,876,258,578 samples, 0.02%)</title><rect x="222.0" y="549" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="224.95" y="559.5" ></text>
</g>
<g >
<title>pfree (1,651,427,061 samples, 0.02%)</title><rect x="453.3" y="517" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="456.27" y="527.5" ></text>
</g>
<g >
<title>exprType (2,344,835,468 samples, 0.02%)</title><rect x="846.1" y="405" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="849.05" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,716,915,043 samples, 0.04%)</title><rect x="211.8" y="533" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="214.77" y="543.5" ></text>
</g>
<g >
<title>ExecInitUpdateProjection (942,172,141 samples, 0.01%)</title><rect x="44.2" y="757" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="47.23" y="767.5" ></text>
</g>
<g >
<title>new_list (1,731,892,941 samples, 0.02%)</title><rect x="439.4" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="442.41" y="383.5" ></text>
</g>
<g >
<title>exprCollation (2,846,291,607 samples, 0.03%)</title><rect x="437.6" y="373" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="440.62" y="383.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,057,323,995 samples, 0.01%)</title><rect x="381.8" y="197" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="384.77" y="207.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,395,567,090 samples, 0.01%)</title><rect x="1061.7" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1064.70" y="431.5" ></text>
</g>
<g >
<title>hash_bytes (4,675,649,123 samples, 0.05%)</title><rect x="828.4" y="325" width="0.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="831.45" y="335.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (865,104,027 samples, 0.01%)</title><rect x="234.6" y="485" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="237.60" y="495.5" ></text>
</g>
<g >
<title>futex_wake (1,792,791,505 samples, 0.02%)</title><rect x="382.2" y="133" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="385.19" y="143.5" ></text>
</g>
<g >
<title>scanNSItemForColumn (17,363,673,564 samples, 0.18%)</title><rect x="854.5" y="373" width="2.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="857.51" y="383.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (4,418,702,744 samples, 0.05%)</title><rect x="122.6" y="293" width="0.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="125.63" y="303.5" ></text>
</g>
<g >
<title>ReleaseBuffer (3,822,853,876 samples, 0.04%)</title><rect x="324.8" y="213" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="327.76" y="223.5" ></text>
</g>
<g >
<title>do_futex (1,418,667,084 samples, 0.02%)</title><rect x="354.7" y="149" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="357.65" y="159.5" ></text>
</g>
<g >
<title>ExecIndexScan (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="421" width="1.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="127.59" y="431.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (8,596,297,276 samples, 0.09%)</title><rect x="455.9" y="565" width="1.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="458.90" y="575.5" ></text>
</g>
<g >
<title>list_nth (881,367,923 samples, 0.01%)</title><rect x="443.9" y="405" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="446.87" y="415.5" ></text>
</g>
<g >
<title>malloc (8,846,349,933 samples, 0.09%)</title><rect x="1050.8" y="437" width="1.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1053.79" y="447.5" ></text>
</g>
<g >
<title>transformExprRecurse (17,078,167,893 samples, 0.18%)</title><rect x="838.7" y="389" width="2.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="841.69" y="399.5" ></text>
</g>
<g >
<title>PostgresMain (7,628,621,015,091 samples, 80.84%)</title><rect x="130.1" y="613" width="953.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="133.08" y="623.5" >PostgresMain</text>
</g>
<g >
<title>_bt_getbuf (34,932,396,469 samples, 0.37%)</title><rect x="94.7" y="309" width="4.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="97.67" y="319.5" ></text>
</g>
<g >
<title>ExecClearTuple (2,263,285,559 samples, 0.02%)</title><rect x="266.3" y="405" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="269.30" y="415.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (1,554,113,178 samples, 0.02%)</title><rect x="800.1" y="549" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="803.13" y="559.5" ></text>
</g>
<g >
<title>palloc (1,525,643,583 samples, 0.02%)</title><rect x="976.9" y="389" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="979.95" y="399.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,124,384,969 samples, 0.01%)</title><rect x="466.7" y="485" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="469.66" y="495.5" ></text>
</g>
<g >
<title>pull_up_subqueries_recurse (5,132,368,255 samples, 0.05%)</title><rect x="1070.8" y="485" width="0.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1073.77" y="495.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,294,624,926 samples, 0.01%)</title><rect x="370.6" y="325" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="373.60" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (988,251,051 samples, 0.01%)</title><rect x="439.5" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="442.49" y="351.5" ></text>
</g>
<g >
<title>_bt_steppage (8,063,607,695 samples, 0.09%)</title><rect x="280.7" y="277" width="1.0" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="283.72" y="287.5" ></text>
</g>
<g >
<title>check_list_invariants (1,224,877,805 samples, 0.01%)</title><rect x="1153.6" y="741" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1156.56" y="751.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,015,071,787 samples, 0.01%)</title><rect x="834.5" y="373" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="837.46" y="383.5" ></text>
</g>
<g >
<title>tag_hash (3,477,888,837 samples, 0.04%)</title><rect x="359.1" y="261" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="362.06" y="271.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (5,638,149,810 samples, 0.06%)</title><rect x="99.5" y="165" width="0.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="102.46" y="175.5" ></text>
</g>
<g >
<title>_bt_compare (2,871,252,156 samples, 0.03%)</title><rect x="123.2" y="261" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="126.18" y="271.5" ></text>
</g>
<g >
<title>palloc (1,745,379,926 samples, 0.02%)</title><rect x="967.2" y="341" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="970.20" y="351.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,158,295,759 samples, 0.03%)</title><rect x="363.2" y="341" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="366.15" y="351.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (4,515,981,856 samples, 0.05%)</title><rect x="997.8" y="293" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1000.82" y="303.5" ></text>
</g>
<g >
<title>hash_bytes (2,321,714,376 samples, 0.02%)</title><rect x="942.9" y="309" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="945.86" y="319.5" ></text>
</g>
<g >
<title>palloc0 (2,795,300,033 samples, 0.03%)</title><rect x="210.5" y="549" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="213.47" y="559.5" ></text>
</g>
<g >
<title>pull_varnos_walker (1,051,531,123 samples, 0.01%)</title><rect x="1036.2" y="197" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1039.24" y="207.5" ></text>
</g>
<g >
<title>ExecScanFetch (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="389" width="1.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="125.45" y="399.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (1,201,026,492 samples, 0.01%)</title><rect x="31.3" y="757" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="34.25" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4,313,585,585 samples, 0.05%)</title><rect x="1023.1" y="325" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1026.14" y="335.5" ></text>
</g>
<g >
<title>transformFromClause (1,608,288,698 samples, 0.02%)</title><rect x="831.2" y="485" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="834.16" y="495.5" ></text>
</g>
<g >
<title>btgettuple (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="373" width="6.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="97.67" y="383.5" ></text>
</g>
<g >
<title>int4hashfast (832,039,210 samples, 0.01%)</title><rect x="103.3" y="389" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="106.29" y="399.5" ></text>
</g>
<g >
<title>makeConst (2,652,947,007 samples, 0.03%)</title><rect x="838.9" y="357" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="841.91" y="367.5" ></text>
</g>
<g >
<title>create_scan_plan (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="485" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="88.40" y="495.5" ></text>
</g>
<g >
<title>hash_search (3,241,538,361 samples, 0.03%)</title><rect x="938.7" y="389" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="941.71" y="399.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (5,891,813,543 samples, 0.06%)</title><rect x="290.5" y="277" width="0.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="293.55" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (935,747,975 samples, 0.01%)</title><rect x="816.1" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="819.12" y="399.5" ></text>
</g>
<g >
<title>rewriteTargetListIU (1,002,914,448 samples, 0.01%)</title><rect x="1176.4" y="757" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1179.39" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,079,025,424 samples, 0.01%)</title><rect x="354.4" y="181" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="357.39" y="191.5" ></text>
</g>
<g >
<title>lappend (2,862,682,519 samples, 0.03%)</title><rect x="858.4" y="517" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="861.40" y="527.5" ></text>
</g>
<g >
<title>pfree (1,139,364,269 samples, 0.01%)</title><rect x="954.7" y="421" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="957.65" y="431.5" ></text>
</g>
<g >
<title>palloc0 (2,280,289,864 samples, 0.02%)</title><rect x="1056.2" y="421" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1059.18" y="431.5" ></text>
</g>
<g >
<title>SetHintBits (9,710,894,851 samples, 0.10%)</title><rect x="305.4" y="213" width="1.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="308.35" y="223.5" ></text>
</g>
<g >
<title>get_hash_value (4,179,986,745 samples, 0.04%)</title><rect x="820.2" y="357" width="0.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="823.18" y="367.5" ></text>
</g>
<g >
<title>transformTopLevelStmt (451,473,314,561 samples, 4.78%)</title><rect x="800.4" y="549" width="56.5" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="803.42" y="559.5" >trans..</text>
</g>
<g >
<title>eval_const_expressions_mutator (975,983,726 samples, 0.01%)</title><rect x="126.7" y="469" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="129.71" y="479.5" ></text>
</g>
<g >
<title>task_tick_fair (923,816,712 samples, 0.01%)</title><rect x="791.5" y="389" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="794.47" y="399.5" ></text>
</g>
<g >
<title>compute_new_xmax_infomask (2,057,139,801 samples, 0.02%)</title><rect x="376.4" y="357" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="379.42" y="367.5" ></text>
</g>
<g >
<title>disable_statement_timeout (1,524,813,162 samples, 0.02%)</title><rect x="797.9" y="565" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="800.90" y="575.5" ></text>
</g>
<g >
<title>palloc0 (4,706,744,388 samples, 0.05%)</title><rect x="1164.7" y="757" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1167.73" y="767.5" ></text>
</g>
<g >
<title>BackendStartup (24,212,439,197 samples, 0.26%)</title><rect x="82.6" y="725" width="3.0" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="85.62" y="735.5" ></text>
</g>
<g >
<title>free_parsestate (6,172,061,280 samples, 0.07%)</title><rect x="798.7" y="549" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="801.66" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (3,224,881,303 samples, 0.03%)</title><rect x="1133.1" y="757" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1136.13" y="767.5" ></text>
</g>
<g >
<title>preprocess_function_rtes (1,621,300,606 samples, 0.02%)</title><rect x="1054.8" y="501" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1057.85" y="511.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,189,625,120 samples, 0.01%)</title><rect x="711.9" y="517" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="714.86" y="527.5" ></text>
</g>
<g >
<title>exec_simple_query (6,965,474,342,363 samples, 73.81%)</title><rect x="208.0" y="597" width="871.0" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="211.02" y="607.5" >exec_simple_query</text>
</g>
<g >
<title>ksys_lseek (5,625,399,365 samples, 0.06%)</title><rect x="937.2" y="181" width="0.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="940.20" y="191.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,549,544,928 samples, 0.03%)</title><rect x="299.5" y="117" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="302.47" y="127.5" ></text>
</g>
<g >
<title>do_futex (982,400,339 samples, 0.01%)</title><rect x="398.7" y="261" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="401.67" y="271.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (839,893,324 samples, 0.01%)</title><rect x="872.1" y="469" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="875.05" y="479.5" ></text>
</g>
<g >
<title>LockTagHashCode (3,397,289,990 samples, 0.04%)</title><rect x="518.7" y="453" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="521.72" y="463.5" ></text>
</g>
<g >
<title>lappend (2,130,641,366 samples, 0.02%)</title><rect x="1054.6" y="437" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1057.57" y="447.5" ></text>
</g>
<g >
<title>PinBufferForBlock (4,349,270,893 samples, 0.05%)</title><rect x="84.2" y="197" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="87.17" y="207.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,234,962,817 samples, 0.01%)</title><rect x="162.5" y="293" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="165.50" y="303.5" ></text>
</g>
<g >
<title>new_list (2,083,360,679 samples, 0.02%)</title><rect x="976.9" y="405" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="979.89" y="415.5" ></text>
</g>
<g >
<title>BufTableLookup (7,323,954,163 samples, 0.08%)</title><rect x="298.4" y="133" width="0.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="301.41" y="143.5" ></text>
</g>
<g >
<title>makeString (3,664,182,240 samples, 0.04%)</title><rect x="1119.9" y="725" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1122.93" y="735.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (858,186,334 samples, 0.01%)</title><rect x="56.0" y="757" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="58.96" y="767.5" ></text>
</g>
<g >
<title>palloc (1,317,221,226 samples, 0.01%)</title><rect x="433.0" y="373" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="436.01" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,082,265,838 samples, 0.01%)</title><rect x="797.7" y="549" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="800.69" y="559.5" ></text>
</g>
<g >
<title>list_free_private (1,486,022,785 samples, 0.02%)</title><rect x="395.9" y="373" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="398.93" y="383.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (2,314,758,137 samples, 0.02%)</title><rect x="1185.0" y="693" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1187.99" y="703.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (3,467,470,174 samples, 0.04%)</title><rect x="267.2" y="309" width="0.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="270.25" y="319.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,120,197,275 samples, 0.04%)</title><rect x="1047.7" y="389" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1050.67" y="399.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (1,364,194,969 samples, 0.01%)</title><rect x="179.9" y="309" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="182.88" y="319.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (3,515,407,154 samples, 0.04%)</title><rect x="339.7" y="229" width="0.5" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="342.73" y="239.5" ></text>
</g>
<g >
<title>newNode (5,595,662,651 samples, 0.06%)</title><rect x="952.9" y="405" width="0.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="955.92" y="415.5" ></text>
</g>
<g >
<title>list_concat (3,008,503,159 samples, 0.03%)</title><rect x="977.9" y="437" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="980.86" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_read_membarrier_u64_impl (1,289,339,486 samples, 0.01%)</title><rect x="491.2" y="453" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="494.23" y="463.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (1,065,104,113 samples, 0.01%)</title><rect x="480.6" y="181" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="483.58" y="191.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,406,971,742 samples, 0.03%)</title><rect x="1120.7" y="693" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1123.72" y="703.5" ></text>
</g>
<g >
<title>set_plain_rel_size (803,901,079 samples, 0.01%)</title><rect x="126.6" y="437" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="129.56" y="447.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,543,288,860 samples, 0.02%)</title><rect x="358.4" y="245" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="361.36" y="255.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (1,251,170,992 samples, 0.01%)</title><rect x="503.4" y="421" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="506.40" y="431.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (915,859,628 samples, 0.01%)</title><rect x="1080.1" y="565" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1083.14" y="575.5" ></text>
</g>
<g >
<title>setNamespaceLateralState (818,083,144 samples, 0.01%)</title><rect x="1181.0" y="757" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1183.98" y="767.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,228,633,656 samples, 0.03%)</title><rect x="750.3" y="517" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="753.31" y="527.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (1,264,879,297 samples, 0.01%)</title><rect x="215.5" y="549" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="218.55" y="559.5" ></text>
</g>
<g >
<title>GetSnapshotData (27,502,169,760 samples, 0.29%)</title><rect x="229.3" y="533" width="3.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="232.29" y="543.5" ></text>
</g>
<g >
<title>ExecOpenIndices (852,353,406 samples, 0.01%)</title><rect x="44.7" y="757" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="47.74" y="767.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (903,786,370 samples, 0.01%)</title><rect x="77.1" y="757" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="80.10" y="767.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (1,977,147,596 samples, 0.02%)</title><rect x="470.3" y="405" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="473.31" y="415.5" ></text>
</g>
<g >
<title>AllocSetFree (1,237,661,670 samples, 0.01%)</title><rect x="232.9" y="501" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="235.94" y="511.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,732,564,165 samples, 0.02%)</title><rect x="114.1" y="741" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="117.09" y="751.5" ></text>
</g>
<g >
<title>pgstat_report_stat (1,118,400,627 samples, 0.01%)</title><rect x="1171.4" y="757" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1174.39" y="767.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,302,054,821 samples, 0.01%)</title><rect x="1030.8" y="261" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1033.77" y="271.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (2,672,744,073 samples, 0.03%)</title><rect x="1168.8" y="757" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1171.79" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,376,352,590 samples, 0.01%)</title><rect x="967.2" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="970.23" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (959,126,077 samples, 0.01%)</title><rect x="832.7" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="835.67" y="431.5" ></text>
</g>
<g >
<title>hash_bytes (2,410,732,083 samples, 0.03%)</title><rect x="355.0" y="229" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="358.03" y="239.5" ></text>
</g>
<g >
<title>btgettuple (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="309" width="1.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="127.59" y="319.5" ></text>
</g>
<g >
<title>XLogCheckBufferNeedsBackup (1,136,967,437 samples, 0.01%)</title><rect x="109.3" y="757" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="112.30" y="767.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="501" width="6.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="97.67" y="511.5" ></text>
</g>
<g >
<title>slot_getattr (986,363,061 samples, 0.01%)</title><rect x="265.9" y="421" width="0.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="268.87" y="431.5" ></text>
</g>
<g >
<title>__sysvec_thermal (1,038,775,425 samples, 0.01%)</title><rect x="791.7" y="485" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="794.69" y="495.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,075,132,847 samples, 0.01%)</title><rect x="296.8" y="197" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="299.84" y="207.5" ></text>
</g>
<g >
<title>hash_search (4,801,520,088 samples, 0.05%)</title><rect x="942.5" y="341" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="945.55" y="351.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (122,164,796,779 samples, 1.29%)</title><rect x="510.7" y="517" width="15.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="513.66" y="527.5" ></text>
</g>
<g >
<title>__wake_up_common (62,188,788,410 samples, 0.66%)</title><rect x="197.9" y="373" width="7.8" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="200.91" y="383.5" ></text>
</g>
<g >
<title>ReadBufferExtended (34,932,396,469 samples, 0.37%)</title><rect x="94.7" y="277" width="4.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="97.67" y="287.5" ></text>
</g>
<g >
<title>llseek@GLIBC_2.2.5 (7,232,093,334 samples, 0.08%)</title><rect x="932.3" y="325" width="0.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="935.26" y="335.5" ></text>
</g>
<g >
<title>StartReadBuffer (34,932,396,469 samples, 0.37%)</title><rect x="94.7" y="245" width="4.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="97.67" y="255.5" ></text>
</g>
<g >
<title>ExecIndexScan (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="485" width="6.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="97.67" y="495.5" ></text>
</g>
<g >
<title>enqueue_task (1,868,377,183 samples, 0.02%)</title><rect x="199.2" y="325" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="202.21" y="335.5" ></text>
</g>
<g >
<title>get_hash_value (2,963,968,979 samples, 0.03%)</title><rect x="355.0" y="261" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="357.96" y="271.5" ></text>
</g>
<g >
<title>CreateExprContextInternal (10,053,786,576 samples, 0.11%)</title><rect x="414.5" y="389" width="1.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="417.45" y="399.5" ></text>
</g>
<g >
<title>new_head_cell (822,235,130 samples, 0.01%)</title><rect x="269.8" y="357" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="272.80" y="367.5" ></text>
</g>
<g >
<title>tag_hash (2,761,332,980 samples, 0.03%)</title><rect x="399.8" y="245" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="402.78" y="255.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3,468,236,666 samples, 0.04%)</title><rect x="946.7" y="373" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="949.70" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (966,912,521 samples, 0.01%)</title><rect x="415.6" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="418.59" y="351.5" ></text>
</g>
<g >
<title>dlist_is_empty (3,339,654,089 samples, 0.04%)</title><rect x="1132.1" y="757" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1135.10" y="767.5" ></text>
</g>
<g >
<title>palloc (3,894,360,035 samples, 0.04%)</title><rect x="872.4" y="533" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="875.37" y="543.5" ></text>
</g>
<g >
<title>VARDATA (821,638,922 samples, 0.01%)</title><rect x="108.4" y="757" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="111.43" y="767.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,113,826,450 samples, 0.01%)</title><rect x="830.8" y="357" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="833.84" y="367.5" ></text>
</g>
<g >
<title>palloc (1,554,090,025 samples, 0.02%)</title><rect x="956.7" y="277" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="959.65" y="287.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,249,424,932 samples, 0.01%)</title><rect x="1030.8" y="245" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1033.78" y="255.5" ></text>
</g>
<g >
<title>make_one_rel (1,211,603,195 samples, 0.01%)</title><rect x="1159.1" y="757" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1162.14" y="767.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (1,534,045,069 samples, 0.02%)</title><rect x="31.5" y="757" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="34.46" y="767.5" ></text>
</g>
<g >
<title>pg_plan_query (2,495,599,539 samples, 0.03%)</title><rect x="126.5" y="581" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="129.52" y="591.5" ></text>
</g>
<g >
<title>PinBuffer (8,704,603,201 samples, 0.09%)</title><rect x="96.9" y="181" width="1.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="99.91" y="191.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="517" width="3.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="104.45" y="527.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (956,538,273 samples, 0.01%)</title><rect x="963.3" y="341" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="966.31" y="351.5" ></text>
</g>
<g >
<title>palloc0 (2,023,711,926 samples, 0.02%)</title><rect x="448.3" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="451.27" y="447.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (1,878,371,228 samples, 0.02%)</title><rect x="234.1" y="469" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="237.10" y="479.5" ></text>
</g>
<g >
<title>ExecScanFetch (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="421" width="2.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="85.62" y="431.5" ></text>
</g>
<g >
<title>[[vdso]] (1,517,424,091 samples, 0.02%)</title><rect x="468.9" y="469" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="471.92" y="479.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,022,981,844 samples, 0.01%)</title><rect x="834.8" y="357" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="837.84" y="367.5" ></text>
</g>
<g >
<title>int4eqfast (804,740,842 samples, 0.01%)</title><rect x="37.7" y="741" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="40.66" y="751.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,262,678,273 samples, 0.02%)</title><rect x="974.8" y="293" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="977.78" y="303.5" ></text>
</g>
<g >
<title>hash_search (3,373,068,048 samples, 0.04%)</title><rect x="1013.4" y="261" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1016.36" y="271.5" ></text>
</g>
<g >
<title>mutex_unlock (1,414,277,745 samples, 0.01%)</title><rect x="158.0" y="373" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="161.01" y="383.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (1,002,586,792 samples, 0.01%)</title><rect x="342.3" y="437" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="345.32" y="447.5" ></text>
</g>
<g >
<title>lappend (1,699,899,131 samples, 0.02%)</title><rect x="896.4" y="453" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="899.38" y="463.5" ></text>
</g>
<g >
<title>find_oper_cache_entry (19,071,631,479 samples, 0.20%)</title><rect x="849.0" y="389" width="2.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="852.00" y="399.5" ></text>
</g>
<g >
<title>pick_task_fair (1,561,558,570 samples, 0.02%)</title><rect x="476.7" y="245" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="479.73" y="255.5" ></text>
</g>
<g >
<title>new_list (1,650,770,512 samples, 0.02%)</title><rect x="1054.6" y="421" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1057.63" y="431.5" ></text>
</g>
<g >
<title>hash_search (3,365,147,629 samples, 0.04%)</title><rect x="862.8" y="469" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="865.81" y="479.5" ></text>
</g>
<g >
<title>sched_balance_softirq (1,277,417,898 samples, 0.01%)</title><rect x="750.9" y="469" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="753.91" y="479.5" ></text>
</g>
<g >
<title>sentinel_ok (318,324,775,795 samples, 3.37%)</title><rect x="752.0" y="533" width="39.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="755.02" y="543.5" >sen..</text>
</g>
<g >
<title>BTreeTupleGetHeapTID (1,899,442,881 samples, 0.02%)</title><rect x="333.1" y="197" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="336.14" y="207.5" ></text>
</g>
<g >
<title>ExecScan (27,732,329,336 samples, 0.29%)</title><rect x="278.8" y="405" width="3.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="281.85" y="415.5" ></text>
</g>
<g >
<title>tag_hash (2,575,012,083 samples, 0.03%)</title><rect x="394.7" y="309" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="397.69" y="319.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="373" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="88.40" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (815,075,979 samples, 0.01%)</title><rect x="931.5" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="934.47" y="351.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (13,567,951,734 samples, 0.14%)</title><rect x="827.9" y="405" width="1.7" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="830.89" y="415.5" ></text>
</g>
<g >
<title>_bt_compare (55,555,975,992 samples, 0.59%)</title><rect x="314.6" y="245" width="6.9" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="317.55" y="255.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,933,992,478 samples, 0.03%)</title><rect x="943.6" y="341" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="946.55" y="351.5" ></text>
</g>
<g >
<title>PageGetItemId (5,732,532,790 samples, 0.06%)</title><rect x="373.2" y="325" width="0.7" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="376.16" y="335.5" ></text>
</g>
<g >
<title>UnlockRelationId (11,222,981,045 samples, 0.12%)</title><rect x="236.3" y="437" width="1.5" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="239.35" y="447.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (848,207,855 samples, 0.01%)</title><rect x="825.8" y="261" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="828.85" y="271.5" ></text>
</g>
<g >
<title>heap_page_prune_execute (2,161,795,325 samples, 0.02%)</title><rect x="1145.4" y="741" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1148.39" y="751.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,644,656,066 samples, 0.02%)</title><rect x="352.6" y="261" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="355.58" y="271.5" ></text>
</g>
<g >
<title>list_nth_cell (870,447,626 samples, 0.01%)</title><rect x="1020.9" y="309" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1023.93" y="319.5" ></text>
</g>
<g >
<title>PageGetItem (2,722,550,957 samples, 0.03%)</title><rect x="318.9" y="213" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="321.94" y="223.5" ></text>
</g>
<g >
<title>VARSIZE_SHORT (945,444,494 samples, 0.01%)</title><rect x="108.5" y="757" width="0.2" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text x="111.55" y="767.5" ></text>
</g>
<g >
<title>palloc (1,538,721,179 samples, 0.02%)</title><rect x="430.3" y="357" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="433.25" y="367.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,171,761,604 samples, 0.01%)</title><rect x="946.9" y="357" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="949.92" y="367.5" ></text>
</g>
<g >
<title>add_path (12,463,142,138 samples, 0.13%)</title><rect x="993.1" y="373" width="1.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="996.08" y="383.5" ></text>
</g>
<g >
<title>finalize_primnode (1,861,682,779 samples, 0.02%)</title><rect x="881.6" y="357" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="884.55" y="367.5" ></text>
</g>
<g >
<title>selinux_socket_getpeersec_dgram (3,125,824,042 samples, 0.03%)</title><rect x="192.5" y="389" width="0.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="195.46" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (805,108,812 samples, 0.01%)</title><rect x="897.8" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="900.75" y="431.5" ></text>
</g>
<g >
<title>RelationGetIndexExpressions (1,254,054,701 samples, 0.01%)</title><rect x="392.2" y="373" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="395.23" y="383.5" ></text>
</g>
<g >
<title>table_block_relation_estimate_size (1,043,067,790 samples, 0.01%)</title><rect x="1185.4" y="757" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="1188.43" y="767.5" ></text>
</g>
<g >
<title>makeTargetEntry (3,096,038,524 samples, 0.03%)</title><rect x="934.0" y="389" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="937.03" y="399.5" ></text>
</g>
<g >
<title>LWLockRelease (1,212,317,728 samples, 0.01%)</title><rect x="367.9" y="245" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="370.92" y="255.5" ></text>
</g>
<g >
<title>FunctionCall4Coll (803,901,079 samples, 0.01%)</title><rect x="126.6" y="325" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="129.56" y="335.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (953,009,696 samples, 0.01%)</title><rect x="162.1" y="293" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="165.07" y="303.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (1,552,085,421 samples, 0.02%)</title><rect x="273.3" y="373" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="276.35" y="383.5" ></text>
</g>
<g >
<title>ExecIndexScan (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="437" width="1.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="125.45" y="447.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,594,781,025 samples, 0.04%)</title><rect x="973.5" y="373" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="976.53" y="383.5" ></text>
</g>
<g >
<title>palloc0 (3,406,202,238 samples, 0.04%)</title><rect x="1118.4" y="709" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1121.39" y="719.5" ></text>
</g>
<g >
<title>expr_setup_walker (4,544,951,952 samples, 0.05%)</title><rect x="430.4" y="389" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="433.44" y="399.5" ></text>
</g>
<g >
<title>do_futex (1,079,025,424 samples, 0.01%)</title><rect x="354.4" y="165" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="357.39" y="175.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,099,441,429 samples, 0.01%)</title><rect x="1071.8" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1074.76" y="447.5" ></text>
</g>
<g >
<title>palloc0 (7,746,966,551 samples, 0.08%)</title><rect x="450.3" y="437" width="0.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="453.26" y="447.5" ></text>
</g>
<g >
<title>bms_is_valid_set (1,755,080,258 samples, 0.02%)</title><rect x="369.4" y="325" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="372.44" y="335.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (167,080,284,196 samples, 1.77%)</title><rect x="674.6" y="533" width="20.8" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="677.56" y="543.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,193,615,800 samples, 0.01%)</title><rect x="293.2" y="261" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="296.20" y="271.5" ></text>
</g>
<g >
<title>BufferGetBlock (878,085,993 samples, 0.01%)</title><rect x="327.1" y="213" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="330.12" y="223.5" ></text>
</g>
<g >
<title>_bt_num_array_keys (2,768,473,694 samples, 0.03%)</title><rect x="82.6" y="293" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="85.62" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,134,240,196 samples, 0.01%)</title><rect x="354.4" y="197" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="357.39" y="207.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (5,772,297,600 samples, 0.06%)</title><rect x="445.7" y="389" width="0.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="448.73" y="399.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (869,290,058 samples, 0.01%)</title><rect x="460.4" y="437" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="463.40" y="447.5" ></text>
</g>
<g >
<title>palloc (1,233,028,346 samples, 0.01%)</title><rect x="931.4" y="357" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="934.43" y="367.5" ></text>
</g>
<g >
<title>newNode (2,056,792,506 samples, 0.02%)</title><rect x="808.6" y="469" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="811.58" y="479.5" ></text>
</g>
<g >
<title>BufferGetLSNAtomic (11,190,923,912 samples, 0.12%)</title><rect x="323.3" y="229" width="1.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="326.30" y="239.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,340,154,164 samples, 0.01%)</title><rect x="1147.4" y="613" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1150.39" y="623.5" ></text>
</g>
<g >
<title>newNode (3,073,842,936 samples, 0.03%)</title><rect x="991.3" y="373" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="994.30" y="383.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,503,530,958 samples, 0.02%)</title><rect x="1083.3" y="565" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1086.34" y="575.5" ></text>
</g>
<g >
<title>ServerLoop (4,239,417,954 samples, 0.04%)</title><rect x="1157.9" y="725" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1160.94" y="735.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,119,024,904 samples, 0.01%)</title><rect x="84.8" y="165" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="87.76" y="175.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,239,181,810 samples, 0.01%)</title><rect x="975.7" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="978.70" y="399.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (7,013,960,192 samples, 0.07%)</title><rect x="1022.9" y="373" width="0.9" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1025.91" y="383.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (28,547,043,109 samples, 0.30%)</title><rect x="229.2" y="549" width="3.6" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="232.20" y="559.5" ></text>
</g>
<g >
<title>index_getattr (2,380,285,561 samples, 0.03%)</title><rect x="122.9" y="229" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="125.85" y="239.5" ></text>
</g>
<g >
<title>clause_selectivity_ext (840,174,730 samples, 0.01%)</title><rect x="1127.8" y="757" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1130.81" y="767.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (1,355,094,163 samples, 0.01%)</title><rect x="368.4" y="245" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="371.44" y="255.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (2,118,089,870 samples, 0.02%)</title><rect x="388.0" y="293" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="391.03" y="303.5" ></text>
</g>
<g >
<title>FunctionCall4Coll (53,870,020,065 samples, 0.57%)</title><rect x="1030.2" y="309" width="6.8" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1033.22" y="319.5" ></text>
</g>
<g >
<title>MarkBufferDirty (7,652,953,874 samples, 0.08%)</title><rect x="364.0" y="357" width="1.0" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="367.01" y="367.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,508,460,386 samples, 0.02%)</title><rect x="470.9" y="437" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="473.87" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,342,893,524 samples, 0.01%)</title><rect x="815.8" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="818.84" y="415.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (3,306,067,574 samples, 0.04%)</title><rect x="363.6" y="325" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="366.59" y="335.5" ></text>
</g>
<g >
<title>avc_has_perm_noaudit (1,773,331,032 samples, 0.02%)</title><rect x="191.4" y="373" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="194.44" y="383.5" ></text>
</g>
<g >
<title>unix_maybe_add_creds (2,197,643,037 samples, 0.02%)</title><rect x="205.8" y="405" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="208.78" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,088,317,518 samples, 0.01%)</title><rect x="430.3" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="433.30" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,971,005,738 samples, 0.02%)</title><rect x="1077.1" y="485" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1080.10" y="495.5" ></text>
</g>
<g >
<title>gup_fast (1,111,388,787 samples, 0.01%)</title><rect x="352.1" y="117" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="355.15" y="127.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (4,102,549,791 samples, 0.04%)</title><rect x="381.2" y="277" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="384.22" y="287.5" ></text>
</g>
<g >
<title>set_plain_rel_pathlist (1,116,431,889 samples, 0.01%)</title><rect x="1181.6" y="757" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1184.64" y="767.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (9,483,328,113 samples, 0.10%)</title><rect x="351.6" y="293" width="1.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="354.61" y="303.5" ></text>
</g>
<g >
<title>verify_compact_attribute (10,120,526,468 samples, 0.11%)</title><rect x="320.1" y="197" width="1.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="323.07" y="207.5" ></text>
</g>
<g >
<title>RelationGetNumberOfBlocksInFork (1,145,365,047 samples, 0.01%)</title><rect x="89.0" y="757" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="91.99" y="767.5" ></text>
</g>
<g >
<title>BufferGetPage (1,467,145,617 samples, 0.02%)</title><rect x="347.7" y="357" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="350.73" y="367.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (4,809,556,842 samples, 0.05%)</title><rect x="968.2" y="357" width="0.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="971.24" y="367.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,830,424,723 samples, 0.02%)</title><rect x="437.3" y="341" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="440.25" y="351.5" ></text>
</g>
<g >
<title>__strncmp_avx2 (1,559,496,350 samples, 0.02%)</title><rect x="824.7" y="277" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="827.73" y="287.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (1,506,740,603 samples, 0.02%)</title><rect x="86.7" y="757" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="89.65" y="767.5" ></text>
</g>
<g >
<title>WALInsertLockAcquire (3,473,893,716 samples, 0.04%)</title><rect x="508.0" y="453" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="511.00" y="463.5" ></text>
</g>
<g >
<title>makeString (4,124,113,156 samples, 0.04%)</title><rect x="814.2" y="437" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="817.23" y="447.5" ></text>
</g>
<g >
<title>ExecProcNode (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="549" width="2.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="85.62" y="559.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (1,860,822,190 samples, 0.02%)</title><rect x="310.0" y="229" width="0.3" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="313.02" y="239.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,172,775,283 samples, 0.01%)</title><rect x="363.4" y="293" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="366.39" y="303.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (9,144,438,755 samples, 0.10%)</title><rect x="11.7" y="757" width="1.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="14.66" y="767.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (3,600,778,051 samples, 0.04%)</title><rect x="477.8" y="261" width="0.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="480.83" y="271.5" ></text>
</g>
<g >
<title>tag_hash (2,931,740,284 samples, 0.03%)</title><rect x="821.6" y="357" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="824.63" y="367.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableXid (4,249,457,617 samples, 0.05%)</title><rect x="310.0" y="245" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="312.97" y="255.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,246,889,054 samples, 0.01%)</title><rect x="123.9" y="213" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="126.93" y="223.5" ></text>
</g>
<g >
<title>table_block_relation_size (1,110,061,192 samples, 0.01%)</title><rect x="1185.6" y="757" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1188.56" y="767.5" ></text>
</g>
<g >
<title>AllocSetFree (1,451,903,061 samples, 0.02%)</title><rect x="222.0" y="533" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="224.97" y="543.5" ></text>
</g>
<g >
<title>max_parallel_hazard_walker (864,717,797 samples, 0.01%)</title><rect x="1160.7" y="757" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1163.66" y="767.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,520,211,729 samples, 0.03%)</title><rect x="100.2" y="165" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="103.23" y="175.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,752,051,379 samples, 0.04%)</title><rect x="1038.9" y="309" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1041.91" y="319.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (1,974,690,579 samples, 0.02%)</title><rect x="483.7" y="373" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="486.74" y="383.5" ></text>
</g>
<g >
<title>heap_getattr (1,707,156,252 samples, 0.02%)</title><rect x="1145.0" y="757" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1147.98" y="767.5" ></text>
</g>
<g >
<title>schedule (1,166,527,053 samples, 0.01%)</title><rect x="174.2" y="421" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="177.15" y="431.5" ></text>
</g>
<g >
<title>__libc_pwrite (69,987,824,501 samples, 0.74%)</title><rect x="493.0" y="469" width="8.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="496.05" y="479.5" ></text>
</g>
<g >
<title>sock_wfree (9,057,113,750 samples, 0.10%)</title><rect x="180.2" y="325" width="1.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="183.23" y="335.5" ></text>
</g>
<g >
<title>finalize_plan (47,339,126,318 samples, 0.50%)</title><rect x="876.0" y="501" width="5.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="878.95" y="511.5" ></text>
</g>
<g >
<title>subquery_planner (1,345,421,384,195 samples, 14.26%)</title><rect x="903.8" y="517" width="168.2" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="906.82" y="527.5" >subquery_planner</text>
</g>
<g >
<title>ServerLoop (17,884,496,647 samples, 0.19%)</title><rect x="124.6" y="693" width="2.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="127.59" y="703.5" ></text>
</g>
<g >
<title>SearchSysCache (886,081,989 samples, 0.01%)</title><rect x="93.8" y="757" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="96.84" y="767.5" ></text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (7,087,497,772 samples, 0.08%)</title><rect x="277.3" y="341" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="280.26" y="351.5" ></text>
</g>
<g >
<title>GETSTRUCT (3,250,807,967 samples, 0.03%)</title><rect x="961.9" y="373" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="964.89" y="383.5" ></text>
</g>
<g >
<title>new_list (1,683,195,784 samples, 0.02%)</title><rect x="893.1" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="896.13" y="447.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,520,156,621 samples, 0.04%)</title><rect x="1034.8" y="117" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1037.76" y="127.5" ></text>
</g>
<g >
<title>ReleaseCatCache (837,727,980 samples, 0.01%)</title><rect x="1056.5" y="405" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1059.53" y="415.5" ></text>
</g>
<g >
<title>hash_initial_lookup (866,785,177 samples, 0.01%)</title><rect x="924.9" y="389" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="927.93" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,386,984,337 samples, 0.01%)</title><rect x="449.8" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="452.79" y="415.5" ></text>
</g>
<g >
<title>PostmasterMain (7,629,157,056,107 samples, 80.84%)</title><rect x="130.1" y="693" width="953.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="133.07" y="703.5" >PostmasterMain</text>
</g>
<g >
<title>index_getnext_tid (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="357" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1160.94" y="367.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (2,999,973,500 samples, 0.03%)</title><rect x="1037.6" y="277" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1040.63" y="287.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (4,804,340,218 samples, 0.05%)</title><rect x="173.4" y="405" width="0.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="176.38" y="415.5" ></text>
</g>
<g >
<title>IncrBufferRefCount (4,127,395,913 samples, 0.04%)</title><rect x="295.4" y="229" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="298.40" y="239.5" ></text>
</g>
<g >
<title>bms_free (5,557,029,676 samples, 0.06%)</title><rect x="375.4" y="357" width="0.7" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="378.36" y="367.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (2,284,346,325 samples, 0.02%)</title><rect x="84.4" y="181" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="87.42" y="191.5" ></text>
</g>
<g >
<title>gup_fast_fallback (1,268,375,462 samples, 0.01%)</title><rect x="352.1" y="133" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="355.13" y="143.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,223,679,891 samples, 0.02%)</title><rect x="947.7" y="309" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="950.68" y="319.5" ></text>
</g>
<g >
<title>BackendStartup (17,104,611,586 samples, 0.18%)</title><rect x="122.5" y="693" width="2.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="125.45" y="703.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,037,590,164 samples, 0.02%)</title><rect x="924.8" y="405" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="927.78" y="415.5" ></text>
</g>
<g >
<title>palloc0 (1,471,663,141 samples, 0.02%)</title><rect x="452.5" y="501" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="455.52" y="511.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,357,583,768 samples, 0.01%)</title><rect x="126.2" y="229" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="129.24" y="239.5" ></text>
</g>
<g >
<title>ensure_tabstat_xact_level (8,660,567,545 samples, 0.09%)</title><rect x="387.3" y="341" width="1.0" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="390.26" y="351.5" ></text>
</g>
<g >
<title>BufferIsLockedByMeInMode (1,762,019,688 samples, 0.02%)</title><rect x="386.6" y="325" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="389.55" y="335.5" ></text>
</g>
<g >
<title>OidFunctionCall4Coll (803,901,079 samples, 0.01%)</title><rect x="126.6" y="341" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="129.56" y="351.5" ></text>
</g>
<g >
<title>XLogRegisterData (1,594,816,463 samples, 0.02%)</title><rect x="386.8" y="341" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="389.80" y="351.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (38,403,461,072 samples, 0.41%)</title><rect x="257.3" y="437" width="4.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="260.30" y="447.5" ></text>
</g>
<g >
<title>is_valid_ascii (5,027,088,524 samples, 0.05%)</title><rect x="1082.4" y="517" width="0.7" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1085.45" y="527.5" ></text>
</g>
<g >
<title>_bt_parallel_done (1,464,455,871 samples, 0.02%)</title><rect x="281.5" y="245" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="284.53" y="255.5" ></text>
</g>
<g >
<title>LWLockRelease (1,471,978,897 samples, 0.02%)</title><rect x="232.4" y="517" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="235.44" y="527.5" ></text>
</g>
<g >
<title>get_typlen (6,012,431,094 samples, 0.06%)</title><rect x="1047.4" y="437" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1050.43" y="447.5" ></text>
</g>
<g >
<title>BufferIsValid (980,181,183 samples, 0.01%)</title><rect x="341.5" y="293" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="344.47" y="303.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,916,319,705 samples, 0.02%)</title><rect x="1067.5" y="389" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1070.54" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9,179,966,392 samples, 0.10%)</title><rect x="10.5" y="757" width="1.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="13.51" y="767.5" ></text>
</g>
<g >
<title>hash_bytes (3,835,043,577 samples, 0.04%)</title><rect x="861.6" y="405" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="864.62" y="415.5" ></text>
</g>
<g >
<title>fput (931,918,507 samples, 0.01%)</title><rect x="156.7" y="357" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="159.75" y="367.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitialize (2,252,182,177 samples, 0.02%)</title><rect x="426.7" y="405" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="429.73" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,279,621,137 samples, 0.01%)</title><rect x="381.8" y="229" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="384.77" y="239.5" ></text>
</g>
<g >
<title>select_idle_sibling (839,381,015 samples, 0.01%)</title><rect x="488.1" y="261" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="491.08" y="271.5" ></text>
</g>
<g >
<title>preprocess_expression (975,983,726 samples, 0.01%)</title><rect x="126.7" y="501" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="129.71" y="511.5" ></text>
</g>
<g >
<title>MemoryContextTraverseNext (1,425,007,023 samples, 0.02%)</title><rect x="77.6" y="741" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="80.58" y="751.5" ></text>
</g>
<g >
<title>heap_prune_satisfies_vacuum (11,533,096,343 samples, 0.12%)</title><rect x="1146.4" y="725" width="1.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1149.44" y="735.5" ></text>
</g>
<g >
<title>heap_getattr (47,243,808,118 samples, 0.50%)</title><rect x="1002.4" y="245" width="5.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1005.39" y="255.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="485" width="2.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="85.62" y="495.5" ></text>
</g>
<g >
<title>kmalloc_size_roundup (1,253,585,365 samples, 0.01%)</title><rect x="195.7" y="341" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="198.70" y="351.5" ></text>
</g>
<g >
<title>kmalloc_reserve (11,694,983,857 samples, 0.12%)</title><rect x="194.4" y="357" width="1.5" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="197.40" y="367.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,360,268,100 samples, 0.01%)</title><rect x="938.8" y="373" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="941.78" y="383.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,321,623,581 samples, 0.01%)</title><rect x="1034.5" y="133" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1037.50" y="143.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3,337,615,432 samples, 0.04%)</title><rect x="390.8" y="341" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="393.76" y="351.5" ></text>
</g>
<g >
<title>ExecutePlan (53,501,250,861 samples, 0.57%)</title><rect x="94.7" y="581" width="6.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="97.67" y="591.5" ></text>
</g>
<g >
<title>XLogCheckBufferNeedsBackup (2,234,573,198 samples, 0.02%)</title><rect x="378.1" y="341" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="381.10" y="351.5" ></text>
</g>
<g >
<title>eval_const_expressions (13,902,874,045 samples, 0.15%)</title><rect x="1053.1" y="485" width="1.7" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1056.11" y="495.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (109,841,789,525 samples, 1.16%)</title><rect x="158.3" y="389" width="13.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="161.28" y="399.5" ></text>
</g>
<g >
<title>RegisterSnapshot (4,696,858,488 samples, 0.05%)</title><rect x="233.9" y="517" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="236.88" y="527.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (864,820,239 samples, 0.01%)</title><rect x="220.6" y="501" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="223.61" y="511.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (989,306,897 samples, 0.01%)</title><rect x="199.1" y="277" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="202.07" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node_noprof (13,247,311,896 samples, 0.14%)</title><rect x="195.9" y="357" width="1.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="198.86" y="367.5" ></text>
</g>
<g >
<title>LockAcquireExtended (6,922,140,874 samples, 0.07%)</title><rect x="394.2" y="341" width="0.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="397.16" y="351.5" ></text>
</g>
<g >
<title>_bt_moveright (1,617,278,417 samples, 0.02%)</title><rect x="126.2" y="261" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="129.24" y="271.5" ></text>
</g>
<g >
<title>bms_add_member (2,498,163,941 samples, 0.03%)</title><rect x="968.4" y="325" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="971.37" y="335.5" ></text>
</g>
<g >
<title>table_open (1,178,368,685 samples, 0.01%)</title><rect x="1185.9" y="757" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1188.86" y="767.5" ></text>
</g>
<g >
<title>palloc0 (1,531,836,466 samples, 0.02%)</title><rect x="1059.8" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1062.78" y="447.5" ></text>
</g>
<g >
<title>equal (3,873,766,005 samples, 0.04%)</title><rect x="912.9" y="485" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="915.92" y="495.5" ></text>
</g>
<g >
<title>wake_up_q (1,004,809,256 samples, 0.01%)</title><rect x="354.7" y="117" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="357.71" y="127.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,032,666,917 samples, 0.01%)</title><rect x="964.6" y="373" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="967.59" y="383.5" ></text>
</g>
<g >
<title>hash_bytes (2,495,549,889 samples, 0.03%)</title><rect x="298.1" y="85" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="301.09" y="95.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,022,483,099 samples, 0.01%)</title><rect x="451.3" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="454.28" y="447.5" ></text>
</g>
<g >
<title>MemoryContextDelete (8,167,195,187 samples, 0.09%)</title><rect x="223.0" y="565" width="1.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="226.00" y="575.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1,164,780,606 samples, 0.01%)</title><rect x="469.1" y="469" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="472.11" y="479.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,126,834,494 samples, 0.01%)</title><rect x="940.0" y="373" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="942.95" y="383.5" ></text>
</g>
<g >
<title>ExecClearTuple (1,434,294,997 samples, 0.02%)</title><rect x="279.0" y="373" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="281.99" y="383.5" ></text>
</g>
<g >
<title>distribute_qual_to_rels (132,873,652,192 samples, 1.41%)</title><rect x="958.6" y="421" width="16.7" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="961.64" y="431.5" ></text>
</g>
<g >
<title>subquery_planner (1,404,193,528 samples, 0.01%)</title><rect x="124.4" y="549" width="0.2" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="127.42" y="559.5" ></text>
</g>
<g >
<title>RelationClose (1,451,478,268 samples, 0.02%)</title><rect x="238.8" y="405" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="241.78" y="415.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (45,971,469,220 samples, 0.49%)</title><rect x="13.2" y="741" width="5.8" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="16.21" y="751.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (925,284,563 samples, 0.01%)</title><rect x="324.0" y="213" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="327.01" y="223.5" ></text>
</g>
<g >
<title>SS_finalize_plan (48,086,592,362 samples, 0.51%)</title><rect x="875.9" y="517" width="6.0" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="878.93" y="527.5" ></text>
</g>
<g >
<title>FastPathUnGrantRelationLock (17,659,294,579 samples, 0.19%)</title><rect x="515.4" y="453" width="2.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="518.44" y="463.5" ></text>
</g>
<g >
<title>fdget (1,773,854,469 samples, 0.02%)</title><rect x="493.8" y="405" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="496.75" y="415.5" ></text>
</g>
<g >
<title>assign_collations_walker (2,717,191,405 samples, 0.03%)</title><rect x="803.1" y="341" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="806.11" y="351.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (812,137,539 samples, 0.01%)</title><rect x="940.0" y="357" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="942.99" y="367.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,032,208,190 samples, 0.01%)</title><rect x="948.3" y="277" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="951.27" y="287.5" ></text>
</g>
<g >
<title>palloc (2,255,067,098 samples, 0.02%)</title><rect x="1116.2" y="693" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1119.24" y="703.5" ></text>
</g>
<g >
<title>op_input_types (5,448,779,319 samples, 0.06%)</title><rect x="973.3" y="389" width="0.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="976.30" y="399.5" ></text>
</g>
<g >
<title>lappend_oid (2,474,978,153 samples, 0.03%)</title><rect x="910.8" y="469" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="913.79" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,360,727,340 samples, 0.01%)</title><rect x="934.2" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="937.24" y="351.5" ></text>
</g>
<g >
<title>avg_vruntime (1,393,734,010 samples, 0.01%)</title><rect x="169.6" y="261" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="172.61" y="271.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (1,076,457,069 samples, 0.01%)</title><rect x="1174.6" y="757" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1177.59" y="767.5" ></text>
</g>
<g >
<title>PageGetHeapFreeSpace (838,173,200 samples, 0.01%)</title><rect x="80.0" y="757" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="82.97" y="767.5" ></text>
</g>
<g >
<title>get_attstatsslot (60,209,116,702 samples, 0.64%)</title><rect x="1001.8" y="293" width="7.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1004.75" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (922,217,666 samples, 0.01%)</title><rect x="884.9" y="373" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="887.88" y="383.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (1,113,341,493 samples, 0.01%)</title><rect x="829.8" y="389" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="832.78" y="399.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,216,344,804 samples, 0.04%)</title><rect x="103.0" y="421" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="106.01" y="431.5" ></text>
</g>
<g >
<title>GrantLockLocal (1,365,826,106 samples, 0.01%)</title><rect x="353.7" y="277" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="356.74" y="287.5" ></text>
</g>
<g >
<title>VARATT_IS_EXTENDED (931,711,507 samples, 0.01%)</title><rect x="108.2" y="757" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="111.25" y="767.5" ></text>
</g>
<g >
<title>_bt_check_natts (18,004,565,380 samples, 0.19%)</title><rect x="317.3" y="229" width="2.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="320.29" y="239.5" ></text>
</g>
<g >
<title>GetSysCacheOid (39,537,016,462 samples, 0.42%)</title><rect x="822.6" y="373" width="4.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="825.58" y="383.5" ></text>
</g>
<g >
<title>prepare_task_switch (3,742,348,042 samples, 0.04%)</title><rect x="477.8" y="277" width="0.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="480.81" y="287.5" ></text>
</g>
<g >
<title>pfree (2,840,840,348 samples, 0.03%)</title><rect x="798.8" y="533" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="801.75" y="543.5" ></text>
</g>
<g >
<title>simplify_function (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="485" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1161.36" y="495.5" ></text>
</g>
<g >
<title>BackendStartup (81,441,377,880 samples, 0.86%)</title><rect x="94.7" y="741" width="10.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="97.67" y="751.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,691,907,831 samples, 0.03%)</title><rect x="237.1" y="389" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="240.07" y="399.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (9,383,446,031 samples, 0.10%)</title><rect x="288.0" y="261" width="1.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="290.98" y="271.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (1,824,945,329 samples, 0.02%)</title><rect x="1131.6" y="757" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1134.59" y="767.5" ></text>
</g>
<g >
<title>coerce_to_target_type (6,025,800,390 samples, 0.06%)</title><rect x="841.4" y="437" width="0.8" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="844.43" y="447.5" ></text>
</g>
<g >
<title>uint32_hash (1,626,122,712 samples, 0.02%)</title><rect x="1013.6" y="245" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1016.57" y="255.5" ></text>
</g>
<g >
<title>makeRangeVar (4,914,425,621 samples, 0.05%)</title><rect x="1118.2" y="741" width="0.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1121.20" y="751.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,500,019,112 samples, 0.02%)</title><rect x="932.3" y="309" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="935.34" y="319.5" ></text>
</g>
<g >
<title>table_block_relation_size (21,190,517,531 samples, 0.22%)</title><rect x="935.6" y="309" width="2.6" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="938.58" y="319.5" ></text>
</g>
<g >
<title>asm_sysvec_thermal (1,714,153,388 samples, 0.02%)</title><rect x="751.8" y="533" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="754.81" y="543.5" ></text>
</g>
<g >
<title>newNode (3,226,643,528 samples, 0.03%)</title><rect x="1120.0" y="709" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1122.98" y="719.5" ></text>
</g>
<g >
<title>HeapTupleHeaderGetRawXmax (891,152,564 samples, 0.01%)</title><rect x="51.0" y="757" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="54.02" y="767.5" ></text>
</g>
<g >
<title>create_modifytable_plan (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="549" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="88.40" y="559.5" ></text>
</g>
<g >
<title>bms_is_member (966,378,196 samples, 0.01%)</title><rect x="439.7" y="389" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="442.75" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,018,166,718 samples, 0.01%)</title><rect x="996.4" y="293" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="999.44" y="303.5" ></text>
</g>
<g >
<title>new_list (1,736,227,660 samples, 0.02%)</title><rect x="933.8" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="936.79" y="383.5" ></text>
</g>
<g >
<title>CreateDestReceiver (4,861,949,521 samples, 0.05%)</title><rect x="210.2" y="581" width="0.6" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="213.21" y="591.5" ></text>
</g>
<g >
<title>AllocSetDelete (75,351,168,362 samples, 0.80%)</title><rect x="252.7" y="453" width="9.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="255.68" y="463.5" ></text>
</g>
<g >
<title>wipe_mem (7,628,101,831 samples, 0.08%)</title><rect x="147.9" y="549" width="1.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="150.92" y="559.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (2,222,630,430 samples, 0.02%)</title><rect x="246.5" y="389" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="249.51" y="399.5" ></text>
</g>
<g >
<title>hash_search (8,610,128,300 samples, 0.09%)</title><rect x="820.9" y="373" width="1.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="823.92" y="383.5" ></text>
</g>
<g >
<title>markRTEForSelectPriv (5,530,332,870 samples, 0.06%)</title><rect x="855.4" y="341" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="858.43" y="351.5" ></text>
</g>
<g >
<title>palloc (1,008,529,417 samples, 0.01%)</title><rect x="118.0" y="741" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="121.01" y="751.5" ></text>
</g>
<g >
<title>relation_open (14,773,218,659 samples, 0.16%)</title><rect x="440.1" y="405" width="1.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="443.10" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (811,735,690 samples, 0.01%)</title><rect x="354.7" y="53" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="357.71" y="63.5" ></text>
</g>
<g >
<title>add_rte_to_flat_rtable (18,292,388,459 samples, 0.19%)</title><rect x="895.8" y="485" width="2.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="898.84" y="495.5" ></text>
</g>
<g >
<title>AllocSetCheck (3,481,913,958 samples, 0.04%)</title><rect x="250.6" y="421" width="0.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="253.62" y="431.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (1,226,655,887 samples, 0.01%)</title><rect x="132.5" y="501" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="135.53" y="511.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,282,097,328 samples, 0.03%)</title><rect x="916.6" y="357" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="919.64" y="367.5" ></text>
</g>
<g >
<title>palloc0 (3,184,248,718 samples, 0.03%)</title><rect x="269.9" y="357" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="272.94" y="367.5" ></text>
</g>
<g >
<title>_bt_binsrch (6,445,443,762 samples, 0.07%)</title><rect x="125.2" y="261" width="0.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="128.19" y="271.5" ></text>
</g>
<g >
<title>do_futex (925,058,534 samples, 0.01%)</title><rect x="296.8" y="133" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="299.85" y="143.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (1,019,356,492 samples, 0.01%)</title><rect x="44.5" y="757" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="47.48" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,418,667,084 samples, 0.02%)</title><rect x="354.7" y="165" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="357.65" y="175.5" ></text>
</g>
<g >
<title>MarkPortalDone (1,682,724,631 samples, 0.02%)</title><rect x="228.0" y="565" width="0.3" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="231.05" y="575.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (36,330,518,537 samples, 0.38%)</title><rect x="484.6" y="469" width="4.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="487.60" y="479.5" ></text>
</g>
<g >
<title>new_list (1,674,434,305 samples, 0.02%)</title><rect x="415.1" y="357" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="418.13" y="367.5" ></text>
</g>
<g >
<title>assign_collations_walker (24,563,385,406 samples, 0.26%)</title><rect x="805.4" y="373" width="3.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="808.37" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,114,434,518 samples, 0.02%)</title><rect x="363.7" y="245" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="366.66" y="255.5" ></text>
</g>
<g >
<title>get_relids_in_jointree (4,518,467,576 samples, 0.05%)</title><rect x="1070.0" y="485" width="0.6" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1073.01" y="495.5" ></text>
</g>
<g >
<title>ReadBufferExtended (18,083,246,842 samples, 0.19%)</title><rect x="99.0" y="277" width="2.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="102.04" y="287.5" ></text>
</g>
<g >
<title>_bt_check_natts (2,294,973,762 samples, 0.02%)</title><rect x="127.5" y="757" width="0.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="130.50" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,071,993,106 samples, 0.01%)</title><rect x="1070.4" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1073.44" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,223,770,746 samples, 0.01%)</title><rect x="808.7" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="811.69" y="447.5" ></text>
</g>
<g >
<title>ExecScan (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="437" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1160.94" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,419,698,004 samples, 0.03%)</title><rect x="421.2" y="309" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="424.20" y="319.5" ></text>
</g>
<g >
<title>SearchCatCache1 (2,701,915,710 samples, 0.03%)</title><rect x="1046.2" y="405" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1049.15" y="415.5" ></text>
</g>
<g >
<title>scanner_init (1,516,220,360 samples, 0.02%)</title><rect x="1176.7" y="757" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1179.74" y="767.5" ></text>
</g>
<g >
<title>palloc (4,332,857,497 samples, 0.05%)</title><rect x="369.7" y="325" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="372.67" y="335.5" ></text>
</g>
<g >
<title>ExecInitIndexScan (230,908,948,384 samples, 2.45%)</title><rect x="413.9" y="437" width="28.9" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="416.94" y="447.5" >Ex..</text>
</g>
<g >
<title>FunctionCall2Coll (3,721,206,049 samples, 0.04%)</title><rect x="331.6" y="213" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="334.58" y="223.5" ></text>
</g>
<g >
<title>AtStart_GUC (895,708,057 samples, 0.01%)</title><rect x="33.2" y="757" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="36.15" y="767.5" ></text>
</g>
<g >
<title>fmgr_info (3,991,174,987 samples, 0.04%)</title><rect x="420.2" y="325" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="423.21" y="335.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,195,694,786 samples, 0.01%)</title><rect x="1034.5" y="117" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="1037.51" y="127.5" ></text>
</g>
<g >
<title>_int_free_create_chunk (892,490,724 samples, 0.01%)</title><rect x="261.4" y="373" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="264.44" y="383.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (1,362,303,880 samples, 0.01%)</title><rect x="1037.2" y="277" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1040.21" y="287.5" ></text>
</g>
<g >
<title>nocachegetattr (7,155,631,495 samples, 0.08%)</title><rect x="826.6" y="325" width="0.9" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="829.62" y="335.5" ></text>
</g>
<g >
<title>fetch_upper_rel (1,226,832,055 samples, 0.01%)</title><rect x="906.6" y="501" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="909.61" y="511.5" ></text>
</g>
<g >
<title>OidFunctionCall4Coll (1,285,361,396 samples, 0.01%)</title><rect x="79.5" y="757" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="82.47" y="767.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (1,596,644,385 samples, 0.02%)</title><rect x="1064.9" y="421" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1067.88" y="431.5" ></text>
</g>
<g >
<title>CreateQueryDesc (8,797,330,177 samples, 0.09%)</title><rect x="233.7" y="533" width="1.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="236.65" y="543.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (1,097,845,855 samples, 0.01%)</title><rect x="341.8" y="293" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="344.78" y="303.5" ></text>
</g>
<g >
<title>pg_class_aclmask_ext (1,005,775,157 samples, 0.01%)</title><rect x="1168.1" y="757" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1171.11" y="767.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (9,444,224,198 samples, 0.10%)</title><rect x="273.0" y="405" width="1.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="275.96" y="415.5" ></text>
</g>
<g >
<title>make_one_rel (482,777,517,261 samples, 5.12%)</title><rect x="982.6" y="469" width="60.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="985.61" y="479.5" >make_o..</text>
</g>
<g >
<title>pg_class_aclmask_ext (6,604,130,734 samples, 0.07%)</title><rect x="1034.4" y="165" width="0.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1037.40" y="175.5" ></text>
</g>
<g >
<title>palloc0 (2,964,284,389 samples, 0.03%)</title><rect x="976.2" y="389" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="979.22" y="399.5" ></text>
</g>
<g >
<title>get_hash_entry (1,231,651,313 samples, 0.01%)</title><rect x="821.4" y="341" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="824.35" y="351.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVacuumHorizon (10,946,470,478 samples, 0.12%)</title><rect x="1146.5" y="709" width="1.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1149.52" y="719.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (804,332,464 samples, 0.01%)</title><rect x="1053.0" y="341" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1055.98" y="351.5" ></text>
</g>
<g >
<title>BufferGetPage (1,005,017,083 samples, 0.01%)</title><rect x="378.2" y="325" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="381.18" y="335.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,041,756,913 samples, 0.01%)</title><rect x="941.8" y="309" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="944.85" y="319.5" ></text>
</g>
<g >
<title>fmgr_info (869,310,140 samples, 0.01%)</title><rect x="1138.8" y="757" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1141.78" y="767.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,173,949,865 samples, 0.03%)</title><rect x="1037.6" y="293" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1040.61" y="303.5" ></text>
</g>
<g >
<title>gup_fast_pte_range (3,941,406,536 samples, 0.04%)</title><rect x="482.9" y="245" width="0.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="485.92" y="255.5" ></text>
</g>
<g >
<title>StartReadBuffer (1,217,297,839 samples, 0.01%)</title><rect x="124.1" y="197" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="127.08" y="207.5" ></text>
</g>
<g >
<title>lnext (809,730,767 samples, 0.01%)</title><rect x="454.5" y="549" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="457.48" y="559.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,434,334,585 samples, 0.02%)</title><rect x="991.1" y="293" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="994.05" y="303.5" ></text>
</g>
<g >
<title>bms_copy (1,960,766,087 samples, 0.02%)</title><rect x="966.5" y="357" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="969.48" y="367.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (935,801,654 samples, 0.01%)</title><rect x="1056.9" y="373" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1059.94" y="383.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (1,393,708,179 samples, 0.01%)</title><rect x="122.5" y="293" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="125.45" y="303.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,516,998,230 samples, 0.02%)</title><rect x="811.0" y="405" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="814.01" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,202,010,655 samples, 0.01%)</title><rect x="942.4" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="945.37" y="335.5" ></text>
</g>
<g >
<title>new_list (1,331,232,999 samples, 0.01%)</title><rect x="811.7" y="421" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="814.73" y="431.5" ></text>
</g>
<g >
<title>ep_poll (141,002,399,968 samples, 1.49%)</title><rect x="154.4" y="405" width="17.6" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="157.38" y="415.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (1,655,999,464 samples, 0.02%)</title><rect x="461.7" y="517" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="464.70" y="527.5" ></text>
</g>
<g >
<title>bms_is_member (1,224,220,433 samples, 0.01%)</title><rect x="449.0" y="453" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="451.99" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (968,120,258 samples, 0.01%)</title><rect x="858.6" y="469" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="861.59" y="479.5" ></text>
</g>
<g >
<title>VirtualXactLockTableInsert (6,486,498,325 samples, 0.07%)</title><rect x="1077.8" y="533" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="1080.81" y="543.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,255,639,674 samples, 0.01%)</title><rect x="1010.1" y="229" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1013.09" y="239.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,093,830,555 samples, 0.01%)</title><rect x="1011.1" y="245" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1014.14" y="255.5" ></text>
</g>
<g >
<title>assign_special_exec_param (3,048,605,943 samples, 0.03%)</title><rect x="910.7" y="485" width="0.4" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="913.74" y="495.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (2,236,571,662 samples, 0.02%)</title><rect x="363.7" y="277" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="366.65" y="287.5" ></text>
</g>
<g >
<title>MultiXactIdSetOldestMember (6,019,505,715 samples, 0.06%)</title><rect x="365.0" y="357" width="0.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="367.96" y="367.5" ></text>
</g>
<g >
<title>exec_simple_query (24,212,439,197 samples, 0.26%)</title><rect x="82.6" y="661" width="3.0" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="85.62" y="671.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (4,464,836,356 samples, 0.05%)</title><rect x="424.8" y="357" width="0.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="427.76" y="367.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (1,234,888,131 samples, 0.01%)</title><rect x="1036.2" y="213" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1039.21" y="223.5" ></text>
</g>
<g >
<title>AtEOXact_Files (1,061,367,221 samples, 0.01%)</title><rect x="461.6" y="517" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="464.57" y="527.5" ></text>
</g>
<g >
<title>bms_is_subset (980,688,390 samples, 0.01%)</title><rect x="879.2" y="469" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="882.25" y="479.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,017,045,942 samples, 0.01%)</title><rect x="1038.7" y="325" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1041.69" y="335.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (960,397,057 samples, 0.01%)</title><rect x="791.2" y="485" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="794.16" y="495.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (2,314,758,137 samples, 0.02%)</title><rect x="1185.0" y="677" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.99" y="687.5" ></text>
</g>
<g >
<title>skb_release_data (9,090,453,179 samples, 0.10%)</title><rect x="178.9" y="357" width="1.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="181.93" y="367.5" ></text>
</g>
<g >
<title>palloc (1,119,282,699 samples, 0.01%)</title><rect x="104.4" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="107.42" y="415.5" ></text>
</g>
<g >
<title>ExecInitExprRec (860,829,043 samples, 0.01%)</title><rect x="43.2" y="757" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="46.15" y="767.5" ></text>
</g>
<g >
<title>mdnblocks (8,875,171,583 samples, 0.09%)</title><rect x="932.1" y="373" width="1.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="935.08" y="383.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (34,915,667,061 samples, 0.37%)</title><rect x="303.9" y="245" width="4.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="306.91" y="255.5" ></text>
</g>
<g >
<title>examine_variable (1,174,540,159 samples, 0.01%)</title><rect x="1134.5" y="757" width="0.1" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="1137.47" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (977,226,607 samples, 0.01%)</title><rect x="813.1" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="816.14" y="431.5" ></text>
</g>
<g >
<title>bms_make_singleton (3,891,133,804 samples, 0.04%)</title><rect x="976.1" y="405" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="979.10" y="415.5" ></text>
</g>
<g >
<title>AllocSetFree (958,694,277 samples, 0.01%)</title><rect x="944.6" y="357" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="947.62" y="367.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,607,980,346 samples, 0.04%)</title><rect x="827.0" y="293" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="829.99" y="303.5" ></text>
</g>
<g >
<title>TupleDescAttr (890,177,052 samples, 0.01%)</title><rect x="320.3" y="181" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="323.34" y="191.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (1,625,320,832 samples, 0.02%)</title><rect x="750.9" y="501" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="753.87" y="511.5" ></text>
</g>
<g >
<title>RelationClose (1,338,501,413 samples, 0.01%)</title><rect x="236.2" y="437" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="239.17" y="447.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,181,827,449 samples, 0.01%)</title><rect x="306.1" y="165" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="309.09" y="175.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (2,196,687,430 samples, 0.02%)</title><rect x="1041.7" y="309" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1044.68" y="319.5" ></text>
</g>
<g >
<title>get_relname_relid (843,644,661 samples, 0.01%)</title><rect x="1140.5" y="757" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1143.48" y="767.5" ></text>
</g>
<g >
<title>palloc (1,441,077,346 samples, 0.02%)</title><rect x="1013.1" y="245" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1016.10" y="255.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,025,796,860 samples, 0.01%)</title><rect x="359.9" y="309" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="362.94" y="319.5" ></text>
</g>
<g >
<title>lappend_int (2,846,315,437 samples, 0.03%)</title><rect x="922.4" y="453" width="0.4" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="925.42" y="463.5" ></text>
</g>
<g >
<title>RelnameGetRelid (43,570,456,292 samples, 0.46%)</title><rect x="822.3" y="405" width="5.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="825.26" y="415.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (2,504,394,184 samples, 0.03%)</title><rect x="85.1" y="181" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="88.08" y="191.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple_internal (2,668,417,107 samples, 0.03%)</title><rect x="344.0" y="309" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="346.98" y="319.5" ></text>
</g>
<g >
<title>stack_is_too_deep (3,433,709,608 samples, 0.04%)</title><rect x="1127.3" y="741" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1130.32" y="751.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (857,285,167 samples, 0.01%)</title><rect x="94.7" y="181" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="97.67" y="191.5" ></text>
</g>
<g >
<title>scanNSItemForColumn (10,259,710,974 samples, 0.11%)</title><rect x="839.5" y="341" width="1.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="842.51" y="351.5" ></text>
</g>
<g >
<title>__errno_location (2,233,070,645 samples, 0.02%)</title><rect x="188.7" y="501" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="191.69" y="511.5" ></text>
</g>
<g >
<title>RecoveryInProgress (1,464,803,378 samples, 0.02%)</title><rect x="87.9" y="757" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="90.86" y="767.5" ></text>
</g>
<g >
<title>lcons (2,325,099,749 samples, 0.02%)</title><rect x="1071.6" y="485" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1074.63" y="495.5" ></text>
</g>
<g >
<title>newNode (8,363,906,470 samples, 0.09%)</title><rect x="450.2" y="453" width="1.0" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="453.19" y="463.5" ></text>
</g>
<g >
<title>pg_any_to_server (10,751,057,806 samples, 0.11%)</title><rect x="1081.7" y="565" width="1.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1084.74" y="575.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (2,258,338,093 samples, 0.02%)</title><rect x="300.5" y="149" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="303.52" y="159.5" ></text>
</g>
<g >
<title>list_length (10,499,714,305 samples, 0.11%)</title><rect x="1155.0" y="757" width="1.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1158.04" y="767.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,093,823,231 samples, 0.03%)</title><rect x="361.0" y="293" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="364.00" y="303.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (4,662,485,439 samples, 0.05%)</title><rect x="172.5" y="405" width="0.6" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="175.47" y="415.5" ></text>
</g>
<g >
<title>palloc (1,661,973,288 samples, 0.02%)</title><rect x="1058.2" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1061.19" y="431.5" ></text>
</g>
<g >
<title>LWLockWaitForVar (9,721,806,392 samples, 0.10%)</title><rect x="489.6" y="469" width="1.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="492.58" y="479.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,337,892,178 samples, 0.07%)</title><rect x="1039.5" y="325" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1042.45" y="335.5" ></text>
</g>
<g >
<title>newNode (2,702,472,380 samples, 0.03%)</title><rect x="1021.1" y="309" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1024.09" y="319.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,181,126,048 samples, 0.01%)</title><rect x="1114.1" y="645" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1117.06" y="655.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (4,756,027,121 samples, 0.05%)</title><rect x="862.6" y="485" width="0.6" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="865.64" y="495.5" ></text>
</g>
<g >
<title>hash_create (41,025,570,845 samples, 0.43%)</title><rect x="1060.0" y="469" width="5.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1062.98" y="479.5" ></text>
</g>
<g >
<title>is_parallel_safe (20,579,529,320 samples, 0.22%)</title><rect x="915.2" y="485" width="2.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="918.18" y="495.5" ></text>
</g>
<g >
<title>DynaHashAlloc (1,823,079,270 samples, 0.02%)</title><rect x="1066.5" y="405" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1069.49" y="415.5" ></text>
</g>
<g >
<title>LWLockRelease (1,471,356,822 samples, 0.02%)</title><rect x="941.8" y="341" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="944.79" y="351.5" ></text>
</g>
<g >
<title>index_insert_cleanup (1,570,895,061 samples, 0.02%)</title><rect x="237.8" y="453" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="240.75" y="463.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,732,520,149 samples, 0.02%)</title><rect x="890.3" y="277" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="893.27" y="287.5" ></text>
</g>
<g >
<title>hdefault (11,155,715,940 samples, 0.12%)</title><rect x="1062.3" y="453" width="1.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1065.34" y="463.5" ></text>
</g>
<g >
<title>BufTableHashCode (4,256,920,520 samples, 0.05%)</title><rect x="94.9" y="181" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="97.92" y="191.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,206,044,775 samples, 0.01%)</title><rect x="441.7" y="341" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="444.75" y="351.5" ></text>
</g>
<g >
<title>ExecBuildProjectionInfo (70,055,333,139 samples, 0.74%)</title><rect x="415.9" y="373" width="8.7" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="418.86" y="383.5" ></text>
</g>
<g >
<title>pg_plan_queries (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="661" width="3.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="104.45" y="671.5" ></text>
</g>
<g >
<title>palloc (1,100,323,812 samples, 0.01%)</title><rect x="908.7" y="421" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="911.71" y="431.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (5,072,531,273 samples, 0.05%)</title><rect x="1083.3" y="581" width="0.6" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="1086.28" y="591.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,506,029,425 samples, 0.02%)</title><rect x="407.2" y="421" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="410.25" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,005,568,923 samples, 0.01%)</title><rect x="210.7" y="533" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="213.69" y="543.5" ></text>
</g>
<g >
<title>transformExprRecurse (53,813,604,045 samples, 0.57%)</title><rect x="834.1" y="421" width="6.7" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="837.11" y="431.5" ></text>
</g>
<g >
<title>newNode (4,496,080,340 samples, 0.05%)</title><rect x="1121.1" y="741" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1124.07" y="751.5" ></text>
</g>
<g >
<title>gup_fast_pgd_range (5,504,863,843 samples, 0.06%)</title><rect x="482.7" y="261" width="0.7" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="485.72" y="271.5" ></text>
</g>
<g >
<title>ExecTypeFromTLInternal (36,342,002,276 samples, 0.39%)</title><rect x="433.8" y="389" width="4.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="436.75" y="399.5" ></text>
</g>
<g >
<title>LWLockRelease (1,385,036,439 samples, 0.01%)</title><rect x="522.7" y="437" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="525.73" y="447.5" ></text>
</g>
<g >
<title>AssertTransactionIdInAllowableRange (2,255,619,491 samples, 0.02%)</title><rect x="220.1" y="533" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="223.07" y="543.5" ></text>
</g>
<g >
<title>ksys_lseek (3,234,695,302 samples, 0.03%)</title><rect x="932.7" y="277" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="935.69" y="287.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,591,135,079 samples, 0.04%)</title><rect x="214.4" y="549" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="217.36" y="559.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (1,056,607,369 samples, 0.01%)</title><rect x="477.5" y="229" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="480.53" y="239.5" ></text>
</g>
<g >
<title>palloc0 (1,612,231,302 samples, 0.02%)</title><rect x="897.1" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="900.05" y="447.5" ></text>
</g>
<g >
<title>palloc (1,251,059,193 samples, 0.01%)</title><rect x="434.3" y="357" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="437.27" y="367.5" ></text>
</g>
<g >
<title>BufferGetBlock (926,439,335 samples, 0.01%)</title><rect x="335.8" y="181" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="338.76" y="191.5" ></text>
</g>
<g >
<title>copyObjectImpl (4,311,438,438 samples, 0.05%)</title><rect x="888.1" y="341" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="891.09" y="351.5" ></text>
</g>
<g >
<title>[postgres] (3,936,690,682 samples, 0.04%)</title><rect x="110.5" y="757" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="113.53" y="767.5" ></text>
</g>
<g >
<title>hash_bytes (2,813,490,183 samples, 0.03%)</title><rect x="821.6" y="341" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="824.64" y="351.5" ></text>
</g>
<g >
<title>check_mergejoinable (46,769,076,623 samples, 0.50%)</title><rect x="959.5" y="405" width="5.8" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="962.49" y="415.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (31,289,589,272 samples, 0.33%)</title><rect x="484.9" y="437" width="3.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="487.91" y="447.5" ></text>
</g>
<g >
<title>ExecUpdate (999,289,278 samples, 0.01%)</title><rect x="46.0" y="757" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="49.04" y="767.5" ></text>
</g>
<g >
<title>ExecScanExtended (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="437" width="2.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="85.62" y="447.5" ></text>
</g>
<g >
<title>palloc0 (1,903,110,252 samples, 0.02%)</title><rect x="391.4" y="357" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="394.40" y="367.5" ></text>
</g>
<g >
<title>palloc0 (2,439,698,391 samples, 0.03%)</title><rect x="811.9" y="421" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="814.94" y="431.5" ></text>
</g>
<g >
<title>transformTargetEntry (58,327,368,592 samples, 0.62%)</title><rect x="833.5" y="453" width="7.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="836.55" y="463.5" ></text>
</g>
<g >
<title>palloc0 (2,484,395,539 samples, 0.03%)</title><rect x="102.1" y="453" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="105.06" y="463.5" ></text>
</g>
<g >
<title>planner (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="597" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1161.36" y="607.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (8,742,858,036 samples, 0.09%)</title><rect x="161.2" y="341" width="1.0" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="164.15" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (914,549,661 samples, 0.01%)</title><rect x="954.1" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="957.06" y="399.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,838,065,923 samples, 0.02%)</title><rect x="867.4" y="437" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="870.38" y="447.5" ></text>
</g>
<g >
<title>expr_setup_walker (874,090,689 samples, 0.01%)</title><rect x="430.9" y="309" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="433.89" y="319.5" ></text>
</g>
<g >
<title>CopySnapshot (3,701,515,912 samples, 0.04%)</title><rect x="453.6" y="533" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="456.62" y="543.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,152,214,287 samples, 0.01%)</title><rect x="415.2" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="418.18" y="335.5" ></text>
</g>
<g >
<title>PageGetItemId (889,307,227 samples, 0.01%)</title><rect x="366.1" y="341" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="369.07" y="351.5" ></text>
</g>
<g >
<title>new_list (1,208,373,140 samples, 0.01%)</title><rect x="835.5" y="357" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="838.48" y="367.5" ></text>
</g>
<g >
<title>lappend (5,410,175,796 samples, 0.06%)</title><rect x="1017.9" y="357" width="0.7" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1020.91" y="367.5" ></text>
</g>
<g >
<title>exprType (1,653,173,154 samples, 0.02%)</title><rect x="1134.9" y="757" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1137.93" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,689,814,070 samples, 0.04%)</title><rect x="351.9" y="229" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="354.91" y="239.5" ></text>
</g>
<g >
<title>LockBuffer (3,296,273,306 samples, 0.03%)</title><rect x="336.3" y="197" width="0.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="339.25" y="207.5" ></text>
</g>
<g >
<title>pq_recvbuf (280,886,205,764 samples, 2.98%)</title><rect x="149.7" y="549" width="35.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="152.73" y="559.5" >pq..</text>
</g>
<g >
<title>pg_leftmost_one_pos32 (1,785,216,773 samples, 0.02%)</title><rect x="119.1" y="741" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="122.07" y="751.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (961,419,103 samples, 0.01%)</title><rect x="401.6" y="277" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="404.60" y="287.5" ></text>
</g>
<g >
<title>TupleDescAttr (2,484,255,274 samples, 0.03%)</title><rect x="1005.1" y="165" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1008.07" y="175.5" ></text>
</g>
<g >
<title>bms_make_singleton (4,356,209,003 samples, 0.05%)</title><rect x="905.9" y="501" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="908.93" y="511.5" ></text>
</g>
<g >
<title>heap_fetch (1,100,636,289 samples, 0.01%)</title><rect x="1144.7" y="757" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1147.71" y="767.5" ></text>
</g>
<g >
<title>make_const (6,288,735,208 samples, 0.07%)</title><rect x="853.1" y="405" width="0.8" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="856.09" y="415.5" ></text>
</g>
<g >
<title>btgettuple (234,028,705,296 samples, 2.48%)</title><rect x="311.5" y="293" width="29.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="314.51" y="303.5" >bt..</text>
</g>
<g >
<title>AllocSetAlloc (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="293" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="88.40" y="303.5" ></text>
</g>
<g >
<title>palloc0 (2,681,426,892 samples, 0.03%)</title><rect x="909.8" y="437" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="912.78" y="447.5" ></text>
</g>
<g >
<title>string_hash (3,165,199,763 samples, 0.03%)</title><rect x="226.9" y="549" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="229.86" y="559.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (9,618,278,310 samples, 0.10%)</title><rect x="880.6" y="421" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="883.58" y="431.5" ></text>
</g>
<g >
<title>BufferGetPage (1,254,151,724 samples, 0.01%)</title><rect x="302.1" y="245" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="305.10" y="255.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1,896,845,424 samples, 0.02%)</title><rect x="206.5" y="389" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="209.48" y="399.5" ></text>
</g>
<g >
<title>ExecEndModifyTable (69,721,116,207 samples, 0.74%)</title><rect x="238.1" y="469" width="8.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="241.13" y="479.5" ></text>
</g>
<g >
<title>hash_search (6,016,660,283 samples, 0.06%)</title><rect x="1067.5" y="405" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1070.51" y="415.5" ></text>
</g>
<g >
<title>list_delete_cell (4,387,246,543 samples, 0.05%)</title><rect x="251.6" y="453" width="0.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="254.57" y="463.5" ></text>
</g>
<g >
<title>x64_sys_call (1,438,734,394 samples, 0.02%)</title><rect x="174.3" y="437" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="177.30" y="447.5" ></text>
</g>
<g >
<title>palloc (3,800,294,745 samples, 0.04%)</title><rect x="290.8" y="261" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="293.81" y="271.5" ></text>
</g>
<g >
<title>ExtendSUBTRANS (925,739,288 samples, 0.01%)</title><rect x="349.4" y="309" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="352.43" y="319.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,148,972,874 samples, 0.01%)</title><rect x="238.8" y="389" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="241.82" y="399.5" ></text>
</g>
<g >
<title>SearchCatCache1 (5,746,488,329 samples, 0.06%)</title><rect x="807.7" y="325" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="810.65" y="335.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (858,149,740 samples, 0.01%)</title><rect x="221.3" y="485" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="224.26" y="495.5" ></text>
</g>
<g >
<title>bms_union (4,453,119,567 samples, 0.05%)</title><rect x="879.4" y="469" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="882.38" y="479.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (874,682,629 samples, 0.01%)</title><rect x="943.4" y="357" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="946.41" y="367.5" ></text>
</g>
<g >
<title>apply_tlist_labeling (4,764,056,328 samples, 0.05%)</title><rect x="883.2" y="469" width="0.6" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="886.20" y="479.5" ></text>
</g>
<g >
<title>evaluate_function (2,575,551,450 samples, 0.03%)</title><rect x="103.6" y="453" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="106.55" y="463.5" ></text>
</g>
<g >
<title>list_nth_cell (823,637,945 samples, 0.01%)</title><rect x="262.2" y="485" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="265.24" y="495.5" ></text>
</g>
<g >
<title>list_free_private (2,037,089,524 samples, 0.02%)</title><rect x="944.5" y="389" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="947.51" y="399.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitializeWithInfo (1,345,467,311 samples, 0.01%)</title><rect x="313.7" y="261" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="316.74" y="271.5" ></text>
</g>
<g >
<title>printtup_destroy (2,550,622,642 samples, 0.03%)</title><rect x="1073.3" y="581" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1076.26" y="591.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (2,953,690,311 samples, 0.03%)</title><rect x="816.0" y="421" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="819.03" y="431.5" ></text>
</g>
<g >
<title>DatumGetPointer (1,223,835,236 samples, 0.01%)</title><rect x="40.6" y="757" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="43.61" y="767.5" ></text>
</g>
<g >
<title>do_futex (851,906,660 samples, 0.01%)</title><rect x="467.7" y="373" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="470.67" y="383.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,122,461,868 samples, 0.02%)</title><rect x="868.5" y="453" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="871.45" y="463.5" ></text>
</g>
<g >
<title>pg_class_aclcheck (880,198,309 samples, 0.01%)</title><rect x="1167.9" y="757" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1170.88" y="767.5" ></text>
</g>
<g >
<title>newNode (3,897,031,868 samples, 0.04%)</title><rect x="1118.3" y="725" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1121.33" y="735.5" ></text>
</g>
<g >
<title>dequeue_task_fair (19,261,683,145 samples, 0.20%)</title><rect x="479.3" y="261" width="2.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="482.27" y="271.5" ></text>
</g>
<g >
<title>palloc (3,839,613,006 samples, 0.04%)</title><rect x="918.3" y="453" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="921.31" y="463.5" ></text>
</g>
<g >
<title>ReleaseCatCache (900,095,974 samples, 0.01%)</title><rect x="1009.4" y="261" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1012.45" y="271.5" ></text>
</g>
<g >
<title>new_list (2,014,667,349 samples, 0.02%)</title><rect x="1015.5" y="293" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1018.48" y="303.5" ></text>
</g>
<g >
<title>BackendStartup (7,629,157,056,107 samples, 80.84%)</title><rect x="130.1" y="661" width="953.9" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="133.07" y="671.5" >BackendStartup</text>
</g>
<g >
<title>resetStringInfo (1,106,757,066 samples, 0.01%)</title><rect x="186.1" y="549" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="189.12" y="559.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (889,502,709 samples, 0.01%)</title><rect x="522.8" y="405" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="525.80" y="415.5" ></text>
</g>
<g >
<title>futex_wait (60,114,843,274 samples, 0.64%)</title><rect x="475.9" y="357" width="7.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="478.90" y="367.5" ></text>
</g>
<g >
<title>palloc0 (2,178,242,736 samples, 0.02%)</title><rect x="839.9" y="293" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="842.95" y="303.5" ></text>
</g>
<g >
<title>extract_restriction_or_clauses (953,725,476 samples, 0.01%)</title><rect x="1136.6" y="757" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1139.57" y="767.5" ></text>
</g>
<g >
<title>RewriteQuery (46,917,333,459 samples, 0.50%)</title><rect x="857.4" y="533" width="5.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="860.40" y="543.5" ></text>
</g>
<g >
<title>heap_page_prune_and_freeze (20,092,989,740 samples, 0.21%)</title><rect x="1145.4" y="757" width="2.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1148.38" y="767.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (8,398,513,279 samples, 0.09%)</title><rect x="294.9" y="261" width="1.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="297.88" y="271.5" ></text>
</g>
<g >
<title>add_base_rels_to_query (189,863,408,076 samples, 2.01%)</title><rect x="926.6" y="453" width="23.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="929.55" y="463.5" >a..</text>
</g>
<g >
<title>MemoryChunkIsExternal (47,835,674,785 samples, 0.51%)</title><rect x="70.7" y="757" width="6.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="73.67" y="767.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,531,843,953 samples, 0.02%)</title><rect x="247.7" y="437" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="250.73" y="447.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,165,671,089 samples, 0.01%)</title><rect x="354.4" y="229" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="357.38" y="239.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (861,999,117 samples, 0.01%)</title><rect x="297.1" y="229" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="300.07" y="239.5" ></text>
</g>
<g >
<title>pg_atomic_read_u64 (1,719,747,714 samples, 0.02%)</title><rect x="503.8" y="469" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="506.76" y="479.5" ></text>
</g>
<g >
<title>new_list (1,937,678,013 samples, 0.02%)</title><rect x="985.6" y="389" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="988.59" y="399.5" ></text>
</g>
<g >
<title>__schedule (3,461,512,841 samples, 0.04%)</title><rect x="206.5" y="421" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="209.46" y="431.5" ></text>
</g>
<g >
<title>_bt_readpage (4,784,563,854 samples, 0.05%)</title><rect x="124.6" y="261" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="127.59" y="271.5" ></text>
</g>
<g >
<title>hash_search (4,426,773,496 samples, 0.05%)</title><rect x="943.5" y="357" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="946.53" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,128,792,390 samples, 0.01%)</title><rect x="452.0" y="453" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="455.04" y="463.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,745,976,501 samples, 0.02%)</title><rect x="1070.4" y="453" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1073.36" y="463.5" ></text>
</g>
<g >
<title>hash_search (6,503,753,728 samples, 0.07%)</title><rect x="1023.0" y="341" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1025.98" y="351.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,033,696,341 samples, 0.01%)</title><rect x="296.5" y="229" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="299.46" y="239.5" ></text>
</g>
<g >
<title>bms_free (2,555,515,291 samples, 0.03%)</title><rect x="996.6" y="341" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="999.59" y="351.5" ></text>
</g>
<g >
<title>standard_planner (2,826,087,191 samples, 0.03%)</title><rect x="124.2" y="565" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="127.24" y="575.5" ></text>
</g>
<g >
<title>pull_var_clause_walker (11,766,540,323 samples, 0.12%)</title><rect x="955.5" y="405" width="1.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="958.50" y="415.5" ></text>
</g>
<g >
<title>check_functions_in_node (5,495,958,546 samples, 0.06%)</title><rect x="960.2" y="341" width="0.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="963.20" y="351.5" ></text>
</g>
<g >
<title>ExecIndexScan (477,858,855,501 samples, 5.06%)</title><rect x="282.4" y="405" width="59.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="285.42" y="415.5" >ExecIn..</text>
</g>
<g >
<title>tts_buffer_heap_materialize (21,918,547,447 samples, 0.23%)</title><rect x="388.9" y="389" width="2.7" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="391.90" y="399.5" ></text>
</g>
<g >
<title>fix_expr_common (839,107,237 samples, 0.01%)</title><rect x="902.0" y="357" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="904.97" y="367.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (19,808,450,222 samples, 0.21%)</title><rect x="275.8" y="389" width="2.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="278.77" y="399.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (827,414,203 samples, 0.01%)</title><rect x="179.5" y="309" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="182.54" y="319.5" ></text>
</g>
<g >
<title>PageGetItem (870,084,547 samples, 0.01%)</title><rect x="317.0" y="229" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="320.02" y="239.5" ></text>
</g>
<g >
<title>palloc (3,036,219,081 samples, 0.03%)</title><rect x="1018.2" y="325" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1021.18" y="335.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (939,207,866 samples, 0.01%)</title><rect x="862.0" y="389" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="864.98" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,004,523,190 samples, 0.05%)</title><rect x="350.8" y="229" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="353.78" y="239.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (2,705,140,651 samples, 0.03%)</title><rect x="211.1" y="565" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="214.10" y="575.5" ></text>
</g>
<g >
<title>AllocSetAlloc (930,486,125 samples, 0.01%)</title><rect x="897.1" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="900.13" y="431.5" ></text>
</g>
<g >
<title>index_getattr (4,424,567,389 samples, 0.05%)</title><rect x="334.3" y="213" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="337.33" y="223.5" ></text>
</g>
<g >
<title>LWLockRelease (1,008,536,212 samples, 0.01%)</title><rect x="400.7" y="277" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="403.71" y="287.5" ></text>
</g>
<g >
<title>enqueue_task (913,814,805 samples, 0.01%)</title><rect x="487.9" y="293" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="490.86" y="303.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (1,100,737,859,079 samples, 11.66%)</title><rect x="264.4" y="469" width="137.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="267.37" y="479.5" >ExecProcNodeFirst</text>
</g>
<g >
<title>palloc (4,988,367,562 samples, 0.05%)</title><rect x="1113.6" y="677" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1116.65" y="687.5" ></text>
</g>
<g >
<title>set_plan_refs (44,965,814,222 samples, 0.48%)</title><rect x="898.2" y="501" width="5.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="901.20" y="511.5" ></text>
</g>
<g >
<title>int4hashfast (902,471,193 samples, 0.01%)</title><rect x="1048.0" y="357" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1050.96" y="367.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (961,228,820 samples, 0.01%)</title><rect x="1050.6" y="437" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1053.59" y="447.5" ></text>
</g>
<g >
<title>fastgetattr (8,424,799,006 samples, 0.09%)</title><rect x="826.5" y="341" width="1.0" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="829.46" y="351.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (4,404,461,859 samples, 0.05%)</title><rect x="223.4" y="517" width="0.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="226.41" y="527.5" ></text>
</g>
<g >
<title>eqsel (52,657,195,834 samples, 0.56%)</title><rect x="1030.4" y="293" width="6.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1033.36" y="303.5" ></text>
</g>
<g >
<title>relation_open (15,036,200,314 samples, 0.16%)</title><rect x="947.4" y="389" width="1.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="950.44" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,801,926,966 samples, 0.03%)</title><rect x="895.0" y="485" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="897.96" y="495.5" ></text>
</g>
<g >
<title>expr_setup_walker (1,590,077,897 samples, 0.02%)</title><rect x="418.5" y="229" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="421.53" y="239.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,337,256,247 samples, 0.01%)</title><rect x="695.3" y="517" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="698.26" y="527.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,051,087,349 samples, 0.02%)</title><rect x="923.4" y="373" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="926.43" y="383.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Database (1,012,334,271 samples, 0.01%)</title><rect x="32.3" y="757" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="35.30" y="767.5" ></text>
</g>
<g >
<title>preprocess_expression (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="581" width="3.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="104.45" y="591.5" ></text>
</g>
<g >
<title>is_valid_ascii (1,188,519,138 samples, 0.01%)</title><rect x="1153.0" y="757" width="0.1" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1155.95" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,887,969,305 samples, 0.03%)</title><rect x="1055.5" y="437" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1058.50" y="447.5" ></text>
</g>
<g >
<title>gup_fast (1,495,489,049 samples, 0.02%)</title><rect x="351.2" y="101" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="354.19" y="111.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (1,234,043,728 samples, 0.01%)</title><rect x="483.4" y="389" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="486.42" y="399.5" ></text>
</g>
<g >
<title>__futex_wait (3,952,774,475 samples, 0.04%)</title><rect x="350.9" y="165" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="353.88" y="175.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,123,994,504 samples, 0.01%)</title><rect x="1134.0" y="645" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1136.99" y="655.5" ></text>
</g>
<g >
<title>sock_recvmsg (57,749,508,135 samples, 0.61%)</title><rect x="177.1" y="421" width="7.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="180.12" y="431.5" ></text>
</g>
<g >
<title>list_free (2,282,165,441 samples, 0.02%)</title><rect x="944.5" y="405" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="947.49" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_futex (61,678,228,900 samples, 0.65%)</title><rect x="475.7" y="389" width="7.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="478.71" y="399.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,580,837,477 samples, 0.02%)</title><rect x="453.8" y="517" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="456.80" y="527.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (135,069,562,019 samples, 1.43%)</title><rect x="294.2" y="293" width="16.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="297.22" y="303.5" ></text>
</g>
<g >
<title>finalize_primnode (1,400,088,792 samples, 0.01%)</title><rect x="1137.4" y="757" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1140.38" y="767.5" ></text>
</g>
<g >
<title>make_op (63,894,143,982 samples, 0.68%)</title><rect x="844.8" y="421" width="8.0" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="847.80" y="431.5" ></text>
</g>
<g >
<title>PageAddItemExtended (1,666,744,002 samples, 0.02%)</title><rect x="79.7" y="757" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="82.73" y="767.5" ></text>
</g>
<g >
<title>AllocSetFree (849,451,640 samples, 0.01%)</title><rect x="222.3" y="549" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="225.28" y="559.5" ></text>
</g>
<g >
<title>shmem_write_begin (12,724,011,618 samples, 0.13%)</title><rect x="498.5" y="357" width="1.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="501.46" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (922,509,514 samples, 0.01%)</title><rect x="221.3" y="501" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="224.26" y="511.5" ></text>
</g>
<g >
<title>palloc0 (4,235,448,399 samples, 0.04%)</title><rect x="945.7" y="405" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="948.73" y="415.5" ></text>
</g>
<g >
<title>expr_setup_walker (5,403,689,107 samples, 0.06%)</title><rect x="418.1" y="277" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="421.07" y="287.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,171,498,348 samples, 0.02%)</title><rect x="968.4" y="309" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="971.41" y="319.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (3,642,304,304 samples, 0.04%)</title><rect x="98.2" y="181" width="0.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="101.16" y="191.5" ></text>
</g>
<g >
<title>__get_user_8 (837,106,602 samples, 0.01%)</title><rect x="483.8" y="325" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="486.84" y="335.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (8,572,252,960 samples, 0.09%)</title><rect x="902.1" y="389" width="1.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="905.08" y="399.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (3,470,457,015 samples, 0.04%)</title><rect x="271.5" y="389" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="274.55" y="399.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (2,093,838,113 samples, 0.02%)</title><rect x="1157.9" y="245" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1160.94" y="255.5" ></text>
</g>
<g >
<title>table_open (18,097,741,671 samples, 0.19%)</title><rect x="861.0" y="517" width="2.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="864.01" y="527.5" ></text>
</g>
<g >
<title>palloc0 (2,678,236,028 samples, 0.03%)</title><rect x="415.4" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="418.37" y="367.5" ></text>
</g>
<g >
<title>palloc (1,533,540,832 samples, 0.02%)</title><rect x="890.0" y="245" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="893.04" y="255.5" ></text>
</g>
<g >
<title>new_list (2,429,924,176 samples, 0.03%)</title><rect x="449.7" y="437" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="452.67" y="447.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (3,186,459,733 samples, 0.03%)</title><rect x="477.4" y="277" width="0.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="480.40" y="287.5" ></text>
</g>
<g >
<title>match_restriction_clauses_to_index (27,642,273,364 samples, 0.29%)</title><rect x="1019.1" y="389" width="3.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1022.11" y="399.5" ></text>
</g>
<g >
<title>palloc (1,295,152,374 samples, 0.01%)</title><rect x="985.7" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="988.67" y="383.5" ></text>
</g>
<g >
<title>SearchSysCacheList (9,818,440,266 samples, 0.10%)</title><rect x="962.5" y="373" width="1.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="965.49" y="383.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,283,154,337 samples, 0.01%)</title><rect x="1068.1" y="357" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1071.10" y="367.5" ></text>
</g>
<g >
<title>can_coerce_type (1,729,552,018 samples, 0.02%)</title><rect x="841.7" y="421" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="844.67" y="431.5" ></text>
</g>
<g >
<title>palloc (2,435,729,580 samples, 0.03%)</title><rect x="509.7" y="485" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="512.72" y="495.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (857,285,167 samples, 0.01%)</title><rect x="94.7" y="213" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="97.67" y="223.5" ></text>
</g>
<g >
<title>hash_search (3,186,973,369 samples, 0.03%)</title><rect x="1068.3" y="421" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1071.27" y="431.5" ></text>
</g>
<g >
<title>postmaster_child_launch (7,629,157,056,107 samples, 80.84%)</title><rect x="130.1" y="645" width="953.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="133.07" y="655.5" >postmaster_child_launch</text>
</g>
<g >
<title>addRTEPermissionInfo (5,034,068,761 samples, 0.05%)</title><rect x="896.3" y="469" width="0.6" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="899.31" y="479.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (902,856,012 samples, 0.01%)</title><rect x="277.6" y="325" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="280.58" y="335.5" ></text>
</g>
<g >
<title>pfree (1,122,372,860 samples, 0.01%)</title><rect x="222.3" y="565" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="225.27" y="575.5" ></text>
</g>
<g >
<title>do_fsync (2,446,962,893 samples, 0.03%)</title><rect x="502.7" y="373" width="0.3" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="505.68" y="383.5" ></text>
</g>
<g >
<title>XLogInsertRecord (17,680,383,261 samples, 0.19%)</title><rect x="506.6" y="469" width="2.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="509.63" y="479.5" ></text>
</g>
<g >
<title>pg_detoast_datum_copy (1,394,870,975 samples, 0.01%)</title><rect x="1168.6" y="757" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1171.59" y="767.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (479,196,055,339 samples, 5.08%)</title><rect x="282.4" y="421" width="59.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="285.39" y="431.5" >ExecPr..</text>
</g>
<g >
<title>LWLockAcquireOrWait (87,352,600,581 samples, 0.93%)</title><rect x="473.6" y="485" width="10.9" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="476.58" y="495.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumber (1,043,818,130 samples, 0.01%)</title><rect x="377.8" y="341" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="380.81" y="351.5" ></text>
</g>
<g >
<title>make_fn_arguments (1,174,010,777 samples, 0.01%)</title><rect x="847.7" y="405" width="0.1" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="850.67" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (972,150,709 samples, 0.01%)</title><rect x="324.9" y="181" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="327.86" y="191.5" ></text>
</g>
<g >
<title>heapam_estimate_rel_size (27,497,432,430 samples, 0.29%)</title><rect x="935.2" y="373" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="938.17" y="383.5" ></text>
</g>
<g >
<title>palloc0 (1,796,226,883 samples, 0.02%)</title><rect x="451.6" y="469" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="454.64" y="479.5" ></text>
</g>
<g >
<title>DatumGetInt32 (4,519,568,908 samples, 0.05%)</title><rect x="40.0" y="757" width="0.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="42.97" y="767.5" ></text>
</g>
<g >
<title>update_process_times (2,116,501,659 samples, 0.02%)</title><rect x="791.3" y="421" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="794.33" y="431.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (1,881,773,899 samples, 0.02%)</title><rect x="261.3" y="405" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="264.32" y="415.5" ></text>
</g>
<g >
<title>HistoricSnapshotActive (1,052,735,155 samples, 0.01%)</title><rect x="52.3" y="757" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="55.28" y="767.5" ></text>
</g>
<g >
<title>MemoryContextDelete (10,537,669,606 samples, 0.11%)</title><rect x="250.0" y="469" width="1.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="252.99" y="479.5" ></text>
</g>
<g >
<title>hash_search (2,882,314,602 samples, 0.03%)</title><rect x="948.9" y="357" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="951.94" y="367.5" ></text>
</g>
<g >
<title>bms_free (1,633,795,381 samples, 0.02%)</title><rect x="966.8" y="373" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="969.76" y="383.5" ></text>
</g>
<g >
<title>get_typcollation (852,696,924 samples, 0.01%)</title><rect x="1141.1" y="757" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1144.10" y="767.5" ></text>
</g>
<g >
<title>_bt_getbuf (3,010,407,211 samples, 0.03%)</title><rect x="123.5" y="261" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="126.54" y="271.5" ></text>
</g>
<g >
<title>palloc0 (1,927,976,310 samples, 0.02%)</title><rect x="998.1" y="245" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1001.14" y="255.5" ></text>
</g>
<g >
<title>get_hash_value (2,856,090,280 samples, 0.03%)</title><rect x="399.8" y="261" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="402.77" y="271.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (2,018,613,615 samples, 0.02%)</title><rect x="205.1" y="309" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="208.14" y="319.5" ></text>
</g>
<g >
<title>PostmasterMain (24,212,439,197 samples, 0.26%)</title><rect x="82.6" y="757" width="3.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="85.62" y="767.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,680,797,107 samples, 0.02%)</title><rect x="976.6" y="421" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="979.59" y="431.5" ></text>
</g>
<g >
<title>ProcessQuery (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="565" width="1.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="127.59" y="575.5" ></text>
</g>
<g >
<title>assign_collations_walker (29,652,077,228 samples, 0.31%)</title><rect x="804.8" y="405" width="3.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="807.83" y="415.5" ></text>
</g>
<g >
<title>ExecutorRun (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="597" width="2.8" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="85.62" y="607.5" ></text>
</g>
<g >
<title>_bt_num_array_keys (1,159,155,197 samples, 0.01%)</title><rect x="129.0" y="757" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="131.97" y="767.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,242,331,221 samples, 0.01%)</title><rect x="300.3" y="117" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="303.28" y="127.5" ></text>
</g>
<g >
<title>AssertTransactionIdInAllowableRange (1,614,901,013 samples, 0.02%)</title><rect x="231.4" y="501" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="234.42" y="511.5" ></text>
</g>
<g >
<title>slot_attisnull (5,556,508,101 samples, 0.06%)</title><rect x="343.6" y="389" width="0.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="346.63" y="399.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (7,191,699,348 samples, 0.08%)</title><rect x="417.9" y="293" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="420.85" y="303.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (2,064,904,299 samples, 0.02%)</title><rect x="1143.1" y="757" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1146.14" y="767.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (821,427,597 samples, 0.01%)</title><rect x="695.3" y="485" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="698.32" y="495.5" ></text>
</g>
<g >
<title>build_path_tlist (11,910,772,342 samples, 0.13%)</title><rect x="884.3" y="437" width="1.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="887.32" y="447.5" ></text>
</g>
<g >
<title>fmgr_info_copy (828,208,329 samples, 0.01%)</title><rect x="313.8" y="245" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="316.80" y="255.5" ></text>
</g>
<g >
<title>palloc0 (2,626,162,970 samples, 0.03%)</title><rect x="1044.5" y="453" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1047.50" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,091,880,343 samples, 0.02%)</title><rect x="976.3" y="373" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="979.31" y="383.5" ></text>
</g>
<g >
<title>socket_putmessage (5,690,722,704 samples, 0.06%)</title><rect x="216.4" y="565" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="219.42" y="575.5" ></text>
</g>
<g >
<title>lcons (2,591,985,667 samples, 0.03%)</title><rect x="415.0" y="373" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="418.02" y="383.5" ></text>
</g>
<g >
<title>get_hash_entry (5,366,559,958 samples, 0.06%)</title><rect x="357.7" y="245" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="360.69" y="255.5" ></text>
</g>
<g >
<title>AllocSetFree (3,747,262,552 samples, 0.04%)</title><rect x="375.5" y="325" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="378.48" y="335.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (917,028,914 samples, 0.01%)</title><rect x="918.6" y="421" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="921.59" y="431.5" ></text>
</g>
<g >
<title>tag_hash (3,812,642,515 samples, 0.04%)</title><rect x="1067.8" y="389" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1070.78" y="399.5" ></text>
</g>
<g >
<title>PortalRunMulti (22,232,395,022 samples, 0.24%)</title><rect x="82.6" y="629" width="2.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="85.62" y="639.5" ></text>
</g>
<g >
<title>SearchSysCache4 (8,964,355,891 samples, 0.09%)</title><rect x="1009.6" y="277" width="1.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1012.56" y="287.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (4,767,953,797 samples, 0.05%)</title><rect x="443.3" y="421" width="0.6" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="446.26" y="431.5" ></text>
</g>
<g >
<title>attnameAttNum (4,030,504,920 samples, 0.04%)</title><rect x="832.0" y="469" width="0.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="834.97" y="479.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (1,696,312,215 samples, 0.02%)</title><rect x="366.6" y="277" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="369.65" y="287.5" ></text>
</g>
<g >
<title>free_attstatsslot (2,272,331,695 samples, 0.02%)</title><rect x="1001.5" y="293" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1004.47" y="303.5" ></text>
</g>
<g >
<title>palloc0 (3,135,898,709 samples, 0.03%)</title><rect x="1024.0" y="373" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1026.97" y="383.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,348,210,553 samples, 0.04%)</title><rect x="358.6" y="261" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="361.64" y="271.5" ></text>
</g>
<g >
<title>SearchCatCache1 (7,538,946,710 samples, 0.08%)</title><rect x="435.7" y="341" width="0.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="438.67" y="351.5" ></text>
</g>
<g >
<title>palloc (1,435,602,989 samples, 0.02%)</title><rect x="858.5" y="485" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="861.54" y="495.5" ></text>
</g>
<g >
<title>UnpinBuffer (5,120,845,333 samples, 0.05%)</title><rect x="338.2" y="213" width="0.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="341.24" y="223.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,838,480,657 samples, 0.02%)</title><rect x="234.5" y="501" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="237.52" y="511.5" ></text>
</g>
<g >
<title>palloc (1,684,858,722 samples, 0.02%)</title><rect x="1009.1" y="245" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1012.07" y="255.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (3,885,974,569 samples, 0.04%)</title><rect x="343.8" y="341" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="346.84" y="351.5" ></text>
</g>
<g >
<title>newNode (2,265,882,676 samples, 0.02%)</title><rect x="921.1" y="421" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="924.11" y="431.5" ></text>
</g>
<g >
<title>lappend (953,395,222 samples, 0.01%)</title><rect x="977.7" y="437" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="980.75" y="447.5" ></text>
</g>
<g >
<title>LockBuffer (1,932,277,437 samples, 0.02%)</title><rect x="126.0" y="213" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="129.00" y="223.5" ></text>
</g>
<g >
<title>planner (2,495,599,539 samples, 0.03%)</title><rect x="126.5" y="565" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="129.52" y="575.5" ></text>
</g>
<g >
<title>tick_nohz_handler (2,260,228,205 samples, 0.02%)</title><rect x="791.3" y="437" width="0.3" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="794.33" y="447.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (2,994,246,701 samples, 0.03%)</title><rect x="402.6" y="421" width="0.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="405.55" y="431.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (1,989,678,386 samples, 0.02%)</title><rect x="297.6" y="165" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="300.58" y="175.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,013,870,556 samples, 0.01%)</title><rect x="386.4" y="309" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="389.36" y="319.5" ></text>
</g>
<g >
<title>index_getnext_tid (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="389" width="6.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="97.67" y="399.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (22,832,631,250 samples, 0.24%)</title><rect x="900.5" y="437" width="2.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="903.55" y="447.5" ></text>
</g>
<g >
<title>create_empty_pathtarget (2,993,661,218 samples, 0.03%)</title><rect x="927.9" y="421" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="930.87" y="431.5" ></text>
</g>
<g >
<title>SysCacheGetAttr (47,799,417,030 samples, 0.51%)</title><rect x="1002.3" y="261" width="6.0" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1005.32" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,029,701,316 samples, 0.01%)</title><rect x="966.6" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="969.59" y="335.5" ></text>
</g>
<g >
<title>__strcmp_avx2 (2,525,157,861 samples, 0.03%)</title><rect x="413.2" y="437" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="416.18" y="447.5" ></text>
</g>
<g >
<title>core_yy_scan_buffer (8,323,205,451 samples, 0.09%)</title><rect x="870.5" y="533" width="1.0" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="873.48" y="543.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (6,554,665,414 samples, 0.07%)</title><rect x="1005.4" y="165" width="0.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1008.38" y="175.5" ></text>
</g>
<g >
<title>ExecProject (1,314,702,730 samples, 0.01%)</title><rect x="45.2" y="757" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="48.22" y="767.5" ></text>
</g>
<g >
<title>__update_load_avg_se (3,356,660,221 samples, 0.04%)</title><rect x="170.7" y="261" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="173.72" y="271.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (27,222,510,426 samples, 0.29%)</title><rect x="101.5" y="549" width="3.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="104.45" y="559.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,709,111,775 samples, 0.02%)</title><rect x="367.7" y="245" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="370.71" y="255.5" ></text>
</g>
<g >
<title>exprType (1,208,948,897 samples, 0.01%)</title><rect x="422.7" y="357" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="425.68" y="367.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (1,167,135,924 samples, 0.01%)</title><rect x="111.5" y="741" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="114.53" y="751.5" ></text>
</g>
<g >
<title>hash_initial_lookup (880,744,112 samples, 0.01%)</title><rect x="861.5" y="405" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="864.50" y="415.5" ></text>
</g>
<g >
<title>initStringInfoInternal (3,218,182,279 samples, 0.03%)</title><rect x="1079.1" y="581" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1082.08" y="591.5" ></text>
</g>
<g >
<title>eval_const_expressions (886,882,643 samples, 0.01%)</title><rect x="124.5" y="501" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="127.48" y="511.5" ></text>
</g>
<g >
<title>list_free (987,557,694 samples, 0.01%)</title><rect x="1154.6" y="757" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1157.58" y="767.5" ></text>
</g>
<g >
<title>tag_hash (2,012,049,509 samples, 0.02%)</title><rect x="948.6" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="951.56" y="335.5" ></text>
</g>
<g >
<title>SearchSysCache1 (6,221,940,475 samples, 0.07%)</title><rect x="848.2" y="389" width="0.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="851.22" y="399.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,597,747,131 samples, 0.03%)</title><rect x="508.0" y="421" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="511.05" y="431.5" ></text>
</g>
<g >
<title>ExecCloseResultRelations (18,276,068,040 samples, 0.19%)</title><rect x="235.7" y="485" width="2.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="238.67" y="495.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (5,356,501,168 samples, 0.06%)</title><rect x="395.2" y="357" width="0.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="398.21" y="367.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,184,143,175 samples, 0.01%)</title><rect x="1189.6" y="741" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1192.57" y="751.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,292,418,849 samples, 0.01%)</title><rect x="493.3" y="453" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="496.31" y="463.5" ></text>
</g>
<g >
<title>x64_sys_call (852,578,176 samples, 0.01%)</title><rect x="503.0" y="389" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="506.03" y="399.5" ></text>
</g>
<g >
<title>pg_plan_queries (2,826,087,191 samples, 0.03%)</title><rect x="124.2" y="613" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="127.24" y="623.5" ></text>
</g>
<g >
<title>try_to_wake_up (19,108,959,219 samples, 0.20%)</title><rect x="486.3" y="309" width="2.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="489.33" y="319.5" ></text>
</g>
<g >
<title>LWLockRelease (1,896,000,856 samples, 0.02%)</title><rect x="56.8" y="757" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="59.78" y="767.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (37,290,855,087 samples, 0.40%)</title><rect x="791.9" y="549" width="4.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="794.92" y="559.5" ></text>
</g>
<g >
<title>standard_planner (1,580,813,162,039 samples, 16.75%)</title><rect x="874.4" y="533" width="197.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="877.39" y="543.5" >standard_planner</text>
</g>
<g >
<title>hash_bytes (1,016,973,049 samples, 0.01%)</title><rect x="117.1" y="741" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="120.13" y="751.5" ></text>
</g>
<g >
<title>ExecutePlan (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="533" width="1.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="125.45" y="543.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,225,287,510 samples, 0.01%)</title><rect x="456.4" y="533" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="459.43" y="543.5" ></text>
</g>
<g >
<title>pfree (1,486,684,391 samples, 0.02%)</title><rect x="232.9" y="517" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="235.93" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,733,255,781 samples, 0.02%)</title><rect x="1116.3" y="677" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1119.29" y="687.5" ></text>
</g>
<g >
<title>_bt_getroot (3,010,407,211 samples, 0.03%)</title><rect x="123.5" y="277" width="0.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="126.54" y="287.5" ></text>
</g>
<g >
<title>TransactionIdGetStatus (6,856,492,637 samples, 0.07%)</title><rect x="1147.0" y="661" width="0.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1150.01" y="671.5" ></text>
</g>
<g >
<title>hash_bytes (1,929,725,183 samples, 0.02%)</title><rect x="948.6" y="309" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="951.57" y="319.5" ></text>
</g>
<g >
<title>__schedule (1,166,527,053 samples, 0.01%)</title><rect x="174.2" y="405" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="177.15" y="415.5" ></text>
</g>
<g >
<title>makeVar (4,482,229,728 samples, 0.05%)</title><rect x="921.7" y="453" width="0.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="924.73" y="463.5" ></text>
</g>
<g >
<title>palloc (1,308,277,237 samples, 0.01%)</title><rect x="919.3" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="922.32" y="447.5" ></text>
</g>
<g >
<title>ReadBuffer (21,225,489,098 samples, 0.22%)</title><rect x="399.1" y="389" width="2.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="402.11" y="399.5" ></text>
</g>
<g >
<title>create_index_paths (288,205,670,814 samples, 3.05%)</title><rect x="986.5" y="405" width="36.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="989.53" y="415.5" >cre..</text>
</g>
<g >
<title>LWLockAttemptLock (960,572,293 samples, 0.01%)</title><rect x="56.4" y="757" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="59.35" y="767.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (832,493,872 samples, 0.01%)</title><rect x="1147.1" y="629" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1150.08" y="639.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,016,396,383 samples, 0.01%)</title><rect x="815.5" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="818.47" y="415.5" ></text>
</g>
<g >
<title>planner (1,552,620,354 samples, 0.02%)</title><rect x="1171.9" y="757" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1174.88" y="767.5" ></text>
</g>
<g >
<title>_bt_getroot (1,525,270,115 samples, 0.02%)</title><rect x="128.5" y="757" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="131.46" y="767.5" ></text>
</g>
<g >
<title>DatumGetInt32 (2,460,410,111 samples, 0.03%)</title><rect x="112.4" y="741" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="115.36" y="751.5" ></text>
</g>
<g >
<title>LWLockRelease (37,070,753,527 samples, 0.39%)</title><rect x="484.5" y="485" width="4.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="487.51" y="495.5" ></text>
</g>
<g >
<title>fix_indexqual_clause (21,532,823,427 samples, 0.23%)</title><rect x="887.8" y="373" width="2.7" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="890.81" y="383.5" ></text>
</g>
<g >
<title>ComputeXidHorizons (2,423,459,785 samples, 0.03%)</title><rect x="303.5" y="181" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="306.52" y="191.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (1,594,664,986 samples, 0.02%)</title><rect x="46.5" y="757" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="49.46" y="767.5" ></text>
</g>
<g >
<title>hash_bytes (7,608,037,791 samples, 0.08%)</title><rect x="520.3" y="405" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="523.27" y="415.5" ></text>
</g>
<g >
<title>LWLockRelease (941,117,779 samples, 0.01%)</title><rect x="365.6" y="341" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="368.59" y="351.5" ></text>
</g>
<g >
<title>bms_is_valid_set (1,599,066,396 samples, 0.02%)</title><rect x="375.1" y="341" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="378.15" y="351.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,073,086,921 samples, 0.04%)</title><rect x="791.2" y="501" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="794.15" y="511.5" ></text>
</g>
<g >
<title>merge_collation_state (969,617,490 samples, 0.01%)</title><rect x="807.1" y="309" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="810.11" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,426,551,371 samples, 0.02%)</title><rect x="405.3" y="453" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="408.29" y="463.5" ></text>
</g>
<g >
<title>table_close (1,729,066,803 samples, 0.02%)</title><rect x="235.5" y="469" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="238.45" y="479.5" ></text>
</g>
<g >
<title>bms_del_member (2,863,017,622 samples, 0.03%)</title><rect x="1069.6" y="485" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1072.59" y="495.5" ></text>
</g>
<g >
<title>core_yyalloc (1,363,892,002 samples, 0.01%)</title><rect x="871.1" y="485" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="874.14" y="495.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (35,580,111,113 samples, 0.38%)</title><rect x="241.9" y="341" width="4.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="244.87" y="351.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (2,522,837,198 samples, 0.03%)</title><rect x="454.1" y="517" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="457.12" y="527.5" ></text>
</g>
<g >
<title>set_plan_references (67,767,249,031 samples, 0.72%)</title><rect x="895.3" y="517" width="8.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="898.35" y="527.5" ></text>
</g>
<g >
<title>palloc (918,747,572 samples, 0.01%)</title><rect x="833.4" y="421" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="836.42" y="431.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3,932,715,692 samples, 0.04%)</title><rect x="220.6" y="533" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="223.57" y="543.5" ></text>
</g>
<g >
<title>get_relation_info (167,103,291,273 samples, 1.77%)</title><rect x="928.5" y="421" width="20.8" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="931.46" y="431.5" ></text>
</g>
<g >
<title>AllocSetCheck (4,653,290,802 samples, 0.05%)</title><rect x="460.0" y="453" width="0.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="463.00" y="463.5" ></text>
</g>
<g >
<title>make_oper_cache_key (10,761,344,909 samples, 0.11%)</title><rect x="851.4" y="389" width="1.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="854.39" y="399.5" ></text>
</g>
<g >
<title>ExecScanExtended (27,165,434,994 samples, 0.29%)</title><rect x="278.9" y="389" width="3.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="281.92" y="399.5" ></text>
</g>
<g >
<title>distribute_row_identity_vars (1,763,115,397 samples, 0.02%)</title><rect x="979.5" y="469" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="982.47" y="479.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,356,014,044 samples, 0.05%)</title><rect x="803.7" y="325" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="806.67" y="335.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (3,598,246,854 samples, 0.04%)</title><rect x="1074.9" y="517" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1077.93" y="527.5" ></text>
</g>
<g >
<title>pgstat_count_heap_update (914,219,891 samples, 0.01%)</title><rect x="1170.7" y="757" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1173.74" y="767.5" ></text>
</g>
<g >
<title>pgstat_clear_backend_activity_snapshot (898,020,725 samples, 0.01%)</title><rect x="1170.5" y="757" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1173.49" y="767.5" ></text>
</g>
<g >
<title>eval_const_expressions (1,440,027,750 samples, 0.02%)</title><rect x="1173.0" y="741" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1176.03" y="751.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (4,447,432,053 samples, 0.05%)</title><rect x="351.8" y="245" width="0.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="354.83" y="255.5" ></text>
</g>
<g >
<title>transformAExprOp (52,675,067,824 samples, 0.56%)</title><rect x="834.2" y="405" width="6.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="837.24" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (12,571,275,943 samples, 0.13%)</title><rect x="224.7" y="565" width="1.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="227.73" y="575.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,366,985,686 samples, 0.01%)</title><rect x="1024.2" y="357" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1027.18" y="367.5" ></text>
</g>
<g >
<title>BufTableLookup (5,087,299,096 samples, 0.05%)</title><rect x="95.4" y="181" width="0.7" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="98.45" y="191.5" ></text>
</g>
<g >
<title>avc_has_perm (1,397,105,881 samples, 0.01%)</title><rect x="177.7" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="180.71" y="383.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3,585,398,524 samples, 0.04%)</title><rect x="360.9" y="309" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="363.94" y="319.5" ></text>
</g>
<g >
<title>_bt_check_compare (4,655,250,771 samples, 0.05%)</title><rect x="124.6" y="229" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="127.60" y="239.5" ></text>
</g>
<g >
<title>pfree (1,624,694,036 samples, 0.02%)</title><rect x="1001.5" y="277" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1004.55" y="287.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (945,806,513 samples, 0.01%)</title><rect x="402.0" y="485" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="405.01" y="495.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,529,546,355 samples, 0.02%)</title><rect x="445.2" y="341" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="448.17" y="351.5" ></text>
</g>
<g >
<title>check_index_predicates (2,185,440,099 samples, 0.02%)</title><rect x="1027.8" y="405" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1030.80" y="415.5" ></text>
</g>
<g >
<title>ExecOpenIndices (38,492,322,319 samples, 0.41%)</title><rect x="391.6" y="405" width="4.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="394.64" y="415.5" ></text>
</g>
<g >
<title>issue_xlog_fsync (15,648,182,657 samples, 0.17%)</title><rect x="501.8" y="469" width="2.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="504.80" y="479.5" ></text>
</g>
<g >
<title>palloc (882,895,098 samples, 0.01%)</title><rect x="972.4" y="357" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="975.45" y="367.5" ></text>
</g>
<g >
<title>get_tablespace (3,577,662,818 samples, 0.04%)</title><rect x="1013.3" y="277" width="0.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1016.33" y="287.5" ></text>
</g>
<g >
<title>CheckForBufferLeaks (2,177,977,907 samples, 0.02%)</title><rect x="461.2" y="501" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="464.23" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_futex (996,759,821 samples, 0.01%)</title><rect x="296.8" y="149" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="299.84" y="159.5" ></text>
</g>
<g >
<title>new_list (3,422,330,904 samples, 0.04%)</title><rect x="1119.5" y="709" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1122.50" y="719.5" ></text>
</g>
<g >
<title>LWLockRelease (1,465,416,357 samples, 0.02%)</title><rect x="466.6" y="501" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="469.62" y="511.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,272,668,307 samples, 0.01%)</title><rect x="695.3" y="501" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="698.26" y="511.5" ></text>
</g>
<g >
<title>ExecInitUpdateProjection (77,560,381,898 samples, 0.82%)</title><rect x="268.8" y="437" width="9.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="271.84" y="447.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (2,313,250,588 samples, 0.02%)</title><rect x="526.2" y="517" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="529.20" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,962,675,009 samples, 0.02%)</title><rect x="1120.1" y="677" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1123.13" y="687.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (1,498,575,697 samples, 0.02%)</title><rect x="822.9" y="309" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="825.88" y="319.5" ></text>
</g>
<g >
<title>bms_is_subset (942,313,701 samples, 0.01%)</title><rect x="959.2" y="405" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="962.22" y="415.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (1,953,186,467 samples, 0.02%)</title><rect x="430.2" y="373" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="433.20" y="383.5" ></text>
</g>
<g >
<title>LWLockRelease (957,146,842 samples, 0.01%)</title><rect x="1147.1" y="645" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="1150.06" y="655.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (3,854,867,773 samples, 0.04%)</title><rect x="268.3" y="325" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="271.31" y="335.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,184,664,765 samples, 0.02%)</title><rect x="927.6" y="421" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="930.58" y="431.5" ></text>
</g>
<g >
<title>detoast_attr (1,508,042,923 samples, 0.02%)</title><rect x="1131.3" y="757" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1134.33" y="767.5" ></text>
</g>
<g >
<title>_bt_checkkeys (2,568,695,668 samples, 0.03%)</title><rect x="1157.9" y="277" width="0.4" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="1160.94" y="287.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,031,936,756 samples, 0.02%)</title><rect x="861.4" y="421" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="864.35" y="431.5" ></text>
</g>
<g >
<title>hash_initial_lookup (847,596,591 samples, 0.01%)</title><rect x="299.2" y="101" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="302.22" y="111.5" ></text>
</g>
<g >
<title>AllocSetAlloc (902,411,703 samples, 0.01%)</title><rect x="985.7" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="988.70" y="367.5" ></text>
</g>
<g >
<title>__scm_recv_common.isra.0 (1,543,177,568 samples, 0.02%)</title><rect x="182.9" y="357" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="185.89" y="367.5" ></text>
</g>
<g >
<title>LockBuffer (1,626,615,858 samples, 0.02%)</title><rect x="57.7" y="757" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="60.73" y="767.5" ></text>
</g>
<g >
<title>ExecGetUpdateNewTuple (22,655,575,050 samples, 0.24%)</title><rect x="266.0" y="437" width="2.8" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="268.99" y="447.5" ></text>
</g>
<g >
<title>[unknown] (89,116,723,262 samples, 0.94%)</title><rect x="111.0" y="757" width="11.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="114.02" y="767.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (1,102,693,012 samples, 0.01%)</title><rect x="826.0" y="309" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="828.99" y="319.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,803,676,597 samples, 0.04%)</title><rect x="917.3" y="405" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="920.27" y="415.5" ></text>
</g>
<g >
<title>pull_varnos_walker (9,417,438,642 samples, 0.10%)</title><rect x="974.1" y="373" width="1.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="977.06" y="383.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (943,094,944 samples, 0.01%)</title><rect x="261.2" y="405" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="264.19" y="415.5" ></text>
</g>
<g >
<title>list_nth (1,160,182,702 samples, 0.01%)</title><rect x="922.8" y="469" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="925.78" y="479.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,123,038,602 samples, 0.01%)</title><rect x="300.3" y="101" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="303.29" y="111.5" ></text>
</g>
<g >
<title>list_nth (1,033,962,007 samples, 0.01%)</title><rect x="1048.5" y="501" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1051.47" y="511.5" ></text>
</g>
<g >
<title>dlist_init (1,032,987,377 samples, 0.01%)</title><rect x="1132.0" y="757" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1134.97" y="767.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (1,757,239,902 samples, 0.02%)</title><rect x="54.9" y="757" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="57.93" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,007,924,722 samples, 0.01%)</title><rect x="934.8" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="937.76" y="351.5" ></text>
</g>
<g >
<title>ExtendCommitTs (2,339,989,713 samples, 0.02%)</title><rect x="349.1" y="309" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="352.13" y="319.5" ></text>
</g>
<g >
<title>perf_ctx_disable (2,535,334,364 samples, 0.03%)</title><rect x="478.0" y="229" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="480.97" y="239.5" ></text>
</g>
<g >
<title>__schedule (43,458,626,869 samples, 0.46%)</title><rect x="476.4" y="293" width="5.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="479.41" y="303.5" ></text>
</g>
<g >
<title>RelationBuildPublicationDesc (3,950,832,897 samples, 0.04%)</title><rect x="411.8" y="421" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="414.85" y="431.5" ></text>
</g>
<g >
<title>table_open (28,478,317,501 samples, 0.30%)</title><rect x="865.6" y="517" width="3.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="868.58" y="527.5" ></text>
</g>
<g >
<title>pq_getmsgstring (15,828,403,274 samples, 0.17%)</title><rect x="1081.1" y="597" width="2.0" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1084.14" y="607.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (827,643,902 samples, 0.01%)</title><rect x="941.9" y="293" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="944.87" y="303.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (969,354,770 samples, 0.01%)</title><rect x="354.0" y="229" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="357.04" y="239.5" ></text>
</g>
<g >
<title>SearchCatCache (24,815,996,488 samples, 0.26%)</title><rect x="823.3" y="341" width="3.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="826.25" y="351.5" ></text>
</g>
<g >
<title>is_opclause (1,626,740,078 samples, 0.02%)</title><rect x="1152.1" y="757" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1155.14" y="767.5" ></text>
</g>
<g >
<title>AtCommit_Memory (8,403,658,779 samples, 0.09%)</title><rect x="459.6" y="517" width="1.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="462.62" y="527.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,011,414,068 samples, 0.01%)</title><rect x="828.3" y="325" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="831.30" y="335.5" ></text>
</g>
<g >
<title>dlist_is_empty (3,472,055,380 samples, 0.04%)</title><rect x="522.9" y="453" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="525.94" y="463.5" ></text>
</g>
<g >
<title>ReadCommand (859,573,036 samples, 0.01%)</title><rect x="87.6" y="757" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="90.57" y="767.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (63,837,808,028 samples, 0.68%)</title><rect x="300.9" y="261" width="7.9" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="303.85" y="271.5" ></text>
</g>
<g >
<title>ExecProcNode (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="501" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="127.59" y="511.5" ></text>
</g>
<g >
<title>pg_atomic_read_u64_impl (1,111,400,010 samples, 0.01%)</title><rect x="503.8" y="453" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="506.83" y="463.5" ></text>
</g>
<g >
<title>rewriteTargetListIU (14,469,173,008 samples, 0.15%)</title><rect x="859.0" y="517" width="1.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="861.98" y="527.5" ></text>
</g>
<g >
<title>gup_fast_pgd_range (876,385,272 samples, 0.01%)</title><rect x="352.2" y="101" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="355.18" y="111.5" ></text>
</g>
<g >
<title>do_syscall_64 (28,898,778,091 samples, 0.31%)</title><rect x="485.2" y="389" width="3.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="488.18" y="399.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,101,629,320 samples, 0.01%)</title><rect x="398.7" y="341" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="401.66" y="351.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (1,321,615,747 samples, 0.01%)</title><rect x="129.2" y="757" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="132.20" y="767.5" ></text>
</g>
<g >
<title>match_clause_to_index (26,446,532,382 samples, 0.28%)</title><rect x="1019.3" y="357" width="3.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="1022.25" y="367.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (2,314,758,137 samples, 0.02%)</title><rect x="1185.0" y="613" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1187.99" y="623.5" ></text>
</g>
<g >
<title>newNode (3,828,660,970 samples, 0.04%)</title><rect x="433.2" y="405" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="436.20" y="415.5" ></text>
</g>
<g >
<title>enable_statement_timeout (1,615,102,191 samples, 0.02%)</title><rect x="1078.8" y="565" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1081.76" y="575.5" ></text>
</g>
<g >
<title>cost_index (149,622,298,944 samples, 1.59%)</title><rect x="998.6" y="341" width="18.7" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1001.56" y="351.5" ></text>
</g>
<g >
<title>lappend_int (3,515,063,061 samples, 0.04%)</title><rect x="449.5" y="453" width="0.5" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="452.54" y="463.5" ></text>
</g>
<g >
<title>relation_close (1,495,450,986 samples, 0.02%)</title><rect x="922.9" y="453" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="925.93" y="463.5" ></text>
</g>
<g >
<title>palloc0 (3,033,729,516 samples, 0.03%)</title><rect x="1116.7" y="693" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1119.71" y="703.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,647,958,216 samples, 0.02%)</title><rect x="354.2" y="229" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="357.16" y="239.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (1,338,761,308 samples, 0.01%)</title><rect x="123.9" y="229" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="126.91" y="239.5" ></text>
</g>
<g >
<title>clauselist_selectivity (76,615,185,122 samples, 0.81%)</title><rect x="1028.5" y="389" width="9.6" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1031.55" y="399.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,989,313,088 samples, 0.02%)</title><rect x="1015.0" y="245" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1017.99" y="255.5" ></text>
</g>
<g >
<title>update_curr (15,720,843,091 samples, 0.17%)</title><rect x="167.4" y="277" width="2.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="170.45" y="287.5" ></text>
</g>
<g >
<title>IndexNext (53,015,643,311 samples, 0.56%)</title><rect x="94.7" y="421" width="6.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="97.67" y="431.5" ></text>
</g>
<g >
<title>lappend (3,177,205,634 samples, 0.03%)</title><rect x="859.9" y="501" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="862.85" y="511.5" ></text>
</g>
<g >
<title>AssertCouldGetRelation (2,217,726,630 samples, 0.02%)</title><rect x="30.2" y="757" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="33.22" y="767.5" ></text>
</g>
<g >
<title>int4eq (1,881,584,314 samples, 0.02%)</title><rect x="1158.0" y="229" width="0.2" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text x="1160.97" y="239.5" ></text>
</g>
<g >
<title>all (9,437,180,925,478 samples, 100%)</title><rect x="10.0" y="789" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="799.5" ></text>
</g>
<g >
<title>AllocSetDelete (900,641,585 samples, 0.01%)</title><rect x="28.7" y="757" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="31.67" y="767.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,370,651,162 samples, 0.01%)</title><rect x="239.6" y="405" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="242.61" y="415.5" ></text>
</g>
<g >
<title>clause_selectivity_ext (803,901,079 samples, 0.01%)</title><rect x="126.6" y="373" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="129.56" y="383.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (26,287,812,967 samples, 0.28%)</title><rect x="805.2" y="389" width="3.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="808.21" y="399.5" ></text>
</g>
<g >
<title>palloc (1,053,949,832 samples, 0.01%)</title><rect x="451.3" y="453" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="454.28" y="463.5" ></text>
</g>
<g >
<title>asm_sysvec_thermal (1,103,005,298 samples, 0.01%)</title><rect x="791.7" y="517" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="794.69" y="527.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,946,746,451 samples, 0.02%)</title><rect x="517.9" y="421" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="520.91" y="431.5" ></text>
</g>
<g >
<title>palloc0 (1,358,577,473 samples, 0.01%)</title><rect x="1035.3" y="197" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1038.32" y="207.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,243,490,808 samples, 0.01%)</title><rect x="354.4" y="245" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="357.38" y="255.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="437" width="1.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="127.59" y="447.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,321,623,581 samples, 0.01%)</title><rect x="1034.5" y="149" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1037.50" y="159.5" ></text>
</g>
<g >
<title>newNode (1,650,568,725 samples, 0.02%)</title><rect x="810.4" y="453" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="813.41" y="463.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,262,395,421 samples, 0.01%)</title><rect x="363.2" y="325" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="366.22" y="335.5" ></text>
</g>
<g >
<title>intel_thermal_interrupt (1,449,430,375 samples, 0.02%)</title><rect x="751.8" y="485" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="754.82" y="495.5" ></text>
</g>
<g >
<title>assign_query_collations (56,564,465,563 samples, 0.60%)</title><rect x="801.5" y="485" width="7.0" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="804.46" y="495.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (17,085,190,311 samples, 0.18%)</title><rect x="802.5" y="405" width="2.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="805.48" y="415.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (3,701,218,692 samples, 0.04%)</title><rect x="382.1" y="261" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="385.06" y="271.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (17,020,742,182 samples, 0.18%)</title><rect x="266.7" y="373" width="2.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="269.66" y="383.5" ></text>
</g>
<g >
<title>palloc (2,739,262,524 samples, 0.03%)</title><rect x="1165.3" y="757" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1168.32" y="767.5" ></text>
</g>
<g >
<title>palloc (1,518,647,351 samples, 0.02%)</title><rect x="944.3" y="373" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="947.27" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,183,461,259 samples, 0.01%)</title><rect x="835.8" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="838.83" y="351.5" ></text>
</g>
<g >
<title>populate_compact_attribute (2,471,392,037 samples, 0.03%)</title><rect x="437.2" y="357" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="440.17" y="367.5" ></text>
</g>
<g >
<title>lappend (2,972,207,528 samples, 0.03%)</title><rect x="104.2" y="437" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="107.23" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,017,943,440 samples, 0.02%)</title><rect x="879.6" y="421" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="882.61" y="431.5" ></text>
</g>
<g >
<title>enforce_generic_type_consistency (873,422,160 samples, 0.01%)</title><rect x="834.6" y="373" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="837.59" y="383.5" ></text>
</g>
<g >
<title>LWLockRelease (1,694,285,098 samples, 0.02%)</title><rect x="1078.4" y="517" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="1081.41" y="527.5" ></text>
</g>
<g >
<title>postmaster_child_launch (17,884,496,647 samples, 0.19%)</title><rect x="124.6" y="661" width="2.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="127.59" y="671.5" ></text>
</g>
<g >
<title>newNode (3,819,206,282 samples, 0.04%)</title><rect x="1023.9" y="389" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1026.89" y="399.5" ></text>
</g>
<g >
<title>pg_comp_crc32c_sse42 (5,265,966,171 samples, 0.06%)</title><rect x="383.9" y="309" width="0.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="386.91" y="319.5" ></text>
</g>
<g >
<title>assign_collations_walker (1,065,285,428 samples, 0.01%)</title><rect x="804.4" y="373" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="807.43" y="383.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (1,057,917,305 samples, 0.01%)</title><rect x="826.2" y="293" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="829.16" y="303.5" ></text>
</g>
<g >
<title>oper (36,784,736,664 samples, 0.39%)</title><rect x="848.1" y="405" width="4.6" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="851.13" y="415.5" ></text>
</g>
<g >
<title>LWLockRelease (848,245,811 samples, 0.01%)</title><rect x="100.5" y="181" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="103.55" y="191.5" ></text>
</g>
<g >
<title>make_op (35,222,304,753 samples, 0.37%)</title><rect x="834.3" y="389" width="4.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="837.29" y="399.5" ></text>
</g>
<g >
<title>sentinel_ok (4,934,687,721 samples, 0.05%)</title><rect x="146.1" y="533" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="149.10" y="543.5" ></text>
</g>
<g >
<title>SyncRepWaitForLSN (2,197,019,029 samples, 0.02%)</title><rect x="469.3" y="501" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="472.31" y="511.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (5,982,816,431 samples, 0.06%)</title><rect x="350.7" y="277" width="0.8" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="353.71" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (985,898,650 samples, 0.01%)</title><rect x="869.3" y="485" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="872.32" y="495.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,135,739,602 samples, 0.01%)</title><rect x="363.0" y="325" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="366.01" y="335.5" ></text>
</g>
<g >
<title>ReleaseCatCache (922,291,850 samples, 0.01%)</title><rect x="916.5" y="357" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="919.48" y="367.5" ></text>
</g>
<g >
<title>core_yylex_init (6,486,342,646 samples, 0.07%)</title><rect x="871.5" y="533" width="0.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="874.54" y="543.5" ></text>
</g>
<g >
<title>lappend_oid (2,272,393,056 samples, 0.02%)</title><rect x="897.6" y="469" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="900.59" y="479.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (1,768,562,809 samples, 0.02%)</title><rect x="84.7" y="197" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="87.72" y="207.5" ></text>
</g>
<g >
<title>LWLockRelease (2,305,080,865 samples, 0.02%)</title><rect x="518.4" y="453" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="521.43" y="463.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,274,531,711 samples, 0.01%)</title><rect x="816.1" y="405" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="819.08" y="415.5" ></text>
</g>
<g >
<title>palloc0 (1,941,713,984 samples, 0.02%)</title><rect x="808.6" y="453" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="811.60" y="463.5" ></text>
</g>
<g >
<title>main (4,239,417,954 samples, 0.04%)</title><rect x="1157.9" y="757" width="0.6" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="1160.94" y="767.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (840,027,331 samples, 0.01%)</title><rect x="279.9" y="277" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="282.86" y="287.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,988,498,643 samples, 0.05%)</title><rect x="353.9" y="277" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="356.91" y="287.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (6,135,881,421 samples, 0.07%)</title><rect x="173.4" y="421" width="0.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="176.35" y="431.5" ></text>
</g>
<g >
<title>LockRelationOid (33,865,052,583 samples, 0.36%)</title><rect x="818.0" y="405" width="4.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="821.02" y="415.5" ></text>
</g>
<g >
<title>obj_cgroup_charge_account (1,010,375,605 samples, 0.01%)</title><rect x="197.3" y="325" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="200.34" y="335.5" ></text>
</g>
<g >
<title>_bt_compare (4,164,144,568 samples, 0.04%)</title><rect x="337.2" y="229" width="0.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="340.19" y="239.5" ></text>
</g>
<g >
<title>pull_varnos_walker (5,033,029,222 samples, 0.05%)</title><rect x="974.6" y="325" width="0.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="977.61" y="335.5" ></text>
</g>
<g >
<title>bms_add_member (893,749,827 samples, 0.01%)</title><rect x="840.4" y="293" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="843.35" y="303.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,515,015,409 samples, 0.02%)</title><rect x="1073.7" y="565" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1076.74" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,873,122,891 samples, 0.02%)</title><rect x="382.2" y="181" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="385.18" y="191.5" ></text>
</g>
<g >
<title>max_parallel_hazard_checker (5,759,993,287 samples, 0.06%)</title><rect x="916.4" y="405" width="0.7" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="919.35" y="415.5" ></text>
</g>
<g >
<title>att_isnull (1,832,970,078 samples, 0.02%)</title><rect x="1008.0" y="197" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1011.03" y="207.5" ></text>
</g>
<g >
<title>ExecProcNode (1,101,721,034,957 samples, 11.67%)</title><rect x="264.3" y="485" width="137.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="267.25" y="495.5" >ExecProcNode</text>
</g>
<g >
<title>LWLockAttemptLock (1,335,873,097 samples, 0.01%)</title><rect x="339.6" y="181" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="342.56" y="191.5" ></text>
</g>
<g >
<title>all_rows_selectable (9,725,600,247 samples, 0.10%)</title><rect x="1034.1" y="213" width="1.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1037.07" y="223.5" ></text>
</g>
<g >
<title>hash_bytes (12,024,925,687 samples, 0.13%)</title><rect x="1141.6" y="757" width="1.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1144.64" y="767.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (800,370,399 samples, 0.01%)</title><rect x="435.5" y="293" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="438.50" y="303.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (13,134,506,382 samples, 0.14%)</title><rect x="444.1" y="389" width="1.6" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="447.09" y="399.5" ></text>
</g>
<g >
<title>ExecModifyTable (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="469" width="1.9" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="127.59" y="479.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop (6,651,126,964 samples, 0.07%)</title><rect x="1052.3" y="485" width="0.8" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="1055.28" y="495.5" ></text>
</g>
<g >
<title>RelationClose (1,498,828,738 samples, 0.02%)</title><rect x="939.9" y="389" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="942.91" y="399.5" ></text>
</g>
<g >
<title>futex_wait (925,058,534 samples, 0.01%)</title><rect x="296.8" y="117" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="299.85" y="127.5" ></text>
</g>
<g >
<title>relation_open (16,566,528,540 samples, 0.18%)</title><rect x="923.2" y="453" width="2.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="926.16" y="463.5" ></text>
</g>
<g >
<title>index_getattr (3,243,776,084 samples, 0.03%)</title><rect x="125.6" y="229" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="128.59" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,096,285,574 samples, 0.01%)</title><rect x="425.2" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="428.17" y="335.5" ></text>
</g>
<g >
<title>__x64_sys_futex (977,774,889 samples, 0.01%)</title><rect x="363.4" y="245" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="366.40" y="255.5" ></text>
</g>
<g >
<title>__futex_wait (969,987,414 samples, 0.01%)</title><rect x="1147.6" y="485" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1150.60" y="495.5" ></text>
</g>
<g >
<title>newNode (4,336,646,713 samples, 0.05%)</title><rect x="424.1" y="357" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="427.08" y="367.5" ></text>
</g>
<g >
<title>pollwake (60,187,637,733 samples, 0.64%)</title><rect x="198.2" y="357" width="7.5" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="201.16" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (66,255,083,223 samples, 0.70%)</title><rect x="176.2" y="469" width="8.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="179.21" y="479.5" ></text>
</g>
<g >
<title>index_getnext_slot (379,355,462,146 samples, 4.02%)</title><rect x="293.4" y="325" width="47.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="296.35" y="335.5" >inde..</text>
</g>
<g >
<title>hash_search (3,826,154,442 samples, 0.04%)</title><rect x="395.4" y="341" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="398.40" y="351.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (1,038,993,533 samples, 0.01%)</title><rect x="184.3" y="453" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="187.34" y="463.5" ></text>
</g>
<g >
<title>AllocSetCheck (3,298,438,532 samples, 0.03%)</title><rect x="133.0" y="485" width="0.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="136.03" y="495.5" ></text>
</g>
<g >
<title>palloc0 (3,682,504,019 samples, 0.04%)</title><rect x="275.0" y="389" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="278.00" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,471,158,299 samples, 0.02%)</title><rect x="388.1" y="277" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="391.11" y="287.5" ></text>
</g>
<g >
<title>SearchSysCache (6,758,039,845 samples, 0.07%)</title><rect x="1021.7" y="277" width="0.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1024.66" y="287.5" ></text>
</g>
<g >
<title>expression_returns_set_walker (9,583,808,969 samples, 0.10%)</title><rect x="842.6" y="437" width="1.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="845.60" y="447.5" ></text>
</g>
<g >
<title>ReleaseSysCache (965,461,154 samples, 0.01%)</title><rect x="1009.4" y="277" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1012.44" y="287.5" ></text>
</g>
<g >
<title>ExecReadyExpr (2,968,485,550 samples, 0.03%)</title><rect x="432.4" y="405" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="435.42" y="415.5" ></text>
</g>
<g >
<title>create_plan (93,627,657,837 samples, 0.99%)</title><rect x="882.3" y="517" width="11.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="885.26" y="527.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,415,223,610 samples, 0.04%)</title><rect x="835.0" y="325" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="838.00" y="335.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,244,056,214 samples, 0.03%)</title><rect x="1147.3" y="629" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1150.34" y="639.5" ></text>
</g>
<g >
<title>ReadBuffer_common (18,229,004,061 samples, 0.19%)</title><rect x="366.4" y="325" width="2.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="369.44" y="335.5" ></text>
</g>
<g >
<title>CheckExprStillValid (20,791,200,822 samples, 0.22%)</title><rect x="283.4" y="293" width="2.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="286.37" y="303.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,506,470,732 samples, 0.02%)</title><rect x="423.0" y="325" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="425.96" y="335.5" ></text>
</g>
<g >
<title>bms_copy (1,267,344,313 samples, 0.01%)</title><rect x="995.3" y="341" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="998.35" y="351.5" ></text>
</g>
<g >
<title>new_list (1,493,585,974 samples, 0.02%)</title><rect x="104.4" y="421" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="107.38" y="431.5" ></text>
</g>
<g >
<title>attnumTypeId (911,076,858 samples, 0.01%)</title><rect x="841.3" y="437" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="844.31" y="447.5" ></text>
</g>
<g >
<title>PostgresMain (24,212,439,197 samples, 0.26%)</title><rect x="82.6" y="677" width="3.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="85.62" y="687.5" ></text>
</g>
<g >
<title>ExecModifyTable (804,184,285 samples, 0.01%)</title><rect x="44.6" y="757" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="47.63" y="767.5" ></text>
</g>
<g >
<title>ep_send_events (23,952,390,286 samples, 0.25%)</title><rect x="155.2" y="389" width="3.0" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="158.20" y="399.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (845,519,118 samples, 0.01%)</title><rect x="162.1" y="277" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="165.08" y="287.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (4,304,820,506 samples, 0.05%)</title><rect x="517.8" y="437" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="520.80" y="447.5" ></text>
</g>
<g >
<title>pg_client_to_server (13,536,346,552 samples, 0.14%)</title><rect x="1081.4" y="581" width="1.7" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1084.39" y="591.5" ></text>
</g>
<g >
<title>__strlen_avx2 (961,689,789 samples, 0.01%)</title><rect x="212.3" y="517" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="215.27" y="527.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (1,402,482,783 samples, 0.01%)</title><rect x="1188.0" y="757" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1191.02" y="767.5" ></text>
</g>
<g >
<title>fmgr_info (2,100,210,825 samples, 0.02%)</title><rect x="431.5" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="434.48" y="383.5" ></text>
</g>
<g >
<title>btrescan (5,473,261,993 samples, 0.06%)</title><rect x="341.0" y="309" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="344.03" y="319.5" ></text>
</g>
<g >
<title>core_yy_switch_to_buffer (4,732,386,711 samples, 0.05%)</title><rect x="870.7" y="517" width="0.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="873.73" y="527.5" ></text>
</g>
<g >
<title>preprocess_expression (22,615,945,539 samples, 0.24%)</title><rect x="1052.0" y="501" width="2.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1055.02" y="511.5" ></text>
</g>
<g >
<title>fetch_upper_rel (13,842,616,851 samples, 0.15%)</title><rect x="913.4" y="485" width="1.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="916.40" y="495.5" ></text>
</g>
<g >
<title>gup_fast (2,458,698,564 samples, 0.03%)</title><rect x="485.9" y="293" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="488.89" y="303.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (2,055,851,739 samples, 0.02%)</title><rect x="262.4" y="501" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="265.42" y="511.5" ></text>
</g>
<g >
<title>MarkBufferDirty (980,575,177 samples, 0.01%)</title><rect x="58.7" y="757" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="61.74" y="767.5" ></text>
</g>
<g >
<title>newNode (3,909,308,646 samples, 0.04%)</title><rect x="970.8" y="357" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="973.83" y="367.5" ></text>
</g>
<g >
<title>palloc0 (4,461,571,650 samples, 0.05%)</title><rect x="885.2" y="389" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="888.24" y="399.5" ></text>
</g>
<g >
<title>BufTableLookup (2,364,759,180 samples, 0.03%)</title><rect x="400.1" y="277" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="403.13" y="287.5" ></text>
</g>
<g >
<title>ExecutePlan (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="549" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1160.94" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,687,286,754 samples, 0.02%)</title><rect x="470.3" y="373" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="473.35" y="383.5" ></text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (5,645,977,995 samples, 0.06%)</title><rect x="912.2" y="421" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="915.16" y="431.5" ></text>
</g>
<g >
<title>new_list (5,464,318,773 samples, 0.06%)</title><rect x="918.1" y="469" width="0.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="921.14" y="479.5" ></text>
</g>
<g >
<title>ParallelContextActive (896,798,061 samples, 0.01%)</title><rect x="81.4" y="757" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="84.43" y="767.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (6,183,434,695 samples, 0.07%)</title><rect x="172.3" y="437" width="0.8" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="175.28" y="447.5" ></text>
</g>
<g >
<title>standard_planner (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="581" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1161.36" y="591.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (11,500,004,180 samples, 0.12%)</title><rect x="1141.7" y="741" width="1.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1144.70" y="751.5" ></text>
</g>
<g >
<title>CheckExprStillValid (801,493,887 samples, 0.01%)</title><rect x="38.2" y="757" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="41.20" y="767.5" ></text>
</g>
<g >
<title>BackendStartup (17,884,496,647 samples, 0.19%)</title><rect x="124.6" y="677" width="2.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="127.59" y="687.5" ></text>
</g>
<g >
<title>palloc0 (1,825,198,272 samples, 0.02%)</title><rect x="968.5" y="293" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="971.46" y="303.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (3,066,592,189 samples, 0.03%)</title><rect x="387.5" y="309" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="390.48" y="319.5" ></text>
</g>
<g >
<title>task_tick_fair (1,492,204,771 samples, 0.02%)</title><rect x="751.4" y="405" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="754.44" y="415.5" ></text>
</g>
<g >
<title>BackendMain (17,104,611,586 samples, 0.18%)</title><rect x="122.5" y="661" width="2.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="125.45" y="671.5" ></text>
</g>
<g >
<title>AllocSetAlloc (988,808,305 samples, 0.01%)</title><rect x="391.5" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="394.50" y="351.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="357" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="88.40" y="367.5" ></text>
</g>
<g >
<title>palloc0 (2,112,166,845 samples, 0.02%)</title><rect x="921.1" y="405" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="924.13" y="415.5" ></text>
</g>
<g >
<title>exprCollation (1,839,218,713 samples, 0.02%)</title><rect x="806.6" y="309" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="809.61" y="319.5" ></text>
</g>
<g >
<title>check_log_duration (1,212,663,747 samples, 0.01%)</title><rect x="1126.5" y="757" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1129.46" y="767.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (11,970,693,185 samples, 0.13%)</title><rect x="83.2" y="213" width="1.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="86.22" y="223.5" ></text>
</g>
<g >
<title>palloc0 (2,484,149,880 samples, 0.03%)</title><rect x="922.0" y="421" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="924.97" y="431.5" ></text>
</g>
<g >
<title>palloc (1,454,168,223 samples, 0.02%)</title><rect x="1054.4" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1057.39" y="415.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (874,999,553 samples, 0.01%)</title><rect x="973.4" y="341" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="976.41" y="351.5" ></text>
</g>
<g >
<title>inline_function (1,700,520,170 samples, 0.02%)</title><rect x="104.6" y="453" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="107.61" y="463.5" ></text>
</g>
<g >
<title>folio_mark_dirty (2,182,614,969 samples, 0.02%)</title><rect x="500.2" y="341" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="503.22" y="351.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (949,362,941 samples, 0.01%)</title><rect x="961.3" y="293" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="964.30" y="303.5" ></text>
</g>
<g >
<title>exprTypmod (1,260,713,877 samples, 0.01%)</title><rect x="842.0" y="405" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="845.03" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,451,503,583 samples, 0.03%)</title><rect x="432.0" y="357" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="435.05" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,443,211,167 samples, 0.05%)</title><rect x="932.6" y="293" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="935.55" y="303.5" ></text>
</g>
<g >
<title>coerce_to_target_type (1,162,104,662 samples, 0.01%)</title><rect x="1128.1" y="757" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1131.09" y="767.5" ></text>
</g>
<g >
<title>expr_setup_walker (8,383,253,194 samples, 0.09%)</title><rect x="417.7" y="309" width="1.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="420.70" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (2,634,789,378 samples, 0.03%)</title><rect x="96.4" y="133" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="99.41" y="143.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,509,966,794 samples, 0.02%)</title><rect x="936.7" y="213" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="939.70" y="223.5" ></text>
</g>
<g >
<title>__x64_sys_pwrite64 (62,559,606,586 samples, 0.66%)</title><rect x="493.6" y="421" width="7.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="496.57" y="431.5" ></text>
</g>
<g >
<title>SearchSysCache1 (8,013,966,004 samples, 0.08%)</title><rect x="435.6" y="357" width="1.0" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="438.61" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (9,911,313,283 samples, 0.11%)</title><rect x="486.6" y="261" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="489.57" y="271.5" ></text>
</g>
<g >
<title>table_tuple_fetch_row_version (38,377,672,695 samples, 0.41%)</title><rect x="397.0" y="437" width="4.8" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="399.98" y="447.5" ></text>
</g>
<g >
<title>palloc (2,256,661,378 samples, 0.02%)</title><rect x="879.6" y="437" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="882.60" y="447.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (945,077,666 samples, 0.01%)</title><rect x="103.3" y="405" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="106.27" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberSnapshot (2,156,427,892 samples, 0.02%)</title><rect x="234.1" y="485" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="237.06" y="495.5" ></text>
</g>
<g >
<title>distribute_restrictinfo_to_rels (8,291,226,765 samples, 0.09%)</title><rect x="981.3" y="437" width="1.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="984.29" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (67,968,756,483 samples, 0.72%)</title><rect x="475.6" y="421" width="8.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="478.56" y="431.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (2,568,695,668 samples, 0.03%)</title><rect x="1157.9" y="309" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1160.94" y="319.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,507,719,097 samples, 0.02%)</title><rect x="830.6" y="357" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="833.62" y="367.5" ></text>
</g>
<g >
<title>ReadBuffer_common (27,553,359,179 samples, 0.29%)</title><rect x="297.4" y="213" width="3.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="300.36" y="223.5" ></text>
</g>
<g >
<title>filemap_get_entry (8,980,854,231 samples, 0.10%)</title><rect x="498.8" y="325" width="1.1" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="501.82" y="335.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (15,802,351,036 samples, 0.17%)</title><rect x="466.0" y="517" width="2.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="469.00" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,266,383,089 samples, 0.01%)</title><rect x="922.1" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="925.12" y="415.5" ></text>
</g>
<g >
<title>list_free (2,162,724,501 samples, 0.02%)</title><rect x="993.8" y="341" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="996.85" y="351.5" ></text>
</g>
<g >
<title>FullTransactionIdNewer (1,113,284,104 samples, 0.01%)</title><rect x="219.9" y="549" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="222.85" y="559.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (1,249,093,794 samples, 0.01%)</title><rect x="98.5" y="165" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="101.46" y="175.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,013,532,107 samples, 0.01%)</title><rect x="973.4" y="373" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="976.40" y="383.5" ></text>
</g>
<g >
<title>LockRelease (871,229,770 samples, 0.01%)</title><rect x="58.3" y="757" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="61.28" y="767.5" ></text>
</g>
<g >
<title>HeapTupleNoNulls (1,240,391,429 samples, 0.01%)</title><rect x="51.8" y="757" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="54.79" y="767.5" ></text>
</g>
<g >
<title>bms_is_subset (2,368,670,661 samples, 0.03%)</title><rect x="951.9" y="437" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="954.90" y="447.5" ></text>
</g>
<g >
<title>IsTransactionState (1,487,252,980 samples, 0.02%)</title><rect x="54.6" y="757" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="57.63" y="767.5" ></text>
</g>
<g >
<title>ExecProcNode (53,501,250,861 samples, 0.57%)</title><rect x="94.7" y="565" width="6.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="97.67" y="575.5" ></text>
</g>
<g >
<title>SearchSysCache3 (5,978,254,728 samples, 0.06%)</title><rect x="1014.6" y="293" width="0.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1017.60" y="303.5" ></text>
</g>
<g >
<title>newNode (5,369,154,466 samples, 0.06%)</title><rect x="816.4" y="453" width="0.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="819.40" y="463.5" ></text>
</g>
<g >
<title>ComputeXidHorizons (1,810,538,987 samples, 0.02%)</title><rect x="310.3" y="197" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="313.28" y="207.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (6,321,887,487 samples, 0.07%)</title><rect x="943.3" y="373" width="0.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="946.29" y="383.5" ></text>
</g>
<g >
<title>bms_add_member (2,461,491,216 samples, 0.03%)</title><rect x="896.9" y="469" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="899.95" y="479.5" ></text>
</g>
<g >
<title>SearchCatCache1 (2,953,456,826 samples, 0.03%)</title><rect x="960.5" y="277" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="963.51" y="287.5" ></text>
</g>
<g >
<title>AtStart_ResourceOwner (14,328,249,661 samples, 0.15%)</title><rect x="1075.6" y="533" width="1.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1078.61" y="543.5" ></text>
</g>
<g >
<title>lappend (3,132,139,945 samples, 0.03%)</title><rect x="449.1" y="453" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="452.15" y="463.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (17,427,862,636 samples, 0.18%)</title><rect x="266.6" y="389" width="2.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="269.61" y="399.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (1,014,924,226 samples, 0.01%)</title><rect x="1183.0" y="757" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1185.96" y="767.5" ></text>
</g>
<g >
<title>make_restrictinfo (26,146,899,974 samples, 0.28%)</title><rect x="965.6" y="405" width="3.3" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="968.58" y="415.5" ></text>
</g>
<g >
<title>parserOpenTable (111,444,993,224 samples, 1.18%)</title><rect x="817.1" y="469" width="14.0" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="820.13" y="479.5" ></text>
</g>
<g >
<title>makeConst (3,380,901,017 samples, 0.04%)</title><rect x="853.4" y="389" width="0.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="856.45" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,679,399,002 samples, 0.02%)</title><rect x="810.2" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="813.16" y="415.5" ></text>
</g>
<g >
<title>btgettuple (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="325" width="1.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="125.45" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,207,640,726 samples, 0.01%)</title><rect x="453.8" y="501" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="456.84" y="511.5" ></text>
</g>
<g >
<title>ProcArrayGroupClearXid (3,455,981,332 samples, 0.04%)</title><rect x="467.5" y="501" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="470.54" y="511.5" ></text>
</g>
<g >
<title>AtEOXact_MultiXact (1,172,569,125 samples, 0.01%)</title><rect x="31.8" y="757" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="34.83" y="767.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,033,276,146 samples, 0.01%)</title><rect x="467.7" y="453" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="470.66" y="463.5" ></text>
</g>
<g >
<title>GetPortalByName (9,022,148,914 samples, 0.10%)</title><rect x="211.5" y="565" width="1.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="214.51" y="575.5" ></text>
</g>
<g >
<title>__task_rq_lock (1,347,841,029 samples, 0.01%)</title><rect x="199.0" y="325" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="202.03" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (909,456,124 samples, 0.01%)</title><rect x="896.5" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="899.47" y="415.5" ></text>
</g>
<g >
<title>unix_stream_read_actor (10,056,087,909 samples, 0.11%)</title><rect x="183.1" y="373" width="1.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="186.09" y="383.5" ></text>
</g>
<g >
<title>palloc0 (3,245,634,575 samples, 0.03%)</title><rect x="1017.4" y="325" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1020.37" y="335.5" ></text>
</g>
<g >
<title>__x64_sys_futex (4,693,256,224 samples, 0.05%)</title><rect x="350.8" y="213" width="0.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="353.79" y="223.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,781,454,928 samples, 0.02%)</title><rect x="355.3" y="277" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="358.33" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,775,079,742 samples, 0.02%)</title><rect x="1044.6" y="437" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1047.60" y="447.5" ></text>
</g>
<g >
<title>ConditionVariableBroadcast (4,555,106,594 samples, 0.05%)</title><rect x="491.7" y="453" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="494.66" y="463.5" ></text>
</g>
<g >
<title>exprTypmod (1,956,737,043 samples, 0.02%)</title><rect x="1035.7" y="229" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="1038.70" y="239.5" ></text>
</g>
<g >
<title>ReadBuffer_common (34,932,396,469 samples, 0.37%)</title><rect x="94.7" y="261" width="4.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="97.67" y="271.5" ></text>
</g>
<g >
<title>FullTransactionIdAdvance (997,393,370 samples, 0.01%)</title><rect x="47.5" y="757" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="50.49" y="767.5" ></text>
</g>
<g >
<title>ExecutorEnd (223,423,837,198 samples, 2.37%)</title><rect x="234.8" y="533" width="27.9" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="237.75" y="543.5" >E..</text>
</g>
<g >
<title>check_heap_object (4,496,595,107 samples, 0.05%)</title><rect x="193.1" y="373" width="0.5" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="196.05" y="383.5" ></text>
</g>
<g >
<title>BufferIsLockedByMe (1,206,584,364 samples, 0.01%)</title><rect x="1146.7" y="661" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1149.71" y="671.5" ></text>
</g>
<g >
<title>palloc (1,288,305,130 samples, 0.01%)</title><rect x="1019.6" y="309" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1022.58" y="319.5" ></text>
</g>
<g >
<title>update_se (6,385,522,766 samples, 0.07%)</title><rect x="168.6" y="261" width="0.8" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="171.61" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,258,851,896 samples, 0.01%)</title><rect x="442.6" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="445.57" y="399.5" ></text>
</g>
<g >
<title>transformReturningClause (1,292,893,077 samples, 0.01%)</title><rect x="831.4" y="485" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="834.36" y="495.5" ></text>
</g>
<g >
<title>bms_add_member (4,114,877,401 samples, 0.04%)</title><rect x="876.8" y="485" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="879.80" y="495.5" ></text>
</g>
<g >
<title>XLogRegisterBuffer (12,203,573,911 samples, 0.13%)</title><rect x="385.3" y="341" width="1.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="388.27" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,132,208,394 samples, 0.01%)</title><rect x="914.0" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="917.02" y="431.5" ></text>
</g>
<g >
<title>clamp_width_est (835,731,548 samples, 0.01%)</title><rect x="1040.9" y="373" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1043.85" y="383.5" ></text>
</g>
<g >
<title>update_curr (893,829,741 samples, 0.01%)</title><rect x="159.7" y="293" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="162.72" y="303.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (5,366,169,648 samples, 0.06%)</title><rect x="751.1" y="501" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="754.07" y="511.5" ></text>
</g>
<g >
<title>_bt_first (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="293" width="1.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="127.59" y="303.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (979,917,362 samples, 0.01%)</title><rect x="121.4" y="741" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="124.40" y="751.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,750,105,336 samples, 0.02%)</title><rect x="443.4" y="373" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="446.36" y="383.5" ></text>
</g>
<g >
<title>ReleaseSysCache (899,361,914 samples, 0.01%)</title><rect x="1021.6" y="277" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1024.55" y="287.5" ></text>
</g>
<g >
<title>GlobalVisUpdate (2,488,025,902 samples, 0.03%)</title><rect x="303.5" y="197" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="306.52" y="207.5" ></text>
</g>
<g >
<title>vector8_broadcast (2,603,493,092 samples, 0.03%)</title><rect x="1082.6" y="501" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1085.60" y="511.5" ></text>
</g>
<g >
<title>palloc0 (3,869,324,236 samples, 0.04%)</title><rect x="424.1" y="341" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="427.13" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,467,446,132 samples, 0.02%)</title><rect x="451.0" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="454.03" y="431.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (2,297,024,922 samples, 0.02%)</title><rect x="382.1" y="229" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="385.14" y="239.5" ></text>
</g>
<g >
<title>list_last_cell (945,207,469 samples, 0.01%)</title><rect x="1153.7" y="741" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1156.71" y="751.5" ></text>
</g>
<g >
<title>new_list (1,931,762,797 samples, 0.02%)</title><rect x="953.9" y="421" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="956.95" y="431.5" ></text>
</g>
<g >
<title>postmaster_child_launch (81,441,377,880 samples, 0.86%)</title><rect x="94.7" y="725" width="10.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="97.67" y="735.5" ></text>
</g>
<g >
<title>add_path (3,761,264,430 samples, 0.04%)</title><rect x="986.0" y="405" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="989.04" y="415.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,393,722,142 samples, 0.01%)</title><rect x="423.0" y="309" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="425.96" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,094,076,226 samples, 0.01%)</title><rect x="1119.0" y="693" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1121.97" y="703.5" ></text>
</g>
<g >
<title>ExecClearTuple (5,897,810,040 samples, 0.06%)</title><rect x="279.2" y="341" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="282.24" y="351.5" ></text>
</g>
<g >
<title>ProcessQuery (14,278,524,395 samples, 0.15%)</title><rect x="122.5" y="581" width="1.7" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="125.45" y="591.5" ></text>
</g>
<g >
<title>palloc0 (3,955,290,135 samples, 0.04%)</title><rect x="967.7" y="357" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="970.70" y="367.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,275,537,034 samples, 0.05%)</title><rect x="1034.7" y="149" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1037.67" y="159.5" ></text>
</g>
<g >
<title>sem_wait@@GLIBC_2.34 (1,744,784,801 samples, 0.02%)</title><rect x="484.3" y="453" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="487.26" y="463.5" ></text>
</g>
<g >
<title>RelationClose (1,197,020,135 samples, 0.01%)</title><rect x="860.9" y="485" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="863.85" y="495.5" ></text>
</g>
<g >
<title>core_yyalloc (1,527,726,647 samples, 0.02%)</title><rect x="871.3" y="517" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="874.32" y="527.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (805,347,570 samples, 0.01%)</title><rect x="1000.1" y="261" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1003.14" y="271.5" ></text>
</g>
<g >
<title>pgstat_report_stat (6,239,536,828 samples, 0.07%)</title><rect x="1080.3" y="597" width="0.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1083.32" y="607.5" ></text>
</g>
<g >
<title>palloc (1,197,965,078 samples, 0.01%)</title><rect x="910.5" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="913.54" y="431.5" ></text>
</g>
<g >
<title>preprocess_expression (1,863,826,840 samples, 0.02%)</title><rect x="1173.0" y="757" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1175.98" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (5,146,928,636 samples, 0.05%)</title><rect x="917.1" y="421" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="920.10" y="431.5" ></text>
</g>
<g >
<title>intel_thermal_interrupt (1,011,223,869 samples, 0.01%)</title><rect x="791.7" y="469" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="794.69" y="479.5" ></text>
</g>
<g >
<title>ExecOpenScanRelation (1,855,529,946 samples, 0.02%)</title><rect x="439.6" y="421" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="442.64" y="431.5" ></text>
</g>
<g >
<title>match_clauses_to_index (27,378,663,107 samples, 0.29%)</title><rect x="1019.1" y="373" width="3.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1022.14" y="383.5" ></text>
</g>
<g >
<title>sched_balance_newidle (1,094,045,071 samples, 0.01%)</title><rect x="477.0" y="245" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="479.96" y="255.5" ></text>
</g>
<g >
<title>set_next_entity (898,333,598 samples, 0.01%)</title><rect x="160.4" y="309" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="163.41" y="319.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (48,465,637,704 samples, 0.51%)</title><rect x="283.2" y="341" width="6.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="286.20" y="351.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3,813,027,952 samples, 0.04%)</title><rect x="827.0" y="309" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="829.97" y="319.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (1,141,143,325 samples, 0.01%)</title><rect x="282.0" y="245" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="285.05" y="255.5" ></text>
</g>
<g >
<title>EvalPlanQualInit (2,865,371,477 samples, 0.03%)</title><rect x="412.5" y="453" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="415.48" y="463.5" ></text>
</g>
<g >
<title>SimpleLruGetBankLock (1,197,241,238 samples, 0.01%)</title><rect x="470.7" y="453" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="473.68" y="463.5" ></text>
</g>
<g >
<title>preprocess_qual_conditions (27,252,744,095 samples, 0.29%)</title><rect x="1055.1" y="501" width="3.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1058.05" y="511.5" ></text>
</g>
<g >
<title>LWLockRelease (3,588,447,938 samples, 0.04%)</title><rect x="470.2" y="453" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="473.22" y="463.5" ></text>
</g>
<g >
<title>assign_collations_walker (17,742,960,512 samples, 0.19%)</title><rect x="802.4" y="421" width="2.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="805.39" y="431.5" ></text>
</g>
<g >
<title>bms_copy (7,226,624,671 samples, 0.08%)</title><rect x="369.3" y="341" width="0.9" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="372.31" y="351.5" ></text>
</g>
<g >
<title>tas (1,789,700,728 samples, 0.02%)</title><rect x="505.7" y="485" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="508.71" y="495.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (16,164,424,156 samples, 0.17%)</title><rect x="1038.3" y="373" width="2.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1041.26" y="383.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (17,921,453,776 samples, 0.19%)</title><rect x="416.5" y="357" width="2.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="419.51" y="367.5" ></text>
</g>
<g >
<title>query_planner (838,385,919 samples, 0.01%)</title><rect x="1174.7" y="757" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1177.73" y="767.5" ></text>
</g>
<g >
<title>finalize_primnode (10,575,982,151 samples, 0.11%)</title><rect x="880.5" y="437" width="1.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="883.47" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,681,637,442 samples, 0.02%)</title><rect x="354.2" y="245" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="357.16" y="255.5" ></text>
</g>
<g >
<title>create_plan (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="549" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="127.24" y="559.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (1,003,030,299 samples, 0.01%)</title><rect x="217.1" y="581" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="220.13" y="591.5" ></text>
</g>
<g >
<title>makeTargetEntry (6,093,629,299 samples, 0.06%)</title><rect x="885.0" y="421" width="0.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="888.05" y="431.5" ></text>
</g>
<g >
<title>IsSharedRelation (1,045,831,990 samples, 0.01%)</title><rect x="441.2" y="357" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="444.15" y="367.5" ></text>
</g>
<g >
<title>tick_nohz_handler (1,676,219,620 samples, 0.02%)</title><rect x="750.5" y="437" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="753.46" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,845,955,282 samples, 0.02%)</title><rect x="382.2" y="165" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="385.19" y="175.5" ></text>
</g>
<g >
<title>new_list (1,356,008,443 samples, 0.01%)</title><rect x="970.4" y="357" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="973.38" y="367.5" ></text>
</g>
<g >
<title>mutex_lock (1,784,049,210 samples, 0.02%)</title><rect x="182.4" y="373" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="185.42" y="383.5" ></text>
</g>
<g >
<title>__strncpy_avx2 (2,772,283,637 samples, 0.03%)</title><rect x="436.7" y="341" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="439.73" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,096,694,893 samples, 0.01%)</title><rect x="927.7" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="930.71" y="399.5" ></text>
</g>
<g >
<title>palloc0 (3,390,734,870 samples, 0.04%)</title><rect x="970.9" y="341" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="973.89" y="351.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,680,862,384 samples, 0.02%)</title><rect x="522.5" y="437" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="525.52" y="447.5" ></text>
</g>
<g >
<title>ReadBufferExtended (18,584,697,266 samples, 0.20%)</title><rect x="366.4" y="341" width="2.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="369.41" y="351.5" ></text>
</g>
<g >
<title>do_futex (4,629,132,643 samples, 0.05%)</title><rect x="350.8" y="197" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="353.79" y="207.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,825,468,839 samples, 0.02%)</title><rect x="307.3" y="133" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="310.32" y="143.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,263,342,217 samples, 0.01%)</title><rect x="91.0" y="757" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="93.97" y="767.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,421,893,663 samples, 0.02%)</title><rect x="124.2" y="533" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="127.24" y="543.5" ></text>
</g>
<g >
<title>avg_vruntime (861,860,769 samples, 0.01%)</title><rect x="480.9" y="197" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="483.89" y="207.5" ></text>
</g>
<g >
<title>AtEOXact_Aio (3,112,717,159 samples, 0.03%)</title><rect x="460.7" y="517" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="463.72" y="527.5" ></text>
</g>
<g >
<title>PushCopiedSnapshot (7,011,678,428 samples, 0.07%)</title><rect x="453.6" y="549" width="0.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="456.57" y="559.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,014,691,778 samples, 0.01%)</title><rect x="102.7" y="437" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="105.75" y="447.5" ></text>
</g>
<g >
<title>__slab_free (2,536,019,359 samples, 0.03%)</title><rect x="179.7" y="325" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="182.74" y="335.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,620,362,214 samples, 0.04%)</title><rect x="916.6" y="373" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="919.59" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_thermal (1,410,022,920 samples, 0.01%)</title><rect x="1085.9" y="757" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1088.91" y="767.5" ></text>
</g>
<g >
<title>XLogRecPtrToBytePos (953,623,668 samples, 0.01%)</title><rect x="507.7" y="437" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="510.66" y="447.5" ></text>
</g>
<g >
<title>__pick_next_task (6,399,442,921 samples, 0.07%)</title><rect x="476.6" y="277" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="479.59" y="287.5" ></text>
</g>
<g >
<title>check_log_duration (1,412,542,935 samples, 0.01%)</title><rect x="457.2" y="581" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="460.19" y="591.5" ></text>
</g>
<g >
<title>hash_initial_lookup (904,315,679 samples, 0.01%)</title><rect x="867.5" y="421" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="870.50" y="431.5" ></text>
</g>
<g >
<title>ExecIndexBuildScanKeys (29,800,632,650 samples, 0.32%)</title><rect x="425.7" y="421" width="3.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="428.71" y="431.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,681,460,148 samples, 0.02%)</title><rect x="360.4" y="309" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="363.44" y="319.5" ></text>
</g>
<g >
<title>simplify_function (975,983,726 samples, 0.01%)</title><rect x="126.7" y="453" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="129.71" y="463.5" ></text>
</g>
<g >
<title>lappend (4,035,352,989 samples, 0.04%)</title><rect x="953.7" y="437" width="0.5" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="956.74" y="447.5" ></text>
</g>
<g >
<title>_copy_to_iter (3,198,340,661 samples, 0.03%)</title><rect x="183.3" y="325" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="186.26" y="335.5" ></text>
</g>
<g >
<title>UnpinBuffer (2,582,248,403 samples, 0.03%)</title><rect x="279.6" y="293" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="282.65" y="303.5" ></text>
</g>
<g >
<title>seg_alloc (4,183,699,105 samples, 0.04%)</title><rect x="1064.6" y="437" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1067.56" y="447.5" ></text>
</g>
<g >
<title>exec_simple_query (17,884,496,647 samples, 0.19%)</title><rect x="124.6" y="613" width="2.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="127.59" y="623.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (2,036,118,200 samples, 0.02%)</title><rect x="431.5" y="357" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="434.49" y="367.5" ></text>
</g>
<g >
<title>palloc (873,872,571 samples, 0.01%)</title><rect x="977.3" y="389" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="980.26" y="399.5" ></text>
</g>
<g >
<title>ExecConstraints (8,703,852,778 samples, 0.09%)</title><rect x="343.2" y="405" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="346.24" y="415.5" ></text>
</g>
<g >
<title>do_futex (998,538,076 samples, 0.01%)</title><rect x="1147.6" y="517" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1150.60" y="527.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (886,882,643 samples, 0.01%)</title><rect x="124.5" y="437" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="127.48" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (875,296,791 samples, 0.01%)</title><rect x="975.0" y="261" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="977.95" y="271.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (3,281,433,681 samples, 0.03%)</title><rect x="1037.0" y="293" width="0.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="1039.97" y="303.5" ></text>
</g>
<g >
<title>btgettuple (3,400,700,545 samples, 0.04%)</title><rect x="1157.9" y="341" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1160.94" y="351.5" ></text>
</g>
<g >
<title>analyze_requires_snapshot (1,129,753,749 samples, 0.01%)</title><rect x="1085.0" y="757" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1087.99" y="767.5" ></text>
</g>
<g >
<title>newNode (2,975,165,573 samples, 0.03%)</title><rect x="102.0" y="469" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="105.00" y="479.5" ></text>
</g>
<g >
<title>ExecGetRangeTableRelation (27,944,311,130 samples, 0.30%)</title><rect x="443.0" y="437" width="3.5" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text x="446.01" y="447.5" ></text>
</g>
<g >
<title>transformUpdateStmt (1,179,419,449 samples, 0.01%)</title><rect x="1187.7" y="757" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1190.66" y="767.5" ></text>
</g>
<g >
<title>next_pow2_int (1,477,529,419 samples, 0.02%)</title><rect x="1064.4" y="437" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1067.38" y="447.5" ></text>
</g>
<g >
<title>list_copy (5,347,986,480 samples, 0.06%)</title><rect x="992.0" y="357" width="0.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="995.04" y="367.5" ></text>
</g>
<g >
<title>ReleaseBuffer (2,643,528,261 samples, 0.03%)</title><rect x="281.9" y="277" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="284.87" y="287.5" ></text>
</g>
<g >
<title>ExecBuildUpdateProjection (40,870,069,542 samples, 0.43%)</title><rect x="270.4" y="421" width="5.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="273.36" y="431.5" ></text>
</g>
<g >
<title>list_delete_nth_cell (994,663,339 samples, 0.01%)</title><rect x="1154.4" y="757" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="1157.40" y="767.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (10,760,583,705 samples, 0.11%)</title><rect x="144.7" y="533" width="1.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="147.65" y="543.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,084,760,504 samples, 0.01%)</title><rect x="956.7" y="261" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="959.71" y="271.5" ></text>
</g>
<g >
<title>BufferIsLockedByMeInMode (1,425,490,455 samples, 0.02%)</title><rect x="386.2" y="309" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="389.15" y="319.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (132,594,050,746 samples, 1.41%)</title><rect x="294.5" y="277" width="16.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="297.53" y="287.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (2,805,513,118 samples, 0.03%)</title><rect x="146.7" y="549" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="149.73" y="559.5" ></text>
</g>
<g >
<title>limit_needed (1,075,032,203 samples, 0.01%)</title><rect x="917.8" y="485" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="920.76" y="495.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3,583,384,334 samples, 0.04%)</title><rect x="288.6" y="197" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="291.62" y="207.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (1,490,924,305 samples, 0.02%)</title><rect x="1145.2" y="757" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1148.20" y="767.5" ></text>
</g>
<g >
<title>secure_write (150,700,637,437 samples, 1.60%)</title><rect x="188.4" y="533" width="18.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="191.40" y="543.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (1,513,485,726 samples, 0.02%)</title><rect x="88.1" y="757" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="91.13" y="767.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (2,727,352,691 samples, 0.03%)</title><rect x="125.2" y="229" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="128.19" y="239.5" ></text>
</g>
<g >
<title>__rint_sse41 (2,516,486,766 samples, 0.03%)</title><rect x="938.2" y="341" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="941.23" y="351.5" ></text>
</g>
<g >
<title>ProcessClientWriteInterrupt (3,721,441,461 samples, 0.04%)</title><rect x="188.6" y="517" width="0.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="191.60" y="527.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (818,305,375 samples, 0.01%)</title><rect x="834.5" y="341" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="837.49" y="351.5" ></text>
</g>
<g >
<title>__libc_recv (74,603,288,996 samples, 0.79%)</title><rect x="175.3" y="501" width="9.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="178.34" y="511.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (2,768,473,694 samples, 0.03%)</title><rect x="82.6" y="309" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="85.62" y="319.5" ></text>
</g>
<g >
<title>SearchSysCache (26,177,875,782 samples, 0.28%)</title><rect x="823.1" y="357" width="3.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="826.08" y="367.5" ></text>
</g>
<g >
<title>list_make1_impl (2,691,686,909 samples, 0.03%)</title><rect x="986.2" y="373" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="989.16" y="383.5" ></text>
</g>
<g >
<title>tlist_matches_tupdesc (1,989,056,203 samples, 0.02%)</title><rect x="425.4" y="389" width="0.3" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="428.45" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,120,694,284 samples, 0.01%)</title><rect x="474.1" y="453" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="477.07" y="463.5" ></text>
</g>
<g >
<title>lappend (1,847,224,926 samples, 0.02%)</title><rect x="811.7" y="437" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="814.67" y="447.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,607,439,355 samples, 0.04%)</title><rect x="93.4" y="757" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="96.37" y="767.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (3,881,445,700 samples, 0.04%)</title><rect x="1068.7" y="453" width="0.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1071.67" y="463.5" ></text>
</g>
<g >
<title>bms_copy (1,870,167,645 samples, 0.02%)</title><rect x="969.9" y="357" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="972.94" y="367.5" ></text>
</g>
<g >
<title>preprocess_qual_conditions (838,717,409 samples, 0.01%)</title><rect x="1158.4" y="549" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1161.36" y="559.5" ></text>
</g>
<g >
<title>AllocSetFree (1,063,556,049 samples, 0.01%)</title><rect x="251.9" y="373" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="254.94" y="383.5" ></text>
</g>
<g >
<title>GetXLogBuffer (3,919,428,667 samples, 0.04%)</title><rect x="379.6" y="293" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="382.62" y="303.5" ></text>
</g>
<g >
<title>recv@plt (1,238,807,054 samples, 0.01%)</title><rect x="184.7" y="501" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="187.67" y="511.5" ></text>
</g>
<g >
<title>make_pathkeys_for_sortclauses (1,035,110,074 samples, 0.01%)</title><rect x="1045.4" y="453" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1048.39" y="463.5" ></text>
</g>
<g >
<title>palloc (977,226,607 samples, 0.01%)</title><rect x="813.1" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="816.14" y="447.5" ></text>
</g>
<g >
<title>check_stack_depth (7,681,438,356 samples, 0.08%)</title><rect x="1126.8" y="757" width="1.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="1129.79" y="767.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,662,965,157 samples, 0.04%)</title><rect x="835.0" y="357" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="837.97" y="367.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,651,445,115 samples, 0.02%)</title><rect x="361.2" y="277" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="364.18" y="287.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (14,053,202,670 samples, 0.15%)</title><rect x="1006.3" y="165" width="1.7" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1009.27" y="175.5" ></text>
</g>
<g >
<title>__GI___strlcpy (3,453,719,878 samples, 0.04%)</title><rect x="852.0" y="373" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="855.05" y="383.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (1,239,965,197 samples, 0.01%)</title><rect x="91.2" y="757" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="94.16" y="767.5" ></text>
</g>
<g >
<title>palloc0 (2,586,633,375 samples, 0.03%)</title><rect x="1021.1" y="293" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1024.10" y="303.5" ></text>
</g>
<g >
<title>SearchCatCache3 (5,052,596,680 samples, 0.05%)</title><rect x="427.4" y="373" width="0.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="430.42" y="383.5" ></text>
</g>
<g >
<title>ServerLoop (81,441,377,880 samples, 0.86%)</title><rect x="94.7" y="757" width="10.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="97.67" y="767.5" ></text>
</g>
<g >
<title>make_pathtarget_from_tlist (9,865,828,424 samples, 0.10%)</title><rect x="918.8" y="485" width="1.3" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="921.84" y="495.5" ></text>
</g>
<g >
<title>llseek@GLIBC_2.2.5 (12,527,332,968 samples, 0.13%)</title><rect x="936.5" y="229" width="1.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="939.50" y="239.5" ></text>
</g>
<g >
<title>hash_seq_search (5,973,746,165 samples, 0.06%)</title><rect x="465.1" y="501" width="0.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="468.10" y="511.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (1,085,858,591 samples, 0.01%)</title><rect x="1020.5" y="293" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1023.45" y="303.5" ></text>
</g>
<g >
<title>stack_is_too_deep (3,326,729,053 samples, 0.04%)</title><rect x="1184.0" y="757" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1187.00" y="767.5" ></text>
</g>
<g >
<title>futex_wait (851,906,660 samples, 0.01%)</title><rect x="467.7" y="357" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="470.67" y="367.5" ></text>
</g>
<g >
<title>gup_fast_pte_range (1,684,560,666 samples, 0.02%)</title><rect x="486.0" y="261" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="488.98" y="271.5" ></text>
</g>
<g >
<title>hash_initial_lookup (873,126,526 samples, 0.01%)</title><rect x="947.8" y="293" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="950.84" y="303.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (829,117,037 samples, 0.01%)</title><rect x="370.0" y="293" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="372.99" y="303.5" ></text>
</g>
<g >
<title>start_xact_command (39,254,287,260 samples, 0.42%)</title><rect x="1074.1" y="581" width="4.9" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1077.05" y="591.5" ></text>
</g>
<g >
<title>verify_compact_attribute (30,121,846,430 samples, 0.32%)</title><rect x="1004.3" y="181" width="3.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1007.26" y="191.5" ></text>
</g>
<g >
<title>perf_ctx_enable (1,197,496,193 samples, 0.01%)</title><rect x="477.5" y="245" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="480.52" y="255.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (10,979,404,605 samples, 0.12%)</title><rect x="320.0" y="213" width="1.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="322.97" y="223.5" ></text>
</g>
<g >
<title>gup_fast_pte_range (859,292,389 samples, 0.01%)</title><rect x="351.3" y="69" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="354.27" y="79.5" ></text>
</g>
<g >
<title>uint32_hash (1,315,104,302 samples, 0.01%)</title><rect x="446.3" y="357" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="449.29" y="367.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (47,277,333,261 samples, 0.50%)</title><rect x="283.3" y="309" width="5.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="286.31" y="319.5" ></text>
</g>
<g >
<title>get_hash_value (2,685,185,326 samples, 0.03%)</title><rect x="99.1" y="165" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="102.10" y="175.5" ></text>
</g>
<g >
<title>do_syscall_64 (139,022,353,671 samples, 1.47%)</title><rect x="189.6" y="469" width="17.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="192.63" y="479.5" ></text>
</g>
<g >
<title>psi_account_irqtime (2,588,032,125 samples, 0.03%)</title><rect x="478.3" y="277" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="481.28" y="287.5" ></text>
</g>
<g >
<title>newNode (1,699,310,026 samples, 0.02%)</title><rect x="839.0" y="341" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="842.03" y="351.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (4,264,163,145 samples, 0.05%)</title><rect x="206.4" y="453" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="209.36" y="463.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (10,655,414,065 samples, 0.11%)</title><rect x="955.6" y="389" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="958.64" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,036,629,267 samples, 0.01%)</title><rect x="814.0" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="817.05" y="399.5" ></text>
</g>
<g >
<title>cpus_share_cache (1,467,946,781 samples, 0.02%)</title><rect x="200.7" y="277" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="203.69" y="287.5" ></text>
</g>
<g >
<title>AllocSetReset (37,840,898,373 samples, 0.40%)</title><rect x="257.3" y="421" width="4.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="260.34" y="431.5" ></text>
</g>
<g >
<title>create_modifytable_plan (87,772,593,339 samples, 0.93%)</title><rect x="883.0" y="485" width="11.0" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="885.98" y="495.5" ></text>
</g>
<g >
<title>newNode (2,581,329,950 samples, 0.03%)</title><rect x="839.9" y="309" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="842.90" y="319.5" ></text>
</g>
<g >
<title>TransactionIdSetStatusBit (4,604,964,868 samples, 0.05%)</title><rect x="472.5" y="437" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="475.49" y="447.5" ></text>
</g>
<g >
<title>table_open (17,071,805,881 samples, 0.18%)</title><rect x="923.1" y="469" width="2.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="926.11" y="479.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (1,496,377,687 samples, 0.02%)</title><rect x="452.3" y="485" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="455.30" y="495.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVacuumHorizon (2,008,856,635 samples, 0.02%)</title><rect x="1148.8" y="693" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1151.78" y="703.5" ></text>
</g>
<g >
<title>fireRIRrules (46,982,620,322 samples, 0.50%)</title><rect x="863.3" y="533" width="5.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="866.27" y="543.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (7,307,034,692 samples, 0.08%)</title><rect x="148.0" y="533" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="150.96" y="543.5" ></text>
</g>
<g >
<title>ExecGetJunkAttribute (1,279,974,737 samples, 0.01%)</title><rect x="265.8" y="437" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="268.83" y="447.5" ></text>
</g>
<g >
<title>hash_search (3,903,433,673 samples, 0.04%)</title><rect x="1143.7" y="757" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1146.65" y="767.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,193,115,983 samples, 0.01%)</title><rect x="85.4" y="565" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="88.40" y="575.5" ></text>
</g>
<g >
<title>AtEOXact_LocalBuffers (840,664,057 samples, 0.01%)</title><rect x="31.7" y="757" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="34.65" y="767.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,822,518,701 samples, 0.02%)</title><rect x="490.5" y="437" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="493.54" y="447.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,406,404,582 samples, 0.01%)</title><rect x="97.5" y="165" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="100.49" y="175.5" ></text>
</g>
<g >
<title>RelationPutHeapTuple (1,072,411,821 samples, 0.01%)</title><rect x="89.5" y="757" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="92.53" y="767.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,238,956,300 samples, 0.06%)</title><rect x="751.1" y="485" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="754.09" y="495.5" ></text>
</g>
<g >
<title>create_plan_recurse (68,348,817,486 samples, 0.72%)</title><rect x="883.9" y="469" width="8.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="886.89" y="479.5" ></text>
</g>
<g >
<title>PageGetItemId (1,346,372,748 samples, 0.01%)</title><rect x="79.8" y="741" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="82.77" y="751.5" ></text>
</g>
<g >
<title>palloc (1,257,909,142 samples, 0.01%)</title><rect x="439.5" y="357" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="442.46" y="367.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (15,388,897,108 samples, 0.16%)</title><rect x="124.6" y="485" width="1.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="127.59" y="495.5" ></text>
</g>
<g >
<title>_int_free_create_chunk (1,450,973,390 samples, 0.02%)</title><rect x="147.7" y="517" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="150.71" y="527.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (3,121,104,146 samples, 0.03%)</title><rect x="180.9" y="293" width="0.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="183.94" y="303.5" ></text>
</g>
<g >
<title>UnpinBuffer (2,954,035,915 samples, 0.03%)</title><rect x="248.8" y="421" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="251.77" y="431.5" ></text>
</g>
<g >
<title>AfterTriggerFireDeferred (1,582,166,860 samples, 0.02%)</title><rect x="459.4" y="517" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="462.42" y="527.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,149,259,739 samples, 0.01%)</title><rect x="1134.0" y="741" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1136.99" y="751.5" ></text>
</g>
<g >
<title>AllocSetFree (980,862,006 samples, 0.01%)</title><rect x="246.6" y="357" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="249.63" y="367.5" ></text>
</g>
<g >
<title>update_ps_display_precheck (947,902,118 samples, 0.01%)</title><rect x="1083.8" y="565" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1086.80" y="575.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,778,835,142 samples, 0.03%)</title><rect x="307.3" y="149" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="310.28" y="159.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,330,257,557 samples, 0.01%)</title><rect x="83.1" y="213" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="86.06" y="223.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,555,633,039 samples, 0.02%)</title><rect x="968.0" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="970.99" y="351.5" ></text>
</g>
<g >
<title>LWLockRelease (1,599,406,687 samples, 0.02%)</title><rect x="297.0" y="245" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="299.98" y="255.5" ></text>
</g>
<g >
<title>choose_nelem_alloc (819,756,112 samples, 0.01%)</title><rect x="1064.3" y="437" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1067.27" y="447.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,125,663,749 samples, 0.02%)</title><rect x="941.5" y="325" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="944.52" y="335.5" ></text>
</g>
<g >
<title>sentinel_ok (26,743,743,288 samples, 0.28%)</title><rect x="25.3" y="741" width="3.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="28.31" y="751.5" ></text>
</g>
<g >
<title>finish_xact_command (2,724,381,657,042 samples, 28.87%)</title><rect x="457.4" y="581" width="340.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="460.44" y="591.5" >finish_xact_command</text>
</g>
<g >
<title>make_ands_implicit (4,025,683,741 samples, 0.04%)</title><rect x="1057.9" y="469" width="0.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1060.92" y="479.5" ></text>
</g>
<g >
<title>PreCommit_Portals (8,041,457,441 samples, 0.09%)</title><rect x="464.9" y="517" width="1.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="467.85" y="527.5" ></text>
</g>
<g >
<title>IsToastClass (1,602,560,218 samples, 0.02%)</title><rect x="407.0" y="405" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="410.02" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (975,063,013 samples, 0.01%)</title><rect x="1035.4" y="181" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1038.37" y="191.5" ></text>
</g>
<g >
<title>hash_bytes (3,440,751,561 samples, 0.04%)</title><rect x="948.0" y="293" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="950.97" y="303.5" ></text>
</g>
<g >
<title>_bt_readnextpage (5,713,748,173 samples, 0.06%)</title><rect x="281.0" y="261" width="0.7" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="284.00" y="271.5" ></text>
</g>
<g >
<title>SetCurrentStatementStartTimestamp (846,522,998 samples, 0.01%)</title><rect x="104.9" y="757" width="0.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="107.86" y="767.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,175,172,151 samples, 0.01%)</title><rect x="865.4" y="437" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="868.42" y="447.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,484,229,042 samples, 0.04%)</title><rect x="961.0" y="325" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="964.00" y="335.5" ></text>
</g>
<g >
<title>set_rel_width (21,247,346,384 samples, 0.23%)</title><rect x="1040.3" y="389" width="2.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1043.28" y="399.5" ></text>
</g>
<g >
<title>expression_returns_set (9,923,230,912 samples, 0.11%)</title><rect x="842.6" y="453" width="1.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="845.57" y="463.5" ></text>
</g>
<g >
<title>int4hashfast (1,622,199,897 samples, 0.02%)</title><rect x="825.1" y="293" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="828.12" y="303.5" ></text>
</g>
<g >
<title>__get_user_8 (3,744,984,393 samples, 0.04%)</title><rect x="173.5" y="373" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="176.51" y="383.5" ></text>
</g>
<g >
<title>LockRelationOid (8,789,550,590 samples, 0.09%)</title><rect x="394.1" y="357" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="397.11" y="367.5" ></text>
</g>
<g >
<title>WaitXLogInsertionsToFinish (18,429,199,472 samples, 0.20%)</title><rect x="489.2" y="485" width="2.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="492.18" y="495.5" ></text>
</g>
<g >
<title>PinBufferForBlock (14,803,975,244 samples, 0.16%)</title><rect x="366.9" y="277" width="1.8" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="369.87" y="287.5" ></text>
</g>
<g >
<title>newNode (2,787,683,215 samples, 0.03%)</title><rect x="927.9" y="405" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="930.89" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,102,182,370 samples, 0.01%)</title><rect x="983.8" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="986.80" y="399.5" ></text>
</g>
<g >
<title>tag_hash (6,868,557,994 samples, 0.07%)</title><rect x="866.5" y="421" width="0.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="869.45" y="431.5" ></text>
</g>
<g >
<title>internal_putbytes (3,687,699,741 samples, 0.04%)</title><rect x="216.7" y="549" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="219.67" y="559.5" ></text>
</g>
<g >
<title>get_rightop (1,052,311,300 samples, 0.01%)</title><rect x="428.1" y="405" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="431.05" y="415.5" ></text>
</g>
</g>
</svg>