cf-5556-flame-a.svg

application/octet-stream

Filename: cf-5556-flame-a.svg
Type: application/octet-stream
Part: 6
Message: Re: Expanding HOT updates for expression and partial indexes
<?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>SearchCatCacheInternal (3,806,068,638 samples, 0.04%)</title><rect x="104.2" y="421" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="107.21" y="431.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,213,115,126 samples, 0.01%)</title><rect x="370.9" y="277" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="373.89" y="287.5" ></text>
</g>
<g >
<title>grouping_planner (838,410,516 samples, 0.01%)</title><rect x="128.2" y="517" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="131.20" y="527.5" ></text>
</g>
<g >
<title>heap_compute_data_size (6,884,339,206 samples, 0.07%)</title><rect x="396.9" y="357" width="0.8" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="399.89" y="367.5" ></text>
</g>
<g >
<title>_bt_saveitem (885,664,507 samples, 0.01%)</title><rect x="131.4" y="757" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="134.37" y="767.5" ></text>
</g>
<g >
<title>PinBuffer (5,085,671,181 samples, 0.05%)</title><rect x="101.7" y="181" width="0.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="104.74" y="191.5" ></text>
</g>
<g >
<title>SearchCatCache1 (8,003,711,250 samples, 0.08%)</title><rect x="430.9" y="325" width="1.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="433.93" y="335.5" ></text>
</g>
<g >
<title>wake_up_q (994,779,827 samples, 0.01%)</title><rect x="478.2" y="293" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="481.19" y="303.5" ></text>
</g>
<g >
<title>palloc (1,496,134,934 samples, 0.02%)</title><rect x="975.6" y="389" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="978.60" y="399.5" ></text>
</g>
<g >
<title>__libc_start_call_main (18,601,171,430 samples, 0.20%)</title><rect x="124.0" y="757" width="2.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="126.99" y="767.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (3,997,299,874 samples, 0.04%)</title><rect x="349.8" y="357" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="352.81" y="367.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (19,141,434,356 samples, 0.20%)</title><rect x="100.1" y="309" width="2.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="103.12" y="319.5" ></text>
</g>
<g >
<title>PortalRunMulti (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="629" width="2.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="87.32" y="639.5" ></text>
</g>
<g >
<title>malloc (7,474,412,386 samples, 0.08%)</title><rect x="1049.6" y="437" width="1.0" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="1052.64" y="447.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,616,376,637 samples, 0.02%)</title><rect x="37.7" y="757" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="40.70" y="767.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (903,272,914 samples, 0.01%)</title><rect x="948.6" y="357" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="951.57" y="367.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,267,014,538 samples, 0.02%)</title><rect x="882.1" y="405" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="885.11" y="415.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (1,011,222,487 samples, 0.01%)</title><rect x="1142.0" y="757" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1144.97" y="767.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,150,244,547 samples, 0.01%)</title><rect x="1173.6" y="629" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1176.62" y="639.5" ></text>
</g>
<g >
<title>__pick_next_task (1,481,138,869 samples, 0.02%)</title><rect x="209.1" y="405" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="212.15" y="415.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (15,913,541,371 samples, 0.17%)</title><rect x="1037.5" y="373" width="2.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1040.54" y="383.5" ></text>
</g>
<g >
<title>AtStart_Memory (1,187,073,689 samples, 0.01%)</title><rect x="1074.4" y="533" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1077.36" y="543.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,124,510,013 samples, 0.04%)</title><rect x="1038.2" y="325" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1041.16" y="335.5" ></text>
</g>
<g >
<title>finalize_primnode (9,724,868,691 samples, 0.10%)</title><rect x="881.8" y="437" width="1.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="884.78" y="447.5" ></text>
</g>
<g >
<title>hash_bytes (2,809,450,265 samples, 0.03%)</title><rect x="453.4" y="325" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="456.37" y="335.5" ></text>
</g>
<g >
<title>LWLockWakeup (3,159,547,102 samples, 0.03%)</title><rect x="375.8" y="309" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="378.80" y="319.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (22,836,665,944 samples, 0.24%)</title><rect x="826.4" y="325" width="2.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="829.38" y="335.5" ></text>
</g>
<g >
<title>GetUserIdAndSecContext (846,973,469 samples, 0.01%)</title><rect x="1076.3" y="533" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1079.31" y="543.5" ></text>
</g>
<g >
<title>list_make1_impl (1,890,882,862 samples, 0.02%)</title><rect x="992.7" y="341" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="995.72" y="351.5" ></text>
</g>
<g >
<title>palloc (1,311,115,446 samples, 0.01%)</title><rect x="980.7" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="983.68" y="383.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,453,393,646 samples, 0.07%)</title><rect x="1038.7" y="341" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1041.68" y="351.5" ></text>
</g>
<g >
<title>MarkBufferDirtyHint (4,557,669,790 samples, 0.05%)</title><rect x="308.0" y="197" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="310.97" y="207.5" ></text>
</g>
<g >
<title>lappend (2,560,826,136 samples, 0.03%)</title><rect x="982.5" y="437" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="985.54" y="447.5" ></text>
</g>
<g >
<title>ExecInitFunc (9,581,182,210 samples, 0.10%)</title><rect x="439.0" y="389" width="1.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="441.99" y="399.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,109,429,033 samples, 0.02%)</title><rect x="868.5" y="437" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="871.48" y="447.5" ></text>
</g>
<g >
<title>transformStmt (432,539,738,388 samples, 4.55%)</title><rect x="804.8" y="517" width="53.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="807.76" y="527.5" >trans..</text>
</g>
<g >
<title>GetPrivateRefCount (934,929,096 samples, 0.01%)</title><rect x="393.1" y="309" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="396.13" y="319.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,714,880,420 samples, 0.04%)</title><rect x="917.8" y="405" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="920.79" y="415.5" ></text>
</g>
<g >
<title>core_yy_load_buffer_state (1,169,987,930 samples, 0.01%)</title><rect x="872.0" y="501" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="874.97" y="511.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,149,125,232 samples, 0.01%)</title><rect x="309.3" y="101" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="312.34" y="111.5" ></text>
</g>
<g >
<title>hash_bytes (2,472,859,454 samples, 0.03%)</title><rect x="451.3" y="357" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="454.31" y="367.5" ></text>
</g>
<g >
<title>GetSysCacheOid (38,030,391,419 samples, 0.40%)</title><rect x="825.4" y="373" width="4.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="828.44" y="383.5" ></text>
</g>
<g >
<title>palloc0 (2,115,608,682 samples, 0.02%)</title><rect x="857.3" y="293" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="860.30" y="303.5" ></text>
</g>
<g >
<title>IsBinaryTidClause (1,364,403,342 samples, 0.01%)</title><rect x="1025.6" y="357" width="0.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="1028.65" y="367.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (3,770,139,198 samples, 0.04%)</title><rect x="258.1" y="421" width="0.5" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="261.12" y="431.5" ></text>
</g>
<g >
<title>exprCollation (1,960,548,354 samples, 0.02%)</title><rect x="445.3" y="373" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="448.32" y="383.5" ></text>
</g>
<g >
<title>palloc (1,093,405,604 samples, 0.01%)</title><rect x="440.9" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="443.87" y="383.5" ></text>
</g>
<g >
<title>makeVar (4,022,865,513 samples, 0.04%)</title><rect x="842.0" y="325" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="845.03" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,034,948,399 samples, 0.01%)</title><rect x="213.2" y="533" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="216.21" y="543.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (4,858,781,314 samples, 0.05%)</title><rect x="176.3" y="405" width="0.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="179.32" y="415.5" ></text>
</g>
<g >
<title>fmgr_info_copy (863,023,406 samples, 0.01%)</title><rect x="316.1" y="245" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="319.12" y="255.5" ></text>
</g>
<g >
<title>SearchCatCache1 (5,237,345,942 samples, 0.06%)</title><rect x="848.6" y="373" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="851.60" y="383.5" ></text>
</g>
<g >
<title>hash_bytes (1,581,189,397 samples, 0.02%)</title><rect x="229.3" y="533" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="232.31" y="543.5" ></text>
</g>
<g >
<title>hash_initial_lookup (879,975,667 samples, 0.01%)</title><rect x="924.1" y="373" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="927.13" y="383.5" ></text>
</g>
<g >
<title>find_duplicate_ors (848,567,698 samples, 0.01%)</title><rect x="1054.2" y="453" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1057.18" y="463.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (812,291,620 samples, 0.01%)</title><rect x="939.9" y="389" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="942.89" y="399.5" ></text>
</g>
<g >
<title>SearchCatCacheList (7,395,981,178 samples, 0.08%)</title><rect x="961.8" y="357" width="0.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="964.82" y="367.5" ></text>
</g>
<g >
<title>bms_join (1,087,045,349 samples, 0.01%)</title><rect x="1069.3" y="469" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1072.32" y="479.5" ></text>
</g>
<g >
<title>finalize_primnode (13,796,062,484 samples, 0.15%)</title><rect x="881.3" y="469" width="1.7" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="884.29" y="479.5" ></text>
</g>
<g >
<title>ExecShutdownNode (7,314,935,841 samples, 0.08%)</title><rect x="410.2" y="485" width="0.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="413.20" y="495.5" ></text>
</g>
<g >
<title>bms_is_valid_set (881,719,888 samples, 0.01%)</title><rect x="117.8" y="741" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="120.77" y="751.5" ></text>
</g>
<g >
<title>populate_compact_attribute (2,693,418,099 samples, 0.03%)</title><rect x="444.8" y="357" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="447.84" y="367.5" ></text>
</g>
<g >
<title>update_process_times (4,144,052,450 samples, 0.04%)</title><rect x="758.0" y="437" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="761.03" y="447.5" ></text>
</g>
<g >
<title>index_getnext_tid (232,486,007,302 samples, 2.45%)</title><rect x="313.5" y="309" width="28.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="316.47" y="319.5" >in..</text>
</g>
<g >
<title>do_fsync (2,132,486,286 samples, 0.02%)</title><rect x="507.8" y="373" width="0.3" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="510.80" y="383.5" ></text>
</g>
<g >
<title>makeColumnRef (15,346,079,527 samples, 0.16%)</title><rect x="1114.6" y="741" width="1.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1117.62" y="751.5" ></text>
</g>
<g >
<title>newNode (5,828,656,722 samples, 0.06%)</title><rect x="952.2" y="405" width="0.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="955.21" y="415.5" ></text>
</g>
<g >
<title>pg_fdatasync (8,543,193,636 samples, 0.09%)</title><rect x="507.3" y="453" width="1.0" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="510.26" y="463.5" ></text>
</g>
<g >
<title>log@@GLIBC_2.29 (2,859,322,383 samples, 0.03%)</title><rect x="1014.6" y="309" width="0.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="1017.61" y="319.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (818,529,498 samples, 0.01%)</title><rect x="335.7" y="197" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="338.67" y="207.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (1,612,904,934 samples, 0.02%)</title><rect x="250.6" y="405" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="253.61" y="415.5" ></text>
</g>
<g >
<title>transform_MERGE_to_join (963,443,170 samples, 0.01%)</title><rect x="1071.0" y="501" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1073.95" y="511.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,163,465,944 samples, 0.01%)</title><rect x="475.6" y="453" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="478.57" y="463.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (972,290,973 samples, 0.01%)</title><rect x="443.0" y="309" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="446.04" y="319.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,136,980,425 samples, 0.02%)</title><rect x="345.3" y="373" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="348.30" y="383.5" ></text>
</g>
<g >
<title>hash_initial_lookup (961,352,424 samples, 0.01%)</title><rect x="452.4" y="309" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="455.41" y="319.5" ></text>
</g>
<g >
<title>CheckCmdReplicaIdentity (6,594,901,168 samples, 0.07%)</title><rect x="419.5" y="437" width="0.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="422.49" y="447.5" ></text>
</g>
<g >
<title>pg_plan_query (2,204,184,953 samples, 0.02%)</title><rect x="128.2" y="581" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="131.20" y="591.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,031,911,705 samples, 0.01%)</title><rect x="355.3" y="261" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="358.29" y="271.5" ></text>
</g>
<g >
<title>hdefault (11,383,818,276 samples, 0.12%)</title><rect x="1061.3" y="453" width="1.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1064.32" y="463.5" ></text>
</g>
<g >
<title>dlist_is_empty (2,991,532,673 samples, 0.03%)</title><rect x="527.4" y="453" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="530.35" y="463.5" ></text>
</g>
<g >
<title>preprocess_rowmarks (12,362,549,651 samples, 0.13%)</title><rect x="1068.3" y="501" width="1.5" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1071.26" y="511.5" ></text>
</g>
<g >
<title>PostgresMain (22,701,609,115 samples, 0.24%)</title><rect x="84.3" y="677" width="2.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="87.32" y="687.5" ></text>
</g>
<g >
<title>put_prev_task_fair (1,808,571,780 samples, 0.02%)</title><rect x="163.6" y="325" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="166.56" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,097,558,273 samples, 0.04%)</title><rect x="507.7" y="405" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="510.68" y="415.5" ></text>
</g>
<g >
<title>pg_any_to_server (10,762,709,598 samples, 0.11%)</title><rect x="1080.5" y="565" width="1.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1083.48" y="575.5" ></text>
</g>
<g >
<title>unix_poll (3,952,576,047 samples, 0.04%)</title><rect x="160.2" y="341" width="0.4" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="163.16" y="351.5" ></text>
</g>
<g >
<title>__send (146,582,105,367 samples, 1.54%)</title><rect x="191.6" y="501" width="18.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="194.59" y="511.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (947,681,380 samples, 0.01%)</title><rect x="298.1" y="213" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="301.05" y="223.5" ></text>
</g>
<g >
<title>lappend (2,367,391,003 samples, 0.02%)</title><rect x="835.2" y="453" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="838.22" y="463.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (2,526,125,479 samples, 0.03%)</title><rect x="248.3" y="389" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="251.30" y="399.5" ></text>
</g>
<g >
<title>AllocSetFree (1,104,113,535 samples, 0.01%)</title><rect x="235.2" y="517" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="238.16" y="527.5" ></text>
</g>
<g >
<title>newNode (3,020,900,073 samples, 0.03%)</title><rect x="423.1" y="373" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="426.05" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_lock (11,097,733,905 samples, 0.12%)</title><rect x="492.8" y="261" width="1.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="495.77" y="271.5" ></text>
</g>
<g >
<title>deconstruct_jointree (177,303,814,897 samples, 1.87%)</title><rect x="956.2" y="469" width="22.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="959.22" y="479.5" >d..</text>
</g>
<g >
<title>LWLockReleaseInternal (1,981,975,984 samples, 0.02%)</title><rect x="522.9" y="437" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="525.89" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (837,451,335 samples, 0.01%)</title><rect x="348.9" y="357" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="351.90" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,689,342,397 samples, 0.02%)</title><rect x="388.6" y="245" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="391.60" y="255.5" ></text>
</g>
<g >
<title>makeTargetEntry (3,110,619,701 samples, 0.03%)</title><rect x="934.1" y="389" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="937.05" y="399.5" ></text>
</g>
<g >
<title>SearchCatCache3 (7,648,843,499 samples, 0.08%)</title><rect x="1032.2" y="197" width="1.0" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1035.21" y="207.5" ></text>
</g>
<g >
<title>palloc0 (4,083,177,387 samples, 0.04%)</title><rect x="803.8" y="533" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="806.84" y="543.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (1,231,634,944 samples, 0.01%)</title><rect x="943.0" y="357" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="946.03" y="367.5" ></text>
</g>
<g >
<title>makeFromExpr (2,680,761,095 samples, 0.03%)</title><rect x="812.1" y="485" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="815.11" y="495.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,215,949,273 samples, 0.01%)</title><rect x="369.8" y="245" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="372.76" y="255.5" ></text>
</g>
<g >
<title>get_timeout_active (870,268,723 samples, 0.01%)</title><rect x="1142.1" y="757" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1145.10" y="767.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (16,639,167,567 samples, 0.18%)</title><rect x="1054.8" y="453" width="2.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1057.75" y="463.5" ></text>
</g>
<g >
<title>MemoryContextCreate (1,351,717,195 samples, 0.01%)</title><rect x="422.6" y="357" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="425.56" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32 (896,578,856 samples, 0.01%)</title><rect x="326.2" y="197" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="329.18" y="207.5" ></text>
</g>
<g >
<title>pg_atomic_read_u64 (2,632,575,738 samples, 0.03%)</title><rect x="510.3" y="485" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="513.29" y="495.5" ></text>
</g>
<g >
<title>can_coerce_type (914,906,183 samples, 0.01%)</title><rect x="843.9" y="421" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="846.95" y="431.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,504,642,807 samples, 0.02%)</title><rect x="57.2" y="757" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="60.25" y="767.5" ></text>
</g>
<g >
<title>BufferGetTag (4,866,257,802 samples, 0.05%)</title><rect x="392.6" y="325" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="395.65" y="335.5" ></text>
</g>
<g >
<title>set_ps_display (6,733,836,682 samples, 0.07%)</title><rect x="1081.9" y="597" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1084.85" y="607.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (1,691,691,922 samples, 0.02%)</title><rect x="350.1" y="293" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="353.07" y="303.5" ></text>
</g>
<g >
<title>_bt_search (10,588,175,261 samples, 0.11%)</title><rect x="126.9" y="277" width="1.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="129.89" y="287.5" ></text>
</g>
<g >
<title>setNamespaceLateralState (1,216,214,070 samples, 0.01%)</title><rect x="833.6" y="469" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="836.56" y="479.5" ></text>
</g>
<g >
<title>DecrTupleDescRefCount (2,309,510,087 samples, 0.02%)</title><rect x="249.3" y="469" width="0.3" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="252.27" y="479.5" ></text>
</g>
<g >
<title>palloc (4,082,475,020 samples, 0.04%)</title><rect x="918.7" y="453" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="921.71" y="463.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,451,970,234 samples, 0.04%)</title><rect x="1045.5" y="389" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1048.45" y="399.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (1,058,184,890 samples, 0.01%)</title><rect x="310.8" y="245" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="313.83" y="255.5" ></text>
</g>
<g >
<title>exprTypmod (1,408,298,420 samples, 0.01%)</title><rect x="844.2" y="405" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="847.22" y="415.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (891,884,930 samples, 0.01%)</title><rect x="415.8" y="373" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="418.76" y="383.5" ></text>
</g>
<g >
<title>newNode (2,504,113,266 samples, 0.03%)</title><rect x="1054.9" y="437" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1057.92" y="447.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,150,244,547 samples, 0.01%)</title><rect x="1173.6" y="693" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1176.62" y="703.5" ></text>
</g>
<g >
<title>palloc0 (4,600,120,982 samples, 0.05%)</title><rect x="428.5" y="325" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="431.50" y="335.5" ></text>
</g>
<g >
<title>futex_wait (1,128,197,959 samples, 0.01%)</title><rect x="353.6" y="229" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="356.56" y="239.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (1,245,032,492 samples, 0.01%)</title><rect x="1171.2" y="757" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="1174.17" y="767.5" ></text>
</g>
<g >
<title>ProcReleaseLocks (109,617,347,170 samples, 1.15%)</title><rect x="516.0" y="485" width="13.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="518.99" y="495.5" ></text>
</g>
<g >
<title>create_scan_plan (44,299,091,673 samples, 0.47%)</title><rect x="886.9" y="421" width="5.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="889.93" y="431.5" ></text>
</g>
<g >
<title>hash_seq_term (1,078,752,059 samples, 0.01%)</title><rect x="529.4" y="437" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="532.41" y="447.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (1,021,928,411 samples, 0.01%)</title><rect x="82.9" y="757" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="85.87" y="767.5" ></text>
</g>
<g >
<title>LockHeldByMe (11,889,065,235 samples, 0.13%)</title><rect x="867.0" y="453" width="1.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="869.96" y="463.5" ></text>
</g>
<g >
<title>postmaster_child_launch (17,479,689,687 samples, 0.18%)</title><rect x="126.3" y="661" width="2.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="129.31" y="671.5" ></text>
</g>
<g >
<title>transformExpr (56,948,732,517 samples, 0.60%)</title><rect x="836.0" y="437" width="7.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="839.01" y="447.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,106,923,373 samples, 0.01%)</title><rect x="123.5" y="741" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="126.53" y="751.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (898,117,188 samples, 0.01%)</title><rect x="86.8" y="165" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="89.80" y="175.5" ></text>
</g>
<g >
<title>do_syscall_64 (9,034,105,319 samples, 0.10%)</title><rect x="937.0" y="197" width="1.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="940.00" y="207.5" ></text>
</g>
<g >
<title>try_to_wake_up (935,152,819 samples, 0.01%)</title><rect x="478.2" y="277" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="481.20" y="287.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,986,012,016 samples, 0.05%)</title><rect x="388.5" y="293" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="391.47" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,810,068,831 samples, 0.02%)</title><rect x="1116.3" y="693" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1119.31" y="703.5" ></text>
</g>
<g >
<title>apply_scanjoin_target_to_paths (14,425,447,193 samples, 0.15%)</title><rect x="909.4" y="485" width="1.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="912.37" y="495.5" ></text>
</g>
<g >
<title>get_typlen (4,906,908,612 samples, 0.05%)</title><rect x="1046.7" y="437" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1049.73" y="447.5" ></text>
</g>
<g >
<title>BackendStartup (17,479,689,687 samples, 0.18%)</title><rect x="126.3" y="677" width="2.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="129.31" y="687.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (328,103,132,612 samples, 3.45%)</title><rect x="717.0" y="533" width="40.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="719.98" y="543.5" >Mem..</text>
</g>
<g >
<title>_bt_readpage (4,599,176,588 samples, 0.05%)</title><rect x="124.2" y="277" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="127.19" y="287.5" ></text>
</g>
<g >
<title>ExecEndNode (70,040,122,799 samples, 0.74%)</title><rect x="240.0" y="485" width="8.7" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="243.01" y="495.5" ></text>
</g>
<g >
<title>list_copy (2,758,921,519 samples, 0.03%)</title><rect x="401.2" y="373" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="404.23" y="383.5" ></text>
</g>
<g >
<title>ProcessQuery (1,819,800,332,381 samples, 19.16%)</title><rect x="235.3" y="549" width="226.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="238.32" y="559.5" >ProcessQuery</text>
</g>
<g >
<title>ResourceOwnerEnlarge (1,732,462,127 samples, 0.02%)</title><rect x="91.9" y="757" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="94.85" y="767.5" ></text>
</g>
<g >
<title>palloc (1,957,667,816 samples, 0.02%)</title><rect x="456.6" y="389" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="459.59" y="399.5" ></text>
</g>
<g >
<title>new_list (1,758,342,600 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.81" y="383.5" ></text>
</g>
<g >
<title>bms_equal (2,245,929,414 samples, 0.02%)</title><rect x="956.8" y="453" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="959.77" y="463.5" ></text>
</g>
<g >
<title>socket_flush (157,841,222,611 samples, 1.66%)</title><rect x="190.4" y="581" width="19.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="193.39" y="591.5" ></text>
</g>
<g >
<title>_bt_lockbuf (1,853,327,073 samples, 0.02%)</title><rect x="127.8" y="229" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="130.76" y="239.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (818,868,155 samples, 0.01%)</title><rect x="357.5" y="309" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="360.48" y="319.5" ></text>
</g>
<g >
<title>do_futex (26,944,102,367 samples, 0.28%)</title><rect x="491.7" y="357" width="3.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="494.68" y="367.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,556,301,355 samples, 0.02%)</title><rect x="475.5" y="485" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="478.53" y="495.5" ></text>
</g>
<g >
<title>ReadBuffer_common (4,224,794,037 samples, 0.04%)</title><rect x="86.4" y="245" width="0.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="89.39" y="255.5" ></text>
</g>
<g >
<title>ReleaseCatCache (862,026,613 samples, 0.01%)</title><rect x="972.2" y="357" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="975.23" y="367.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,238,292,445 samples, 0.01%)</title><rect x="428.9" y="293" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="431.87" y="303.5" ></text>
</g>
<g >
<title>ExecScanExtended (471,501,489,492 samples, 4.96%)</title><rect x="285.0" y="373" width="58.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="287.97" y="383.5" >ExecSc..</text>
</g>
<g >
<title>check_stack_depth (848,610,235 samples, 0.01%)</title><rect x="846.4" y="437" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="849.42" y="447.5" ></text>
</g>
<g >
<title>wipe_mem (5,013,617,111 samples, 0.05%)</title><rect x="264.5" y="405" width="0.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="267.50" y="415.5" ></text>
</g>
<g >
<title>pg_plan_query (1,837,816,106 samples, 0.02%)</title><rect x="86.9" y="629" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="89.91" y="639.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,613,237,873 samples, 0.02%)</title><rect x="1016.7" y="309" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1019.70" y="319.5" ></text>
</g>
<g >
<title>lappend (2,100,274,638 samples, 0.02%)</title><rect x="914.7" y="469" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="917.74" y="479.5" ></text>
</g>
<g >
<title>RelationGetNumberOfBlocksInFork (11,765,590,243 samples, 0.12%)</title><rect x="931.6" y="405" width="1.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="934.62" y="415.5" ></text>
</g>
<g >
<title>MakePerTupleExprContext (9,788,278,232 samples, 0.10%)</title><rect x="346.6" y="389" width="1.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="349.59" y="399.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (2,014,500,464 samples, 0.02%)</title><rect x="312.1" y="229" width="0.3" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="315.10" y="239.5" ></text>
</g>
<g >
<title>transform_MERGE_to_join (808,131,431 samples, 0.01%)</title><rect x="1187.9" y="757" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1190.94" y="767.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,454,248,903 samples, 0.02%)</title><rect x="353.5" y="309" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="356.54" y="319.5" ></text>
</g>
<g >
<title>newNode (3,472,630,718 samples, 0.04%)</title><rect x="1023.5" y="389" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1026.53" y="399.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (877,280,351 samples, 0.01%)</title><rect x="393.4" y="293" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="396.43" y="303.5" ></text>
</g>
<g >
<title>update_entity_lag (3,579,844,560 samples, 0.04%)</title><rect x="172.3" y="277" width="0.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="175.31" y="287.5" ></text>
</g>
<g >
<title>__task_rq_lock (1,078,792,808 samples, 0.01%)</title><rect x="201.9" y="325" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="204.85" y="335.5" ></text>
</g>
<g >
<title>ExecModifyTable (15,531,807,651 samples, 0.16%)</title><rect x="124.0" y="485" width="1.9" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="126.99" y="495.5" ></text>
</g>
<g >
<title>AllocSetFree (46,469,164,795 samples, 0.49%)</title><rect x="242.4" y="373" width="5.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="245.37" y="383.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,316,451,535 samples, 0.01%)</title><rect x="58.1" y="757" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="61.13" y="767.5" ></text>
</g>
<g >
<title>ItemPointerEquals (1,482,352,474 samples, 0.02%)</title><rect x="55.7" y="757" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="58.66" y="767.5" ></text>
</g>
<g >
<title>finalize_primnode (1,100,098,909 samples, 0.01%)</title><rect x="882.3" y="389" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="885.26" y="399.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (908,998,094 samples, 0.01%)</title><rect x="128.4" y="405" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="131.36" y="415.5" ></text>
</g>
<g >
<title>buildNSItemFromTupleDesc (6,649,508,113 samples, 0.07%)</title><rect x="815.7" y="453" width="0.8" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="818.69" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (820,349,264 samples, 0.01%)</title><rect x="874.4" y="517" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="877.41" y="527.5" ></text>
</g>
<g >
<title>LWLockRelease (2,512,547,452 samples, 0.03%)</title><rect x="522.8" y="453" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="525.83" y="463.5" ></text>
</g>
<g >
<title>__schedule (854,719,934 samples, 0.01%)</title><rect x="353.6" y="165" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="356.57" y="175.5" ></text>
</g>
<g >
<title>expr_setup_walker (1,352,099,641 samples, 0.01%)</title><rect x="438.7" y="309" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="441.73" y="319.5" ></text>
</g>
<g >
<title>verify_compact_attribute (2,387,865,595 samples, 0.03%)</title><rect x="84.7" y="229" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="87.69" y="239.5" ></text>
</g>
<g >
<title>pg_database_encoding_max_length (910,535,600 samples, 0.01%)</title><rect x="1113.1" y="677" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="1116.11" y="687.5" ></text>
</g>
<g >
<title>ExecProcNode (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="549" width="2.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="87.32" y="559.5" ></text>
</g>
<g >
<title>AtEOXact_Parallel (993,871,802 samples, 0.01%)</title><rect x="32.0" y="757" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="34.99" y="767.5" ></text>
</g>
<g >
<title>generate_bitmap_or_paths (8,054,599,852 samples, 0.08%)</title><rect x="990.3" y="389" width="1.0" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="993.32" y="399.5" ></text>
</g>
<g >
<title>palloc0 (4,678,419,234 samples, 0.05%)</title><rect x="819.5" y="437" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="822.46" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (898,622,352 samples, 0.01%)</title><rect x="801.9" y="533" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="804.95" y="543.5" ></text>
</g>
<g >
<title>sysvec_thermal (1,908,130,319 samples, 0.02%)</title><rect x="758.7" y="517" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="761.67" y="527.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,473,319,950 samples, 0.07%)</title><rect x="973.1" y="357" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="976.13" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,389,507,898 samples, 0.03%)</title><rect x="481.7" y="453" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="484.72" y="463.5" ></text>
</g>
<g >
<title>update_se (7,012,441,178 samples, 0.07%)</title><rect x="171.4" y="261" width="0.9" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="174.44" y="271.5" ></text>
</g>
<g >
<title>hash_initial_lookup (859,228,511 samples, 0.01%)</title><rect x="403.1" y="309" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="406.10" y="319.5" ></text>
</g>
<g >
<title>hash_bytes (2,466,366,371 samples, 0.03%)</title><rect x="823.2" y="325" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="826.17" y="335.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (4,369,785,851 samples, 0.05%)</title><rect x="924.6" y="437" width="0.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="927.57" y="447.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (937,219,638 samples, 0.01%)</title><rect x="52.9" y="757" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="55.89" y="767.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,624,560,495 samples, 0.02%)</title><rect x="1023.1" y="309" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1026.12" y="319.5" ></text>
</g>
<g >
<title>hash_bytes (4,588,996,817 samples, 0.05%)</title><rect x="831.0" y="325" width="0.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="834.04" y="335.5" ></text>
</g>
<g >
<title>analyze_requires_snapshot (1,621,052,871 samples, 0.02%)</title><rect x="1083.7" y="757" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1086.73" y="767.5" ></text>
</g>
<g >
<title>finish_xact_command (2,714,133,727,078 samples, 28.57%)</title><rect x="465.1" y="581" width="337.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="468.13" y="591.5" >finish_xact_command</text>
</g>
<g >
<title>AtEOXact_PgStat_Relations (3,034,855,043 samples, 0.03%)</title><rect x="470.8" y="501" width="0.4" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text  x="473.79" y="511.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (855,737,378 samples, 0.01%)</title><rect x="377.7" y="309" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="380.66" y="319.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,197,754,817 samples, 0.01%)</title><rect x="959.4" y="277" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="962.45" y="287.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (827,601,576 samples, 0.01%)</title><rect x="49.0" y="757" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="52.04" y="767.5" ></text>
</g>
<g >
<title>ExecConditionalAssignProjectionInfo (80,750,426,473 samples, 0.85%)</title><rect x="423.5" y="405" width="10.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="426.46" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (19,337,673,108 samples, 0.20%)</title><rect x="371.4" y="261" width="2.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="374.40" y="271.5" ></text>
</g>
<g >
<title>palloc (1,275,804,392 samples, 0.01%)</title><rect x="971.2" y="357" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="974.21" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,096,358,159 samples, 0.01%)</title><rect x="967.0" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="969.99" y="351.5" ></text>
</g>
<g >
<title>tas (2,120,694,718 samples, 0.02%)</title><rect x="519.5" y="421" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="522.47" y="431.5" ></text>
</g>
<g >
<title>futex_do_wait (890,099,722 samples, 0.01%)</title><rect x="353.6" y="197" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="356.57" y="207.5" ></text>
</g>
<g >
<title>list_free (1,661,787,340 samples, 0.02%)</title><rect x="254.3" y="421" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="257.33" y="431.5" ></text>
</g>
<g >
<title>palloc0 (3,721,733,483 samples, 0.04%)</title><rect x="436.0" y="405" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="439.01" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,352,869,853 samples, 0.01%)</title><rect x="463.9" y="517" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="466.88" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3,310,907,079 samples, 0.03%)</title><rect x="1112.7" y="661" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1115.68" y="671.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,694,528,881 samples, 0.05%)</title><rect x="1041.5" y="309" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1044.52" y="319.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (2,118,377,737 samples, 0.02%)</title><rect x="1058.2" y="437" width="0.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="1061.25" y="447.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (4,014,517,469 samples, 0.04%)</title><rect x="291.3" y="197" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="294.26" y="207.5" ></text>
</g>
<g >
<title>GetCurrentTransactionStopTimestamp (3,640,156,337 samples, 0.04%)</title><rect x="476.6" y="501" width="0.5" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="479.64" y="511.5" ></text>
</g>
<g >
<title>lappend (5,204,850,013 samples, 0.05%)</title><rect x="1154.5" y="757" width="0.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1157.45" y="767.5" ></text>
</g>
<g >
<title>makeIntConst (4,705,105,787 samples, 0.05%)</title><rect x="1116.5" y="741" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1119.53" y="751.5" ></text>
</g>
<g >
<title>AssertTransactionIdInAllowableRange (1,665,522,712 samples, 0.02%)</title><rect x="312.1" y="213" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="315.14" y="223.5" ></text>
</g>
<g >
<title>TransactionIdGetStatus (9,020,835,300 samples, 0.09%)</title><rect x="308.7" y="181" width="1.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="311.73" y="191.5" ></text>
</g>
<g >
<title>LWLockWakeup (6,984,148,097 samples, 0.07%)</title><rect x="367.5" y="277" width="0.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="370.49" y="287.5" ></text>
</g>
<g >
<title>shmem_file_llseek (1,491,072,759 samples, 0.02%)</title><rect x="937.9" y="165" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="940.90" y="175.5" ></text>
</g>
<g >
<title>expr_setup_walker (11,652,263,952 samples, 0.12%)</title><rect x="425.2" y="341" width="1.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="428.21" y="351.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (836,334,169 samples, 0.01%)</title><rect x="912.9" y="405" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="915.92" y="415.5" ></text>
</g>
<g >
<title>ReadBuffer (1,544,277,513 samples, 0.02%)</title><rect x="337.1" y="213" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="340.11" y="223.5" ></text>
</g>
<g >
<title>_bt_getbuf (1,853,327,073 samples, 0.02%)</title><rect x="127.8" y="245" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="130.76" y="255.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (13,046,915,088 samples, 0.14%)</title><rect x="144.5" y="533" width="1.6" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="147.51" y="543.5" ></text>
</g>
<g >
<title>get_tablespace (3,039,406,182 samples, 0.03%)</title><rect x="1015.6" y="309" width="0.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1018.64" y="319.5" ></text>
</g>
<g >
<title>bms_is_member (2,230,396,233 samples, 0.02%)</title><rect x="277.3" y="405" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="280.30" y="415.5" ></text>
</g>
<g >
<title>add_vars_to_targetlist (27,462,915,426 samples, 0.29%)</title><rect x="950.2" y="453" width="3.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text  x="953.18" y="463.5" ></text>
</g>
<g >
<title>LWLockRelease (9,169,008,169 samples, 0.10%)</title><rect x="367.4" y="309" width="1.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="370.37" y="319.5" ></text>
</g>
<g >
<title>BTreeTupleIsPosting (1,744,896,269 samples, 0.02%)</title><rect x="335.2" y="197" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="338.21" y="207.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (9,181,703,205 samples, 0.10%)</title><rect x="467.5" y="485" width="1.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="470.53" y="495.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (970,016,705 samples, 0.01%)</title><rect x="947.0" y="357" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="949.98" y="367.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,987,775,517 samples, 0.04%)</title><rect x="963.7" y="357" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="966.68" y="367.5" ></text>
</g>
<g >
<title>ep_item_poll.isra.0 (12,088,871,488 samples, 0.13%)</title><rect x="159.1" y="373" width="1.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="162.15" y="383.5" ></text>
</g>
<g >
<title>pfree (1,456,927,540 samples, 0.02%)</title><rect x="229.5" y="565" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="232.53" y="575.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (10,837,258,066 samples, 0.11%)</title><rect x="321.8" y="213" width="1.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="324.83" y="223.5" ></text>
</g>
<g >
<title>_bt_first (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="341" width="2.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="87.32" y="351.5" ></text>
</g>
<g >
<title>palloc0 (4,602,477,414 samples, 0.05%)</title><rect x="439.6" y="373" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="442.61" y="383.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="357" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="128.92" y="367.5" ></text>
</g>
<g >
<title>palloc0 (2,905,925,888 samples, 0.03%)</title><rect x="441.1" y="389" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="444.08" y="399.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (55,519,487,286 samples, 0.58%)</title><rect x="95.7" y="597" width="6.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="98.68" y="607.5" ></text>
</g>
<g >
<title>check_functions_in_node (7,082,785,709 samples, 0.07%)</title><rect x="916.8" y="421" width="0.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="919.79" y="431.5" ></text>
</g>
<g >
<title>EvalPlanQualInit (2,570,993,188 samples, 0.03%)</title><rect x="420.4" y="453" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="423.36" y="463.5" ></text>
</g>
<g >
<title>AllocSetFree (3,668,031,359 samples, 0.04%)</title><rect x="525.7" y="421" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="528.66" y="431.5" ></text>
</g>
<g >
<title>pg_plan_queries (2,204,184,953 samples, 0.02%)</title><rect x="128.2" y="597" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="131.20" y="607.5" ></text>
</g>
<g >
<title>palloc (3,358,475,623 samples, 0.04%)</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>new_list (1,752,395,959 samples, 0.02%)</title><rect x="893.4" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="896.40" y="447.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,203,969,060 samples, 0.01%)</title><rect x="126.2" y="453" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="129.16" y="463.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (29,117,505,150 samples, 0.31%)</title><rect x="900.5" y="453" width="3.7" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="903.55" y="463.5" ></text>
</g>
<g >
<title>set_cheapest (4,023,345,730 samples, 0.04%)</title><rect x="910.7" y="469" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="913.66" y="479.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,073,088,514 samples, 0.01%)</title><rect x="943.7" y="325" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="946.66" y="335.5" ></text>
</g>
<g >
<title>bms_add_member (1,396,263,284 samples, 0.01%)</title><rect x="1120.6" y="757" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1123.63" y="767.5" ></text>
</g>
<g >
<title>new_list (1,812,070,690 samples, 0.02%)</title><rect x="440.8" y="389" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="443.79" y="399.5" ></text>
</g>
<g >
<title>ttwu_do_activate (11,326,503,590 samples, 0.12%)</title><rect x="206.4" y="325" width="1.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="209.44" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (11,206,223,450 samples, 0.12%)</title><rect x="294.2" y="261" width="1.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="297.22" y="271.5" ></text>
</g>
<g >
<title>_bt_first (226,761,321,575 samples, 2.39%)</title><rect x="314.1" y="277" width="28.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="317.15" y="287.5" >_..</text>
</g>
<g >
<title>file_update_time (3,171,826,220 samples, 0.03%)</title><rect x="501.8" y="373" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="504.80" y="383.5" ></text>
</g>
<g >
<title>contain_volatile_functions_checker (6,341,062,891 samples, 0.07%)</title><rect x="959.3" y="325" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="962.31" y="335.5" ></text>
</g>
<g >
<title>PortalCleanup (1,007,102,109 samples, 0.01%)</title><rect x="83.7" y="757" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="86.75" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,096,661,537 samples, 0.01%)</title><rect x="507.5" y="421" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="510.53" y="431.5" ></text>
</g>
<g >
<title>hash_search (4,630,125,783 samples, 0.05%)</title><rect x="453.1" y="357" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="456.15" y="367.5" ></text>
</g>
<g >
<title>bms_make_singleton (3,477,055,901 samples, 0.04%)</title><rect x="878.2" y="469" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="881.19" y="479.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (2,463,738,124 samples, 0.03%)</title><rect x="84.7" y="245" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="87.68" y="255.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (4,397,509,747 samples, 0.05%)</title><rect x="402.8" y="357" width="0.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="405.80" y="367.5" ></text>
</g>
<g >
<title>SearchSysCache4 (10,751,842,512 samples, 0.11%)</title><rect x="1008.4" y="277" width="1.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1011.36" y="287.5" ></text>
</g>
<g >
<title>get_hash_entry (4,960,742,812 samples, 0.05%)</title><rect x="373.0" y="245" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="375.97" y="255.5" ></text>
</g>
<g >
<title>ep_poll (142,768,906,068 samples, 1.50%)</title><rect x="157.1" y="405" width="17.8" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text  x="160.14" y="415.5" ></text>
</g>
<g >
<title>ExecScan (24,636,562,570 samples, 0.26%)</title><rect x="281.7" y="405" width="3.0" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="284.67" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,085,768,088 samples, 0.01%)</title><rect x="369.9" y="213" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="372.95" y="223.5" ></text>
</g>
<g >
<title>lcons (2,337,232,746 samples, 0.02%)</title><rect x="910.9" y="453" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="913.87" y="463.5" ></text>
</g>
<g >
<title>try_to_block_task.constprop.0.isra.0 (48,126,316,393 samples, 0.51%)</title><rect x="168.5" y="341" width="6.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="171.54" y="351.5" ></text>
</g>
<g >
<title>ScanKeywords_hash_func (9,918,355,124 samples, 0.10%)</title><rect x="1110.3" y="693" width="1.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1113.34" y="703.5" ></text>
</g>
<g >
<title>preprocess_targetlist (1,086,112,813 samples, 0.01%)</title><rect x="1174.1" y="757" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1177.06" y="767.5" ></text>
</g>
<g >
<title>BackendStartup (83,672,568,701 samples, 0.88%)</title><rect x="95.7" y="741" width="10.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="98.68" y="751.5" ></text>
</g>
<g >
<title>tts_buffer_heap_materialize (1,494,985,184 samples, 0.02%)</title><rect x="1188.5" y="757" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1191.47" y="767.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (6,075,316,499 samples, 0.06%)</title><rect x="410.3" y="453" width="0.8" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="413.34" y="463.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (10,847,312,247 samples, 0.11%)</title><rect x="1148.8" y="757" width="1.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1151.81" y="767.5" ></text>
</g>
<g >
<title>CommitTransaction (520,292,370,484 samples, 5.48%)</title><rect x="466.2" y="533" width="64.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="469.17" y="543.5" >CommitT..</text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,779,446,574 samples, 0.02%)</title><rect x="496.5" y="421" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="499.48" y="431.5" ></text>
</g>
<g >
<title>palloc (1,056,889,321 samples, 0.01%)</title><rect x="815.2" y="405" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="818.16" y="415.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (8,973,666,904 samples, 0.09%)</title><rect x="164.2" y="341" width="1.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="167.17" y="351.5" ></text>
</g>
<g >
<title>RelationGetIndexPredicate (1,162,115,285 samples, 0.01%)</title><rect x="931.5" y="405" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="934.47" y="415.5" ></text>
</g>
<g >
<title>smgrnblocks (22,276,484,069 samples, 0.23%)</title><rect x="935.7" y="293" width="2.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="938.75" y="303.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (1,258,707,312 samples, 0.01%)</title><rect x="757.8" y="501" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="760.75" y="511.5" ></text>
</g>
<g >
<title>message_level_is_interesting (1,028,535,048 samples, 0.01%)</title><rect x="1076.6" y="517" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1079.60" y="527.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (7,341,089,923 samples, 0.08%)</title><rect x="300.5" y="117" width="0.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="303.52" y="127.5" ></text>
</g>
<g >
<title>tas (1,751,831,693 samples, 0.02%)</title><rect x="388.2" y="293" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="391.24" y="303.5" ></text>
</g>
<g >
<title>_bt_lockbuf (3,185,105,605 samples, 0.03%)</title><rect x="341.2" y="229" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="344.15" y="239.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (825,282,682 samples, 0.01%)</title><rect x="101.3" y="149" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="104.30" y="159.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseAll (1,584,420,156 samples, 0.02%)</title><rect x="228.1" y="533" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="231.11" y="543.5" ></text>
</g>
<g >
<title>int4hashfast (965,280,220 samples, 0.01%)</title><rect x="443.9" y="293" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="446.85" y="303.5" ></text>
</g>
<g >
<title>_bt_check_compare (4,627,104,075 samples, 0.05%)</title><rect x="126.3" y="229" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="129.31" y="239.5" ></text>
</g>
<g >
<title>LWLockRelease (1,465,648,541 samples, 0.02%)</title><rect x="527.1" y="437" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="530.14" y="447.5" ></text>
</g>
<g >
<title>inode_to_bdi (1,023,479,854 samples, 0.01%)</title><rect x="502.6" y="341" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="505.65" y="351.5" ></text>
</g>
<g >
<title>pfree (47,490,926,688 samples, 0.50%)</title><rect x="242.3" y="389" width="5.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="245.32" y="399.5" ></text>
</g>
<g >
<title>new_list (1,560,804,191 samples, 0.02%)</title><rect x="896.8" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="899.76" y="447.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (45,621,589,468 samples, 0.48%)</title><rect x="19.2" y="741" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="22.18" y="751.5" ></text>
</g>
<g >
<title>AllocSetAllocLarge (9,901,218,233 samples, 0.10%)</title><rect x="294.3" y="245" width="1.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="297.34" y="255.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (1,799,229,374 samples, 0.02%)</title><rect x="299.7" y="165" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="302.66" y="175.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (884,781,725 samples, 0.01%)</title><rect x="95.7" y="213" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="98.68" y="223.5" ></text>
</g>
<g >
<title>vfs_write (52,413,972,048 samples, 0.55%)</title><rect x="500.3" y="405" width="6.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="503.29" y="415.5" ></text>
</g>
<g >
<title>ComputeXidHorizons (2,530,131,093 samples, 0.03%)</title><rect x="305.8" y="181" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="308.76" y="191.5" ></text>
</g>
<g >
<title>ItemPointerIsValid (3,133,019,062 samples, 0.03%)</title><rect x="56.6" y="757" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="59.61" y="767.5" ></text>
</g>
<g >
<title>HeapTupleHeaderXminCommitted (3,755,011,625 samples, 0.04%)</title><rect x="307.0" y="213" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="310.02" y="223.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (997,002,053 samples, 0.01%)</title><rect x="829.1" y="309" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="832.06" y="319.5" ></text>
</g>
<g >
<title>SerializationNeededForRead (1,104,371,322 samples, 0.01%)</title><rect x="95.5" y="757" width="0.2" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text  x="98.53" y="767.5" ></text>
</g>
<g >
<title>futex_wait (55,331,353,157 samples, 0.58%)</title><rect x="483.2" y="357" width="6.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="486.20" y="367.5" ></text>
</g>
<g >
<title>_bt_freestack (2,484,712,612 samples, 0.03%)</title><rect x="323.3" y="261" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text  x="326.32" y="271.5" ></text>
</g>
<g >
<title>_mm_set_epi8 (815,375,639 samples, 0.01%)</title><rect x="1081.5" y="469" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="1084.50" y="479.5" ></text>
</g>
<g >
<title>palloc0 (1,153,498,951 samples, 0.01%)</title><rect x="1163.9" y="741" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1166.93" y="751.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (2,158,915,946 samples, 0.02%)</title><rect x="275.1" y="389" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="278.08" y="399.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,052,820,281 samples, 0.01%)</title><rect x="1068.1" y="405" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1071.08" y="415.5" ></text>
</g>
<g >
<title>lappend (3,294,863,039 samples, 0.03%)</title><rect x="861.3" y="501" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="864.26" y="511.5" ></text>
</g>
<g >
<title>bsearch (6,227,095,902 samples, 0.07%)</title><rect x="270.0" y="325" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="272.98" y="335.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,267,687,232 samples, 0.03%)</title><rect x="960.3" y="325" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="963.25" y="335.5" ></text>
</g>
<g >
<title>palloc0 (1,636,922,764 samples, 0.02%)</title><rect x="996.7" y="245" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="999.75" y="255.5" ></text>
</g>
<g >
<title>BufferGetPage (4,779,378,458 samples, 0.05%)</title><rect x="35.3" y="757" width="0.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="38.28" y="767.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (2,192,331,437 samples, 0.02%)</title><rect x="253.3" y="437" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="256.29" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (810,889,545 samples, 0.01%)</title><rect x="527.2" y="389" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="530.22" y="399.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,534,147,982 samples, 0.02%)</title><rect x="1065.6" y="437" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1068.65" y="447.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,762,260,756 samples, 0.03%)</title><rect x="857.2" y="309" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="860.22" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,509,696,471 samples, 0.02%)</title><rect x="864.0" y="453" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="867.02" y="463.5" ></text>
</g>
<g >
<title>pfree (2,131,212,591 samples, 0.02%)</title><rect x="995.2" y="325" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="998.25" y="335.5" ></text>
</g>
<g >
<title>native_write_msr (1,115,051,174 samples, 0.01%)</title><rect x="484.8" y="213" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="487.81" y="223.5" ></text>
</g>
<g >
<title>create_scan_plan (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="453" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="128.92" y="463.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesMVCC (30,880,562,662 samples, 0.33%)</title><rect x="306.4" y="229" width="3.8" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="309.39" y="239.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (891,789,765 samples, 0.01%)</title><rect x="120.1" y="741" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="123.10" y="751.5" ></text>
</g>
<g >
<title>palloc (1,100,477,832 samples, 0.01%)</title><rect x="1053.4" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1056.44" y="415.5" ></text>
</g>
<g >
<title>GetScanKeyword (1,670,892,337 samples, 0.02%)</title><rect x="1110.1" y="693" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1113.13" y="703.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (816,605,350 samples, 0.01%)</title><rect x="1029.8" y="229" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1032.82" y="239.5" ></text>
</g>
<g >
<title>_bt_check_compare (2,463,738,124 samples, 0.03%)</title><rect x="84.7" y="277" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="87.68" y="287.5" ></text>
</g>
<g >
<title>tag_hash (2,544,563,585 samples, 0.03%)</title><rect x="448.6" y="341" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="451.56" y="351.5" ></text>
</g>
<g >
<title>AllocSetCheck (2,043,955,319,382 samples, 21.52%)</title><rect x="542.4" y="549" width="253.8" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="545.35" y="559.5" >AllocSetCheck</text>
</g>
<g >
<title>_bt_num_array_keys (1,307,635,084 samples, 0.01%)</title><rect x="130.6" y="757" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="133.57" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,852,740,407 samples, 0.04%)</title><rect x="228.7" y="549" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="231.67" y="559.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="501" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="128.92" y="511.5" ></text>
</g>
<g >
<title>create_projection_path (5,682,820,305 samples, 0.06%)</title><rect x="909.9" y="469" width="0.7" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="912.86" y="479.5" ></text>
</g>
<g >
<title>lcons (1,182,615,046 samples, 0.01%)</title><rect x="1155.2" y="757" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1158.19" y="767.5" ></text>
</g>
<g >
<title>lnext (1,606,005,733 samples, 0.02%)</title><rect x="802.3" y="581" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="805.28" y="591.5" ></text>
</g>
<g >
<title>AllocSetAlloc (986,545,172 samples, 0.01%)</title><rect x="457.4" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="460.37" y="415.5" ></text>
</g>
<g >
<title>core_yyalloc (2,877,486,095 samples, 0.03%)</title><rect x="873.0" y="517" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="875.97" y="527.5" ></text>
</g>
<g >
<title>epoll_wait (1,700,398,746 samples, 0.02%)</title><rect x="177.8" y="485" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="180.78" y="495.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,341,249,667 samples, 0.01%)</title><rect x="388.9" y="213" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="391.90" y="223.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,430,218,785 samples, 0.02%)</title><rect x="240.9" y="389" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="243.85" y="399.5" ></text>
</g>
<g >
<title>create_seqscan_path (16,138,174,122 samples, 0.17%)</title><rect x="1022.0" y="405" width="2.0" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1024.96" y="415.5" ></text>
</g>
<g >
<title>palloc0 (1,488,177,300 samples, 0.02%)</title><rect x="1058.6" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1061.60" y="447.5" ></text>
</g>
<g >
<title>bsearch (1,539,955,512 samples, 0.02%)</title><rect x="1123.0" y="757" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1126.04" y="767.5" ></text>
</g>
<g >
<title>hash_search (14,817,043,985 samples, 0.16%)</title><rect x="523.8" y="437" width="1.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="526.75" y="447.5" ></text>
</g>
<g >
<title>get_relation_foreign_keys (1,057,002,162 samples, 0.01%)</title><rect x="939.3" y="405" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="942.25" y="415.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (1,189,339,536 samples, 0.01%)</title><rect x="757.2" y="485" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="760.19" y="495.5" ></text>
</g>
<g >
<title>update_se (3,394,489,575 samples, 0.04%)</title><rect x="487.4" y="197" width="0.5" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="490.44" y="207.5" ></text>
</g>
<g >
<title>finalize_primnode (4,810,712,275 samples, 0.05%)</title><rect x="882.4" y="405" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="885.40" y="415.5" ></text>
</g>
<g >
<title>hash_search (3,564,983,453 samples, 0.04%)</title><rect x="1067.2" y="421" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1070.25" y="431.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (10,552,927,707 samples, 0.11%)</title><rect x="1080.5" y="549" width="1.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1083.50" y="559.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (15,255,037,055 samples, 0.16%)</title><rect x="958.8" y="373" width="1.9" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="961.77" y="383.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (1,372,385,763 samples, 0.01%)</title><rect x="310.3" y="245" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="313.28" y="255.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="533" width="2.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="87.32" y="543.5" ></text>
</g>
<g >
<title>do_futex (939,032,409 samples, 0.01%)</title><rect x="369.9" y="165" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="372.95" y="175.5" ></text>
</g>
<g >
<title>MemoryContextAllocExtended (1,196,869,803 samples, 0.01%)</title><rect x="1063.1" y="421" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1066.06" y="431.5" ></text>
</g>
<g >
<title>postgres (9,499,813,485,584 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>schedule (43,028,304,687 samples, 0.45%)</title><rect x="483.6" y="309" width="5.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="486.58" y="319.5" ></text>
</g>
<g >
<title>table_open (28,603,800,722 samples, 0.30%)</title><rect x="866.8" y="517" width="3.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="869.77" y="527.5" ></text>
</g>
<g >
<title>create_tidscan_paths (15,216,772,435 samples, 0.16%)</title><rect x="1024.0" y="405" width="1.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1026.96" y="415.5" ></text>
</g>
<g >
<title>LockHeldByMe (4,947,441,742 samples, 0.05%)</title><rect x="451.0" y="405" width="0.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="454.00" y="415.5" ></text>
</g>
<g >
<title>TransactionIdCommitTree (26,628,422,521 samples, 0.28%)</title><rect x="477.3" y="501" width="3.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="480.33" y="511.5" ></text>
</g>
<g >
<title>RelationClose (1,468,145,260 samples, 0.02%)</title><rect x="238.5" y="437" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="241.47" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,379,194,883 samples, 0.01%)</title><rect x="892.1" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="895.05" y="351.5" ></text>
</g>
<g >
<title>BufTableHashCode (4,030,688,084 samples, 0.04%)</title><rect x="95.9" y="181" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="98.93" y="191.5" ></text>
</g>
<g >
<title>_bt_first (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="293" width="1.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="129.31" y="303.5" ></text>
</g>
<g >
<title>palloc0 (2,641,348,420 samples, 0.03%)</title><rect x="1020.5" y="293" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1023.50" y="303.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (836,499,119 samples, 0.01%)</title><rect x="92.9" y="757" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="95.89" y="767.5" ></text>
</g>
<g >
<title>newNode (4,642,960,801 samples, 0.05%)</title><rect x="966.6" y="373" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="969.55" y="383.5" ></text>
</g>
<g >
<title>bms_add_member (2,562,181,748 samples, 0.03%)</title><rect x="834.6" y="469" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="837.62" y="479.5" ></text>
</g>
<g >
<title>__x64_sys_futex (2,527,180,487 samples, 0.03%)</title><rect x="389.3" y="165" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="392.34" y="175.5" ></text>
</g>
<g >
<title>add_function_cost (6,467,096,309 samples, 0.07%)</title><rect x="1037.9" y="341" width="0.8" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1040.87" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,505,600,175 samples, 0.02%)</title><rect x="1020.6" y="277" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1023.64" y="287.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,088,549,554 samples, 0.03%)</title><rect x="996.1" y="293" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="999.14" y="303.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (29,650,317,438 samples, 0.31%)</title><rect x="299.4" y="261" width="3.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="302.35" y="271.5" ></text>
</g>
<g >
<title>update_load_avg (2,771,553,637 samples, 0.03%)</title><rect x="207.2" y="277" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="210.16" y="287.5" ></text>
</g>
<g >
<title>hash_bytes (10,912,273,998 samples, 0.11%)</title><rect x="851.7" y="341" width="1.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="854.74" y="351.5" ></text>
</g>
<g >
<title>_copyVar (3,584,804,977 samples, 0.04%)</title><rect x="888.9" y="325" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="891.89" y="335.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (1,593,747,446 samples, 0.02%)</title><rect x="872.8" y="517" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="875.77" y="527.5" ></text>
</g>
<g >
<title>AllocSetFree (992,168,993 samples, 0.01%)</title><rect x="954.0" y="405" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="956.98" y="415.5" ></text>
</g>
<g >
<title>new_list (1,937,481,588 samples, 0.02%)</title><rect x="969.0" y="357" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="972.03" y="367.5" ></text>
</g>
<g >
<title>fix_expr_common (1,307,840,816 samples, 0.01%)</title><rect x="903.1" y="325" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="906.09" y="335.5" ></text>
</g>
<g >
<title>GetUserId (1,871,608,393 samples, 0.02%)</title><rect x="50.8" y="757" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="53.85" y="767.5" ></text>
</g>
<g >
<title>apply_tlist_labeling (3,342,497,039 samples, 0.04%)</title><rect x="884.5" y="469" width="0.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text  x="887.52" y="479.5" ></text>
</g>
<g >
<title>_bt_getbuf (35,738,350,268 samples, 0.38%)</title><rect x="95.7" y="309" width="4.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="98.68" y="319.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (19,141,434,356 samples, 0.20%)</title><rect x="100.1" y="229" width="2.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="103.12" y="239.5" ></text>
</g>
<g >
<title>__libc_start_main@@GLIBC_2.34 (17,479,689,687 samples, 0.18%)</title><rect x="126.3" y="757" width="2.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="129.31" y="767.5" ></text>
</g>
<g >
<title>palloc (2,349,784,583 samples, 0.02%)</title><rect x="813.6" y="421" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="816.58" y="431.5" ></text>
</g>
<g >
<title>PinBuffer (4,779,812,799 samples, 0.05%)</title><rect x="302.0" y="133" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="305.03" y="143.5" ></text>
</g>
<g >
<title>set_next_task_idle (1,017,893,674 samples, 0.01%)</title><rect x="484.6" y="261" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="487.57" y="271.5" ></text>
</g>
<g >
<title>palloc (1,610,107,450 samples, 0.02%)</title><rect x="441.9" y="357" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="444.90" y="367.5" ></text>
</g>
<g >
<title>check_stack_depth (7,941,260,994 samples, 0.08%)</title><rect x="1126.9" y="757" width="1.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1129.88" y="767.5" ></text>
</g>
<g >
<title>ReleaseBuffer (3,046,294,381 samples, 0.03%)</title><rect x="382.5" y="357" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="385.50" y="367.5" ></text>
</g>
<g >
<title>makeConst (3,329,451,742 samples, 0.04%)</title><rect x="854.9" y="389" width="0.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="857.91" y="399.5" ></text>
</g>
<g >
<title>list_copy (2,481,575,746 samples, 0.03%)</title><rect x="976.6" y="421" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="979.60" y="431.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3,262,946,556 samples, 0.03%)</title><rect x="124.8" y="229" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="127.77" y="239.5" ></text>
</g>
<g >
<title>pg_class_aclmask_ext (9,171,395,237 samples, 0.10%)</title><rect x="414.9" y="437" width="1.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="417.88" y="447.5" ></text>
</g>
<g >
<title>sock_poll (7,731,399,366 samples, 0.08%)</title><rect x="159.7" y="357" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="162.69" y="367.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (7,267,575,997 samples, 0.08%)</title><rect x="757.8" y="517" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="760.75" y="527.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (958,549,365 samples, 0.01%)</title><rect x="972.6" y="325" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="975.56" y="335.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (896,730,422 samples, 0.01%)</title><rect x="1034.1" y="101" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1037.14" y="111.5" ></text>
</g>
<g >
<title>heap_update (276,221,107,880 samples, 2.91%)</title><rect x="361.2" y="373" width="34.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="364.18" y="383.5" >he..</text>
</g>
<g >
<title>palloc (1,807,544,647 samples, 0.02%)</title><rect x="911.4" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="914.36" y="447.5" ></text>
</g>
<g >
<title>attnameAttNum (3,002,750,993 samples, 0.03%)</title><rect x="834.2" y="469" width="0.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="837.25" y="479.5" ></text>
</g>
<g >
<title>BufferDescriptorGetContentLock (857,339,616 samples, 0.01%)</title><rect x="34.6" y="757" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="37.63" y="767.5" ></text>
</g>
<g >
<title>uint32_hash (1,387,464,438 samples, 0.01%)</title><rect x="989.7" y="309" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="992.72" y="319.5" ></text>
</g>
<g >
<title>is_publishable_relation (1,091,140,393 samples, 0.01%)</title><rect x="420.1" y="405" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="423.12" y="415.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (5,412,978,321 samples, 0.06%)</title><rect x="1082.0" y="581" width="0.7" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="1085.01" y="591.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,768,463,810 samples, 0.02%)</title><rect x="941.5" y="341" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="944.51" y="351.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (1,008,737,281 samples, 0.01%)</title><rect x="46.8" y="757" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="49.80" y="767.5" ></text>
</g>
<g >
<title>WalSndWakeup (848,004,966 samples, 0.01%)</title><rect x="110.4" y="757" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="113.36" y="767.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (9,532,345,692 samples, 0.10%)</title><rect x="185.6" y="357" width="1.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="188.64" y="367.5" ></text>
</g>
<g >
<title>prune_freeze_plan (7,042,189,314 samples, 0.07%)</title><rect x="1149.3" y="725" width="0.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="1152.27" y="735.5" ></text>
</g>
<g >
<title>ExecFetchSlotHeapTuple (1,802,449,504 samples, 0.02%)</title><rect x="351.9" y="373" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="354.89" y="383.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,064,128,777 samples, 0.01%)</title><rect x="803.6" y="485" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="806.61" y="495.5" ></text>
</g>
<g >
<title>expr_setup_walker (8,534,705,861 samples, 0.09%)</title><rect x="425.6" y="309" width="1.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="428.59" y="319.5" ></text>
</g>
<g >
<title>GetCurrentTransactionId (85,851,580,835 samples, 0.90%)</title><rect x="364.1" y="357" width="10.7" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="367.11" y="367.5" ></text>
</g>
<g >
<title>ExecProject (21,920,849,111 samples, 0.23%)</title><rect x="269.2" y="421" width="2.7" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="272.22" y="431.5" ></text>
</g>
<g >
<title>hash_bytes (3,325,572,317 samples, 0.04%)</title><rect x="407.8" y="229" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="410.81" y="239.5" ></text>
</g>
<g >
<title>palloc (1,336,224,524 samples, 0.01%)</title><rect x="860.0" y="485" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="863.03" y="495.5" ></text>
</g>
<g >
<title>list_make2_impl (1,998,126,006 samples, 0.02%)</title><rect x="849.3" y="405" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="852.25" y="415.5" ></text>
</g>
<g >
<title>gup_fast_fallback (3,950,383,435 samples, 0.04%)</title><rect x="489.6" y="293" width="0.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="492.57" y="303.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberTupleDesc (1,397,163,980 samples, 0.01%)</title><rect x="279.0" y="357" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="282.00" y="367.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (8,891,784,737 samples, 0.09%)</title><rect x="832.2" y="405" width="1.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="835.16" y="415.5" ></text>
</g>
<g >
<title>eval_const_expressions (971,078,648 samples, 0.01%)</title><rect x="128.4" y="485" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="131.36" y="495.5" ></text>
</g>
<g >
<title>ChoosePortalStrategy (2,967,793,870 samples, 0.03%)</title><rect x="462.9" y="565" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="465.93" y="575.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,691,727,609 samples, 0.02%)</title><rect x="363.2" y="357" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="366.17" y="367.5" ></text>
</g>
<g >
<title>BackendMain (22,701,609,115 samples, 0.24%)</title><rect x="84.3" y="693" width="2.8" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="87.32" y="703.5" ></text>
</g>
<g >
<title>PageIsAllVisible (1,564,660,729 samples, 0.02%)</title><rect x="82.6" y="757" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="85.63" y="767.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,726,391,117 samples, 0.04%)</title><rect x="1045.4" y="421" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1048.43" y="431.5" ></text>
</g>
<g >
<title>newNode (1,321,632,754 samples, 0.01%)</title><rect x="813.9" y="453" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="816.91" y="463.5" ></text>
</g>
<g >
<title>index_getattr (2,613,393,792 samples, 0.03%)</title><rect x="124.4" y="229" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="127.43" y="239.5" ></text>
</g>
<g >
<title>make_pathkeys_for_sortclauses (1,259,642,825 samples, 0.01%)</title><rect x="1044.6" y="453" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1047.62" y="463.5" ></text>
</g>
<g >
<title>sock_recvmsg (53,402,976,122 samples, 0.56%)</title><rect x="180.2" y="421" width="6.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="183.19" y="431.5" ></text>
</g>
<g >
<title>list_nth_cell (3,537,961,211 samples, 0.04%)</title><rect x="1158.3" y="757" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1161.28" y="767.5" ></text>
</g>
<g >
<title>heapam_slot_callbacks (959,335,471 samples, 0.01%)</title><rect x="1150.8" y="757" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1153.79" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,476,497,215 samples, 0.02%)</title><rect x="857.4" y="277" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="860.38" y="287.5" ></text>
</g>
<g >
<title>palloc (1,727,265,062 samples, 0.02%)</title><rect x="898.1" y="469" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="901.09" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,558,582,476 samples, 0.03%)</title><rect x="895.2" y="485" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="898.17" y="495.5" ></text>
</g>
<g >
<title>StartReadBuffer (11,333,614,982 samples, 0.12%)</title><rect x="85.0" y="229" width="1.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="87.98" y="239.5" ></text>
</g>
<g >
<title>bms_is_valid_set (968,631,399 samples, 0.01%)</title><rect x="383.1" y="341" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="386.15" y="351.5" ></text>
</g>
<g >
<title>uint32_hash (1,566,502,379 samples, 0.02%)</title><rect x="1012.5" y="245" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1015.53" y="255.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (5,019,949,518 samples, 0.05%)</title><rect x="438.3" y="373" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="441.29" y="383.5" ></text>
</g>
<g >
<title>BackendMain (3,415,261,054 samples, 0.04%)</title><rect x="1158.9" y="677" width="0.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1161.90" y="687.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (1,262,105,196 samples, 0.01%)</title><rect x="431.6" y="293" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="434.63" y="303.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetTupleDesc (1,607,240,744 samples, 0.02%)</title><rect x="249.4" y="453" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="252.36" y="463.5" ></text>
</g>
<g >
<title>ReadBuffer (29,220,058,617 samples, 0.31%)</title><rect x="299.4" y="245" width="3.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="302.41" y="255.5" ></text>
</g>
<g >
<title>BufTableLookup (5,157,198,271 samples, 0.05%)</title><rect x="96.4" y="181" width="0.7" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="99.43" y="191.5" ></text>
</g>
<g >
<title>list_free_private (2,181,384,869 samples, 0.02%)</title><rect x="403.4" y="373" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="406.43" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3,168,379,243 samples, 0.03%)</title><rect x="357.3" y="325" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="360.28" y="335.5" ></text>
</g>
<g >
<title>heap_update (825,460,253 samples, 0.01%)</title><rect x="1150.2" y="757" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1153.21" y="767.5" ></text>
</g>
<g >
<title>cpus_share_cache (1,229,933,276 samples, 0.01%)</title><rect x="203.4" y="277" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="206.43" y="287.5" ></text>
</g>
<g >
<title>heap_page_prune_execute (2,054,534,112 samples, 0.02%)</title><rect x="1149.0" y="725" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1152.01" y="735.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,140,080,678 samples, 0.01%)</title><rect x="975.3" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="978.32" y="399.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (4,247,239,795 samples, 0.04%)</title><rect x="225.6" y="517" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="228.58" y="527.5" ></text>
</g>
<g >
<title>bms_add_member (3,669,928,262 samples, 0.04%)</title><rect x="857.1" y="325" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="860.10" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,070,381,988 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.25" y="399.5" ></text>
</g>
<g >
<title>pg_rewrite_query (99,262,457,719 samples, 1.04%)</title><rect x="858.5" y="565" width="12.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="861.49" y="575.5" ></text>
</g>
<g >
<title>TransactionIdSetPageStatusInternal (12,043,732,127 samples, 0.13%)</title><rect x="479.1" y="453" width="1.5" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="482.13" y="463.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,294,382,926 samples, 0.02%)</title><rect x="1069.5" y="453" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1072.50" y="463.5" ></text>
</g>
<g >
<title>index_getnext_slot (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="405" width="6.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="98.68" y="415.5" ></text>
</g>
<g >
<title>CreateDestReceiver (5,316,237,883 samples, 0.06%)</title><rect x="212.7" y="581" width="0.6" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="215.68" y="591.5" ></text>
</g>
<g >
<title>palloc (2,967,741,231 samples, 0.03%)</title><rect x="1166.5" y="757" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1169.46" y="767.5" ></text>
</g>
<g >
<title>_bt_num_array_keys (2,841,645,866 samples, 0.03%)</title><rect x="84.3" y="293" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="87.32" y="303.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (4,687,329,473 samples, 0.05%)</title><rect x="126.3" y="277" width="0.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="129.31" y="287.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,227,315,458 samples, 0.01%)</title><rect x="814.4" y="405" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="817.36" y="415.5" ></text>
</g>
<g >
<title>make_one_rel (838,410,516 samples, 0.01%)</title><rect x="128.2" y="485" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="131.20" y="495.5" ></text>
</g>
<g >
<title>BufferIsLockedByMeInMode (1,685,110,652 samples, 0.02%)</title><rect x="393.8" y="325" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="396.76" y="335.5" ></text>
</g>
<g >
<title>get_relids_in_jointree (5,684,621,913 samples, 0.06%)</title><rect x="1069.1" y="485" width="0.7" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1072.08" y="495.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,510,813,221 samples, 0.02%)</title><rect x="188.2" y="533" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="191.22" y="543.5" ></text>
</g>
<g >
<title>make_eq_member (7,427,329,380 samples, 0.08%)</title><rect x="969.3" y="373" width="0.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="972.28" y="383.5" ></text>
</g>
<g >
<title>core_yyalloc (1,497,654,808 samples, 0.02%)</title><rect x="872.5" y="517" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="875.49" y="527.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,150,244,547 samples, 0.01%)</title><rect x="1173.6" y="709" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1176.62" y="719.5" ></text>
</g>
<g >
<title>hash_bytes (4,076,553,979 samples, 0.04%)</title><rect x="828.4" y="277" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="831.37" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,534,722 samples, 0.01%)</title><rect x="995.0" y="293" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="998.02" y="303.5" ></text>
</g>
<g >
<title>XLogRecordAssemble (3,770,086,481 samples, 0.04%)</title><rect x="513.9" y="469" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="516.92" y="479.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (10,373,101,402 samples, 0.11%)</title><rect x="995.7" y="325" width="1.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="998.67" y="335.5" ></text>
</g>
<g >
<title>LWLockRelease (4,431,155,658 samples, 0.05%)</title><rect x="389.2" y="277" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="392.17" y="287.5" ></text>
</g>
<g >
<title>smgrDoPendingSyncs (1,452,716,477 samples, 0.02%)</title><rect x="1183.3" y="757" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1186.35" y="767.5" ></text>
</g>
<g >
<title>file_remove_privs_flags (1,058,673,925 samples, 0.01%)</title><rect x="501.7" y="373" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="504.67" y="383.5" ></text>
</g>
<g >
<title>exec_simple_query (6,981,396,054,894 samples, 73.49%)</title><rect x="210.6" y="597" width="867.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="213.59" y="607.5" >exec_simple_query</text>
</g>
<g >
<title>bms_make_singleton (2,293,122,592 samples, 0.02%)</title><rect x="979.3" y="437" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="982.33" y="447.5" ></text>
</g>
<g >
<title>heap_prune_chain (5,284,379,906 samples, 0.06%)</title><rect x="1146.8" y="725" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1149.77" y="735.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (3,281,187,547 samples, 0.03%)</title><rect x="515.2" y="517" width="0.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="518.16" y="527.5" ></text>
</g>
<g >
<title>next_pow2_int (1,296,307,913 samples, 0.01%)</title><rect x="1063.3" y="437" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="1066.33" y="447.5" ></text>
</g>
<g >
<title>LWLockQueueSelf (2,621,845,496 samples, 0.03%)</title><rect x="482.1" y="469" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="485.06" y="479.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (5,158,559,313 samples, 0.05%)</title><rect x="180.3" y="405" width="0.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="183.28" y="415.5" ></text>
</g>
<g >
<title>SearchSysCacheExists (8,163,922,712 samples, 0.09%)</title><rect x="1020.9" y="293" width="1.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1023.90" y="303.5" ></text>
</g>
<g >
<title>palloc (1,262,111,043 samples, 0.01%)</title><rect x="897.9" y="437" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="900.89" y="447.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,201,615,804 samples, 0.01%)</title><rect x="385.2" y="309" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="388.24" y="319.5" ></text>
</g>
<g >
<title>XLogCheckBufferNeedsBackup (832,974,021 samples, 0.01%)</title><rect x="110.7" y="757" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="113.68" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,967,741,231 samples, 0.03%)</title><rect x="1166.5" y="741" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1169.46" y="751.5" ></text>
</g>
<g >
<title>namestrcmp (1,705,632,157 samples, 0.02%)</title><rect x="834.4" y="453" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="837.41" y="463.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (8,983,422,492 samples, 0.09%)</title><rect x="165.4" y="309" width="1.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="168.40" y="319.5" ></text>
</g>
<g >
<title>assign_collations_walker (26,366,934,824 samples, 0.28%)</title><rect x="808.8" y="405" width="3.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="811.81" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,229,194,794 samples, 0.01%)</title><rect x="953.4" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="956.40" y="399.5" ></text>
</g>
<g >
<title>_bt_compare (1,304,462,264 samples, 0.01%)</title><rect x="125.6" y="261" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="128.60" y="271.5" ></text>
</g>
<g >
<title>newNode (3,942,669,968 samples, 0.04%)</title><rect x="812.4" y="485" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="815.44" y="495.5" ></text>
</g>
<g >
<title>HeapTupleHeaderGetXmin (4,325,437,220 samples, 0.05%)</title><rect x="304.8" y="245" width="0.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="307.78" y="255.5" ></text>
</g>
<g >
<title>fireBSTriggers (1,775,599,002 samples, 0.02%)</title><rect x="404.5" y="437" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="407.50" y="447.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,122,214,421 samples, 0.01%)</title><rect x="307.8" y="181" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="310.79" y="191.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (3,324,985,075 samples, 0.04%)</title><rect x="508.3" y="437" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="511.34" y="447.5" ></text>
</g>
<g >
<title>extract_restriction_or_clauses (1,503,123,750 samples, 0.02%)</title><rect x="1137.6" y="757" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1140.63" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (7,043,705,875 samples, 0.07%)</title><rect x="946.0" y="389" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="949.00" y="399.5" ></text>
</g>
<g >
<title>get_tablespace (3,674,270,332 samples, 0.04%)</title><rect x="1012.3" y="277" width="0.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1015.27" y="287.5" ></text>
</g>
<g >
<title>AllocSetCheck (36,303,513,052 samples, 0.38%)</title><rect x="255.3" y="437" width="4.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="258.29" y="447.5" ></text>
</g>
<g >
<title>selinux_socket_recvmsg (4,191,886,905 samples, 0.04%)</title><rect x="180.4" y="389" width="0.5" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text  x="183.40" y="399.5" ></text>
</g>
<g >
<title>index_open (15,749,765,441 samples, 0.17%)</title><rect x="447.8" y="421" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="450.77" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,317,244,526 samples, 0.01%)</title><rect x="459.6" y="453" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="462.58" y="463.5" ></text>
</g>
<g >
<title>IsTransactionOrTransactionBlock (1,212,794,791 samples, 0.01%)</title><rect x="55.3" y="757" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="58.33" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,775,193,917 samples, 0.03%)</title><rect x="1045.9" y="421" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1048.92" y="431.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,647,775,217 samples, 0.04%)</title><rect x="1055.5" y="389" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1058.48" y="399.5" ></text>
</g>
<g >
<title>list_make1_impl (1,059,273,152 samples, 0.01%)</title><rect x="1157.6" y="757" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1160.55" y="767.5" ></text>
</g>
<g >
<title>SearchSysCache1 (8,424,414,636 samples, 0.09%)</title><rect x="430.9" y="341" width="1.0" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="433.87" y="351.5" ></text>
</g>
<g >
<title>lcons (2,240,952,160 samples, 0.02%)</title><rect x="422.8" y="373" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="425.77" y="383.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,469,870,638 samples, 0.02%)</title><rect x="847.1" y="373" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="850.09" y="383.5" ></text>
</g>
<g >
<title>addRTEPermissionInfo (6,796,404,007 samples, 0.07%)</title><rect x="814.8" y="453" width="0.9" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="817.84" y="463.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (4,503,333,425 samples, 0.05%)</title><rect x="481.5" y="469" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="484.46" y="479.5" ></text>
</g>
<g >
<title>index_getnext_tid (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="357" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1161.90" y="367.5" ></text>
</g>
<g >
<title>selinux_socket_getpeersec_dgram (2,497,980,271 samples, 0.03%)</title><rect x="195.1" y="389" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="198.14" y="399.5" ></text>
</g>
<g >
<title>skb_copy_datagram_from_iter (8,484,190,857 samples, 0.09%)</title><rect x="195.4" y="405" width="1.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="198.45" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,416,697,638 samples, 0.01%)</title><rect x="478.1" y="373" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="481.14" y="383.5" ></text>
</g>
<g >
<title>extract_nonindex_conditions (3,598,051,094 samples, 0.04%)</title><rect x="1015.2" y="325" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="1018.16" y="335.5" ></text>
</g>
<g >
<title>lappend (3,287,765,258 samples, 0.03%)</title><rect x="105.4" y="437" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="108.41" y="447.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (1,126,947,685 samples, 0.01%)</title><rect x="444.0" y="309" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="446.97" y="319.5" ></text>
</g>
<g >
<title>RelationClose (1,232,126,621 samples, 0.01%)</title><rect x="1066.1" y="453" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="1069.08" y="463.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,359,342,132 samples, 0.04%)</title><rect x="426.2" y="245" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="429.22" y="255.5" ></text>
</g>
<g >
<title>_bt_getroot (3,477,463,344 samples, 0.04%)</title><rect x="125.2" y="277" width="0.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="128.17" y="287.5" ></text>
</g>
<g >
<title>newNode (2,451,691,344 samples, 0.03%)</title><rect x="835.7" y="421" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="838.71" y="431.5" ></text>
</g>
<g >
<title>pgstat_get_transactional_drops (3,466,717,265 samples, 0.04%)</title><rect x="514.5" y="501" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="517.54" y="511.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (5,790,144,553 samples, 0.06%)</title><rect x="1052.6" y="437" width="0.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1055.61" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,261,922,566 samples, 0.02%)</title><rect x="974.9" y="373" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="977.88" y="383.5" ></text>
</g>
<g >
<title>palloc0 (2,627,765,467 samples, 0.03%)</title><rect x="103.3" y="453" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="106.30" y="463.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,074,843,915 samples, 0.01%)</title><rect x="354.2" y="277" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="357.24" y="287.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (169,943,536,453 samples, 1.79%)</title><rect x="679.4" y="533" width="21.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="682.45" y="543.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (1,154,551,256 samples, 0.01%)</title><rect x="87.3" y="757" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="90.34" y="767.5" ></text>
</g>
<g >
<title>update_process_times (810,158,057 samples, 0.01%)</title><rect x="700.4" y="421" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="703.41" y="431.5" ></text>
</g>
<g >
<title>sched_balance_update_blocked_averages (1,097,912,714 samples, 0.01%)</title><rect x="757.8" y="453" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="760.77" y="463.5" ></text>
</g>
<g >
<title>PortalDrop (39,182,832,091 samples, 0.41%)</title><rect x="224.8" y="581" width="4.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="227.84" y="591.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (1,566,064,201 samples, 0.02%)</title><rect x="153.5" y="517" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="156.53" y="527.5" ></text>
</g>
<g >
<title>VARSIZE_SHORT (805,251,287 samples, 0.01%)</title><rect x="110.0" y="757" width="0.1" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="113.03" y="767.5" ></text>
</g>
<g >
<title>get_timeout_active (1,093,749,772 samples, 0.01%)</title><rect x="802.1" y="549" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="805.12" y="559.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (865,415,340 samples, 0.01%)</title><rect x="862.3" y="469" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="865.25" y="479.5" ></text>
</g>
<g >
<title>new_list (1,251,496,353 samples, 0.01%)</title><rect x="971.4" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="974.44" y="383.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,041,661,865 samples, 0.01%)</title><rect x="478.7" y="437" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="481.66" y="447.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (36,569,013,574 samples, 0.38%)</title><rect x="796.3" y="549" width="4.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="799.33" y="559.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,161,846,794 samples, 0.01%)</title><rect x="299.0" y="197" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="302.02" y="207.5" ></text>
</g>
<g >
<title>AfterTriggerFireDeferred (1,409,490,905 samples, 0.01%)</title><rect x="467.3" y="517" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="470.30" y="527.5" ></text>
</g>
<g >
<title>hash_bytes (2,474,999,291 samples, 0.03%)</title><rect x="1067.4" y="389" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1070.38" y="399.5" ></text>
</g>
<g >
<title>AllocSetFree (1,100,266,504 samples, 0.01%)</title><rect x="944.4" y="357" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="947.39" y="367.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (4,297,946,916 samples, 0.05%)</title><rect x="863.8" y="485" width="0.6" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="866.82" y="495.5" ></text>
</g>
<g >
<title>postmaster_child_launch (18,601,171,430 samples, 0.20%)</title><rect x="124.0" y="677" width="2.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="126.99" y="687.5" ></text>
</g>
<g >
<title>castNodeImpl (7,397,557,796 samples, 0.08%)</title><rect x="1124.8" y="757" width="0.9" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="1127.79" y="767.5" ></text>
</g>
<g >
<title>ShowTransactionState (1,028,394,196 samples, 0.01%)</title><rect x="530.1" y="517" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="533.09" y="527.5" ></text>
</g>
<g >
<title>pg_client_to_server (13,423,486,741 samples, 0.14%)</title><rect x="1080.2" y="581" width="1.6" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1083.16" y="591.5" ></text>
</g>
<g >
<title>try_to_wake_up (19,469,879,792 samples, 0.20%)</title><rect x="492.6" y="309" width="2.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="495.61" y="319.5" ></text>
</g>
<g >
<title>lappend_oid (2,075,896,047 samples, 0.02%)</title><rect x="897.8" y="469" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="900.80" y="479.5" ></text>
</g>
<g >
<title>do_futex (56,019,577,849 samples, 0.59%)</title><rect x="483.1" y="373" width="7.0" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="486.11" y="383.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,917,438,911 samples, 0.02%)</title><rect x="461.6" y="517" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="464.57" y="527.5" ></text>
</g>
<g >
<title>BufferGetPage (1,142,290,462 samples, 0.01%)</title><rect x="311.8" y="245" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="314.80" y="255.5" ></text>
</g>
<g >
<title>StartReadBuffer (19,141,434,356 samples, 0.20%)</title><rect x="100.1" y="245" width="2.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="103.12" y="255.5" ></text>
</g>
<g >
<title>extract_update_targetlist_colnos (4,419,778,207 samples, 0.05%)</title><rect x="922.2" y="469" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="925.23" y="479.5" ></text>
</g>
<g >
<title>palloc (1,329,638,788 samples, 0.01%)</title><rect x="818.6" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="821.62" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,220,933,718 samples, 0.02%)</title><rect x="236.6" y="501" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="239.56" y="511.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,640,180,757 samples, 0.05%)</title><rect x="902.7" y="357" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="905.67" y="367.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (1,114,257,497 samples, 0.01%)</title><rect x="1171.5" y="757" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1174.46" y="767.5" ></text>
</g>
<g >
<title>new_list (2,171,099,031 samples, 0.02%)</title><rect x="457.6" y="437" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="460.64" y="447.5" ></text>
</g>
<g >
<title>select_task_rq (2,595,754,308 samples, 0.03%)</title><rect x="494.3" y="293" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="497.28" y="303.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,462,468,590 samples, 0.02%)</title><rect x="453.2" y="341" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="456.18" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,579,653,355 samples, 0.02%)</title><rect x="1053.1" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1056.12" y="399.5" ></text>
</g>
<g >
<title>update_load_avg (4,876,690,983 samples, 0.05%)</title><rect x="488.1" y="213" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="491.07" y="223.5" ></text>
</g>
<g >
<title>index_getnext_tid (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="325" width="1.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="129.31" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberSnapshot (1,581,593,361 samples, 0.02%)</title><rect x="236.2" y="485" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="239.24" y="495.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (1,859,989,349 samples, 0.02%)</title><rect x="89.1" y="757" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="92.12" y="767.5" ></text>
</g>
<g >
<title>AllocSetDelete (7,679,477,701 samples, 0.08%)</title><rect x="252.2" y="437" width="1.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="255.24" y="447.5" ></text>
</g>
<g >
<title>ReadBufferExtended (22,879,234,343 samples, 0.24%)</title><rect x="407.0" y="373" width="2.9" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="410.03" y="383.5" ></text>
</g>
<g >
<title>get_futex_key (3,517,670,368 samples, 0.04%)</title><rect x="492.1" y="325" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="495.12" y="335.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (4,247,516,880 samples, 0.04%)</title><rect x="967.2" y="357" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="970.15" y="367.5" ></text>
</g>
<g >
<title>tag_hash (2,975,687,136 samples, 0.03%)</title><rect x="239.4" y="389" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="242.41" y="399.5" ></text>
</g>
<g >
<title>LWLockRelease (1,323,916,233 samples, 0.01%)</title><rect x="234.4" y="517" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="237.45" y="527.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,132,954,763 samples, 0.01%)</title><rect x="836.9" y="341" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="839.86" y="351.5" ></text>
</g>
<g >
<title>palloc0 (3,157,248,767 samples, 0.03%)</title><rect x="1016.5" y="325" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1019.51" y="335.5" ></text>
</g>
<g >
<title>bms_difference (2,450,600,563 samples, 0.03%)</title><rect x="883.2" y="517" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="886.19" y="527.5" ></text>
</g>
<g >
<title>tag_hash (3,399,482,524 samples, 0.04%)</title><rect x="862.9" y="421" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="865.89" y="431.5" ></text>
</g>
<g >
<title>initStringInfoInternal (3,979,722,288 samples, 0.04%)</title><rect x="1077.9" y="581" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1080.89" y="591.5" ></text>
</g>
<g >
<title>update_curr (811,145,682 samples, 0.01%)</title><rect x="206.7" y="261" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="209.67" y="271.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (860,219,683 samples, 0.01%)</title><rect x="819.9" y="405" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="822.90" y="415.5" ></text>
</g>
<g >
<title>remove_entity_load_avg (2,499,879,702 samples, 0.03%)</title><rect x="206.1" y="293" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="209.12" y="303.5" ></text>
</g>
<g >
<title>index_endscan (61,138,221,938 samples, 0.64%)</title><rect x="241.0" y="421" width="7.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="244.04" y="431.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,437,127,128 samples, 0.02%)</title><rect x="1148.3" y="613" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1151.29" y="623.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,014,988,348 samples, 0.02%)</title><rect x="834.7" y="453" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="837.68" y="463.5" ></text>
</g>
<g >
<title>UnpinBuffer (2,572,164,823 samples, 0.03%)</title><rect x="250.5" y="421" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="253.49" y="431.5" ></text>
</g>
<g >
<title>MemoryContextAllocExtended (3,120,520,447 samples, 0.03%)</title><rect x="1060.4" y="437" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1063.36" y="447.5" ></text>
</g>
<g >
<title>PageRepairFragmentation (1,817,068,179 samples, 0.02%)</title><rect x="1146.4" y="725" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1149.36" y="735.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,262,946,556 samples, 0.03%)</title><rect x="124.8" y="213" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="127.77" y="223.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (2,014,057,584 samples, 0.02%)</title><rect x="37.9" y="757" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="40.91" y="767.5" ></text>
</g>
<g >
<title>ExecReadyExpr (6,779,093,045 samples, 0.07%)</title><rect x="429.3" y="357" width="0.8" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="432.29" y="367.5" ></text>
</g>
<g >
<title>table_slot_callbacks (1,001,258,981 samples, 0.01%)</title><rect x="281.4" y="405" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="284.36" y="415.5" ></text>
</g>
<g >
<title>calc_bucket (1,054,624,034 samples, 0.01%)</title><rect x="524.5" y="389" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="527.53" y="399.5" ></text>
</g>
<g >
<title>pfree (2,783,058,499 samples, 0.03%)</title><rect x="189.4" y="565" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="192.44" y="575.5" ></text>
</g>
<g >
<title>make_pathtarget_from_tlist (8,501,297,821 samples, 0.09%)</title><rect x="919.3" y="485" width="1.0" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text  x="922.27" y="495.5" ></text>
</g>
<g >
<title>__pick_next_task (6,084,801,312 samples, 0.06%)</title><rect x="483.9" y="277" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="486.94" y="287.5" ></text>
</g>
<g >
<title>palloc0 (1,656,215,987 samples, 0.02%)</title><rect x="995.0" y="309" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="997.95" y="319.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2,945,262,746 samples, 0.03%)</title><rect x="795.7" y="453" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="798.73" y="463.5" ></text>
</g>
<g >
<title>__futex_wait (1,495,688,324 samples, 0.02%)</title><rect x="1148.5" y="485" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1151.51" y="495.5" ></text>
</g>
<g >
<title>LockAcquireExtended (28,702,703,826 samples, 0.30%)</title><rect x="821.2" y="389" width="3.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="824.16" y="399.5" ></text>
</g>
<g >
<title>cost_bitmap_heap_scan (9,764,122,749 samples, 0.10%)</title><rect x="988.7" y="373" width="1.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="991.68" y="383.5" ></text>
</g>
<g >
<title>newNode (3,361,901,701 samples, 0.04%)</title><rect x="817.5" y="421" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="820.54" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,035,946,103 samples, 0.01%)</title><rect x="945.0" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="948.04" y="383.5" ></text>
</g>
<g >
<title>table_openrv_extended (105,249,311,606 samples, 1.11%)</title><rect x="820.3" y="453" width="13.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="823.31" y="463.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (5,723,253,840 samples, 0.06%)</title><rect x="366.6" y="277" width="0.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="369.56" y="287.5" ></text>
</g>
<g >
<title>initStringInfo (4,165,784,888 samples, 0.04%)</title><rect x="1077.9" y="597" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1080.86" y="607.5" ></text>
</g>
<g >
<title>sock_alloc_send_pskb (32,222,117,747 samples, 0.34%)</title><rect x="196.5" y="405" width="4.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="199.51" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,955,203,653 samples, 0.02%)</title><rect x="239.2" y="389" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="242.17" y="399.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,145,351,918 samples, 0.01%)</title><rect x="84.8" y="213" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="87.84" y="223.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (5,920,628,837 samples, 0.06%)</title><rect x="757.9" y="501" width="0.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="760.91" y="511.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (1,220,476,765 samples, 0.01%)</title><rect x="125.8" y="261" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="128.76" y="271.5" ></text>
</g>
<g >
<title>tag_hash (2,168,652,806 samples, 0.02%)</title><rect x="948.2" y="325" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="951.25" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (964,236,396 samples, 0.01%)</title><rect x="866.6" y="453" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="869.64" y="463.5" ></text>
</g>
<g >
<title>tag_hash (7,479,983,999 samples, 0.08%)</title><rect x="524.7" y="421" width="0.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="527.67" y="431.5" ></text>
</g>
<g >
<title>preprocess_function_rtes (1,438,560,793 samples, 0.02%)</title><rect x="1053.6" y="501" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1056.59" y="511.5" ></text>
</g>
<g >
<title>LockRelease (1,150,501,189 samples, 0.01%)</title><rect x="59.3" y="757" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="62.27" y="767.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,738,703,109 samples, 0.04%)</title><rect x="1148.3" y="629" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1151.25" y="639.5" ></text>
</g>
<g >
<title>ServerLoop (22,701,609,115 samples, 0.24%)</title><rect x="84.3" y="741" width="2.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="87.32" y="751.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (2,922,522,312 samples, 0.03%)</title><rect x="478.1" y="437" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="481.07" y="447.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableFullXid (1,756,993,529 samples, 0.02%)</title><rect x="312.4" y="229" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="315.35" y="239.5" ></text>
</g>
<g >
<title>SearchSysCacheExists (862,481,638 samples, 0.01%)</title><rect x="95.3" y="757" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="98.26" y="767.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (1,560,068,935 samples, 0.02%)</title><rect x="1071.9" y="581" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1074.94" y="591.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,412,965,046 samples, 0.01%)</title><rect x="1023.8" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1026.77" y="367.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,270,816,429 samples, 0.01%)</title><rect x="970.0" y="309" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="972.98" y="319.5" ></text>
</g>
<g >
<title>hash_bytes (4,130,705,565 samples, 0.04%)</title><rect x="868.8" y="421" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="871.76" y="431.5" ></text>
</g>
<g >
<title>standard_ExecutorEnd (232,055,080,763 samples, 2.44%)</title><rect x="236.9" y="517" width="28.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="239.94" y="527.5" >st..</text>
</g>
<g >
<title>ReleaseSysCache (1,187,208,003 samples, 0.01%)</title><rect x="836.9" y="357" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="839.86" y="367.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,882,833,711 samples, 0.04%)</title><rect x="917.2" y="373" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="920.15" y="383.5" ></text>
</g>
<g >
<title>ExecInitExprRec (1,103,708,270 samples, 0.01%)</title><rect x="43.6" y="757" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="46.63" y="767.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitialize (2,260,580,554 samples, 0.02%)</title><rect x="434.4" y="405" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="437.41" y="415.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,728,716,251 samples, 0.05%)</title><rect x="233.9" y="517" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="236.86" y="527.5" ></text>
</g>
<g >
<title>hash_bytes (4,558,271,014 samples, 0.05%)</title><rect x="452.5" y="309" width="0.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="455.53" y="319.5" ></text>
</g>
<g >
<title>new_list (2,215,514,251 samples, 0.02%)</title><rect x="911.3" y="453" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="914.32" y="463.5" ></text>
</g>
<g >
<title>kfree (7,570,888,086 samples, 0.08%)</title><rect x="182.0" y="341" width="1.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="185.04" y="351.5" ></text>
</g>
<g >
<title>newNode (4,050,132,211 samples, 0.04%)</title><rect x="1115.6" y="709" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1118.60" y="719.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,968,241,020 samples, 0.03%)</title><rect x="867.2" y="421" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="870.18" y="431.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (3,926,156,190 samples, 0.04%)</title><rect x="389.2" y="261" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="392.23" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,055,398,598 samples, 0.01%)</title><rect x="345.4" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="348.43" y="351.5" ></text>
</g>
<g >
<title>LWLockRelease (1,226,026,173 samples, 0.01%)</title><rect x="327.1" y="181" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="330.08" y="191.5" ></text>
</g>
<g >
<title>btgettuple (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="341" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1161.90" y="351.5" ></text>
</g>
<g >
<title>hash_bytes (3,289,191,641 samples, 0.03%)</title><rect x="862.9" y="405" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="865.90" y="415.5" ></text>
</g>
<g >
<title>ExecCloseRangeTableRelations (2,884,013,671 samples, 0.03%)</title><rect x="237.4" y="485" width="0.4" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="240.41" y="495.5" ></text>
</g>
<g >
<title>avc_lookup (2,376,305,533 samples, 0.03%)</title><rect x="194.1" y="357" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="197.05" y="367.5" ></text>
</g>
<g >
<title>bms_add_member (2,800,520,650 samples, 0.03%)</title><rect x="277.0" y="405" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="279.95" y="415.5" ></text>
</g>
<g >
<title>generate_base_implied_equalities (1,318,840,310 samples, 0.01%)</title><rect x="1140.2" y="757" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1143.16" y="767.5" ></text>
</g>
<g >
<title>new_list (1,878,697,773 samples, 0.02%)</title><rect x="1014.4" y="293" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1017.36" y="303.5" ></text>
</g>
<g >
<title>list_free (1,732,324,943 samples, 0.02%)</title><rect x="953.9" y="453" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="956.91" y="463.5" ></text>
</g>
<g >
<title>LockRelationOid (9,349,424,074 samples, 0.10%)</title><rect x="401.6" y="357" width="1.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="404.63" y="367.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (3,790,276,814 samples, 0.04%)</title><rect x="99.7" y="181" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="102.65" y="191.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u64 (1,113,383,833 samples, 0.01%)</title><rect x="497.3" y="453" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="500.34" y="463.5" ></text>
</g>
<g >
<title>__errno_location (1,469,933,128 samples, 0.02%)</title><rect x="191.3" y="501" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="194.26" y="511.5" ></text>
</g>
<g >
<title>exprType (1,333,759,840 samples, 0.01%)</title><rect x="430.4" y="357" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="433.37" y="367.5" ></text>
</g>
<g >
<title>list_nth (1,109,537,172 samples, 0.01%)</title><rect x="447.6" y="405" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="450.62" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (839,021,855 samples, 0.01%)</title><rect x="241.8" y="373" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="244.77" y="383.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,251,756,595 samples, 0.01%)</title><rect x="299.0" y="213" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="302.01" y="223.5" ></text>
</g>
<g >
<title>newNode (5,894,889,773 samples, 0.06%)</title><rect x="1119.8" y="741" width="0.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1122.84" y="751.5" ></text>
</g>
<g >
<title>bms_next_member (1,980,612,201 samples, 0.02%)</title><rect x="979.7" y="453" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="982.67" y="463.5" ></text>
</g>
<g >
<title>oper (22,492,685,916 samples, 0.24%)</title><rect x="838.2" y="373" width="2.7" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="841.16" y="383.5" ></text>
</g>
<g >
<title>_bt_moveright (1,409,295,037 samples, 0.01%)</title><rect x="128.0" y="261" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="130.99" y="271.5" ></text>
</g>
<g >
<title>futex_wake (1,305,666,798 samples, 0.01%)</title><rect x="478.2" y="309" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="481.15" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,279,315,481 samples, 0.01%)</title><rect x="1067.9" y="421" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1070.92" y="431.5" ></text>
</g>
<g >
<title>palloc (915,278,355 samples, 0.01%)</title><rect x="920.2" y="469" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="923.21" y="479.5" ></text>
</g>
<g >
<title>bms_add_members (4,401,299,626 samples, 0.05%)</title><rect x="950.8" y="437" width="0.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="953.82" y="447.5" ></text>
</g>
<g >
<title>IndexNext (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="421" width="6.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="98.68" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,493,545,851 samples, 0.04%)</title><rect x="367.8" y="229" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="370.80" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,353,800,544 samples, 0.01%)</title><rect x="345.7" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="348.71" y="351.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,357,161,805 samples, 0.01%)</title><rect x="341.4" y="197" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="344.38" y="207.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,511,578,029 samples, 0.02%)</title><rect x="353.5" y="325" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="356.54" y="335.5" ></text>
</g>
<g >
<title>newNode (3,408,809,301 samples, 0.04%)</title><rect x="103.2" y="469" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="106.20" y="479.5" ></text>
</g>
<g >
<title>BufferGetPage (1,195,037,619 samples, 0.01%)</title><rect x="328.6" y="229" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="331.61" y="239.5" ></text>
</g>
<g >
<title>index_beginscan_internal (24,602,440,588 samples, 0.26%)</title><rect x="292.6" y="309" width="3.0" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text  x="295.57" y="319.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (2,896,858,983 samples, 0.03%)</title><rect x="422.4" y="373" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="425.38" y="383.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (1,005,548,752 samples, 0.01%)</title><rect x="90.3" y="757" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="93.35" y="767.5" ></text>
</g>
<g >
<title>fix_expr_common (3,653,011,601 samples, 0.04%)</title><rect x="903.7" y="437" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="906.70" y="447.5" ></text>
</g>
<g >
<title>OidFunctionCall4Coll (812,916,542 samples, 0.01%)</title><rect x="80.9" y="757" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="83.89" y="767.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,365,209,069 samples, 0.05%)</title><rect x="415.4" y="405" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="418.44" y="415.5" ></text>
</g>
<g >
<title>_bt_steppage (7,280,356,717 samples, 0.08%)</title><rect x="283.3" y="277" width="0.9" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="286.27" y="287.5" ></text>
</g>
<g >
<title>ReadBufferExtended (4,224,794,037 samples, 0.04%)</title><rect x="86.4" y="261" width="0.5" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="89.39" y="271.5" ></text>
</g>
<g >
<title>LWLockRelease (993,047,267 samples, 0.01%)</title><rect x="941.7" y="341" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="944.73" y="351.5" ></text>
</g>
<g >
<title>TupleDescAttr (2,576,767,360 samples, 0.03%)</title><rect x="1003.7" y="165" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1006.66" y="175.5" ></text>
</g>
<g >
<title>LockHeldByMe (1,117,642,159 samples, 0.01%)</title><rect x="58.8" y="757" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="61.85" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,114,544,618 samples, 0.01%)</title><rect x="910.4" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="913.43" y="431.5" ></text>
</g>
<g >
<title>lappend (2,556,490,731 samples, 0.03%)</title><rect x="859.9" y="517" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="862.90" y="527.5" ></text>
</g>
<g >
<title>__virt_addr_valid (1,103,515,581 samples, 0.01%)</title><rect x="186.7" y="277" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="189.67" y="287.5" ></text>
</g>
<g >
<title>schedule (1,124,399,590 samples, 0.01%)</title><rect x="177.1" y="421" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="180.09" y="431.5" ></text>
</g>
<g >
<title>heap_page_prune_and_freeze (19,655,044,252 samples, 0.21%)</title><rect x="1146.4" y="757" width="2.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1149.36" y="767.5" ></text>
</g>
<g >
<title>available_idle_cpu (874,037,622 samples, 0.01%)</title><rect x="203.3" y="277" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="206.32" y="287.5" ></text>
</g>
<g >
<title>pstrdup (2,501,076,316 samples, 0.03%)</title><rect x="819.1" y="437" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="822.07" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,148,975,165 samples, 0.01%)</title><rect x="234.0" y="485" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="236.99" y="495.5" ></text>
</g>
<g >
<title>HeapTupleHeaderSetCmin (891,257,308 samples, 0.01%)</title><rect x="375.0" y="357" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="378.03" y="367.5" ></text>
</g>
<g >
<title>LockErrorCleanup (1,395,368,622 samples, 0.01%)</title><rect x="516.1" y="469" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="519.10" y="479.5" ></text>
</g>
<g >
<title>table_close (1,800,970,999 samples, 0.02%)</title><rect x="1066.0" y="485" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1069.02" y="495.5" ></text>
</g>
<g >
<title>palloc (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="309" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="89.91" y="319.5" ></text>
</g>
<g >
<title>index_getnext_slot (373,200,660,108 samples, 3.93%)</title><rect x="296.0" y="325" width="46.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="299.00" y="335.5" >inde..</text>
</g>
<g >
<title>pg_parse_query (25,454,919,217 samples, 0.27%)</title><rect x="870.8" y="581" width="3.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text  x="873.82" y="591.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (1,552,856,632 samples, 0.02%)</title><rect x="128.7" y="757" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="131.74" y="767.5" ></text>
</g>
<g >
<title>int4eq (1,352,198,242 samples, 0.01%)</title><rect x="1152.1" y="757" width="0.2" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text  x="1155.10" y="767.5" ></text>
</g>
<g >
<title>PortalRun (15,531,807,651 samples, 0.16%)</title><rect x="124.0" y="613" width="1.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="126.99" y="623.5" ></text>
</g>
<g >
<title>fmgr_info (1,216,890,669 samples, 0.01%)</title><rect x="434.5" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="437.54" y="399.5" ></text>
</g>
<g >
<title>palloc (1,231,937,294 samples, 0.01%)</title><rect x="1070.8" y="453" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1073.78" y="463.5" ></text>
</g>
<g >
<title>exprLocation (2,114,322,923 samples, 0.02%)</title><rect x="810.6" y="309" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="813.63" y="319.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,791,589,359 samples, 0.02%)</title><rect x="1148.5" y="581" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1151.50" y="591.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3,920,521,076 samples, 0.04%)</title><rect x="97.2" y="165" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="100.21" y="175.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,324,462,737 samples, 0.01%)</title><rect x="522.6" y="421" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="525.57" y="431.5" ></text>
</g>
<g >
<title>futex_wake (26,591,944,975 samples, 0.28%)</title><rect x="491.7" y="341" width="3.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="494.73" y="351.5" ></text>
</g>
<g >
<title>RelationPutHeapTuple (30,517,267,698 samples, 0.32%)</title><rect x="378.7" y="357" width="3.8" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="381.71" y="367.5" ></text>
</g>
<g >
<title>ExecScanExtended (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="389" width="1.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="129.31" y="399.5" ></text>
</g>
<g >
<title>charhashfast (955,156,840 samples, 0.01%)</title><rect x="1032.8" y="149" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1035.77" y="159.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,150,244,547 samples, 0.01%)</title><rect x="1173.6" y="597" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1176.62" y="607.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (19,087,440,569 samples, 0.20%)</title><rect x="424.3" y="357" width="2.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="427.28" y="367.5" ></text>
</g>
<g >
<title>SearchSysCache (6,430,995,411 samples, 0.07%)</title><rect x="1021.1" y="277" width="0.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1024.11" y="287.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (7,385,925,519 samples, 0.08%)</title><rect x="269.9" y="341" width="0.9" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="272.86" y="351.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,304,037,044 samples, 0.05%)</title><rect x="1013.7" y="261" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1016.69" y="271.5" ></text>
</g>
<g >
<title>bms_add_member (2,141,060,282 samples, 0.02%)</title><rect x="967.3" y="325" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="970.32" y="335.5" ></text>
</g>
<g >
<title>LockRelationOid (32,080,485,456 samples, 0.34%)</title><rect x="821.0" y="405" width="4.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="824.00" y="415.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (5,153,671,973 samples, 0.05%)</title><rect x="108.8" y="757" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="111.75" y="767.5" ></text>
</g>
<g >
<title>StartReadBuffer (4,224,794,037 samples, 0.04%)</title><rect x="86.4" y="229" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="89.39" y="239.5" ></text>
</g>
<g >
<title>LWLockWakeup (34,185,353,139 samples, 0.36%)</title><rect x="491.1" y="453" width="4.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="494.09" y="463.5" ></text>
</g>
<g >
<title>PredicateLockPage (974,552,226 samples, 0.01%)</title><rect x="87.5" y="757" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="90.49" y="767.5" ></text>
</g>
<g >
<title>palloc (956,594,838 samples, 0.01%)</title><rect x="974.3" y="405" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="977.29" y="415.5" ></text>
</g>
<g >
<title>table_slot_create (24,774,420,965 samples, 0.26%)</title><rect x="278.4" y="421" width="3.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="281.41" y="431.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (1,765,807,666 samples, 0.02%)</title><rect x="177.6" y="469" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="180.56" y="479.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (808,341,922 samples, 0.01%)</title><rect x="292.9" y="293" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="295.94" y="303.5" ></text>
</g>
<g >
<title>avc_has_perm (2,908,291,418 samples, 0.03%)</title><rect x="194.0" y="389" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="196.99" y="399.5" ></text>
</g>
<g >
<title>GetNewTransactionId (32,393,267,991 samples, 0.34%)</title><rect x="364.5" y="325" width="4.0" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="367.51" y="335.5" ></text>
</g>
<g >
<title>dlist_is_empty (829,801,280 samples, 0.01%)</title><rect x="59.5" y="741" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="62.48" y="751.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (960,450,893 samples, 0.01%)</title><rect x="1171.7" y="757" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1174.72" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,017,945,992 samples, 0.01%)</title><rect x="819.1" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="822.15" y="399.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (1,001,025,620 samples, 0.01%)</title><rect x="409.2" y="261" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="412.15" y="271.5" ></text>
</g>
<g >
<title>StartTransactionCommand (36,679,316,687 samples, 0.39%)</title><rect x="1073.0" y="565" width="4.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1076.02" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,412,630,249 samples, 0.01%)</title><rect x="165.1" y="325" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="168.08" y="335.5" ></text>
</g>
<g >
<title>ExecEndModifyTable (67,713,679,545 samples, 0.71%)</title><rect x="240.3" y="469" width="8.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="243.26" y="479.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (3,635,318,000 samples, 0.04%)</title><rect x="1036.2" y="293" width="0.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1039.15" y="303.5" ></text>
</g>
<g >
<title>wake_up_q (19,702,523,623 samples, 0.21%)</title><rect x="492.6" y="325" width="2.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="495.58" y="335.5" ></text>
</g>
<g >
<title>GrantLockLocal (1,238,606,875 samples, 0.01%)</title><rect x="369.4" y="277" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="372.40" y="287.5" ></text>
</g>
<g >
<title>dequeue_entity (15,942,957,838 samples, 0.17%)</title><rect x="486.8" y="229" width="1.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="489.75" y="239.5" ></text>
</g>
<g >
<title>int4hashfast (2,120,637,656 samples, 0.02%)</title><rect x="828.0" y="293" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="830.96" y="303.5" ></text>
</g>
<g >
<title>ReadBufferExtended (18,820,852,453 samples, 0.20%)</title><rect x="353.9" y="357" width="2.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="356.95" y="367.5" ></text>
</g>
<g >
<title>ReleaseSysCache (3,146,415,862 samples, 0.03%)</title><rect x="825.6" y="357" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="828.62" y="367.5" ></text>
</g>
<g >
<title>compute_bitmap_pages (3,362,577,762 samples, 0.04%)</title><rect x="989.1" y="357" width="0.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="992.06" y="367.5" ></text>
</g>
<g >
<title>palloc (3,990,442,079 samples, 0.04%)</title><rect x="357.2" y="341" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="360.19" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,742,334,118 samples, 0.03%)</title><rect x="97.4" y="149" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="100.35" y="159.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (1,042,896,149 samples, 0.01%)</title><rect x="370.2" y="229" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="373.22" y="239.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (1,138,581,373 samples, 0.01%)</title><rect x="873.8" y="501" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="876.79" y="511.5" ></text>
</g>
<g >
<title>query_planner (963,190,410,006 samples, 10.14%)</title><rect x="925.1" y="485" width="119.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="928.13" y="495.5" >query_planner</text>
</g>
<g >
<title>IndexNext (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="405" width="2.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="87.32" y="415.5" ></text>
</g>
<g >
<title>palloc (2,291,355,049 samples, 0.02%)</title><rect x="1053.0" y="405" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1056.04" y="415.5" ></text>
</g>
<g >
<title>VARATT_IS_EXTERNAL (1,046,413,027 samples, 0.01%)</title><rect x="109.7" y="757" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="112.74" y="767.5" ></text>
</g>
<g >
<title>send@plt (1,105,338,909 samples, 0.01%)</title><rect x="209.8" y="501" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="212.80" y="511.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (526,259,410,775 samples, 5.54%)</title><rect x="465.6" y="565" width="65.3" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="468.57" y="575.5" >CommitT..</text>
</g>
<g >
<title>ReleaseCatCache (1,119,325,385 samples, 0.01%)</title><rect x="104.0" y="437" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="106.97" y="447.5" ></text>
</g>
<g >
<title>_bt_check_compare (4,599,176,588 samples, 0.05%)</title><rect x="124.2" y="245" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="127.19" y="255.5" ></text>
</g>
<g >
<title>slot_attisnull (4,844,697,695 samples, 0.05%)</title><rect x="349.7" y="389" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="352.71" y="399.5" ></text>
</g>
<g >
<title>vruntime_eligible (987,295,502 samples, 0.01%)</title><rect x="174.3" y="277" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="177.34" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,133,976,642 samples, 0.01%)</title><rect x="475.6" y="405" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="478.58" y="415.5" ></text>
</g>
<g >
<title>lappend (3,219,592,861 samples, 0.03%)</title><rect x="1011.8" y="277" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1014.84" y="287.5" ></text>
</g>
<g >
<title>copyObjectImpl (4,297,512,527 samples, 0.05%)</title><rect x="888.8" y="341" width="0.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="891.82" y="351.5" ></text>
</g>
<g >
<title>hash_search (3,211,762,045 samples, 0.03%)</title><rect x="924.7" y="421" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="927.71" y="431.5" ></text>
</g>
<g >
<title>bms_add_members (3,256,051,842 samples, 0.03%)</title><rect x="878.6" y="485" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="881.63" y="495.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,232,056,034 samples, 0.01%)</title><rect x="825.8" y="293" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="828.84" y="303.5" ></text>
</g>
<g >
<title>__strlen_avx2 (836,122,364 samples, 0.01%)</title><rect x="214.6" y="517" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="217.62" y="527.5" ></text>
</g>
<g >
<title>newNode (4,792,628,272 samples, 0.05%)</title><rect x="944.6" y="405" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="947.57" y="415.5" ></text>
</g>
<g >
<title>get_index_paths (216,436,292,596 samples, 2.28%)</title><rect x="991.3" y="389" width="26.9" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="994.32" y="399.5" >g..</text>
</g>
<g >
<title>hash_bytes (2,397,582,789 samples, 0.03%)</title><rect x="448.6" y="325" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="451.58" y="335.5" ></text>
</g>
<g >
<title>_bt_fix_scankey_strategy (1,095,728,195 samples, 0.01%)</title><rect x="324.2" y="245" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="327.19" y="255.5" ></text>
</g>
<g >
<title>add_path (2,115,393,494 samples, 0.02%)</title><rect x="909.1" y="485" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="912.11" y="495.5" ></text>
</g>
<g >
<title>unix_stream_read_generic (46,092,188,540 samples, 0.49%)</title><rect x="181.1" y="389" width="5.7" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="184.10" y="399.5" ></text>
</g>
<g >
<title>ktime_get_coarse_real_ts64_mg (1,215,218,933 samples, 0.01%)</title><rect x="502.0" y="325" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="505.04" y="335.5" ></text>
</g>
<g >
<title>pollwake (59,866,983,005 samples, 0.63%)</title><rect x="201.0" y="357" width="7.4" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text  x="203.97" y="367.5" ></text>
</g>
<g >
<title>new_list (1,219,472,025 samples, 0.01%)</title><rect x="909.2" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="912.22" y="447.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (937,444,094 samples, 0.01%)</title><rect x="1071.6" y="565" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1074.61" y="575.5" ></text>
</g>
<g >
<title>SearchSysCache (25,626,045,781 samples, 0.27%)</title><rect x="826.0" y="357" width="3.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="829.04" y="367.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (9,283,627,367 samples, 0.10%)</title><rect x="463.5" y="565" width="1.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="466.49" y="575.5" ></text>
</g>
<g >
<title>ExecFetchSlotHeapTuple (950,846,379 samples, 0.01%)</title><rect x="43.1" y="757" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="46.11" y="767.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,057,683,763 samples, 0.02%)</title><rect x="757.3" y="469" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="760.35" y="479.5" ></text>
</g>
<g >
<title>table_index_fetch_reset (3,742,920,704 samples, 0.04%)</title><rect x="284.2" y="309" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="287.20" y="319.5" ></text>
</g>
<g >
<title>set_rel_size (127,412,889,253 samples, 1.34%)</title><rect x="1026.3" y="437" width="15.8" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text  x="1029.28" y="447.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (4,248,790,197 samples, 0.04%)</title><rect x="234.8" y="549" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="237.79" y="559.5" ></text>
</g>
<g >
<title>sentinel_ok (910,601,769 samples, 0.01%)</title><rect x="243.7" y="357" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="246.71" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,132,900,839 samples, 0.01%)</title><rect x="299.0" y="165" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="302.03" y="175.5" ></text>
</g>
<g >
<title>propagate_entity_load_avg (1,569,357,349 samples, 0.02%)</title><rect x="174.0" y="261" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="176.97" y="271.5" ></text>
</g>
<g >
<title>IOContextForStrategy (875,214,546 samples, 0.01%)</title><rect x="53.1" y="757" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="56.13" y="767.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,466,910,755 samples, 0.02%)</title><rect x="443.8" y="309" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="446.79" y="319.5" ></text>
</g>
<g >
<title>newNode (2,881,448,044 samples, 0.03%)</title><rect x="1020.5" y="309" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1023.47" y="319.5" ></text>
</g>
<g >
<title>palloc (11,943,796,388 samples, 0.13%)</title><rect x="294.1" y="277" width="1.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="297.13" y="287.5" ></text>
</g>
<g >
<title>AllocSetReset (9,497,104,373 samples, 0.10%)</title><rect x="134.8" y="501" width="1.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="137.80" y="511.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,131,799,659 samples, 0.01%)</title><rect x="127.9" y="181" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="130.85" y="191.5" ></text>
</g>
<g >
<title>malloc (7,452,318,330 samples, 0.08%)</title><rect x="294.6" y="229" width="0.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="297.58" y="239.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (2,841,645,866 samples, 0.03%)</title><rect x="84.3" y="325" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="87.32" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerSort (1,141,456,518 samples, 0.01%)</title><rect x="228.3" y="533" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="231.30" y="543.5" ></text>
</g>
<g >
<title>palloc0 (3,048,576,034 samples, 0.03%)</title><rect x="934.7" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="937.66" y="367.5" ></text>
</g>
<g >
<title>psi_task_switch (8,738,820,336 samples, 0.09%)</title><rect x="167.3" y="341" width="1.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="170.31" y="351.5" ></text>
</g>
<g >
<title>socket_putmessage (2,430,021,455 samples, 0.03%)</title><rect x="1183.8" y="757" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1186.84" y="767.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (960,272,963 samples, 0.01%)</title><rect x="201.9" y="309" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="204.87" y="319.5" ></text>
</g>
<g >
<title>int4hashfast (2,004,762,779 samples, 0.02%)</title><rect x="1152.4" y="757" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1155.43" y="767.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,057,936,202 samples, 0.02%)</title><rect x="526.9" y="437" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="529.88" y="447.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (866,383,336 samples, 0.01%)</title><rect x="940.1" y="341" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="943.11" y="351.5" ></text>
</g>
<g >
<title>__sigsetjmp (1,026,240,918 samples, 0.01%)</title><rect x="463.3" y="565" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="466.33" y="575.5" ></text>
</g>
<g >
<title>list_insert_nth (1,756,386,510 samples, 0.02%)</title><rect x="909.2" y="469" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="912.15" y="479.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (1,245,492,556 samples, 0.01%)</title><rect x="508.5" y="421" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="511.46" y="431.5" ></text>
</g>
<g >
<title>newNode (3,105,002,276 samples, 0.03%)</title><rect x="910.2" y="453" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="913.19" y="463.5" ></text>
</g>
<g >
<title>lappend (1,655,640,312 samples, 0.02%)</title><rect x="456.0" y="437" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="459.01" y="447.5" ></text>
</g>
<g >
<title>TransactionIdSetTreeStatus (26,445,719,303 samples, 0.28%)</title><rect x="477.4" y="485" width="3.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="480.36" y="495.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop (3,550,778,225 samples, 0.04%)</title><rect x="1054.3" y="469" width="0.4" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text  x="1057.28" y="479.5" ></text>
</g>
<g >
<title>LWLockDequeueSelf (1,395,366,970 samples, 0.01%)</title><rect x="366.2" y="293" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="369.18" y="303.5" ></text>
</g>
<g >
<title>palloc (3,374,849,495 samples, 0.04%)</title><rect x="293.7" y="261" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="296.71" y="271.5" ></text>
</g>
<g >
<title>LockHeldByMe (11,065,463,735 samples, 0.12%)</title><rect x="1066.3" y="437" width="1.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1069.31" y="447.5" ></text>
</g>
<g >
<title>query_planner (838,410,516 samples, 0.01%)</title><rect x="128.2" y="501" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="131.20" y="511.5" ></text>
</g>
<g >
<title>x64_sys_call (1,116,046,047 samples, 0.01%)</title><rect x="209.5" y="453" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="212.48" y="463.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (2,350,632,165 samples, 0.02%)</title><rect x="265.4" y="501" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="268.44" y="511.5" ></text>
</g>
<g >
<title>gup_fast_fallback (1,222,575,048 samples, 0.01%)</title><rect x="368.0" y="133" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="370.98" y="143.5" ></text>
</g>
<g >
<title>is_valid_ascii (834,119,446 samples, 0.01%)</title><rect x="1154.1" y="757" width="0.1" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1157.15" y="767.5" ></text>
</g>
<g >
<title>AssertTransactionIdInAllowableRange (928,310,150 samples, 0.01%)</title><rect x="305.6" y="197" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="308.63" y="207.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,203,054,071 samples, 0.01%)</title><rect x="214.4" y="517" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="217.41" y="527.5" ></text>
</g>
<g >
<title>op_mergejoinable (6,342,979,552 samples, 0.07%)</title><rect x="963.4" y="389" width="0.8" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="966.39" y="399.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,397,061,570 samples, 0.03%)</title><rect x="1051.6" y="373" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1054.57" y="383.5" ></text>
</g>
<g >
<title>new_list (1,676,573,773 samples, 0.02%)</title><rect x="1047.4" y="485" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1050.41" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_futex (2,392,798,823 samples, 0.03%)</title><rect x="375.9" y="229" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="378.86" y="239.5" ></text>
</g>
<g >
<title>__update_load_avg_se (1,239,364,806 samples, 0.01%)</title><rect x="488.4" y="197" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="491.40" y="207.5" ></text>
</g>
<g >
<title>ExecGetRangeTableRelation (30,024,469,675 samples, 0.32%)</title><rect x="450.7" y="437" width="3.8" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text  x="453.72" y="447.5" ></text>
</g>
<g >
<title>do_futex (1,305,666,798 samples, 0.01%)</title><rect x="478.2" y="325" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="481.15" y="335.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (2,541,077,163 samples, 0.03%)</title><rect x="1185.1" y="613" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1188.13" y="623.5" ></text>
</g>
<g >
<title>CreateExecutorState (1,032,775,724 samples, 0.01%)</title><rect x="39.7" y="757" width="0.2" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="42.73" y="767.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (839,546,280 samples, 0.01%)</title><rect x="975.0" y="357" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="978.02" y="367.5" ></text>
</g>
<g >
<title>new_list (1,100,695,879 samples, 0.01%)</title><rect x="456.1" y="421" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="459.08" y="431.5" ></text>
</g>
<g >
<title>pg_comp_crc32c_sse42 (1,663,235,732 samples, 0.02%)</title><rect x="1169.6" y="757" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="1172.60" y="767.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (8,914,909,446 samples, 0.09%)</title><rect x="1080.7" y="533" width="1.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="1083.71" y="543.5" ></text>
</g>
<g >
<title>hash_search (4,162,627,933 samples, 0.04%)</title><rect x="924.0" y="405" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="927.05" y="415.5" ></text>
</g>
<g >
<title>list_copy (5,143,230,083 samples, 0.05%)</title><rect x="990.6" y="357" width="0.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="993.62" y="367.5" ></text>
</g>
<g >
<title>ExecIndexScan (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="469" width="2.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="87.32" y="479.5" ></text>
</g>
<g >
<title>ServerLoop (18,601,171,430 samples, 0.20%)</title><rect x="124.0" y="709" width="2.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="126.99" y="719.5" ></text>
</g>
<g >
<title>create_tidscan_paths (1,230,716,041 samples, 0.01%)</title><rect x="1131.4" y="757" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1134.36" y="767.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,327,674,209 samples, 0.01%)</title><rect x="419.9" y="405" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="422.95" y="415.5" ></text>
</g>
<g >
<title>ShowTransactionState (1,164,933,399 samples, 0.01%)</title><rect x="1076.6" y="533" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1079.59" y="543.5" ></text>
</g>
<g >
<title>palloc (1,388,234,589 samples, 0.01%)</title><rect x="890.5" y="245" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="893.54" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,061,072,580 samples, 0.02%)</title><rect x="945.7" y="389" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="948.70" y="399.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,844,478,100 samples, 0.05%)</title><rect x="522.2" y="453" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="525.22" y="463.5" ></text>
</g>
<g >
<title>set_plan_references (69,493,311,425 samples, 0.73%)</title><rect x="895.5" y="517" width="8.7" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="898.55" y="527.5" ></text>
</g>
<g >
<title>exec_simple_query (1,061,920,638 samples, 0.01%)</title><rect x="1135.6" y="757" width="0.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="1138.60" y="767.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,623,458,395 samples, 0.04%)</title><rect x="972.3" y="373" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="975.33" y="383.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,159,079,234 samples, 0.02%)</title><rect x="862.6" y="421" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="865.62" y="431.5" ></text>
</g>
<g >
<title>add_placeholders_to_base_rels (894,340,103 samples, 0.01%)</title><rect x="1083.2" y="757" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1086.21" y="767.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetLock (2,375,394,155 samples, 0.03%)</title><rect x="526.2" y="453" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="529.22" y="463.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,203,969,060 samples, 0.01%)</title><rect x="126.2" y="485" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="129.16" y="495.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (7,413,640,058 samples, 0.08%)</title><rect x="150.9" y="533" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="153.88" y="543.5" ></text>
</g>
<g >
<title>newNode (2,454,567,287 samples, 0.03%)</title><rect x="927.8" y="405" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="930.82" y="415.5" ></text>
</g>
<g >
<title>new_list (2,295,978,078 samples, 0.02%)</title><rect x="985.0" y="357" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="987.97" y="367.5" ></text>
</g>
<g >
<title>scanNSItemForColumn (18,123,674,758 samples, 0.19%)</title><rect x="856.1" y="373" width="2.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="859.12" y="383.5" ></text>
</g>
<g >
<title>pairingheap_add (1,117,279,169 samples, 0.01%)</title><rect x="1165.1" y="757" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1168.13" y="767.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVacuumHorizon (2,622,298,886 samples, 0.03%)</title><rect x="1149.8" y="693" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1152.82" y="703.5" ></text>
</g>
<g >
<title>BackendStartup (3,415,261,054 samples, 0.04%)</title><rect x="1158.9" y="709" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1161.90" y="719.5" ></text>
</g>
<g >
<title>ExecProcNode (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="517" width="6.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="98.68" y="527.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,176,052,692 samples, 0.04%)</title><rect x="97.2" y="181" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="100.18" y="191.5" ></text>
</g>
<g >
<title>hash_search (4,000,715,024 samples, 0.04%)</title><rect x="863.3" y="453" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="866.33" y="463.5" ></text>
</g>
<g >
<title>LockReleaseAll (1,442,267,877 samples, 0.02%)</title><rect x="59.4" y="757" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="62.41" y="767.5" ></text>
</g>
<g >
<title>fix_expr_common (2,123,995,767 samples, 0.02%)</title><rect x="903.4" y="405" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="906.43" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetLock (831,020,084 samples, 0.01%)</title><rect x="227.9" y="501" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="230.94" y="511.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (815,901,971 samples, 0.01%)</title><rect x="409.3" y="277" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="412.31" y="287.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,881,562,583 samples, 0.02%)</title><rect x="397.5" y="309" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="400.51" y="319.5" ></text>
</g>
<g >
<title>IsTransactionState (1,378,722,894 samples, 0.01%)</title><rect x="55.5" y="757" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="58.48" y="767.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (2,541,077,163 samples, 0.03%)</title><rect x="1185.1" y="645" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1188.13" y="655.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (3,820,703,223 samples, 0.04%)</title><rect x="224.2" y="581" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="227.18" y="591.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4,616,388,160 samples, 0.05%)</title><rect x="823.8" y="357" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="826.84" y="367.5" ></text>
</g>
<g >
<title>get_leftop (1,034,757,919 samples, 0.01%)</title><rect x="966.3" y="373" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="969.30" y="383.5" ></text>
</g>
<g >
<title>make_restrictinfo (26,491,333,097 samples, 0.28%)</title><rect x="964.4" y="405" width="3.3" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="967.40" y="415.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (895,182,564 samples, 0.01%)</title><rect x="299.2" y="229" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="302.23" y="239.5" ></text>
</g>
<g >
<title>ExecReadyExpr (3,180,225,220 samples, 0.03%)</title><rect x="275.3" y="405" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="278.35" y="415.5" ></text>
</g>
<g >
<title>new_list (1,910,584,983 samples, 0.02%)</title><rect x="860.0" y="501" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="862.98" y="511.5" ></text>
</g>
<g >
<title>new_list (1,948,139,412 samples, 0.02%)</title><rect x="953.3" y="421" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="956.33" y="431.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (1,886,624,159 samples, 0.02%)</title><rect x="439.3" y="357" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="442.29" y="367.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,010,516,896 samples, 0.06%)</title><rect x="955.2" y="357" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="958.22" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,521,508,156 samples, 0.02%)</title><rect x="456.6" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="459.65" y="383.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (1,172,958,126 samples, 0.01%)</title><rect x="460.2" y="485" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="463.19" y="495.5" ></text>
</g>
<g >
<title>limit_needed (1,026,637,660 samples, 0.01%)</title><rect x="918.3" y="485" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text  x="921.28" y="495.5" ></text>
</g>
<g >
<title>set_base_rel_sizes (130,366,339,502 samples, 1.37%)</title><rect x="1025.9" y="453" width="16.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1028.91" y="463.5" ></text>
</g>
<g >
<title>palloc (3,197,995,114 samples, 0.03%)</title><rect x="403.7" y="389" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="406.71" y="399.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="341" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="128.92" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,022,885,485 samples, 0.01%)</title><rect x="401.4" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="404.44" y="335.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,333,420,571 samples, 0.01%)</title><rect x="452.9" y="293" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="455.94" y="303.5" ></text>
</g>
<g >
<title>pq_beginmessage (807,056,749 samples, 0.01%)</title><rect x="1173.2" y="757" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1176.18" y="767.5" ></text>
</g>
<g >
<title>bms_is_subset (989,120,837 samples, 0.01%)</title><rect x="1121.7" y="757" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1124.72" y="767.5" ></text>
</g>
<g >
<title>new_list (1,487,295,154 samples, 0.02%)</title><rect x="992.8" y="325" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="995.77" y="335.5" ></text>
</g>
<g >
<title>newNode (3,739,873,460 samples, 0.04%)</title><rect x="277.8" y="405" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="280.81" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (2,690,885,827 samples, 0.03%)</title><rect x="97.4" y="133" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="100.36" y="143.5" ></text>
</g>
<g >
<title>put_prev_entity (1,013,625,244 samples, 0.01%)</title><rect x="162.8" y="309" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="165.82" y="319.5" ></text>
</g>
<g >
<title>CopyXLogRecordToWAL (9,770,282,317 samples, 0.10%)</title><rect x="386.4" y="309" width="1.3" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text  x="389.44" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (869,146,004 samples, 0.01%)</title><rect x="1167.7" y="741" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1170.72" y="751.5" ></text>
</g>
<g >
<title>perf_ctx_disable (6,913,438,706 samples, 0.07%)</title><rect x="165.7" y="293" width="0.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="168.66" y="303.5" ></text>
</g>
<g >
<title>update_process_times (1,309,762,202 samples, 0.01%)</title><rect x="757.4" y="421" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="760.39" y="431.5" ></text>
</g>
<g >
<title>ReleaseCatCache (844,290,066 samples, 0.01%)</title><rect x="1008.2" y="261" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1011.25" y="271.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (1,607,516,114 samples, 0.02%)</title><rect x="124.0" y="277" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="126.99" y="287.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (905,156,695 samples, 0.01%)</title><rect x="84.7" y="213" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="87.73" y="223.5" ></text>
</g>
<g >
<title>int4hashfast (1,278,465,017 samples, 0.01%)</title><rect x="1009.4" y="213" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1012.35" y="223.5" ></text>
</g>
<g >
<title>make_plain_restrictinfo (24,635,849,149 samples, 0.26%)</title><rect x="964.6" y="389" width="3.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="967.62" y="399.5" ></text>
</g>
<g >
<title>ExecProcNode (930,623,721 samples, 0.01%)</title><rect x="409.9" y="453" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="412.90" y="463.5" ></text>
</g>
<g >
<title>match_clause_to_indexcol (21,719,196,567 samples, 0.23%)</title><rect x="1019.2" y="341" width="2.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="1022.22" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,354,039,007 samples, 0.01%)</title><rect x="401.0" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="404.00" y="335.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller_noprof (9,832,126,277 samples, 0.10%)</title><rect x="197.2" y="341" width="1.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="200.20" y="351.5" ></text>
</g>
<g >
<title>shmem_write_begin (11,160,859,065 samples, 0.12%)</title><rect x="504.4" y="357" width="1.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="507.40" y="367.5" ></text>
</g>
<g >
<title>int4eq (1,439,650,447 samples, 0.02%)</title><rect x="1158.9" y="229" width="0.2" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text  x="1161.91" y="239.5" ></text>
</g>
<g >
<title>SearchSysCache1 (5,873,485,042 samples, 0.06%)</title><rect x="850.1" y="389" width="0.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="853.08" y="399.5" ></text>
</g>
<g >
<title>kmem_cache_free (7,073,059,340 samples, 0.07%)</title><rect x="184.1" y="373" width="0.9" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="187.14" y="383.5" ></text>
</g>
<g >
<title>markVarForSelectPriv (2,087,959,396 samples, 0.02%)</title><rect x="842.6" y="325" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="845.56" y="335.5" ></text>
</g>
<g >
<title>newNode (3,787,359,554 samples, 0.04%)</title><rect x="891.8" y="373" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="894.76" y="383.5" ></text>
</g>
<g >
<title>get_hash_value (2,893,586,506 samples, 0.03%)</title><rect x="100.2" y="165" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="103.16" y="175.5" ></text>
</g>
<g >
<title>MarkPortalDone (1,534,139,172 samples, 0.02%)</title><rect x="230.2" y="565" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="233.18" y="575.5" ></text>
</g>
<g >
<title>table_index_fetch_begin (2,990,008,869 samples, 0.03%)</title><rect x="295.6" y="309" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="298.62" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (6,439,871,489 samples, 0.07%)</title><rect x="294.7" y="213" width="0.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="297.71" y="223.5" ></text>
</g>
<g >
<title>AllocSetAlloc (998,445,658 samples, 0.01%)</title><rect x="942.3" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="945.28" y="335.5" ></text>
</g>
<g >
<title>lappend (3,200,535,908 samples, 0.03%)</title><rect x="968.9" y="373" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="971.88" y="383.5" ></text>
</g>
<g >
<title>create_plan (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="549" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="128.92" y="559.5" ></text>
</g>
<g >
<title>list_make1_impl (5,185,370,834 samples, 0.05%)</title><rect x="1118.2" y="725" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1121.16" y="735.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (915,716,303 samples, 0.01%)</title><rect x="87.8" y="757" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="90.83" y="767.5" ></text>
</g>
<g >
<title>ServerLoop (17,479,689,687 samples, 0.18%)</title><rect x="126.3" y="693" width="2.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="129.31" y="703.5" ></text>
</g>
<g >
<title>ExecModifyTable (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="469" width="1.9" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="129.31" y="479.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (49,959,633,713 samples, 0.53%)</title><rect x="285.7" y="341" width="6.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="288.67" y="351.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (1,188,103,721 samples, 0.01%)</title><rect x="284.5" y="245" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="287.52" y="255.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,720,019,454 samples, 0.04%)</title><rect x="373.9" y="261" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="376.92" y="271.5" ></text>
</g>
<g >
<title>PageGetFreeSpace (1,156,551,096 samples, 0.01%)</title><rect x="81.4" y="757" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="84.36" y="767.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,131,154,245 samples, 0.01%)</title><rect x="1080.0" y="581" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="1083.00" y="591.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,942,247,167 samples, 0.02%)</title><rect x="474.5" y="469" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="477.48" y="479.5" ></text>
</g>
<g >
<title>LWLockRelease (1,158,067,955 samples, 0.01%)</title><rect x="341.8" y="197" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="344.78" y="207.5" ></text>
</g>
<g >
<title>_bt_checkkeys (1,283,821,015 samples, 0.01%)</title><rect x="129.3" y="757" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="132.34" y="767.5" ></text>
</g>
<g >
<title>max_parallel_hazard_walker (17,848,614,773 samples, 0.19%)</title><rect x="916.1" y="469" width="2.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="919.06" y="479.5" ></text>
</g>
<g >
<title>hash_search (3,516,555,231 samples, 0.04%)</title><rect x="948.1" y="341" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="951.08" y="351.5" ></text>
</g>
<g >
<title>__x64_sys_futex (928,684,905 samples, 0.01%)</title><rect x="370.2" y="165" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="373.23" y="175.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (7,541,582,859 samples, 0.08%)</title><rect x="425.7" y="293" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="428.72" y="303.5" ></text>
</g>
<g >
<title>palloc (2,986,769,002 samples, 0.03%)</title><rect x="436.5" y="405" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="439.47" y="415.5" ></text>
</g>
<g >
<title>RelationBuildPublicationDesc (1,141,379,256 samples, 0.01%)</title><rect x="89.4" y="757" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="92.35" y="767.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (2,283,556,558 samples, 0.02%)</title><rect x="461.9" y="517" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="464.90" y="527.5" ></text>
</g>
<g >
<title>planner (3,069,363,779 samples, 0.03%)</title><rect x="125.9" y="581" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="128.92" y="591.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (2,196,507,255 samples, 0.02%)</title><rect x="86.1" y="181" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="89.11" y="191.5" ></text>
</g>
<g >
<title>ForEachLWLockHeldByMe (1,734,105,171 samples, 0.02%)</title><rect x="30.1" y="741" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="33.08" y="751.5" ></text>
</g>
<g >
<title>AllocSetAlloc (920,103,228 samples, 0.01%)</title><rect x="438.1" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="441.09" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,575,819,936 samples, 0.03%)</title><rect x="439.9" y="357" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="442.86" y="367.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (997,951,721 samples, 0.01%)</title><rect x="363.2" y="341" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="366.25" y="351.5" ></text>
</g>
<g >
<title>psi_task_change (939,045,438 samples, 0.01%)</title><rect x="207.5" y="293" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="210.51" y="303.5" ></text>
</g>
<g >
<title>LWLockRelease (923,349,874 samples, 0.01%)</title><rect x="355.4" y="261" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="358.42" y="271.5" ></text>
</g>
<g >
<title>btgettuple (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="309" width="1.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="129.31" y="319.5" ></text>
</g>
<g >
<title>bms_is_valid_set (1,256,087,417 samples, 0.01%)</title><rect x="359.0" y="357" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="361.96" y="367.5" ></text>
</g>
<g >
<title>list_make1_impl (2,535,639,769 samples, 0.03%)</title><rect x="1056.9" y="453" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1059.95" y="463.5" ></text>
</g>
<g >
<title>evaluate_function (1,837,831,932 samples, 0.02%)</title><rect x="104.7" y="453" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="107.69" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,156,659,716 samples, 0.01%)</title><rect x="368.4" y="261" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="371.36" y="271.5" ></text>
</g>
<g >
<title>EvalPlanQualEnd (1,737,117,897 samples, 0.02%)</title><rect x="41.5" y="757" width="0.3" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="44.55" y="767.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesUpdate (1,387,003,555 samples, 0.01%)</title><rect x="375.2" y="357" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="378.17" y="367.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,004,310,455 samples, 0.01%)</title><rect x="1021.0" y="261" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1023.98" y="271.5" ></text>
</g>
<g >
<title>_find_next_bit (1,676,754,597 samples, 0.02%)</title><rect x="204.6" y="245" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="207.56" y="255.5" ></text>
</g>
<g >
<title>max_parallel_hazard_checker (6,020,998,326 samples, 0.06%)</title><rect x="916.9" y="405" width="0.7" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="919.90" y="415.5" ></text>
</g>
<g >
<title>IsTidEqualClause (3,566,937,538 samples, 0.04%)</title><rect x="1024.8" y="357" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1027.80" y="367.5" ></text>
</g>
<g >
<title>hash_initial_lookup (3,031,752,228 samples, 0.03%)</title><rect x="524.3" y="405" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="527.29" y="415.5" ></text>
</g>
<g >
<title>PageIsNew (1,988,501,731 samples, 0.02%)</title><rect x="337.6" y="197" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="340.56" y="207.5" ></text>
</g>
<g >
<title>LWLockReleaseClearVar (5,349,562,114 samples, 0.06%)</title><rect x="389.1" y="293" width="0.7" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text  x="392.14" y="303.5" ></text>
</g>
<g >
<title>pfree (1,114,827,926 samples, 0.01%)</title><rect x="235.0" y="517" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="237.98" y="527.5" ></text>
</g>
<g >
<title>BufferIsPermanent (2,476,208,705 samples, 0.03%)</title><rect x="307.7" y="197" width="0.3" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="310.66" y="207.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (3,262,404,173 samples, 0.03%)</title><rect x="209.1" y="453" width="0.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="212.07" y="463.5" ></text>
</g>
<g >
<title>AllocSetFree (1,025,195,027 samples, 0.01%)</title><rect x="994.4" y="325" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="997.40" y="335.5" ></text>
</g>
<g >
<title>coerce_type_typmod (1,892,182,413 samples, 0.02%)</title><rect x="844.2" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="847.16" y="431.5" ></text>
</g>
<g >
<title>preprocess_function_rtes (1,044,756,345 samples, 0.01%)</title><rect x="1173.8" y="757" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1176.76" y="767.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,114,530,750 samples, 0.01%)</title><rect x="924.8" y="389" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="927.82" y="399.5" ></text>
</g>
<g >
<title>remove_useless_groupby_columns (811,568,995 samples, 0.01%)</title><rect x="1176.3" y="757" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1179.28" y="767.5" ></text>
</g>
<g >
<title>_bt_readpage (2,463,738,124 samples, 0.03%)</title><rect x="84.7" y="309" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="87.68" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,052,906,206 samples, 0.01%)</title><rect x="1018.0" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1021.04" y="335.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (891,998,899 samples, 0.01%)</title><rect x="209.6" y="485" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="212.62" y="495.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (4,789,015,248 samples, 0.05%)</title><rect x="264.5" y="389" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="267.53" y="399.5" ></text>
</g>
<g >
<title>att_isnull (1,633,336,112 samples, 0.02%)</title><rect x="1006.8" y="197" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1009.77" y="207.5" ></text>
</g>
<g >
<title>AssertTransactionIdInAllowableRange (1,783,291,477 samples, 0.02%)</title><rect x="233.5" y="501" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="236.49" y="511.5" ></text>
</g>
<g >
<title>clauselist_selectivity_ext (2,319,787,388 samples, 0.02%)</title><rect x="1011.2" y="277" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1014.25" y="287.5" ></text>
</g>
<g >
<title>get_opfamily_member (13,190,974,401 samples, 0.14%)</title><rect x="1008.1" y="293" width="1.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1011.05" y="303.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (19,542,980,433 samples, 0.21%)</title><rect x="866.9" y="485" width="2.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="869.87" y="495.5" ></text>
</g>
<g >
<title>fetch_upper_rel (13,161,366,356 samples, 0.14%)</title><rect x="914.1" y="485" width="1.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="917.13" y="495.5" ></text>
</g>
<g >
<title>preprocess_expression (971,078,648 samples, 0.01%)</title><rect x="128.4" y="501" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="131.36" y="511.5" ></text>
</g>
<g >
<title>setTargetTable (165,346,498,511 samples, 1.74%)</title><rect x="813.0" y="485" width="20.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="815.97" y="495.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,168,931,656 samples, 0.01%)</title><rect x="513.6" y="405" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="516.60" y="415.5" ></text>
</g>
<g >
<title>select_idle_sibling (19,562,222,842 samples, 0.21%)</title><rect x="203.0" y="293" width="2.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="206.00" y="303.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (4,338,042,560 samples, 0.05%)</title><rect x="223.0" y="533" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="226.03" y="543.5" ></text>
</g>
<g >
<title>string_hash (3,046,824,152 samples, 0.03%)</title><rect x="229.2" y="549" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="232.15" y="559.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,197,986,898 samples, 0.01%)</title><rect x="388.9" y="197" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="391.91" y="207.5" ></text>
</g>
<g >
<title>pfree (1,668,178,936 samples, 0.02%)</title><rect x="461.0" y="517" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="464.04" y="527.5" ></text>
</g>
<g >
<title>tag_hash (1,960,021,384 samples, 0.02%)</title><rect x="942.8" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="945.78" y="335.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (3,459,619,492 samples, 0.04%)</title><rect x="996.5" y="293" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="999.52" y="303.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,142,115,739 samples, 0.01%)</title><rect x="128.6" y="757" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="131.60" y="767.5" ></text>
</g>
<g >
<title>ExecutePlan (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="565" width="2.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="87.32" y="575.5" ></text>
</g>
<g >
<title>check_index_predicates (2,460,744,679 samples, 0.03%)</title><rect x="1027.2" y="405" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1030.18" y="415.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (3,518,378,876 samples, 0.04%)</title><rect x="349.9" y="341" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="352.87" y="351.5" ></text>
</g>
<g >
<title>resetStringInfo (1,119,678,228 samples, 0.01%)</title><rect x="188.5" y="549" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="191.46" y="559.5" ></text>
</g>
<g >
<title>record_times (1,128,311,386 samples, 0.01%)</title><rect x="485.6" y="261" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="488.60" y="271.5" ></text>
</g>
<g >
<title>bms_del_members (955,351,431 samples, 0.01%)</title><rect x="348.7" y="389" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="351.68" y="399.5" ></text>
</g>
<g >
<title>create_modifytable_plan (920,533,213 samples, 0.01%)</title><rect x="1130.7" y="757" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1133.73" y="767.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (3,274,627,784 samples, 0.03%)</title><rect x="1054.3" y="453" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1057.30" y="463.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (11,097,733,905 samples, 0.12%)</title><rect x="492.8" y="277" width="1.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="495.77" y="287.5" ></text>
</g>
<g >
<title>scm_recv_unix (1,849,229,949 samples, 0.02%)</title><rect x="185.4" y="373" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="188.37" y="383.5" ></text>
</g>
<g >
<title>table_index_fetch_reset (1,889,036,574 samples, 0.02%)</title><rect x="343.2" y="309" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="346.19" y="319.5" ></text>
</g>
<g >
<title>make_parsestate (4,840,930,247 samples, 0.05%)</title><rect x="803.7" y="549" width="0.6" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="806.74" y="559.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,182,380,192 samples, 0.01%)</title><rect x="851.6" y="341" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="854.58" y="351.5" ></text>
</g>
<g >
<title>palloc (1,184,068,810 samples, 0.01%)</title><rect x="457.3" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="460.35" y="431.5" ></text>
</g>
<g >
<title>new_list (1,673,942,243 samples, 0.02%)</title><rect x="422.8" y="357" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="425.84" y="367.5" ></text>
</g>
<g >
<title>XLogNeedsFlush (894,736,978 samples, 0.01%)</title><rect x="111.2" y="757" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="114.23" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (975,361,784 samples, 0.01%)</title><rect x="980.7" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="983.71" y="367.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableXid (971,285,322 samples, 0.01%)</title><rect x="1149.7" y="693" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1152.70" y="703.5" ></text>
</g>
<g >
<title>bms_add_member (2,741,440,157 samples, 0.03%)</title><rect x="416.0" y="469" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="419.03" y="479.5" ></text>
</g>
<g >
<title>unix_write_space (4,842,054,358 samples, 0.05%)</title><rect x="183.5" y="309" width="0.6" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="186.50" y="319.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (819,432,631 samples, 0.01%)</title><rect x="1023.3" y="309" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1026.33" y="319.5" ></text>
</g>
<g >
<title>BufferGetPage (1,395,738,115 samples, 0.01%)</title><rect x="385.2" y="325" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="388.21" y="335.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (34,941,663,413 samples, 0.37%)</title><rect x="491.1" y="469" width="4.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="494.07" y="479.5" ></text>
</g>
<g >
<title>bms_copy (1,916,906,471 samples, 0.02%)</title><rect x="878.7" y="469" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="881.73" y="479.5" ></text>
</g>
<g >
<title>cpuacct_charge (1,469,997,492 samples, 0.02%)</title><rect x="172.1" y="245" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="175.13" y="255.5" ></text>
</g>
<g >
<title>ExecutorRun (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="581" width="0.3" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="1161.90" y="591.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (47,614,791,684 samples, 0.50%)</title><rect x="66.1" y="757" width="5.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="69.13" y="767.5" ></text>
</g>
<g >
<title>palloc (2,360,387,024 samples, 0.02%)</title><rect x="1114.3" y="709" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1117.29" y="719.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,132,900,839 samples, 0.01%)</title><rect x="299.0" y="181" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="302.03" y="191.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,078,210,399 samples, 0.01%)</title><rect x="998.8" y="293" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1001.77" y="303.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (5,102,338,671 samples, 0.05%)</title><rect x="848.6" y="357" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="851.62" y="367.5" ></text>
</g>
<g >
<title>tag_hash (2,978,610,082 samples, 0.03%)</title><rect x="402.3" y="309" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="405.25" y="319.5" ></text>
</g>
<g >
<title>LockRelationOid (22,892,716,848 samples, 0.24%)</title><rect x="940.3" y="373" width="2.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="943.35" y="383.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (2,917,770,462 samples, 0.03%)</title><rect x="427.9" y="309" width="0.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="430.94" y="319.5" ></text>
</g>
<g >
<title>ProcessQuery (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="565" width="1.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="129.31" y="575.5" ></text>
</g>
<g >
<title>ExecProcNode (1,149,103,618,719 samples, 12.10%)</title><rect x="267.4" y="485" width="142.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="270.39" y="495.5" >ExecProcNode</text>
</g>
<g >
<title>PGSemaphoreLock (1,358,919,675 samples, 0.01%)</title><rect x="299.0" y="229" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="302.01" y="239.5" ></text>
</g>
<g >
<title>bms_copy (1,380,700,368 samples, 0.01%)</title><rect x="974.2" y="421" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="977.23" y="431.5" ></text>
</g>
<g >
<title>AllocSetFree (1,305,449,059 samples, 0.01%)</title><rect x="229.5" y="549" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="232.54" y="559.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (5,015,717,652 samples, 0.05%)</title><rect x="96.4" y="165" width="0.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="99.45" y="175.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (3,210,540,807 samples, 0.03%)</title><rect x="412.3" y="485" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="415.28" y="495.5" ></text>
</g>
<g >
<title>TupleDescAttr (919,882,187 samples, 0.01%)</title><rect x="829.7" y="277" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="832.74" y="287.5" ></text>
</g>
<g >
<title>psi_account_irqtime (6,360,636,705 samples, 0.07%)</title><rect x="166.5" y="341" width="0.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="169.52" y="351.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,543,182,330 samples, 0.04%)</title><rect x="438.5" y="341" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="441.48" y="351.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (4,979,302,012 samples, 0.05%)</title><rect x="814.2" y="453" width="0.6" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="817.22" y="463.5" ></text>
</g>
<g >
<title>TransactionTreeSetCommitTsData (837,088,473 samples, 0.01%)</title><rect x="480.7" y="501" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="483.66" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,169,656,453 samples, 0.01%)</title><rect x="1117.9" y="693" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1120.88" y="703.5" ></text>
</g>
<g >
<title>WalSndWakeupProcessRequests (5,725,415,242 samples, 0.06%)</title><rect x="497.8" y="485" width="0.7" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="500.83" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,611,241,905 samples, 0.03%)</title><rect x="969.9" y="325" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="972.87" y="335.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,048,745,353 samples, 0.01%)</title><rect x="917.0" y="373" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="920.02" y="383.5" ></text>
</g>
<g >
<title>pfree (1,190,594,485 samples, 0.01%)</title><rect x="348.9" y="373" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="351.89" y="383.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (2,245,959,022 samples, 0.02%)</title><rect x="55.8" y="757" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="58.84" y="767.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (2,413,723,776 samples, 0.03%)</title><rect x="870.0" y="437" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="872.97" y="447.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (1,634,232,700 samples, 0.02%)</title><rect x="804.3" y="549" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="807.35" y="559.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop (6,914,961,214 samples, 0.07%)</title><rect x="1051.0" y="485" width="0.9" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text  x="1054.03" y="495.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (1,220,476,765 samples, 0.01%)</title><rect x="125.8" y="277" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="128.76" y="287.5" ></text>
</g>
<g >
<title>LWLockRelease (1,077,392,055 samples, 0.01%)</title><rect x="101.6" y="181" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="104.61" y="191.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (132,798,454,723 samples, 1.40%)</title><rect x="297.0" y="277" width="16.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="299.97" y="287.5" ></text>
</g>
<g >
<title>base_yyparse (282,591,730,063 samples, 2.97%)</title><rect x="1085.5" y="757" width="35.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1088.53" y="767.5" >ba..</text>
</g>
<g >
<title>GetPrivateRefCount (906,288,249 samples, 0.01%)</title><rect x="407.4" y="277" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="410.39" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,431,936,811 samples, 0.02%)</title><rect x="425.0" y="293" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="428.02" y="303.5" ></text>
</g>
<g >
<title>hash_search (3,066,634,466 samples, 0.03%)</title><rect x="403.0" y="341" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="405.96" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (943,053,070 samples, 0.01%)</title><rect x="1055.1" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1058.10" y="415.5" ></text>
</g>
<g >
<title>SearchSysCache3 (5,020,673,404 samples, 0.05%)</title><rect x="1013.6" y="293" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1016.61" y="303.5" ></text>
</g>
<g >
<title>new_list (2,010,507,471 samples, 0.02%)</title><rect x="105.5" y="421" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="108.55" y="431.5" ></text>
</g>
<g >
<title>create_projection_plan (59,739,141,887 samples, 0.63%)</title><rect x="885.2" y="453" width="7.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="888.15" y="463.5" ></text>
</g>
<g >
<title>superuser_arg (920,329,266 samples, 0.01%)</title><rect x="1185.5" y="757" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1188.47" y="767.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (3,494,236,964 samples, 0.04%)</title><rect x="135.5" y="469" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="138.54" y="479.5" ></text>
</g>
<g >
<title>btgettuple (228,745,579,240 samples, 2.41%)</title><rect x="313.9" y="293" width="28.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="316.93" y="303.5" >bt..</text>
</g>
<g >
<title>do_futex (1,076,031,459 samples, 0.01%)</title><rect x="299.0" y="133" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="302.03" y="143.5" ></text>
</g>
<g >
<title>relation_open (15,236,568,419 samples, 0.16%)</title><rect x="447.8" y="405" width="1.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="450.82" y="415.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,924,490,995 samples, 0.04%)</title><rect x="1058.0" y="453" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1061.02" y="463.5" ></text>
</g>
<g >
<title>bms_del_members (831,957,813 samples, 0.01%)</title><rect x="880.5" y="469" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="883.50" y="479.5" ></text>
</g>
<g >
<title>examine_simple_variable (24,765,832,889 samples, 0.26%)</title><rect x="1031.6" y="229" width="3.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1034.63" y="239.5" ></text>
</g>
<g >
<title>StartReadBuffer (35,738,350,268 samples, 0.38%)</title><rect x="95.7" y="245" width="4.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="98.68" y="255.5" ></text>
</g>
<g >
<title>preprocess_expression (23,038,794,810 samples, 0.24%)</title><rect x="1050.7" y="501" width="2.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="1053.73" y="511.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,850,619,288 samples, 0.02%)</title><rect x="1144.3" y="757" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1147.30" y="767.5" ></text>
</g>
<g >
<title>table_open (16,262,042,898 samples, 0.17%)</title><rect x="1066.2" y="485" width="2.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1069.24" y="495.5" ></text>
</g>
<g >
<title>LWLockWakeup (2,049,657,852 samples, 0.02%)</title><rect x="478.1" y="421" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="481.09" y="431.5" ></text>
</g>
<g >
<title>palloc0 (23,616,822,836 samples, 0.25%)</title><rect x="1047.8" y="485" width="2.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1050.79" y="495.5" ></text>
</g>
<g >
<title>hash_search (3,535,381,227 samples, 0.04%)</title><rect x="943.4" y="357" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="946.36" y="367.5" ></text>
</g>
<g >
<title>new_list (1,655,044,967 samples, 0.02%)</title><rect x="914.8" y="453" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="917.80" y="463.5" ></text>
</g>
<g >
<title>BufferIsLockedByMeInMode (2,833,370,235 samples, 0.03%)</title><rect x="376.5" y="341" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="379.50" y="351.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (917,874,826 samples, 0.01%)</title><rect x="448.8" y="309" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="451.76" y="319.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,302,341,976 samples, 0.01%)</title><rect x="1134.9" y="693" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1137.90" y="703.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="485" width="1.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="129.31" y="495.5" ></text>
</g>
<g >
<title>wake_affine (1,515,448,089 samples, 0.02%)</title><rect x="205.4" y="293" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="208.42" y="303.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (4,187,136,202 samples, 0.04%)</title><rect x="349.8" y="373" width="0.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="352.78" y="383.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (5,933,331,688 samples, 0.06%)</title><rect x="1040.6" y="325" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1043.55" y="335.5" ></text>
</g>
<g >
<title>PinBufferForBlock (34,853,568,543 samples, 0.37%)</title><rect x="95.8" y="213" width="4.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="98.79" y="223.5" ></text>
</g>
<g >
<title>malloc (2,486,554,312 samples, 0.03%)</title><rect x="913.1" y="405" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="916.09" y="415.5" ></text>
</g>
<g >
<title>fmgr_info (3,769,143,627 samples, 0.04%)</title><rect x="1036.1" y="309" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1039.13" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,207,567,708 samples, 0.01%)</title><rect x="1015.7" y="277" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1018.70" y="287.5" ></text>
</g>
<g >
<title>InjectionPointRun (951,370,968 samples, 0.01%)</title><rect x="53.9" y="757" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="56.87" y="767.5" ></text>
</g>
<g >
<title>list_concat (2,792,624,588 samples, 0.03%)</title><rect x="976.6" y="437" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="979.56" y="447.5" ></text>
</g>
<g >
<title>bms_equal (1,060,221,788 samples, 0.01%)</title><rect x="983.8" y="421" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="986.78" y="431.5" ></text>
</g>
<g >
<title>RelationGetIndexList (3,152,636,723 samples, 0.03%)</title><rect x="401.2" y="389" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="404.19" y="399.5" ></text>
</g>
<g >
<title>AllocSetCheck (127,322,707,046 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.86" y="767.5" ></text>
</g>
<g >
<title>uint32_hash (1,078,869,119 samples, 0.01%)</title><rect x="833.1" y="373" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="836.13" y="383.5" ></text>
</g>
<g >
<title>get_typcollation (5,632,909,196 samples, 0.06%)</title><rect x="807.6" y="373" width="0.7" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="810.58" y="383.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (2,705,590,665 samples, 0.03%)</title><rect x="222.5" y="549" width="0.4" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="225.55" y="559.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTupleCommon (940,607,613 samples, 0.01%)</title><rect x="363.9" y="341" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="366.89" y="351.5" ></text>
</g>
<g >
<title>pgstat_report_activity (5,907,338,947 samples, 0.06%)</title><rect x="1071.1" y="581" width="0.7" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1074.11" y="591.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,096,043,251 samples, 0.03%)</title><rect x="452.1" y="325" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="455.14" y="335.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (872,590,880 samples, 0.01%)</title><rect x="223.8" y="485" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="226.76" y="495.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (884,781,725 samples, 0.01%)</title><rect x="95.7" y="165" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="98.68" y="175.5" ></text>
</g>
<g >
<title>lappend (2,280,877,247 samples, 0.02%)</title><rect x="885.7" y="421" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="888.73" y="431.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (828,740,485 samples, 0.01%)</title><rect x="1115.9" y="661" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1118.93" y="671.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,598,667,031 samples, 0.02%)</title><rect x="376.0" y="165" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="378.96" y="175.5" ></text>
</g>
<g >
<title>index_open (14,709,467,066 samples, 0.15%)</title><rect x="401.6" y="389" width="1.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="404.59" y="399.5" ></text>
</g>
<g >
<title>LWLockRelease (1,328,847,846 samples, 0.01%)</title><rect x="408.7" y="277" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="411.74" y="287.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (4,127,903,159 samples, 0.04%)</title><rect x="99.1" y="181" width="0.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="102.12" y="191.5" ></text>
</g>
<g >
<title>XLogInsertRecord (32,995,151,930 samples, 0.35%)</title><rect x="385.8" y="325" width="4.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="388.81" y="335.5" ></text>
</g>
<g >
<title>grouping_planner (1,128,905,494,125 samples, 11.88%)</title><rect x="907.1" y="501" width="140.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="910.13" y="511.5" >grouping_planner</text>
</g>
<g >
<title>ExecFindJunkAttributeInTlist (3,828,932,063 samples, 0.04%)</title><rect x="420.8" y="453" width="0.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="423.78" y="463.5" ></text>
</g>
<g >
<title>standard_planner (1,837,816,106 samples, 0.02%)</title><rect x="86.9" y="597" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="89.91" y="607.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,988,501,053 samples, 0.04%)</title><rect x="1036.8" y="309" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1039.83" y="319.5" ></text>
</g>
<g >
<title>index_open (1,278,451,898 samples, 0.01%)</title><rect x="1151.6" y="757" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1154.61" y="767.5" ></text>
</g>
<g >
<title>my_log2 (956,309,077 samples, 0.01%)</title><rect x="1063.4" y="421" width="0.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1066.36" y="431.5" ></text>
</g>
<g >
<title>examine_indexcol_variable (5,947,416,700 samples, 0.06%)</title><rect x="1009.8" y="309" width="0.7" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1012.77" y="319.5" ></text>
</g>
<g >
<title>sched_tick (863,800,687 samples, 0.01%)</title><rect x="757.4" y="405" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="760.45" y="415.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (7,406,415,808 samples, 0.08%)</title><rect x="1032.2" y="181" width="1.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1035.23" y="191.5" ></text>
</g>
<g >
<title>__futex_wait (931,266,045 samples, 0.01%)</title><rect x="475.6" y="341" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="478.59" y="351.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,798,078,534 samples, 0.02%)</title><rect x="395.2" y="293" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="398.19" y="303.5" ></text>
</g>
<g >
<title>TidQualFromRestrictInfoList (9,029,397,081 samples, 0.10%)</title><rect x="1024.3" y="389" width="1.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1027.25" y="399.5" ></text>
</g>
<g >
<title>exprType (858,194,850 samples, 0.01%)</title><rect x="445.6" y="373" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="448.57" y="383.5" ></text>
</g>
<g >
<title>pull_varnos_walker (3,967,863,747 samples, 0.04%)</title><rect x="967.2" y="341" width="0.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="970.18" y="351.5" ></text>
</g>
<g >
<title>set_next_task_idle (3,096,450,415 samples, 0.03%)</title><rect x="163.8" y="325" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="166.78" y="335.5" ></text>
</g>
<g >
<title>table_open (15,300,212,740 samples, 0.16%)</title><rect x="947.1" y="405" width="1.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="950.10" y="415.5" ></text>
</g>
<g >
<title>fix_indexqual_references (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="453" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="89.91" y="463.5" ></text>
</g>
<g >
<title>new_list (1,422,563,372 samples, 0.01%)</title><rect x="897.6" y="453" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="900.62" y="463.5" ></text>
</g>
<g >
<title>PostmasterMain (7,654,249,878,114 samples, 80.57%)</title><rect x="132.0" y="693" width="950.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="134.98" y="703.5" >PostmasterMain</text>
</g>
<g >
<title>XactLogCommitRecord (29,124,373,583 samples, 0.31%)</title><rect x="510.9" y="501" width="3.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="513.90" y="511.5" ></text>
</g>
<g >
<title>exec_simple_query (83,672,568,701 samples, 0.88%)</title><rect x="95.7" y="677" width="10.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="98.68" y="687.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (8,862,765,129 samples, 0.09%)</title><rect x="881.9" y="421" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="884.89" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (27,750,898,730 samples, 0.29%)</title><rect x="491.6" y="405" width="3.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="494.62" y="415.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (2,808,024,821 samples, 0.03%)</title><rect x="271.5" y="309" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="274.55" y="319.5" ></text>
</g>
<g >
<title>palloc0 (4,183,405,452 samples, 0.04%)</title><rect x="893.7" y="437" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="896.70" y="447.5" ></text>
</g>
<g >
<title>_int_free_merge_chunk (849,837,241 samples, 0.01%)</title><rect x="264.4" y="389" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="267.37" y="399.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4,551,604,086 samples, 0.05%)</title><rect x="832.6" y="373" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="835.56" y="383.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (883,852,755 samples, 0.01%)</title><rect x="168.4" y="341" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="171.39" y="351.5" ></text>
</g>
<g >
<title>table_close (1,581,829,822 samples, 0.02%)</title><rect x="946.9" y="405" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="949.90" y="415.5" ></text>
</g>
<g >
<title>palloc (1,264,553,553 samples, 0.01%)</title><rect x="963.1" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="966.09" y="351.5" ></text>
</g>
<g >
<title>lappend (2,665,577,687 samples, 0.03%)</title><rect x="975.5" y="421" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="978.47" y="431.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="517" width="3.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="105.66" y="527.5" ></text>
</g>
<g >
<title>secure_raw_read (73,350,805,755 samples, 0.77%)</title><rect x="178.1" y="517" width="9.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="181.14" y="527.5" ></text>
</g>
<g >
<title>pull_varnos_walker (4,018,937,062 samples, 0.04%)</title><rect x="973.4" y="325" width="0.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="976.43" y="335.5" ></text>
</g>
<g >
<title>ExecProject (1,086,451,118 samples, 0.01%)</title><rect x="45.6" y="757" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="48.63" y="767.5" ></text>
</g>
<g >
<title>table_close (1,700,509,930 samples, 0.02%)</title><rect x="237.6" y="469" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="240.56" y="479.5" ></text>
</g>
<g >
<title>hash_search (3,400,604,199 samples, 0.04%)</title><rect x="1012.3" y="261" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1015.30" y="271.5" ></text>
</g>
<g >
<title>GlobalVisTestFor (865,058,931 samples, 0.01%)</title><rect x="304.5" y="245" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="307.48" y="255.5" ></text>
</g>
<g >
<title>copyObjectImpl (1,309,060,774 samples, 0.01%)</title><rect x="1129.1" y="757" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1132.12" y="767.5" ></text>
</g>
<g >
<title>lappend (4,856,617,802 samples, 0.05%)</title><rect x="813.3" y="453" width="0.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="816.31" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,724,147,688 samples, 0.02%)</title><rect x="1148.5" y="549" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1151.50" y="559.5" ></text>
</g>
<g >
<title>newNode (2,701,393,903 samples, 0.03%)</title><rect x="990.0" y="373" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="992.98" y="383.5" ></text>
</g>
<g >
<title>BufTableHashCode (2,874,944,531 samples, 0.03%)</title><rect x="354.6" y="261" width="0.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="357.60" y="271.5" ></text>
</g>
<g >
<title>new_list (1,480,592,708 samples, 0.02%)</title><rect x="1053.4" y="421" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1056.40" y="431.5" ></text>
</g>
<g >
<title>clause_selectivity_ext (75,183,297,361 samples, 0.79%)</title><rect x="1028.0" y="357" width="9.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1031.01" y="367.5" ></text>
</g>
<g >
<title>tag_hash (7,039,126,029 samples, 0.07%)</title><rect x="867.6" y="421" width="0.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="870.55" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,587,773,483 samples, 0.02%)</title><rect x="976.2" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="979.24" y="415.5" ></text>
</g>
<g >
<title>ExecInitScanTupleSlot (11,453,686,602 samples, 0.12%)</title><rect x="446.0" y="421" width="1.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="448.95" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (855,142,278 samples, 0.01%)</title><rect x="920.2" y="453" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="923.21" y="463.5" ></text>
</g>
<g >
<title>enqueue_task_fair (8,433,475,573 samples, 0.09%)</title><rect x="206.5" y="293" width="1.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="209.46" y="303.5" ></text>
</g>
<g >
<title>smgrnblocks (851,301,489 samples, 0.01%)</title><rect x="1183.7" y="757" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1186.65" y="767.5" ></text>
</g>
<g >
<title>_bt_compare (1,409,295,037 samples, 0.01%)</title><rect x="128.0" y="245" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="130.99" y="255.5" ></text>
</g>
<g >
<title>pq_sendbyte (1,944,619,695 samples, 0.02%)</title><rect x="190.1" y="581" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="193.13" y="591.5" ></text>
</g>
<g >
<title>ExecInitResultTypeTL (4,308,142,915 samples, 0.05%)</title><rect x="456.4" y="453" width="0.5" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="459.36" y="463.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (4,224,794,037 samples, 0.04%)</title><rect x="86.4" y="213" width="0.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="89.39" y="223.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,227,094,015 samples, 0.01%)</title><rect x="369.9" y="245" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="372.93" y="255.5" ></text>
</g>
<g >
<title>list_free_private (1,511,840,648 samples, 0.02%)</title><rect x="254.3" y="405" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="257.34" y="415.5" ></text>
</g>
<g >
<title>add_rtes_to_flat_rtable (20,556,580,195 samples, 0.22%)</title><rect x="895.8" y="501" width="2.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="898.77" y="511.5" ></text>
</g>
<g >
<title>_copy_from_iter (1,585,594,409 samples, 0.02%)</title><rect x="196.3" y="389" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="199.31" y="399.5" ></text>
</g>
<g >
<title>index_close (2,364,740,312 samples, 0.02%)</title><rect x="240.7" y="421" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="243.75" y="431.5" ></text>
</g>
<g >
<title>ExecEndPlan (113,465,702,251 samples, 1.19%)</title><rect x="237.3" y="501" width="14.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="240.29" y="511.5" ></text>
</g>
<g >
<title>ExecIndexScan (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="453" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1161.90" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,181,252,467 samples, 0.01%)</title><rect x="433.0" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="436.04" y="335.5" ></text>
</g>
<g >
<title>RelationGetIndexList (4,402,743,062 samples, 0.05%)</title><rect x="930.9" y="405" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="933.93" y="415.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableFullXid (2,665,785,873 samples, 0.03%)</title><rect x="305.7" y="213" width="0.4" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="308.74" y="223.5" ></text>
</g>
<g >
<title>ReadBuffer_common (11,333,614,982 samples, 0.12%)</title><rect x="85.0" y="245" width="1.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="87.98" y="255.5" ></text>
</g>
<g >
<title>BufferIsLockedByMe (1,885,262,266 samples, 0.02%)</title><rect x="308.2" y="181" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="311.16" y="191.5" ></text>
</g>
<g >
<title>AllocSetFree (1,271,091,921 samples, 0.01%)</title><rect x="403.5" y="341" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="406.52" y="351.5" ></text>
</g>
<g >
<title>RelationGetIndexExpressions (1,069,679,847 samples, 0.01%)</title><rect x="399.8" y="373" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="402.77" y="383.5" ></text>
</g>
<g >
<title>hash_bytes (2,435,176,388 samples, 0.03%)</title><rect x="824.4" y="341" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="827.42" y="351.5" ></text>
</g>
<g >
<title>table_close (2,610,400,400 samples, 0.03%)</title><rect x="866.4" y="517" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="869.45" y="527.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="565" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1161.90" y="575.5" ></text>
</g>
<g >
<title>DynaHashAlloc (2,096,916,443 samples, 0.02%)</title><rect x="1065.3" y="405" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1068.31" y="415.5" ></text>
</g>
<g >
<title>preprocess_expression (1,203,969,060 samples, 0.01%)</title><rect x="126.2" y="517" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="129.16" y="527.5" ></text>
</g>
<g >
<title>getRTEPermissionInfo (1,601,126,352 samples, 0.02%)</title><rect x="857.6" y="325" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="860.57" y="335.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (110,051,606,741 samples, 1.16%)</title><rect x="161.2" y="389" width="13.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="164.20" y="399.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (2,837,248,905 samples, 0.03%)</title><rect x="56.3" y="757" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="59.26" y="767.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,929,809,315 samples, 0.02%)</title><rect x="1135.1" y="757" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1138.06" y="767.5" ></text>
</g>
<g >
<title>CreateTemplateTupleDesc (2,652,040,082 samples, 0.03%)</title><rect x="456.5" y="405" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="459.51" y="415.5" ></text>
</g>
<g >
<title>set_cheapest (4,543,117,010 samples, 0.05%)</title><rect x="984.0" y="421" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="986.98" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,356,624,300 samples, 0.01%)</title><rect x="1117.5" y="693" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1120.54" y="703.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,361,892,573 samples, 0.04%)</title><rect x="838.7" y="325" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="841.72" y="335.5" ></text>
</g>
<g >
<title>bms_add_member (2,159,335,261 samples, 0.02%)</title><rect x="973.5" y="309" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="976.54" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (12,660,316,483 samples, 0.13%)</title><rect x="1064.1" y="453" width="1.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1067.07" y="463.5" ></text>
</g>
<g >
<title>XLogCheckBufferNeedsBackup (3,002,059,900 samples, 0.03%)</title><rect x="385.1" y="341" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="388.10" y="351.5" ></text>
</g>
<g >
<title>Int32GetDatum (2,898,977,929 samples, 0.03%)</title><rect x="54.0" y="757" width="0.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="57.04" y="767.5" ></text>
</g>
<g >
<title>TransactionIdSetStatusBit (3,929,632,614 samples, 0.04%)</title><rect x="480.1" y="437" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="483.14" y="447.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (2,964,597,659 samples, 0.03%)</title><rect x="972.4" y="341" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="975.41" y="351.5" ></text>
</g>
<g >
<title>sem_wait@@GLIBC_2.34 (1,204,923,624 samples, 0.01%)</title><rect x="490.8" y="453" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text  x="493.79" y="463.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,481,567,100 samples, 0.03%)</title><rect x="882.7" y="373" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="885.68" y="383.5" ></text>
</g>
<g >
<title>palloc0 (1,499,503,398 samples, 0.02%)</title><rect x="834.7" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="837.74" y="447.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,465,355,192 samples, 0.04%)</title><rect x="367.8" y="213" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="370.80" y="223.5" ></text>
</g>
<g >
<title>subquery_planner (1,633,918,386 samples, 0.02%)</title><rect x="126.1" y="549" width="0.2" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text  x="129.10" y="559.5" ></text>
</g>
<g >
<title>relation_close (1,588,282,834 samples, 0.02%)</title><rect x="237.6" y="453" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="240.57" y="463.5" ></text>
</g>
<g >
<title>pfree (5,177,502,547 samples, 0.05%)</title><rect x="977.5" y="421" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="980.53" y="431.5" ></text>
</g>
<g >
<title>get_timeout_active (847,979,845 samples, 0.01%)</title><rect x="1077.7" y="549" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1080.66" y="559.5" ></text>
</g>
<g >
<title>palloc (2,671,086,463 samples, 0.03%)</title><rect x="1115.2" y="693" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1118.15" y="703.5" ></text>
</g>
<g >
<title>lappend (2,686,926,965 samples, 0.03%)</title><rect x="1014.3" y="309" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1017.26" y="319.5" ></text>
</g>
<g >
<title>transformTargetList (64,954,483,950 samples, 0.68%)</title><rect x="835.0" y="469" width="8.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="838.02" y="479.5" ></text>
</g>
<g >
<title>palloc (3,141,734,510 samples, 0.03%)</title><rect x="945.2" y="405" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="948.17" y="415.5" ></text>
</g>
<g >
<title>IndexScanEnd (3,512,416,362 samples, 0.04%)</title><rect x="241.3" y="405" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="244.29" y="415.5" ></text>
</g>
<g >
<title>exprType (1,618,498,098 samples, 0.02%)</title><rect x="1034.7" y="229" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1037.71" y="239.5" ></text>
</g>
<g >
<title>planner (923,437,082 samples, 0.01%)</title><rect x="1172.9" y="757" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1175.88" y="767.5" ></text>
</g>
<g >
<title>get_relation_notnullatts (65,406,834,547 samples, 0.69%)</title><rect x="1057.7" y="485" width="8.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1060.72" y="495.5" ></text>
</g>
<g >
<title>palloc (1,248,900,354 samples, 0.01%)</title><rect x="1014.4" y="277" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1017.42" y="287.5" ></text>
</g>
<g >
<title>pgstat_count_slru_blocks_hit (1,237,661,849 samples, 0.01%)</title><rect x="309.7" y="149" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="312.70" y="159.5" ></text>
</g>
<g >
<title>available_idle_cpu (5,264,083,379 samples, 0.06%)</title><rect x="204.8" y="245" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="207.77" y="255.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_object (1,440,944,497 samples, 0.02%)</title><rect x="99.9" y="165" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="102.94" y="175.5" ></text>
</g>
<g >
<title>shmem_file_write_iter (42,762,366,601 samples, 0.45%)</title><rect x="501.5" y="389" width="5.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="504.49" y="399.5" ></text>
</g>
<g >
<title>InjectionPointCacheRefresh (4,105,326,117 samples, 0.04%)</title><rect x="352.3" y="357" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="355.31" y="367.5" ></text>
</g>
<g >
<title>assign_collations_walker (21,356,093,330 samples, 0.22%)</title><rect x="809.4" y="373" width="2.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="812.36" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,029,136,620 samples, 0.01%)</title><rect x="1057.1" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1060.11" y="415.5" ></text>
</g>
<g >
<title>palloc0 (5,059,985,914 samples, 0.05%)</title><rect x="952.3" y="389" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="955.30" y="399.5" ></text>
</g>
<g >
<title>detoast_attr (1,020,895,804 samples, 0.01%)</title><rect x="1132.2" y="757" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1135.19" y="767.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (2,294,753,459 samples, 0.02%)</title><rect x="481.7" y="437" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="484.73" y="447.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (68,873,321,630 samples, 0.72%)</title><rect x="482.4" y="469" width="8.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="485.43" y="479.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,727,597,899 samples, 0.05%)</title><rect x="963.6" y="373" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="966.59" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,157,020,137 samples, 0.01%)</title><rect x="369.8" y="229" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="372.77" y="239.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (2,849,034,554 samples, 0.03%)</title><rect x="258.6" y="421" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="261.59" y="431.5" ></text>
</g>
<g >
<title>hash_search (3,388,248,583 samples, 0.04%)</title><rect x="449.2" y="373" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="452.25" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,073,799,613 samples, 0.01%)</title><rect x="358.4" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="361.40" y="351.5" ></text>
</g>
<g >
<title>subquery_planner (1,343,590,676,417 samples, 14.14%)</title><rect x="904.2" y="517" width="166.9" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text  x="907.18" y="527.5" >subquery_planner</text>
</g>
<g >
<title>BuildIndexInfo (13,659,638,501 samples, 0.14%)</title><rect x="399.5" y="389" width="1.7" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="402.49" y="399.5" ></text>
</g>
<g >
<title>index_getnext_slot (17,089,892,659 samples, 0.18%)</title><rect x="282.6" y="341" width="2.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="285.55" y="351.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,531,282,644 samples, 0.02%)</title><rect x="98.4" y="165" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="101.42" y="175.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (16,929,942,608 samples, 0.18%)</title><rect x="134.0" y="549" width="2.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="136.99" y="559.5" ></text>
</g>
<g >
<title>palloc0 (1,722,445,640 samples, 0.02%)</title><rect x="861.7" y="501" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="864.72" y="511.5" ></text>
</g>
<g >
<title>SetHintBits (3,591,410,447 samples, 0.04%)</title><rect x="1147.5" y="693" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1150.49" y="703.5" ></text>
</g>
<g >
<title>AssertBufferLocksPermitCatalogRead (913,257,175 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.43" y="751.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (2,288,764,440 samples, 0.02%)</title><rect x="86.6" y="181" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="89.63" y="191.5" ></text>
</g>
<g >
<title>ReadBuffer (35,738,350,268 samples, 0.38%)</title><rect x="95.7" y="293" width="4.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="98.68" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (4,050,438,946 samples, 0.04%)</title><rect x="1133.9" y="757" width="0.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1136.85" y="767.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,347,858,175 samples, 0.01%)</title><rect x="406.2" y="373" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="409.20" y="383.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,800,553,780 samples, 0.02%)</title><rect x="115.8" y="741" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="118.76" y="751.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,979,965,542 samples, 0.04%)</title><rect x="795.6" y="501" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="798.63" y="511.5" ></text>
</g>
<g >
<title>__futex_wait (1,080,315,050 samples, 0.01%)</title><rect x="353.6" y="213" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="356.57" y="223.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,027,594,859 samples, 0.02%)</title><rect x="1115.2" y="677" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1118.22" y="687.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,473,997,032 samples, 0.02%)</title><rect x="377.6" y="325" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="380.61" y="335.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (1,062,573,431 samples, 0.01%)</title><rect x="1123.1" y="741" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1126.09" y="751.5" ></text>
</g>
<g >
<title>__futex_wait (879,038,932 samples, 0.01%)</title><rect x="370.0" y="133" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="372.95" y="143.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,581,003,741 samples, 0.03%)</title><rect x="942.5" y="325" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="945.46" y="335.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (3,105,372,898 samples, 0.03%)</title><rect x="989.5" y="357" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="992.51" y="367.5" ></text>
</g>
<g >
<title>makeVar (3,978,205,829 samples, 0.04%)</title><rect x="921.7" y="453" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="924.74" y="463.5" ></text>
</g>
<g >
<title>ExecGetJunkAttribute (921,228,125 samples, 0.01%)</title><rect x="269.0" y="437" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="271.95" y="447.5" ></text>
</g>
<g >
<title>PreCommit_Portals (9,675,377,423 samples, 0.10%)</title><rect x="472.9" y="517" width="1.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text  x="475.88" y="527.5" ></text>
</g>
<g >
<title>pg_class_aclmask (9,462,703,435 samples, 0.10%)</title><rect x="414.8" y="453" width="1.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="417.84" y="463.5" ></text>
</g>
<g >
<title>hash_search (6,616,736,326 samples, 0.07%)</title><rect x="868.5" y="453" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="871.45" y="463.5" ></text>
</g>
<g >
<title>fix_indexqual_clause (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="405" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="128.92" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,059,541,026 samples, 0.02%)</title><rect x="1168.4" y="757" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1171.38" y="767.5" ></text>
</g>
<g >
<title>match_foreign_keys_to_quals (1,065,602,493 samples, 0.01%)</title><rect x="1161.5" y="757" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1164.50" y="767.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,130,840,438 samples, 0.01%)</title><rect x="1033.7" y="133" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1036.65" y="143.5" ></text>
</g>
<g >
<title>SimpleLruGetBankLock (1,248,430,212 samples, 0.01%)</title><rect x="478.4" y="453" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="481.44" y="463.5" ></text>
</g>
<g >
<title>ExecScanFetch (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="405" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1161.90" y="415.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (861,401,618 samples, 0.01%)</title><rect x="1149.7" y="677" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="1152.71" y="687.5" ></text>
</g>
<g >
<title>newNode (2,914,703,702 samples, 0.03%)</title><rect x="815.3" y="437" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="818.32" y="447.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,637,885,536 samples, 0.04%)</title><rect x="1038.2" y="309" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1041.22" y="319.5" ></text>
</g>
<g >
<title>strcmp@plt (857,777,509 samples, 0.01%)</title><rect x="858.3" y="341" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="861.27" y="351.5" ></text>
</g>
<g >
<title>RewriteQuery (1,285,029,963 samples, 0.01%)</title><rect x="93.3" y="757" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="96.32" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,243,767,671 samples, 0.01%)</title><rect x="462.0" y="485" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="465.03" y="495.5" ></text>
</g>
<g >
<title>__schedule (1,025,875,864 samples, 0.01%)</title><rect x="1148.5" y="437" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1151.51" y="447.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (9,190,831,169 samples, 0.10%)</title><rect x="902.3" y="389" width="1.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="905.29" y="399.5" ></text>
</g>
<g >
<title>ReadBuffer (2,510,786,482 samples, 0.03%)</title><rect x="125.2" y="245" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="128.17" y="255.5" ></text>
</g>
<g >
<title>CheckCmdReplicaIdentity (876,009,001 samples, 0.01%)</title><rect x="38.2" y="757" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="41.19" y="767.5" ></text>
</g>
<g >
<title>PageAddItemExtended (2,666,092,026 samples, 0.03%)</title><rect x="81.0" y="757" width="0.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="84.02" y="767.5" ></text>
</g>
<g >
<title>pick_task_fair (2,563,077,922 samples, 0.03%)</title><rect x="162.5" y="309" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="165.50" y="319.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (19,975,917,919 samples, 0.21%)</title><rect x="339.4" y="245" width="2.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="342.44" y="255.5" ></text>
</g>
<g >
<title>XLogBytePosToEndRecPtr (1,047,573,834 samples, 0.01%)</title><rect x="497.1" y="469" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="500.11" y="479.5" ></text>
</g>
<g >
<title>create_index_paths (1,748,426,209 samples, 0.02%)</title><rect x="1130.1" y="757" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1133.09" y="767.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,070,284,669 samples, 0.01%)</title><rect x="298.6" y="229" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="301.65" y="239.5" ></text>
</g>
<g >
<title>ExecAssignScanProjectionInfo (80,949,909,224 samples, 0.85%)</title><rect x="423.4" y="421" width="10.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="426.43" y="431.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,652,768,482 samples, 0.02%)</title><rect x="1012.3" y="245" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1015.33" y="255.5" ></text>
</g>
<g >
<title>avg_vruntime (1,807,248,671 samples, 0.02%)</title><rect x="172.5" y="261" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="175.53" y="271.5" ></text>
</g>
<g >
<title>lappend (2,702,248,037 samples, 0.03%)</title><rect x="919.5" y="469" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="922.50" y="479.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,250,791,968 samples, 0.01%)</title><rect x="1060.7" y="453" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1063.75" y="463.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (1,131,896,952 samples, 0.01%)</title><rect x="508.6" y="421" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="511.62" y="431.5" ></text>
</g>
<g >
<title>palloc0 (2,136,938,649 samples, 0.02%)</title><rect x="295.7" y="277" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="298.73" y="287.5" ></text>
</g>
<g >
<title>palloc (1,193,024,645 samples, 0.01%)</title><rect x="955.8" y="277" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="958.79" y="287.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (834,284,235 samples, 0.01%)</title><rect x="340.4" y="181" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="343.36" y="191.5" ></text>
</g>
<g >
<title>secure_write (153,938,505,102 samples, 1.62%)</title><rect x="190.8" y="533" width="19.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="193.81" y="543.5" ></text>
</g>
<g >
<title>CheckValidResultRel (9,379,171,006 samples, 0.10%)</title><rect x="419.2" y="453" width="1.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="422.19" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (62,401,311,695 samples, 0.66%)</title><rect x="482.9" y="405" width="7.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="485.92" y="415.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,274,505,317 samples, 0.02%)</title><rect x="416.1" y="453" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="419.08" y="463.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (1,358,461,040 samples, 0.01%)</title><rect x="460.9" y="453" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="463.87" y="463.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,158,744,486 samples, 0.02%)</title><rect x="927.5" y="421" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="930.55" y="431.5" ></text>
</g>
<g >
<title>select_idle_core.isra.0 (10,636,862,659 samples, 0.11%)</title><rect x="204.1" y="261" width="1.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="207.10" y="271.5" ></text>
</g>
<g >
<title>palloc0 (2,089,964,897 samples, 0.02%)</title><rect x="919.9" y="453" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="922.91" y="463.5" ></text>
</g>
<g >
<title>BufTableHashCode (3,920,005,074 samples, 0.04%)</title><rect x="407.7" y="277" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="410.74" y="287.5" ></text>
</g>
<g >
<title>pairingheap_remove (1,499,436,575 samples, 0.02%)</title><rect x="460.9" y="469" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="463.85" y="479.5" ></text>
</g>
<g >
<title>ExecInterpExpr (8,895,610,604 samples, 0.09%)</title><rect x="270.8" y="357" width="1.1" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="273.79" y="367.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,459,245,168 samples, 0.05%)</title><rect x="865.7" y="453" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="868.74" y="463.5" ></text>
</g>
<g >
<title>newNode (3,356,112,656 samples, 0.04%)</title><rect x="441.0" y="405" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="444.02" y="415.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,111,364,764 samples, 0.01%)</title><rect x="1013.5" y="293" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1016.47" y="303.5" ></text>
</g>
<g >
<title>newNode (2,543,206,963 samples, 0.03%)</title><rect x="914.4" y="453" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="917.43" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,043,452,134 samples, 0.02%)</title><rect x="990.9" y="309" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="993.94" y="319.5" ></text>
</g>
<g >
<title>GlobalVisUpdate (1,581,039,342 samples, 0.02%)</title><rect x="312.4" y="213" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text  x="315.37" y="223.5" ></text>
</g>
<g >
<title>ProcessClientWriteInterrupt (3,487,741,602 samples, 0.04%)</title><rect x="191.1" y="517" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="194.09" y="527.5" ></text>
</g>
<g >
<title>sched_tick (1,651,809,250 samples, 0.02%)</title><rect x="795.8" y="405" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="798.85" y="415.5" ></text>
</g>
<g >
<title>copyObjectImpl (11,519,097,519 samples, 0.12%)</title><rect x="951.6" y="437" width="1.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="954.60" y="447.5" ></text>
</g>
<g >
<title>_bt_check_natts (1,833,667,383 samples, 0.02%)</title><rect x="339.1" y="213" width="0.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text  x="342.13" y="223.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,090,849,003 samples, 0.01%)</title><rect x="1070.8" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1073.79" y="447.5" ></text>
</g>
<g >
<title>UnlockRelationId (9,114,444,285 samples, 0.10%)</title><rect x="238.7" y="437" width="1.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="241.66" y="447.5" ></text>
</g>
<g >
<title>ForEachLWLockHeldByMe (831,335,150 samples, 0.01%)</title><rect x="47.7" y="757" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="50.66" y="767.5" ></text>
</g>
<g >
<title>GrantLockLocal (1,086,331,687 samples, 0.01%)</title><rect x="941.4" y="341" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="944.37" y="351.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (7,886,371,088 samples, 0.08%)</title><rect x="276.0" y="405" width="1.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="278.97" y="415.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (805,165,882 samples, 0.01%)</title><rect x="808.1" y="309" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="811.05" y="319.5" ></text>
</g>
<g >
<title>index_getattr (3,262,946,556 samples, 0.03%)</title><rect x="124.8" y="245" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="127.77" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,242,631,238 samples, 0.01%)</title><rect x="395.3" y="277" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="398.26" y="287.5" ></text>
</g>
<g >
<title>ExecBSUpdateTriggers (1,019,362,941 samples, 0.01%)</title><rect x="42.0" y="757" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="44.95" y="767.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,189,829,023 samples, 0.01%)</title><rect x="125.6" y="213" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="128.62" y="223.5" ></text>
</g>
<g >
<title>uint32_hash (1,052,820,281 samples, 0.01%)</title><rect x="1068.1" y="421" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1071.08" y="431.5" ></text>
</g>
<g >
<title>cost_qual_eval_node (9,461,220,071 samples, 0.10%)</title><rect x="1045.1" y="469" width="1.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1048.12" y="479.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (5,136,436,407 samples, 0.05%)</title><rect x="851.1" y="357" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="854.09" y="367.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="325" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="128.92" y="335.5" ></text>
</g>
<g >
<title>WaitEventSetWaitBlock (180,303,081,918 samples, 1.90%)</title><rect x="155.4" y="501" width="22.4" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="158.39" y="511.5" >W..</text>
</g>
<g >
<title>clause_selectivity_ext (1,757,677,062 samples, 0.02%)</title><rect x="1011.3" y="261" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1014.30" y="271.5" ></text>
</g>
<g >
<title>IsBinaryTidClause (3,218,707,837 samples, 0.03%)</title><rect x="1024.8" y="341" width="0.4" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="1027.83" y="351.5" ></text>
</g>
<g >
<title>bms_add_member (1,756,146,984 samples, 0.02%)</title><rect x="897.2" y="469" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="900.21" y="479.5" ></text>
</g>
<g >
<title>is_opclause (2,055,225,190 samples, 0.02%)</title><rect x="1153.2" y="757" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="1156.23" y="767.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (900,990,722 samples, 0.01%)</title><rect x="1175.6" y="757" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="1178.56" y="767.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (3,067,127,739 samples, 0.03%)</title><rect x="460.7" y="517" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="463.66" y="527.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (12,786,574,773 samples, 0.13%)</title><rect x="252.0" y="453" width="1.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="254.97" y="463.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,667,430,260 samples, 0.05%)</title><rect x="1051.3" y="421" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1054.30" y="431.5" ></text>
</g>
<g >
<title>palloc (1,117,422,828 samples, 0.01%)</title><rect x="105.6" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="108.63" y="415.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (8,616,254,190 samples, 0.09%)</title><rect x="367.4" y="293" width="1.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="370.44" y="303.5" ></text>
</g>
<g >
<title>remove_useless_self_joins (1,478,075,117 samples, 0.02%)</title><rect x="1176.5" y="757" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1179.49" y="767.5" ></text>
</g>
<g >
<title>ReleaseCatCache (2,858,182,690 samples, 0.03%)</title><rect x="825.6" y="341" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="828.64" y="351.5" ></text>
</g>
<g >
<title>smgrDoPendingSyncs (1,536,521,933 samples, 0.02%)</title><rect x="530.6" y="517" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="533.60" y="527.5" ></text>
</g>
<g >
<title>clauselist_selectivity (2,414,353,957 samples, 0.03%)</title><rect x="1011.2" y="293" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1014.24" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,527,539,068 samples, 0.02%)</title><rect x="700.3" y="517" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="703.34" y="527.5" ></text>
</g>
<g >
<title>add_tabstat_xact_level (8,149,466,275 samples, 0.09%)</title><rect x="394.5" y="325" width="1.0" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="397.48" y="335.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (1,036,319,413 samples, 0.01%)</title><rect x="820.6" y="405" width="0.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="823.56" y="415.5" ></text>
</g>
<g >
<title>ReadBufferExtended (35,738,350,268 samples, 0.38%)</title><rect x="95.7" y="277" width="4.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="98.68" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_futex (939,032,409 samples, 0.01%)</title><rect x="369.9" y="181" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="372.95" y="191.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (985,418,336 samples, 0.01%)</title><rect x="370.2" y="197" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="373.23" y="207.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,357,235,434 samples, 0.02%)</title><rect x="1115.8" y="677" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1118.80" y="687.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (42,260,924,630 samples, 0.44%)</title><rect x="324.6" y="261" width="5.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="327.58" y="271.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (882,247,439 samples, 0.01%)</title><rect x="42.9" y="757" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="45.90" y="767.5" ></text>
</g>
<g >
<title>simplify_function (1,150,244,547 samples, 0.01%)</title><rect x="1173.6" y="645" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1176.62" y="655.5" ></text>
</g>
<g >
<title>ServerLoop (7,654,249,878,114 samples, 80.57%)</title><rect x="132.0" y="677" width="950.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="134.98" y="687.5" >ServerLoop</text>
</g>
<g >
<title>BufferIsPermanent (1,085,533,439 samples, 0.01%)</title><rect x="1147.5" y="677" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1150.49" y="687.5" ></text>
</g>
<g >
<title>uint32_hash (1,267,514,501 samples, 0.01%)</title><rect x="454.3" y="357" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="457.26" y="367.5" ></text>
</g>
<g >
<title>PortalDefineQuery (1,561,070,689 samples, 0.02%)</title><rect x="224.7" y="581" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="227.65" y="591.5" ></text>
</g>
<g >
<title>HeapTupleIsSurelyDead (6,319,342,600 samples, 0.07%)</title><rect x="305.4" y="245" width="0.8" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="308.39" y="255.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple_internal (2,248,056,616 samples, 0.02%)</title><rect x="271.6" y="277" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="274.61" y="287.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="581" width="2.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="87.32" y="591.5" ></text>
</g>
<g >
<title>palloc (1,480,616,207 samples, 0.02%)</title><rect x="275.2" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="278.17" y="383.5" ></text>
</g>
<g >
<title>CreateExprContext (10,720,407,354 samples, 0.11%)</title><rect x="422.1" y="405" width="1.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="425.10" y="415.5" ></text>
</g>
<g >
<title>ExecutorRun (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="597" width="2.6" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="87.32" y="607.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,462,793,306 samples, 0.02%)</title><rect x="911.4" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="914.40" y="431.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (2,873,574,301 samples, 0.03%)</title><rect x="1047.0" y="389" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1049.98" y="399.5" ></text>
</g>
<g >
<title>get_hash_entry (1,278,846,436 samples, 0.01%)</title><rect x="217.0" y="533" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="220.00" y="543.5" ></text>
</g>
<g >
<title>hash_bytes (2,926,031,216 samples, 0.03%)</title><rect x="239.4" y="373" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="242.42" y="383.5" ></text>
</g>
<g >
<title>heapam_tuple_update (1,900,194,037 samples, 0.02%)</title><rect x="1150.9" y="757" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1153.91" y="767.5" ></text>
</g>
<g >
<title>tlist_matches_tupdesc (1,273,436,538 samples, 0.01%)</title><rect x="433.3" y="389" width="0.2" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text  x="436.33" y="399.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (853,335,304 samples, 0.01%)</title><rect x="458.9" y="405" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="461.95" y="415.5" ></text>
</g>
<g >
<title>pull_varnos (9,276,758,413 samples, 0.10%)</title><rect x="972.8" y="405" width="1.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="975.78" y="415.5" ></text>
</g>
<g >
<title>raw_parser (24,091,795,515 samples, 0.25%)</title><rect x="871.0" y="565" width="3.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="873.97" y="575.5" ></text>
</g>
<g >
<title>tag_hash (4,028,218,010 samples, 0.04%)</title><rect x="947.6" y="309" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="950.56" y="319.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (3,032,536,838 samples, 0.03%)</title><rect x="263.6" y="389" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="266.61" y="399.5" ></text>
</g>
<g >
<title>ReleaseCatCacheListWithOwner (1,343,227,099 samples, 0.01%)</title><rect x="961.5" y="357" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="964.50" y="367.5" ></text>
</g>
<g >
<title>newNode (6,940,980,472 samples, 0.07%)</title><rect x="412.7" y="485" width="0.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="415.72" y="495.5" ></text>
</g>
<g >
<title>generate_bitmap_or_paths (883,946,251 samples, 0.01%)</title><rect x="1140.3" y="757" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1143.34" y="767.5" ></text>
</g>
<g >
<title>LWLockRelease (1,682,077,661 samples, 0.02%)</title><rect x="513.5" y="421" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="516.54" y="431.5" ></text>
</g>
<g >
<title>LockHeldByMe (6,472,065,685 samples, 0.07%)</title><rect x="862.5" y="453" width="0.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="865.51" y="463.5" ></text>
</g>
<g >
<title>dlist_init (1,515,478,741 samples, 0.02%)</title><rect x="1132.8" y="757" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1135.83" y="767.5" ></text>
</g>
<g >
<title>deconstruct_recurse (27,350,000,172 samples, 0.29%)</title><rect x="973.9" y="453" width="3.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="976.95" y="463.5" ></text>
</g>
<g >
<title>oper (33,790,488,937 samples, 0.36%)</title><rect x="850.0" y="405" width="4.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="853.02" y="415.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple_internal (6,103,149,002 samples, 0.06%)</title><rect x="291.0" y="213" width="0.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="294.04" y="223.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (1,203,778,135 samples, 0.01%)</title><rect x="302.7" y="133" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="305.74" y="143.5" ></text>
</g>
<g >
<title>tag_hash (2,538,361,496 samples, 0.03%)</title><rect x="824.4" y="357" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="827.41" y="367.5" ></text>
</g>
<g >
<title>_bt_search (15,558,409,019 samples, 0.16%)</title><rect x="85.0" y="325" width="1.9" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="87.98" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,711,003,896 samples, 0.02%)</title><rect x="934.8" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="937.83" y="351.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,877,611,726 samples, 0.04%)</title><rect x="963.7" y="341" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="966.70" y="351.5" ></text>
</g>
<g >
<title>SetHintBits (8,169,091,049 samples, 0.09%)</title><rect x="307.6" y="213" width="1.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="310.58" y="223.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,177,298,718 samples, 0.04%)</title><rect x="807.8" y="325" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="810.76" y="335.5" ></text>
</g>
<g >
<title>AllocSetFree (4,230,157,226 samples, 0.04%)</title><rect x="28.8" y="757" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="31.81" y="767.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,140,081,123 samples, 0.01%)</title><rect x="271.7" y="245" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="274.73" y="255.5" ></text>
</g>
<g >
<title>assign_collations_walker (2,783,200,458 samples, 0.03%)</title><rect x="807.2" y="341" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="810.21" y="351.5" ></text>
</g>
<g >
<title>palloc (1,860,637,968 samples, 0.02%)</title><rect x="345.7" y="357" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="348.67" y="367.5" ></text>
</g>
<g >
<title>ExecScanExtended (24,353,337,778 samples, 0.26%)</title><rect x="281.7" y="389" width="3.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="284.70" y="399.5" ></text>
</g>
<g >
<title>create_lateral_join_info (1,199,866,302 samples, 0.01%)</title><rect x="1130.4" y="757" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1133.44" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,031,542,365 samples, 0.01%)</title><rect x="897.9" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="900.91" y="431.5" ></text>
</g>
<g >
<title>func_volatile (6,131,590,802 samples, 0.06%)</title><rect x="959.3" y="309" width="0.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="962.34" y="319.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,822,761,138 samples, 0.02%)</title><rect x="973.6" y="293" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="976.58" y="303.5" ></text>
</g>
<g >
<title>sentinel_ok (906,066,789 samples, 0.01%)</title><rect x="264.0" y="389" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="267.02" y="399.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (6,181,886,718 samples, 0.07%)</title><rect x="432.6" y="373" width="0.7" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="435.55" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,168,536,776 samples, 0.04%)</title><rect x="932.4" y="309" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="935.43" y="319.5" ></text>
</g>
<g >
<title>palloc (1,445,386,929 samples, 0.02%)</title><rect x="872.5" y="501" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="875.49" y="511.5" ></text>
</g>
<g >
<title>tag_hash (2,500,998,837 samples, 0.03%)</title><rect x="96.1" y="149" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="99.12" y="159.5" ></text>
</g>
<g >
<title>bms_num_members (972,660,857 samples, 0.01%)</title><rect x="965.9" y="373" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="968.88" y="383.5" ></text>
</g>
<g >
<title>AllocSetCheck (5,435,251,852 samples, 0.06%)</title><rect x="467.9" y="453" width="0.7" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="470.90" y="463.5" ></text>
</g>
<g >
<title>get_relation_info (166,158,712,493 samples, 1.75%)</title><rect x="928.4" y="421" width="20.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="931.39" y="431.5" ></text>
</g>
<g >
<title>ReleaseCatCache (882,689,905 samples, 0.01%)</title><rect x="1029.8" y="245" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1032.81" y="255.5" ></text>
</g>
<g >
<title>cost_seqscan (10,494,040,890 samples, 0.11%)</title><rect x="1022.1" y="389" width="1.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1025.13" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,325,089,505 samples, 0.01%)</title><rect x="818.9" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="821.91" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,424,507,637 samples, 0.01%)</title><rect x="441.3" y="373" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="444.25" y="383.5" ></text>
</g>
<g >
<title>LockTagHashCode (2,999,363,135 samples, 0.03%)</title><rect x="370.5" y="277" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="373.52" y="287.5" ></text>
</g>
<g >
<title>record_times (2,576,479,143 samples, 0.03%)</title><rect x="166.9" y="325" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="169.92" y="335.5" ></text>
</g>
<g >
<title>get_loop_count (932,670,034 samples, 0.01%)</title><rect x="1016.9" y="357" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1019.90" y="367.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (1,819,566,473 samples, 0.02%)</title><rect x="1036.4" y="277" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1039.38" y="287.5" ></text>
</g>
<g >
<title>SearchSysCache3 (6,232,369,608 samples, 0.07%)</title><rect x="435.0" y="389" width="0.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="438.01" y="399.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (5,027,989,614 samples, 0.05%)</title><rect x="449.0" y="389" width="0.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="452.05" y="399.5" ></text>
</g>
<g >
<title>XLogInsert (51,403,149,350 samples, 0.54%)</title><rect x="385.5" y="341" width="6.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="388.47" y="351.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (525,957,338,666 samples, 5.54%)</title><rect x="465.6" y="549" width="65.3" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="468.61" y="559.5" >CommitT..</text>
</g>
<g >
<title>AtEOXact_RelationCache (1,146,073,206 samples, 0.01%)</title><rect x="32.3" y="757" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="35.32" y="767.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (1,780,223,852 samples, 0.02%)</title><rect x="326.7" y="181" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="329.67" y="191.5" ></text>
</g>
<g >
<title>_bt_binsrch (7,061,984,186 samples, 0.07%)</title><rect x="126.9" y="261" width="0.9" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="129.89" y="271.5" ></text>
</g>
<g >
<title>log_heap_update (86,591,488,933 samples, 0.91%)</title><rect x="383.4" y="357" width="10.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="386.45" y="367.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1,450,384,440 samples, 0.02%)</title><rect x="209.2" y="389" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="212.15" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_read_u64_impl (1,579,435,864 samples, 0.02%)</title><rect x="510.4" y="469" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="513.42" y="479.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,422,067,079 samples, 0.01%)</title><rect x="1102.3" y="741" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1105.28" y="751.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (2,127,659,819 samples, 0.02%)</title><rect x="265.5" y="485" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="268.47" y="495.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (9,018,183,352 samples, 0.09%)</title><rect x="290.7" y="261" width="1.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="293.68" y="271.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (1,236,196,135 samples, 0.01%)</title><rect x="40.2" y="757" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="43.20" y="767.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,326,501,154 samples, 0.04%)</title><rect x="959.7" y="261" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="962.68" y="271.5" ></text>
</g>
<g >
<title>pick_next_task_fair (9,499,136,403 samples, 0.10%)</title><rect x="162.4" y="325" width="1.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="165.36" y="335.5" ></text>
</g>
<g >
<title>new_list (1,481,222,569 samples, 0.02%)</title><rect x="984.4" y="389" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="987.36" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,047,713,772 samples, 0.01%)</title><rect x="1019.1" y="293" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1022.07" y="303.5" ></text>
</g>
<g >
<title>ensure_tabstat_xact_level (9,260,409,533 samples, 0.10%)</title><rect x="394.3" y="341" width="1.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="397.34" y="351.5" ></text>
</g>
<g >
<title>ExecInitQual (34,021,616,794 samples, 0.36%)</title><rect x="437.2" y="421" width="4.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="440.22" y="431.5" ></text>
</g>
<g >
<title>BackendMain (7,654,249,878,114 samples, 80.57%)</title><rect x="132.0" y="629" width="950.7" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="134.98" y="639.5" >BackendMain</text>
</g>
<g >
<title>new_list (1,992,794,331 samples, 0.02%)</title><rect x="982.6" y="421" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="985.61" y="431.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (1,115,051,174 samples, 0.01%)</title><rect x="484.8" y="229" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="487.81" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,174,944,328 samples, 0.01%)</title><rect x="979.5" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="982.46" y="415.5" ></text>
</g>
<g >
<title>new_list (1,758,678,086 samples, 0.02%)</title><rect x="1020.1" y="293" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1023.05" y="303.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,298,905,167 samples, 0.02%)</title><rect x="996.7" y="261" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="999.67" y="271.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (4,401,940,673 samples, 0.05%)</title><rect x="182.2" y="325" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="185.21" y="335.5" ></text>
</g>
<g >
<title>all_rows_selectable (10,091,820,964 samples, 0.11%)</title><rect x="1033.2" y="213" width="1.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1036.16" y="223.5" ></text>
</g>
<g >
<title>kmalloc_reserve (11,304,652,183 samples, 0.12%)</title><rect x="197.2" y="357" width="1.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="200.17" y="367.5" ></text>
</g>
<g >
<title>GetSnapshotDataReuse (1,014,414,981 samples, 0.01%)</title><rect x="233.7" y="517" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="236.73" y="527.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (7,535,931,795 samples, 0.08%)</title><rect x="443.3" y="325" width="0.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="446.28" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (961,357,959 samples, 0.01%)</title><rect x="855.2" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="858.20" y="351.5" ></text>
</g>
<g >
<title>FullTransactionIdNewer (1,072,332,593 samples, 0.01%)</title><rect x="233.3" y="517" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="236.28" y="527.5" ></text>
</g>
<g >
<title>ProcessQuery (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="597" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="1161.90" y="607.5" ></text>
</g>
<g >
<title>ksys_lseek (3,002,303,051 samples, 0.03%)</title><rect x="932.6" y="277" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="935.56" y="287.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (879,019,800 samples, 0.01%)</title><rect x="449.6" y="341" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="452.56" y="351.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (5,544,778,497 samples, 0.06%)</title><rect x="297.5" y="245" width="0.7" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="300.49" y="255.5" ></text>
</g>
<g >
<title>skb_set_owner_w (1,106,692,491 samples, 0.01%)</title><rect x="200.4" y="389" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="203.38" y="399.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,947,894,605 samples, 0.02%)</title><rect x="435.4" y="341" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="438.43" y="351.5" ></text>
</g>
<g >
<title>AssignTransactionId (84,900,018,892 samples, 0.89%)</title><rect x="364.2" y="341" width="10.5" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="367.20" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,742,213,195 samples, 0.02%)</title><rect x="496.9" y="389" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="499.86" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,133,976,642 samples, 0.01%)</title><rect x="475.6" y="421" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="478.58" y="431.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (914,461,069 samples, 0.01%)</title><rect x="847.2" y="357" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="850.15" y="367.5" ></text>
</g>
<g >
<title>uint32_hash (912,972,750 samples, 0.01%)</title><rect x="948.8" y="341" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="951.83" y="351.5" ></text>
</g>
<g >
<title>lappend_int (3,342,691,536 samples, 0.04%)</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.37" y="463.5" ></text>
</g>
<g >
<title>LockHeldByMe (8,132,022,399 samples, 0.09%)</title><rect x="830.6" y="373" width="1.0" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="833.60" y="383.5" ></text>
</g>
<g >
<title>parse_analyze_fixedparams (834,503,549 samples, 0.01%)</title><rect x="1166.8" y="757" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1169.83" y="767.5" ></text>
</g>
<g >
<title>MemoryContextCheck (2,182,782,120,789 samples, 22.98%)</title><rect x="531.0" y="565" width="271.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="533.97" y="575.5" >MemoryContextCheck</text>
</g>
<g >
<title>__x64_sys_sendto (133,924,531,042 samples, 1.41%)</title><rect x="192.3" y="453" width="16.6" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="195.26" y="463.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (6,647,036,568 samples, 0.07%)</title><rect x="1051.1" y="469" width="0.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1054.06" y="479.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (849,705,335 samples, 0.01%)</title><rect x="376.9" y="341" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="379.90" y="351.5" ></text>
</g>
<g >
<title>SearchCatCache3 (4,373,206,228 samples, 0.05%)</title><rect x="1010.0" y="277" width="0.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1012.97" y="287.5" ></text>
</g>
<g >
<title>ReadBuffer (23,093,042,986 samples, 0.24%)</title><rect x="407.0" y="389" width="2.9" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="410.01" y="399.5" ></text>
</g>
<g >
<title>BufferGetPage (1,119,619,484 samples, 0.01%)</title><rect x="337.4" y="197" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="340.41" y="207.5" ></text>
</g>
<g >
<title>hash_search (2,920,447,556 samples, 0.03%)</title><rect x="938.9" y="389" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="941.89" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,464,609,796 samples, 0.02%)</title><rect x="700.4" y="501" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="703.35" y="511.5" ></text>
</g>
<g >
<title>assign_collations_walker (11,805,154,874 samples, 0.12%)</title><rect x="806.8" y="389" width="1.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="809.82" y="399.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (16,703,105,660 samples, 0.18%)</title><rect x="901.4" y="405" width="2.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="904.36" y="415.5" ></text>
</g>
<g >
<title>palloc0 (2,223,660,100 samples, 0.02%)</title><rect x="835.7" y="405" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="838.73" y="415.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (28,364,077,390 samples, 0.30%)</title><rect x="231.2" y="549" width="3.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="234.19" y="559.5" ></text>
</g>
<g >
<title>ExecutePlan (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="517" width="1.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="129.31" y="527.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,075,382,853 samples, 0.01%)</title><rect x="104.0" y="421" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="106.97" y="431.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesMVCC (1,166,524,747 samples, 0.01%)</title><rect x="52.7" y="757" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="55.73" y="767.5" ></text>
</g>
<g >
<title>ServerLoop (3,415,261,054 samples, 0.04%)</title><rect x="1158.9" y="725" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1161.90" y="735.5" ></text>
</g>
<g >
<title>uint32_hash (1,305,256,897 samples, 0.01%)</title><rect x="939.1" y="373" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="942.09" y="383.5" ></text>
</g>
<g >
<title>mdnblocks (18,856,658,541 samples, 0.20%)</title><rect x="936.0" y="277" width="2.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="939.01" y="287.5" ></text>
</g>
<g >
<title>choose_nelem_alloc (917,090,933 samples, 0.01%)</title><rect x="1063.2" y="437" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1066.21" y="447.5" ></text>
</g>
<g >
<title>name_matches_visible_ENR (818,451,792 samples, 0.01%)</title><rect x="833.4" y="453" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="836.40" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,042,355,854 samples, 0.02%)</title><rect x="355.0" y="245" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="357.97" y="255.5" ></text>
</g>
<g >
<title>simplify_function (1,302,341,976 samples, 0.01%)</title><rect x="1134.9" y="661" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1137.90" y="671.5" ></text>
</g>
<g >
<title>dequeue_task (1,470,213,493 samples, 0.02%)</title><rect x="168.6" y="325" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="171.64" y="335.5" ></text>
</g>
<g >
<title>exprType (869,653,476 samples, 0.01%)</title><rect x="970.6" y="389" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="973.62" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,589,656,573 samples, 0.03%)</title><rect x="1075.9" y="485" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1078.94" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (912,201,975 samples, 0.01%)</title><rect x="420.6" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="423.57" y="431.5" ></text>
</g>
<g >
<title>LockBuffer (1,548,111,851 samples, 0.02%)</title><rect x="58.6" y="757" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="61.64" y="767.5" ></text>
</g>
<g >
<title>heap_form_tuple (22,783,301,473 samples, 0.24%)</title><rect x="396.3" y="373" width="2.9" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="399.33" y="383.5" ></text>
</g>
<g >
<title>ExecInitResultSlot (7,397,664,030 samples, 0.08%)</title><rect x="432.4" y="389" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="435.41" y="399.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,476,295,136 samples, 0.02%)</title><rect x="350.1" y="277" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="353.09" y="287.5" ></text>
</g>
<g >
<title>message_level_is_interesting (907,266,001 samples, 0.01%)</title><rect x="530.1" y="501" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="533.10" y="511.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (5,315,463,390 samples, 0.06%)</title><rect x="1038.8" y="325" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1041.82" y="335.5" ></text>
</g>
<g >
<title>MemoryContextDelete (8,699,406,808 samples, 0.09%)</title><rect x="225.1" y="565" width="1.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="228.14" y="575.5" ></text>
</g>
<g >
<title>palloc (1,928,977,454 samples, 0.02%)</title><rect x="1012.0" y="245" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1014.99" y="255.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (2,729,292,462 samples, 0.03%)</title><rect x="326.9" y="213" width="0.3" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="329.90" y="223.5" ></text>
</g>
<g >
<title>uint32_hash (1,080,469,251 samples, 0.01%)</title><rect x="403.2" y="325" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="406.21" y="335.5" ></text>
</g>
<g >
<title>merge_collation_state (824,572,524 samples, 0.01%)</title><rect x="810.9" y="309" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="813.89" y="319.5" ></text>
</g>
<g >
<title>palloc (2,160,234,594 samples, 0.02%)</title><rect x="1007.8" y="245" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1010.78" y="255.5" ></text>
</g>
<g >
<title>hash_bytes (2,702,366,718 samples, 0.03%)</title><rect x="300.2" y="85" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="303.18" y="95.5" ></text>
</g>
<g >
<title>makeString (3,527,472,818 samples, 0.04%)</title><rect x="1118.8" y="725" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="1121.80" y="735.5" ></text>
</g>
<g >
<title>pgstat_report_stat (5,144,382,469 samples, 0.05%)</title><rect x="1079.2" y="597" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1082.19" y="607.5" ></text>
</g>
<g >
<title>fix_expr_common (1,412,138,210 samples, 0.01%)</title><rect x="903.3" y="373" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="906.25" y="383.5" ></text>
</g>
<g >
<title>ReleaseSysCache (974,644,851 samples, 0.01%)</title><rect x="415.2" y="421" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="418.23" y="431.5" ></text>
</g>
<g >
<title>relation_close (2,194,595,434 samples, 0.02%)</title><rect x="803.5" y="517" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="806.47" y="527.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,285,275,842 samples, 0.01%)</title><rect x="407.3" y="293" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="410.34" y="303.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (845,683,774 samples, 0.01%)</title><rect x="304.2" y="229" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="307.20" y="239.5" ></text>
</g>
<g >
<title>newNode (1,960,626,267 samples, 0.02%)</title><rect x="841.4" y="341" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="844.39" y="351.5" ></text>
</g>
<g >
<title>LWLockRelease (1,823,458,955 samples, 0.02%)</title><rect x="57.9" y="757" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="60.88" y="767.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,302,341,976 samples, 0.01%)</title><rect x="1134.9" y="613" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1137.90" y="623.5" ></text>
</g>
<g >
<title>exprType (868,698,999 samples, 0.01%)</title><rect x="970.4" y="373" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="973.45" y="383.5" ></text>
</g>
<g >
<title>ExecIndexScan (26,252,383,711 samples, 0.28%)</title><rect x="281.6" y="421" width="3.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="284.57" y="431.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,220,476,765 samples, 0.01%)</title><rect x="125.8" y="229" width="0.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="128.76" y="239.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (6,931,937,967 samples, 0.07%)</title><rect x="242.8" y="357" width="0.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="245.77" y="367.5" ></text>
</g>
<g >
<title>bms_free (1,300,200,075 samples, 0.01%)</title><rect x="1121.4" y="757" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1124.40" y="767.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (2,254,144,985 samples, 0.02%)</title><rect x="960.4" y="309" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="963.37" y="319.5" ></text>
</g>
<g >
<title>lappend (2,035,850,554 samples, 0.02%)</title><rect x="1019.0" y="341" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1021.96" y="351.5" ></text>
</g>
<g >
<title>bms_add_member (2,930,318,870 samples, 0.03%)</title><rect x="996.6" y="277" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="999.59" y="287.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,850,301,915 samples, 0.04%)</title><rect x="398.0" y="325" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="400.98" y="335.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,843,610,984 samples, 0.02%)</title><rect x="1148.5" y="597" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1151.49" y="607.5" ></text>
</g>
<g >
<title>_bt_checkkeys (4,599,176,588 samples, 0.05%)</title><rect x="124.2" y="261" width="0.6" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="127.19" y="271.5" ></text>
</g>
<g >
<title>_bt_check_compare (2,002,016,725 samples, 0.02%)</title><rect x="1158.9" y="261" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1161.90" y="271.5" ></text>
</g>
<g >
<title>do_futex (1,159,361,250 samples, 0.01%)</title><rect x="353.6" y="245" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="356.56" y="255.5" ></text>
</g>
<g >
<title>get_expr_width (8,363,737,268 samples, 0.09%)</title><rect x="1046.3" y="469" width="1.0" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1049.30" y="479.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (3,068,442,279 samples, 0.03%)</title><rect x="424.8" y="325" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="427.83" y="335.5" ></text>
</g>
<g >
<title>AllocSetFree (1,377,574,450 samples, 0.01%)</title><rect x="224.3" y="533" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="227.34" y="543.5" ></text>
</g>
<g >
<title>CreateExecutorState (14,264,388,931 samples, 0.15%)</title><rect x="411.8" y="501" width="1.8" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="414.81" y="511.5" ></text>
</g>
<g >
<title>log_heap_prune_and_freeze (1,320,139,140 samples, 0.01%)</title><rect x="1146.6" y="741" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1149.59" y="751.5" ></text>
</g>
<g >
<title>core_yyalloc (1,290,085,197 samples, 0.01%)</title><rect x="872.3" y="485" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="875.31" y="495.5" ></text>
</g>
<g >
<title>select_task_rq_fair (25,324,989,724 samples, 0.27%)</title><rect x="202.5" y="309" width="3.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="205.47" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,025,742,017 samples, 0.02%)</title><rect x="402.0" y="309" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="405.00" y="319.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (20,613,715,631 samples, 0.22%)</title><rect x="278.5" y="389" width="2.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="281.54" y="399.5" ></text>
</g>
<g >
<title>update_rq_clock (1,020,469,441 samples, 0.01%)</title><rect x="174.5" y="341" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="177.51" y="351.5" ></text>
</g>
<g >
<title>palloc0 (3,874,946,738 samples, 0.04%)</title><rect x="273.0" y="357" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="275.99" y="367.5" ></text>
</g>
<g >
<title>RestrictInfoIsTidQual (5,207,209,347 samples, 0.05%)</title><rect x="1024.6" y="373" width="0.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1027.63" y="383.5" ></text>
</g>
<g >
<title>list_make1_impl (2,464,495,171 samples, 0.03%)</title><rect x="1020.0" y="309" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1022.98" y="319.5" ></text>
</g>
<g >
<title>InitPlan (373,938,104,811 samples, 3.94%)</title><rect x="413.7" y="501" width="46.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="416.65" y="511.5" >Init..</text>
</g>
<g >
<title>pg_atomic_read_u32 (2,882,942,892 samples, 0.03%)</title><rect x="223.2" y="517" width="0.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="226.22" y="527.5" ></text>
</g>
<g >
<title>list_free_deep (6,660,950,972 samples, 0.07%)</title><rect x="977.4" y="453" width="0.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="980.35" y="463.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (1,715,457,186 samples, 0.02%)</title><rect x="207.9" y="309" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="210.91" y="319.5" ></text>
</g>
<g >
<title>palloc (967,655,672 samples, 0.01%)</title><rect x="435.9" y="405" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="438.89" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (962,411,422 samples, 0.01%)</title><rect x="223.1" y="517" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="226.10" y="527.5" ></text>
</g>
<g >
<title>build_base_rel_tlists (47,954,430,661 samples, 0.50%)</title><rect x="950.1" y="469" width="5.9" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="953.09" y="479.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (4,647,149,261 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.01" y="751.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (842,645,450 samples, 0.01%)</title><rect x="1102.3" y="709" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1105.34" y="719.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,313,668,856 samples, 0.01%)</title><rect x="1102.3" y="725" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1105.29" y="735.5" ></text>
</g>
<g >
<title>secure_raw_write (148,229,443,391 samples, 1.56%)</title><rect x="191.5" y="517" width="18.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="194.52" y="527.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="469" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="128.92" y="479.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,864,039,787 samples, 0.04%)</title><rect x="807.1" y="357" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="810.10" y="367.5" ></text>
</g>
<g >
<title>perf_event_task_tick (862,496,573 samples, 0.01%)</title><rect x="758.2" y="405" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="761.17" y="415.5" ></text>
</g>
<g >
<title>ExecBuildProjectionInfo (70,220,710,197 samples, 0.74%)</title><rect x="423.6" y="373" width="8.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="426.64" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,151,762,859 samples, 0.01%)</title><rect x="931.3" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="934.30" y="351.5" ></text>
</g>
<g >
<title>FreeSnapshot (1,402,240,458 samples, 0.01%)</title><rect x="234.9" y="533" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="237.94" y="543.5" ></text>
</g>
<g >
<title>preprocess_qual_conditions (1,203,969,060 samples, 0.01%)</title><rect x="126.2" y="533" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="129.16" y="543.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (842,466,714 samples, 0.01%)</title><rect x="201.9" y="277" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="204.88" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_futex (4,084,323,253 samples, 0.04%)</title><rect x="366.7" y="213" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="369.66" y="223.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (12,429,046,130 samples, 0.13%)</title><rect x="881.4" y="453" width="1.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="884.45" y="463.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (4,607,597,318 samples, 0.05%)</title><rect x="1057.9" y="469" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1060.94" y="479.5" ></text>
</g>
<g >
<title>LockReassignCurrentOwner (5,268,468,147 samples, 0.06%)</title><rect x="227.4" y="533" width="0.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="230.44" y="543.5" ></text>
</g>
<g >
<title>AllocSetCheck (2,006,501,442 samples, 0.02%)</title><rect x="78.7" y="741" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="81.68" y="751.5" ></text>
</g>
<g >
<title>ExecTypeFromTLInternal (3,521,668,026 samples, 0.04%)</title><rect x="456.4" y="421" width="0.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="459.45" y="431.5" ></text>
</g>
<g >
<title>PortalRun (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="629" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1161.90" y="639.5" ></text>
</g>
<g >
<title>bms_is_member (1,163,224,068 samples, 0.01%)</title><rect x="457.1" y="453" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="460.06" y="463.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (18,342,592,921 samples, 0.19%)</title><rect x="269.6" y="389" width="2.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="272.62" y="399.5" ></text>
</g>
<g >
<title>ReleaseSysCache (2,499,400,377 samples, 0.03%)</title><rect x="91.2" y="757" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="94.21" y="767.5" ></text>
</g>
<g >
<title>tas (1,971,937,571 samples, 0.02%)</title><rect x="510.7" y="485" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="513.65" y="495.5" ></text>
</g>
<g >
<title>AllocSetFree (941,209,339 samples, 0.01%)</title><rect x="965.7" y="341" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="968.73" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,380,762,066 samples, 0.01%)</title><rect x="273.3" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="276.29" y="351.5" ></text>
</g>
<g >
<title>expr_setup_walker (3,831,205,821 samples, 0.04%)</title><rect x="438.4" y="357" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="441.44" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,403,820,256 samples, 0.01%)</title><rect x="249.4" y="437" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="252.38" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_read_membarrier_u64_impl (1,602,670,032 samples, 0.02%)</title><rect x="497.5" y="453" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="500.54" y="463.5" ></text>
</g>
<g >
<title>transformUpdateTargetList (85,790,551,445 samples, 0.90%)</title><rect x="833.8" y="485" width="10.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="836.81" y="495.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumber (1,019,371,740 samples, 0.01%)</title><rect x="384.7" y="341" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="387.74" y="351.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (2,311,850,812 samples, 0.02%)</title><rect x="440.3" y="389" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="443.25" y="399.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (884,138,263 samples, 0.01%)</title><rect x="472.2" y="517" width="0.1" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="475.18" y="527.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (989,377,248 samples, 0.01%)</title><rect x="128.5" y="757" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="131.48" y="767.5" ></text>
</g>
<g >
<title>StartTransaction (34,349,667,076 samples, 0.36%)</title><rect x="1073.3" y="549" width="4.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1076.30" y="559.5" ></text>
</g>
<g >
<title>makeConst (3,028,017,921 samples, 0.03%)</title><rect x="841.3" y="357" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="844.25" y="367.5" ></text>
</g>
<g >
<title>set_pathtarget_cost_width (20,332,361,205 samples, 0.21%)</title><rect x="1044.8" y="485" width="2.5" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="1047.81" y="495.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (2,507,474,067 samples, 0.03%)</title><rect x="233.4" y="517" width="0.3" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="236.42" y="527.5" ></text>
</g>
<g >
<title>equal (5,450,526,052 samples, 0.06%)</title><rect x="913.5" y="485" width="0.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="916.45" y="495.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="325" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="89.91" y="335.5" ></text>
</g>
<g >
<title>WALInsertLockRelease (5,746,045,270 samples, 0.06%)</title><rect x="389.1" y="309" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="392.09" y="319.5" ></text>
</g>
<g >
<title>BufferGetPage (1,143,949,173 samples, 0.01%)</title><rect x="304.3" y="245" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="307.30" y="255.5" ></text>
</g>
<g >
<title>palloc0 (1,886,519,888 samples, 0.02%)</title><rect x="459.5" y="469" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="462.52" y="479.5" ></text>
</g>
<g >
<title>tts_buffer_heap_get_heap_tuple (935,071,196 samples, 0.01%)</title><rect x="1188.2" y="757" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text  x="1191.24" y="767.5" ></text>
</g>
<g >
<title>sysvec_thermal (923,566,761 samples, 0.01%)</title><rect x="757.6" y="501" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="760.62" y="511.5" ></text>
</g>
<g >
<title>BackendStartup (7,654,249,878,114 samples, 80.57%)</title><rect x="132.0" y="661" width="950.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="134.98" y="671.5" >BackendStartup</text>
</g>
<g >
<title>newNode (3,558,396,307 samples, 0.04%)</title><rect x="1117.3" y="725" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1120.27" y="735.5" ></text>
</g>
<g >
<title>secure_read (865,425,836 samples, 0.01%)</title><rect x="1177.7" y="757" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1180.67" y="767.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,719,755,924 samples, 0.02%)</title><rect x="387.4" y="293" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="390.42" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,227,969,591 samples, 0.01%)</title><rect x="347.6" y="309" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="350.63" y="319.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (900,213,628 samples, 0.01%)</title><rect x="906.2" y="501" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="909.23" y="511.5" ></text>
</g>
<g >
<title>table_close (1,685,973,160 samples, 0.02%)</title><rect x="862.2" y="517" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="865.16" y="527.5" ></text>
</g>
<g >
<title>palloc (1,458,323,546 samples, 0.02%)</title><rect x="931.3" y="357" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="934.28" y="367.5" ></text>
</g>
<g >
<title>eval_const_expressions (1,179,819,471 samples, 0.01%)</title><rect x="1173.6" y="741" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1176.61" y="751.5" ></text>
</g>
<g >
<title>__libc_recv (70,858,963,896 samples, 0.75%)</title><rect x="178.3" y="501" width="8.8" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="181.31" y="511.5" ></text>
</g>
<g >
<title>MemoryContextReset (9,319,088,324 samples, 0.10%)</title><rect x="467.5" y="501" width="1.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="470.51" y="511.5" ></text>
</g>
<g >
<title>AllocSetFree (869,006,467 samples, 0.01%)</title><rect x="235.0" y="501" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="237.99" y="511.5" ></text>
</g>
<g >
<title>eqsel_internal (52,506,232,691 samples, 0.55%)</title><rect x="1029.6" y="277" width="6.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1032.58" y="287.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,760,677,219 samples, 0.02%)</title><rect x="403.0" y="325" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="405.99" y="335.5" ></text>
</g>
<g >
<title>__alloc_skb (28,806,849,351 samples, 0.30%)</title><rect x="196.8" y="373" width="3.6" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text  x="199.79" y="383.5" ></text>
</g>
<g >
<title>pgstat_get_xact_stack_level (3,747,034,649 samples, 0.04%)</title><rect x="395.0" y="309" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="398.03" y="319.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (890,045,309 samples, 0.01%)</title><rect x="292.8" y="293" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="295.83" y="303.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (8,473,538,731 samples, 0.09%)</title><rect x="1022.4" y="373" width="1.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1025.38" y="383.5" ></text>
</g>
<g >
<title>newNode (7,362,381,084 samples, 0.08%)</title><rect x="458.2" y="453" width="0.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="461.17" y="463.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,002,740,373 samples, 0.01%)</title><rect x="716.8" y="517" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="719.81" y="527.5" ></text>
</g>
<g >
<title>create_bitmap_heap_path (14,178,456,686 samples, 0.15%)</title><rect x="988.6" y="389" width="1.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="991.56" y="399.5" ></text>
</g>
<g >
<title>index_rescan (8,654,904,616 samples, 0.09%)</title><rect x="342.4" y="325" width="1.0" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="345.35" y="335.5" ></text>
</g>
<g >
<title>__sysvec_thermal (1,796,385,233 samples, 0.02%)</title><rect x="758.7" y="501" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="761.68" y="511.5" ></text>
</g>
<g >
<title>makeVar (4,856,979,870 samples, 0.05%)</title><rect x="934.4" y="389" width="0.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="937.44" y="399.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (2,690,036,969 samples, 0.03%)</title><rect x="494.6" y="293" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="497.64" y="303.5" ></text>
</g>
<g >
<title>make_one_rel (1,382,885,742 samples, 0.01%)</title><rect x="1160.2" y="757" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1163.22" y="767.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (1,300,997,649 samples, 0.01%)</title><rect x="208.9" y="453" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="211.90" y="463.5" ></text>
</g>
<g >
<title>add_base_rels_to_query (191,200,975,109 samples, 2.01%)</title><rect x="926.1" y="469" width="23.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="929.14" y="479.5" >a..</text>
</g>
<g >
<title>__sigsetjmp (1,543,698,367 samples, 0.02%)</title><rect x="187.7" y="549" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="190.67" y="559.5" ></text>
</g>
<g >
<title>palloc (1,340,895,630 samples, 0.01%)</title><rect x="878.8" y="453" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="881.80" y="463.5" ></text>
</g>
<g >
<title>newNode (4,713,835,695 samples, 0.05%)</title><rect x="1119.2" y="725" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1122.24" y="735.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (2,541,077,163 samples, 0.03%)</title><rect x="1185.1" y="661" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1188.13" y="671.5" ></text>
</g>
<g >
<title>bms_free (1,866,175,187 samples, 0.02%)</title><rect x="348.8" y="389" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="351.80" y="399.5" ></text>
</g>
<g >
<title>_int_free_merge_chunk (3,077,173,146 samples, 0.03%)</title><rect x="150.4" y="533" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="153.44" y="543.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,301,975,661 samples, 0.01%)</title><rect x="430.7" y="309" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="433.69" y="319.5" ></text>
</g>
<g >
<title>SearchSysCache3 (4,903,138,442 samples, 0.05%)</title><rect x="1009.9" y="293" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1012.90" y="303.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (134,714,766,553 samples, 1.42%)</title><rect x="296.7" y="293" width="16.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="299.73" y="303.5" ></text>
</g>
<g >
<title>preprocess_qual_conditions (971,078,648 samples, 0.01%)</title><rect x="128.4" y="517" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="131.36" y="527.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,094,972,911 samples, 0.01%)</title><rect x="700.4" y="469" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="703.40" y="479.5" ></text>
</g>
<g >
<title>get_typavgwidth (5,012,345,057 samples, 0.05%)</title><rect x="1046.7" y="453" width="0.6" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="1049.71" y="463.5" ></text>
</g>
<g >
<title>list_concat (2,483,982,814 samples, 0.03%)</title><rect x="899.5" y="485" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="902.51" y="495.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (3,611,597,302 samples, 0.04%)</title><rect x="1170.0" y="757" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1172.96" y="767.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,332,299,509 samples, 0.01%)</title><rect x="353.5" y="277" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="356.55" y="287.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (1,119,748,847 samples, 0.01%)</title><rect x="343.9" y="437" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="346.87" y="447.5" ></text>
</g>
<g >
<title>initStringInfoInternal (2,060,931,240 samples, 0.02%)</title><rect x="189.1" y="549" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="192.09" y="559.5" ></text>
</g>
<g >
<title>RelationClose (1,687,787,884 samples, 0.02%)</title><rect x="803.5" y="501" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="806.53" y="511.5" ></text>
</g>
<g >
<title>BuildQueryCompletionString (8,586,789,117 samples, 0.09%)</title><rect x="217.8" y="565" width="1.0" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="220.78" y="575.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,010,116,149 samples, 0.01%)</title><rect x="804.2" y="517" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="807.21" y="527.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVacuumHorizon (10,507,186,579 samples, 0.11%)</title><rect x="1147.5" y="709" width="1.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1150.49" y="719.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (1,231,635,752 samples, 0.01%)</title><rect x="49.5" y="757" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="52.48" y="767.5" ></text>
</g>
<g >
<title>getRTEPermissionInfo (992,589,045 samples, 0.01%)</title><rect x="416.6" y="469" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="419.56" y="479.5" ></text>
</g>
<g >
<title>newNode (1,802,259,594 samples, 0.02%)</title><rect x="855.1" y="373" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="858.09" y="383.5" ></text>
</g>
<g >
<title>table_open (16,116,025,680 samples, 0.17%)</title><rect x="862.4" y="517" width="2.0" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="865.37" y="527.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (909,258,733 samples, 0.01%)</title><rect x="527.2" y="405" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="530.21" y="415.5" ></text>
</g>
<g >
<title>pg_ulltoa_n (1,060,818,876 samples, 0.01%)</title><rect x="1171.0" y="757" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1174.04" y="767.5" ></text>
</g>
<g >
<title>palloc (1,274,648,296 samples, 0.01%)</title><rect x="447.2" y="357" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="450.18" y="367.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,169,007,255 samples, 0.01%)</title><rect x="1067.1" y="357" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1070.08" y="367.5" ></text>
</g>
<g >
<title>ExecProject (53,270,691,348 samples, 0.56%)</title><rect x="285.3" y="357" width="6.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="288.27" y="367.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (2,392,756,520 samples, 0.03%)</title><rect x="819.1" y="421" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="822.08" y="431.5" ></text>
</g>
<g >
<title>new_list (2,355,390,454 samples, 0.02%)</title><rect x="817.2" y="421" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="820.17" y="431.5" ></text>
</g>
<g >
<title>LockBuffer (7,826,489,698 samples, 0.08%)</title><rect x="298.4" y="261" width="0.9" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="301.37" y="271.5" ></text>
</g>
<g >
<title>scanner_init (21,312,651,118 samples, 0.22%)</title><rect x="871.3" y="549" width="2.7" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="874.32" y="559.5" ></text>
</g>
<g >
<title>makeSimpleA_Expr (14,497,614,755 samples, 0.15%)</title><rect x="1118.0" y="741" width="1.8" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1121.03" y="751.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,429,826,462 samples, 0.03%)</title><rect x="375.9" y="245" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="378.86" y="255.5" ></text>
</g>
<g >
<title>BufferAlloc (14,280,389,768 samples, 0.15%)</title><rect x="407.7" y="293" width="1.7" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="410.65" y="303.5" ></text>
</g>
<g >
<title>task_tick_fair (1,634,035,115 samples, 0.02%)</title><rect x="758.3" y="405" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="761.32" y="415.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (8,059,178,501 samples, 0.08%)</title><rect x="99.1" y="197" width="1.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="102.12" y="207.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (2,043,681,896 samples, 0.02%)</title><rect x="496.8" y="437" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="499.83" y="447.5" ></text>
</g>
<g >
<title>LWLockRelease (3,110,380,159 samples, 0.03%)</title><rect x="478.0" y="453" width="0.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="481.05" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,058,863,698 samples, 0.01%)</title><rect x="422.9" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="425.91" y="335.5" ></text>
</g>
<g >
<title>palloc0 (1,624,127,061 samples, 0.02%)</title><rect x="460.4" y="501" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="463.37" y="511.5" ></text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (14,901,972,023 samples, 0.16%)</title><rect x="1048.8" y="453" width="1.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1051.79" y="463.5" ></text>
</g>
<g >
<title>ReleaseCatCache (940,355,641 samples, 0.01%)</title><rect x="1013.5" y="277" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1016.49" y="287.5" ></text>
</g>
<g >
<title>__schedule (2,862,292,208 samples, 0.03%)</title><rect x="209.1" y="421" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="212.12" y="431.5" ></text>
</g>
<g >
<title>XLogBeginInsert (816,248,209 samples, 0.01%)</title><rect x="511.5" y="485" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="514.54" y="495.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (5,142,155,808 samples, 0.05%)</title><rect x="850.2" y="357" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="853.17" y="367.5" ></text>
</g>
<g >
<title>ReadBuffer (19,141,434,356 samples, 0.20%)</title><rect x="100.1" y="293" width="2.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="103.12" y="303.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (4,024,081,545 samples, 0.04%)</title><rect x="29.3" y="757" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="32.33" y="767.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (1,268,353,177 samples, 0.01%)</title><rect x="1146.2" y="757" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1149.20" y="767.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (1,042,896,149 samples, 0.01%)</title><rect x="370.2" y="213" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="373.22" y="223.5" ></text>
</g>
<g >
<title>__ceil_sse41 (1,640,365,336 samples, 0.02%)</title><rect x="1011.0" y="293" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1013.97" y="303.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (2,924,991,926 samples, 0.03%)</title><rect x="184.5" y="357" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="187.50" y="367.5" ></text>
</g>
<g >
<title>bms_add_members (2,912,886,645 samples, 0.03%)</title><rect x="357.9" y="373" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="360.95" y="383.5" ></text>
</g>
<g >
<title>hash_search (14,018,803,430 samples, 0.15%)</title><rect x="838.7" y="341" width="1.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="841.69" y="351.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (3,997,365,074 samples, 0.04%)</title><rect x="197.8" y="325" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="200.85" y="335.5" ></text>
</g>
<g >
<title>CleanupTempFiles (898,295,428 samples, 0.01%)</title><rect x="469.6" y="501" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="472.59" y="511.5" ></text>
</g>
<g >
<title>bms_union (4,309,413,053 samples, 0.05%)</title><rect x="880.7" y="469" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="883.70" y="479.5" ></text>
</g>
<g >
<title>IsSharedRelation (985,478,905 samples, 0.01%)</title><rect x="824.9" y="373" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="827.85" y="383.5" ></text>
</g>
<g >
<title>palloc0 (5,624,354,747 samples, 0.06%)</title><rect x="915.1" y="453" width="0.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="918.05" y="463.5" ></text>
</g>
<g >
<title>main (18,601,171,430 samples, 0.20%)</title><rect x="124.0" y="741" width="2.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="126.99" y="751.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (829,911,732 samples, 0.01%)</title><rect x="758.2" y="389" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="761.18" y="399.5" ></text>
</g>
<g >
<title>match_opclause_to_indexcol (19,415,346,635 samples, 0.20%)</title><rect x="1019.5" y="325" width="2.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1022.50" y="335.5" ></text>
</g>
<g >
<title>int4pl (1,328,731,727 samples, 0.01%)</title><rect x="1152.7" y="757" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1155.68" y="767.5" ></text>
</g>
<g >
<title>LWLockRelease (1,510,380,699 samples, 0.02%)</title><rect x="474.7" y="501" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="477.74" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,154,751,353 samples, 0.01%)</title><rect x="817.3" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="820.28" y="399.5" ></text>
</g>
<g >
<title>palloc (1,125,713,903 samples, 0.01%)</title><rect x="975.9" y="389" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="978.93" y="399.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="501" width="6.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="98.68" y="511.5" ></text>
</g>
<g >
<title>PageGetItemId (1,309,363,456 samples, 0.01%)</title><rect x="378.4" y="341" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="381.42" y="351.5" ></text>
</g>
<g >
<title>ExecUpdate (1,024,370,211 samples, 0.01%)</title><rect x="46.4" y="757" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="49.45" y="767.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,473,220,600 samples, 0.05%)</title><rect x="837.0" y="341" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="840.04" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,251,540,050 samples, 0.01%)</title><rect x="481.6" y="453" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="484.57" y="463.5" ></text>
</g>
<g >
<title>btgettuple (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="373" width="6.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="98.68" y="383.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,022,726,833 samples, 0.01%)</title><rect x="919.0" y="421" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="921.98" y="431.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (1,365,648,447 samples, 0.01%)</title><rect x="402.6" y="341" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="405.63" y="351.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (27,614,468,811 samples, 0.29%)</title><rect x="299.6" y="181" width="3.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="302.57" y="191.5" ></text>
</g>
<g >
<title>ExecInitIndexScan (1,419,654,076 samples, 0.01%)</title><rect x="43.8" y="757" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="46.81" y="767.5" ></text>
</g>
<g >
<title>get_hash_entry (10,595,588,826 samples, 0.11%)</title><rect x="1064.3" y="437" width="1.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1067.26" y="447.5" ></text>
</g>
<g >
<title>OidFunctionCall4Coll (59,296,769,116 samples, 0.62%)</title><rect x="1029.2" y="325" width="7.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1032.24" y="335.5" ></text>
</g>
<g >
<title>PageGetItemId (5,720,175,042 samples, 0.06%)</title><rect x="381.5" y="325" width="0.8" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="384.55" y="335.5" ></text>
</g>
<g >
<title>fastgetattr (47,587,988,114 samples, 0.50%)</title><rect x="1001.1" y="229" width="5.9" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1004.09" y="239.5" ></text>
</g>
<g >
<title>expand_virtual_generated_columns (1,339,622,241 samples, 0.01%)</title><rect x="1057.6" y="485" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1060.55" y="495.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (1,145,867,747 samples, 0.01%)</title><rect x="57.1" y="757" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="60.07" y="767.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,720,528,223 samples, 0.03%)</title><rect x="1076.9" y="517" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1079.89" y="527.5" ></text>
</g>
<g >
<title>hash_search (6,398,303,154 samples, 0.07%)</title><rect x="216.7" y="565" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="219.72" y="575.5" ></text>
</g>
<g >
<title>AtEOXact_Namespace (992,747,665 samples, 0.01%)</title><rect x="31.9" y="757" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="34.86" y="767.5" ></text>
</g>
<g >
<title>__strncpy_avx2 (3,401,895,061 samples, 0.04%)</title><rect x="444.3" y="341" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="447.35" y="351.5" ></text>
</g>
<g >
<title>PinBufferForBlock (18,622,825,598 samples, 0.20%)</title><rect x="407.5" y="309" width="2.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="410.55" y="319.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,955,762,576 samples, 0.04%)</title><rect x="104.2" y="437" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="107.19" y="447.5" ></text>
</g>
<g >
<title>exec_rt_fetch (1,357,216,704 samples, 0.01%)</title><rect x="447.6" y="421" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="450.59" y="431.5" ></text>
</g>
<g >
<title>table_close (1,591,714,420 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.89" y="479.5" ></text>
</g>
<g >
<title>CreateExprContext (9,638,262,546 samples, 0.10%)</title><rect x="346.6" y="373" width="1.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="349.60" y="383.5" ></text>
</g>
<g >
<title>hash_bytes (7,027,172,539 samples, 0.07%)</title><rect x="524.7" y="405" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="527.72" y="415.5" ></text>
</g>
<g >
<title>newNode (1,808,640,712 samples, 0.02%)</title><rect x="818.8" y="437" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="821.85" y="447.5" ></text>
</g>
<g >
<title>parserOpenTable (107,105,006,756 samples, 1.13%)</title><rect x="820.1" y="469" width="13.3" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="823.08" y="479.5" ></text>
</g>
<g >
<title>subquery_planner (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="597" width="3.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text  x="105.66" y="607.5" ></text>
</g>
<g >
<title>palloc (1,446,961,588 samples, 0.02%)</title><rect x="1057.1" y="421" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1060.06" y="431.5" ></text>
</g>
<g >
<title>tas (817,403,001 samples, 0.01%)</title><rect x="373.5" y="229" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="376.48" y="239.5" ></text>
</g>
<g >
<title>tas (1,310,923,419 samples, 0.01%)</title><rect x="512.9" y="437" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="515.91" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,294,883,064 samples, 0.02%)</title><rect x="436.2" y="389" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="439.18" y="399.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (1,654,762,377 samples, 0.02%)</title><rect x="356.0" y="261" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="358.96" y="271.5" ></text>
</g>
<g >
<title>LockBuffer (6,404,083,422 samples, 0.07%)</title><rect x="375.5" y="357" width="0.8" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="378.46" y="367.5" ></text>
</g>
<g >
<title>preprocess_expression (1,623,858,946 samples, 0.02%)</title><rect x="1173.6" y="757" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="1176.56" y="767.5" ></text>
</g>
<g >
<title>table_tuple_update (362,290,379,192 samples, 3.81%)</title><rect x="350.5" y="405" width="45.0" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="353.54" y="415.5" >tabl..</text>
</g>
<g >
<title>RemoveLocalLock (21,577,847,645 samples, 0.23%)</title><rect x="523.5" y="453" width="2.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="526.54" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,560,841,102 samples, 0.03%)</title><rect x="389.3" y="181" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="392.33" y="191.5" ></text>
</g>
<g >
<title>newNode (3,105,755,563 samples, 0.03%)</title><rect x="1118.9" y="709" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1121.86" y="719.5" ></text>
</g>
<g >
<title>ExecCheckOneRelPerms (10,729,063,846 samples, 0.11%)</title><rect x="414.7" y="469" width="1.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="417.69" y="479.5" ></text>
</g>
<g >
<title>__get_user_8 (3,582,605,400 samples, 0.04%)</title><rect x="176.5" y="373" width="0.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="179.48" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (860,739,598 samples, 0.01%)</title><rect x="456.2" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="459.25" y="431.5" ></text>
</g>
<g >
<title>palloc0 (3,386,812,845 samples, 0.04%)</title><rect x="347.4" y="325" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="350.37" y="335.5" ></text>
</g>
<g >
<title>select_idle_sibling (998,523,712 samples, 0.01%)</title><rect x="494.4" y="261" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="497.38" y="271.5" ></text>
</g>
<g >
<title>BlockNumberIsValid (3,319,414,135 samples, 0.03%)</title><rect x="33.7" y="757" width="0.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="36.75" y="767.5" ></text>
</g>
<g >
<title>heap_getattr (4,816,202,866 samples, 0.05%)</title><rect x="360.6" y="373" width="0.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="363.58" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,065,557,850 samples, 0.01%)</title><rect x="1020.1" y="261" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1023.11" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,963,384,221 samples, 0.03%)</title><rect x="1120.2" y="709" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1123.20" y="719.5" ></text>
</g>
<g >
<title>index_getattr (3,750,110,238 samples, 0.04%)</title><rect x="335.8" y="213" width="0.5" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="338.79" y="223.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (2,519,069,873 samples, 0.03%)</title><rect x="325.3" y="213" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="328.32" y="223.5" ></text>
</g>
<g >
<title>hash_seq_init (1,564,119,665 samples, 0.02%)</title><rect x="473.1" y="501" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="476.07" y="511.5" ></text>
</g>
<g >
<title>contain_volatile_functions (1,155,061,140 samples, 0.01%)</title><rect x="1019.8" y="309" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1022.81" y="319.5" ></text>
</g>
<g >
<title>palloc (1,725,777,066 samples, 0.02%)</title><rect x="459.9" y="469" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="462.87" y="479.5" ></text>
</g>
<g >
<title>tag_hash (2,565,523,029 samples, 0.03%)</title><rect x="941.9" y="309" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="944.91" y="319.5" ></text>
</g>
<g >
<title>build_path_tlist (10,975,456,450 samples, 0.12%)</title><rect x="885.4" y="437" width="1.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="888.43" y="447.5" ></text>
</g>
<g >
<title>sched_clock (901,013,050 samples, 0.01%)</title><rect x="174.2" y="245" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="177.17" y="255.5" ></text>
</g>
<g >
<title>hash_bytes (2,690,927,558 samples, 0.03%)</title><rect x="374.4" y="245" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="377.39" y="255.5" ></text>
</g>
<g >
<title>get_tablespace (2,949,882,865 samples, 0.03%)</title><rect x="989.5" y="341" width="0.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="992.53" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,798,892,536 samples, 0.03%)</title><rect x="436.5" y="389" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="439.47" y="399.5" ></text>
</g>
<g >
<title>LWLockRelease (1,269,414,067 samples, 0.01%)</title><rect x="299.2" y="245" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="302.19" y="255.5" ></text>
</g>
<g >
<title>palloc0 (2,379,722,436 samples, 0.03%)</title><rect x="921.9" y="421" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="924.93" y="431.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,433,159,472 samples, 0.02%)</title><rect x="824.2" y="341" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="827.23" y="351.5" ></text>
</g>
<g >
<title>ExecInitResultRelation (46,416,045,119 samples, 0.49%)</title><rect x="450.6" y="453" width="5.8" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="453.59" y="463.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,076,031,459 samples, 0.01%)</title><rect x="299.0" y="149" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="302.03" y="159.5" ></text>
</g>
<g >
<title>QueryRewrite (97,752,273,266 samples, 1.03%)</title><rect x="858.7" y="549" width="12.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="861.67" y="559.5" ></text>
</g>
<g >
<title>tag_hash (2,643,448,698 samples, 0.03%)</title><rect x="924.2" y="389" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="927.24" y="399.5" ></text>
</g>
<g >
<title>ProcessQuery (15,531,807,651 samples, 0.16%)</title><rect x="124.0" y="581" width="1.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="126.99" y="591.5" ></text>
</g>
<g >
<title>add_rte_to_flat_rtable (17,346,201,916 samples, 0.18%)</title><rect x="896.1" y="485" width="2.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="899.15" y="495.5" ></text>
</g>
<g >
<title>TupleDescInitEntryCollation (1,099,723,413 samples, 0.01%)</title><rect x="445.2" y="373" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="448.17" y="383.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (126,619,588,249 samples, 1.33%)</title><rect x="136.1" y="581" width="15.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="139.09" y="591.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,032,174,357 samples, 0.01%)</title><rect x="1058.7" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1061.65" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,280,465,590 samples, 0.01%)</title><rect x="513.2" y="405" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="516.19" y="415.5" ></text>
</g>
<g >
<title>_int_free_merge_chunk (3,443,088,962 samples, 0.04%)</title><rect x="243.2" y="341" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="246.20" y="351.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,005,342,993 samples, 0.01%)</title><rect x="96.9" y="149" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="99.95" y="159.5" ></text>
</g>
<g >
<title>get_hash_value (2,969,344,742 samples, 0.03%)</title><rect x="370.5" y="261" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="373.52" y="271.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (2,325,544,446 samples, 0.02%)</title><rect x="210.2" y="581" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="213.21" y="591.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (1,165,256,242,214 samples, 12.27%)</title><rect x="266.5" y="517" width="144.7" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="269.46" y="527.5" >standard_ExecutorRun</text>
</g>
<g >
<title>ReleaseBuffer (2,705,207,434 samples, 0.03%)</title><rect x="282.2" y="309" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="285.21" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (994,938,998 samples, 0.01%)</title><rect x="326.0" y="197" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="328.97" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (169,171,375,849 samples, 1.78%)</title><rect x="156.5" y="469" width="21.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="159.46" y="479.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (9,995,977,451 samples, 0.11%)</title><rect x="176.0" y="437" width="1.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="178.99" y="447.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,243,406,618 samples, 0.03%)</title><rect x="513.1" y="437" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="516.08" y="447.5" ></text>
</g>
<g >
<title>palloc (7,272,655,412 samples, 0.08%)</title><rect x="946.0" y="405" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="949.00" y="415.5" ></text>
</g>
<g >
<title>add_row_identity_columns (12,547,417,716 samples, 0.13%)</title><rect x="920.7" y="469" width="1.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="923.67" y="479.5" ></text>
</g>
<g >
<title>set_plan_refs (46,896,551,139 samples, 0.49%)</title><rect x="898.4" y="501" width="5.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="901.35" y="511.5" ></text>
</g>
<g >
<title>bms_difference (2,699,995,990 samples, 0.03%)</title><rect x="358.5" y="373" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="361.54" y="383.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (6,625,148,312 samples, 0.07%)</title><rect x="193.5" y="421" width="0.8" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="196.53" y="431.5" ></text>
</g>
<g >
<title>hash_search (7,303,152,287 samples, 0.08%)</title><rect x="830.7" y="357" width="0.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="833.71" y="367.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (14,536,357,597 samples, 0.15%)</title><rect x="121.0" y="741" width="1.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="123.96" y="751.5" ></text>
</g>
<g >
<title>fmgr_info (3,038,949,307 samples, 0.03%)</title><rect x="427.9" y="325" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="430.93" y="335.5" ></text>
</g>
<g >
<title>fix_indexqual_clause (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="437" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="89.91" y="447.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (7,891,948,058 samples, 0.08%)</title><rect x="446.1" y="389" width="0.9" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="449.06" y="399.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (19,953,793,157 samples, 0.21%)</title><rect x="901.2" y="421" width="2.5" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="904.22" y="431.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (1,517,520,292 samples, 0.02%)</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.05" y="767.5" ></text>
</g>
<g >
<title>avc_has_perm_noaudit (1,640,177,286 samples, 0.02%)</title><rect x="180.7" y="357" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="183.72" y="367.5" ></text>
</g>
<g >
<title>perf_ctx_enable (4,000,200,386 samples, 0.04%)</title><rect x="164.5" y="309" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="167.51" y="319.5" ></text>
</g>
<g >
<title>MemoryContextDelete (13,720,581,297 samples, 0.14%)</title><rect x="251.9" y="469" width="1.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="254.86" y="479.5" ></text>
</g>
<g >
<title>get_oprrest (5,598,164,402 samples, 0.06%)</title><rect x="1036.6" y="325" width="0.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1039.63" y="335.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (958,600,686 samples, 0.01%)</title><rect x="101.8" y="165" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="104.85" y="175.5" ></text>
</g>
<g >
<title>contain_volatile_functions (15,414,103,464 samples, 0.16%)</title><rect x="958.8" y="389" width="1.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="961.75" y="399.5" ></text>
</g>
<g >
<title>make_fn_arguments (1,533,658,112 samples, 0.02%)</title><rect x="849.5" y="405" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="852.50" y="415.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3,934,088,530 samples, 0.04%)</title><rect x="233.9" y="501" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="236.91" y="511.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (2,321,089,140 samples, 0.02%)</title><rect x="85.4" y="181" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="88.43" y="191.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (1,454,045,854 samples, 0.02%)</title><rect x="44.9" y="757" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="47.88" y="767.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (1,490,671,235 samples, 0.02%)</title><rect x="39.2" y="757" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="42.25" y="767.5" ></text>
</g>
<g >
<title>newNode (2,205,756,683 samples, 0.02%)</title><rect x="837.9" y="373" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="840.88" y="383.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,681,513,101 samples, 0.02%)</title><rect x="388.9" y="277" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="391.88" y="287.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (8,860,694,746 samples, 0.09%)</title><rect x="827.8" y="309" width="1.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="830.80" y="319.5" ></text>
</g>
<g >
<title>do_futex (1,523,372,546 samples, 0.02%)</title><rect x="1148.5" y="517" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1151.51" y="527.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (3,346,047,211 samples, 0.04%)</title><rect x="236.1" y="501" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="239.10" y="511.5" ></text>
</g>
<g >
<title>ExecTypeFromTL (35,857,944,324 samples, 0.38%)</title><rect x="441.5" y="405" width="4.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="444.49" y="415.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,330,345,544 samples, 0.01%)</title><rect x="886.6" y="357" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="889.57" y="367.5" ></text>
</g>
<g >
<title>_bt_lockbuf (966,676,862 samples, 0.01%)</title><rect x="125.5" y="245" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="128.48" y="255.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,637,450,430 samples, 0.02%)</title><rect x="430.7" y="341" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="433.67" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (10,188,174,359 samples, 0.11%)</title><rect x="10.4" y="757" width="1.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="13.36" y="767.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (10,854,884,136 samples, 0.11%)</title><rect x="1052.2" y="453" width="1.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1055.24" y="463.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,074,809,871 samples, 0.01%)</title><rect x="475.6" y="389" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="478.58" y="399.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (1,092,541,087 samples, 0.01%)</title><rect x="429.1" y="341" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="432.08" y="351.5" ></text>
</g>
<g >
<title>table_open (1,357,231,705 samples, 0.01%)</title><rect x="1186.0" y="757" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1189.02" y="767.5" ></text>
</g>
<g >
<title>ExecInitExprRec (10,632,105,674 samples, 0.11%)</title><rect x="438.9" y="405" width="1.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="441.92" y="415.5" ></text>
</g>
<g >
<title>ReadBuffer (1,220,476,765 samples, 0.01%)</title><rect x="125.8" y="245" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="128.76" y="255.5" ></text>
</g>
<g >
<title>sched_clock (908,296,298 samples, 0.01%)</title><rect x="174.5" y="309" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="177.53" y="319.5" ></text>
</g>
<g >
<title>ExecInitNode (236,074,396,716 samples, 2.49%)</title><rect x="421.3" y="453" width="29.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="424.27" y="463.5" >Ex..</text>
</g>
<g >
<title>new_list (1,629,593,801 samples, 0.02%)</title><rect x="815.1" y="421" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="818.10" y="431.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (1,472,176,913 samples, 0.02%)</title><rect x="471.3" y="485" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="474.27" y="495.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (5,392,260,087 samples, 0.06%)</title><rect x="973.3" y="341" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="976.26" y="351.5" ></text>
</g>
<g >
<title>dequeue_entity (38,910,817,626 samples, 0.41%)</title><rect x="169.6" y="293" width="4.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="172.63" y="303.5" ></text>
</g>
<g >
<title>palloc (1,422,263,113 samples, 0.01%)</title><rect x="976.7" y="389" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="979.72" y="399.5" ></text>
</g>
<g >
<title>__task_rq_lock (11,195,369,100 samples, 0.12%)</title><rect x="492.8" y="293" width="1.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="495.76" y="303.5" ></text>
</g>
<g >
<title>palloc0 (3,212,267,982 samples, 0.03%)</title><rect x="1117.3" y="709" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1120.31" y="719.5" ></text>
</g>
<g >
<title>newNode (6,023,954,176 samples, 0.06%)</title><rect x="915.0" y="469" width="0.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="918.00" y="479.5" ></text>
</g>
<g >
<title>set_cheapest (3,139,797,377 samples, 0.03%)</title><rect x="1070.6" y="501" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1073.55" y="511.5" ></text>
</g>
<g >
<title>palloc (1,599,079,676 samples, 0.02%)</title><rect x="982.6" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="985.64" y="415.5" ></text>
</g>
<g >
<title>table_close (1,209,596,048 samples, 0.01%)</title><rect x="1185.8" y="757" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1188.79" y="767.5" ></text>
</g>
<g >
<title>match_foreign_keys_to_quals (1,260,291,617 samples, 0.01%)</title><rect x="1042.2" y="469" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1045.21" y="479.5" ></text>
</g>
<g >
<title>FullTransactionIdAdvance (1,150,850,547 samples, 0.01%)</title><rect x="47.9" y="757" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="50.92" y="767.5" ></text>
</g>
<g >
<title>ExecOpenScanRelation (1,632,367,972 samples, 0.02%)</title><rect x="447.4" y="421" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="450.37" y="431.5" ></text>
</g>
<g >
<title>AllocSetFree (1,650,738,252 samples, 0.02%)</title><rect x="995.3" y="309" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="998.28" y="319.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (1,209,906,031 samples, 0.01%)</title><rect x="1051.7" y="357" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1054.71" y="367.5" ></text>
</g>
<g >
<title>schedule (2,921,975,741 samples, 0.03%)</title><rect x="209.1" y="437" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="212.12" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3,138,386,281 samples, 0.03%)</title><rect x="918.8" y="437" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="921.82" y="447.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,766,461,597 samples, 0.03%)</title><rect x="301.6" y="117" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="304.57" y="127.5" ></text>
</g>
<g >
<title>btint4cmp (2,462,263,923 samples, 0.03%)</title><rect x="126.9" y="213" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="129.92" y="223.5" ></text>
</g>
<g >
<title>PredicateLockPage (1,014,689,819 samples, 0.01%)</title><rect x="329.1" y="229" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="332.12" y="239.5" ></text>
</g>
<g >
<title>bms_copy (3,120,360,996 samples, 0.03%)</title><rect x="880.8" y="453" width="0.4" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="883.77" y="463.5" ></text>
</g>
<g >
<title>IncrBufferRefCount (3,750,077,779 samples, 0.04%)</title><rect x="297.7" y="229" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="300.71" y="239.5" ></text>
</g>
<g >
<title>find_oper_cache_entry (18,469,993,783 samples, 0.19%)</title><rect x="850.8" y="389" width="2.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="853.81" y="399.5" ></text>
</g>
<g >
<title>palloc0 (4,273,196,698 samples, 0.04%)</title><rect x="1119.3" y="709" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1122.30" y="719.5" ></text>
</g>
<g >
<title>bms_add_member (2,587,559,067 samples, 0.03%)</title><rect x="979.3" y="453" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="982.29" y="463.5" ></text>
</g>
<g >
<title>btrescan (4,351,736,056 samples, 0.05%)</title><rect x="342.6" y="309" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="345.64" y="319.5" ></text>
</g>
<g >
<title>var_eq_const (3,293,837,182 samples, 0.03%)</title><rect x="1035.7" y="261" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="1038.69" y="271.5" ></text>
</g>
<g >
<title>make_rel_from_joinlist (1,463,993,323 samples, 0.02%)</title><rect x="1160.9" y="757" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1163.93" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,063,872,614 samples, 0.03%)</title><rect x="1045.9" y="437" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1048.89" y="447.5" ></text>
</g>
<g >
<title>sentinel_ok (6,141,065,098 samples, 0.06%)</title><rect x="148.9" y="533" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="151.93" y="543.5" ></text>
</g>
<g >
<title>__GI___strlcpy (2,873,225,329 samples, 0.03%)</title><rect x="853.7" y="373" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="856.66" y="383.5" ></text>
</g>
<g >
<title>list_nth (870,322,333 samples, 0.01%)</title><rect x="978.4" y="453" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="981.41" y="463.5" ></text>
</g>
<g >
<title>DynaHashAlloc (3,880,307,056 samples, 0.04%)</title><rect x="1060.3" y="453" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1063.26" y="463.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,829,340,167 samples, 0.04%)</title><rect x="1055.5" y="405" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1058.46" y="415.5" ></text>
</g>
<g >
<title>__sysvec_thermal (897,509,062 samples, 0.01%)</title><rect x="757.6" y="485" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="760.62" y="495.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (1,180,539,107 samples, 0.01%)</title><rect x="1071.5" y="565" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1074.46" y="575.5" ></text>
</g>
<g >
<title>VARATT_IS_EXTERNAL_ONDISK (939,112,972 samples, 0.01%)</title><rect x="109.9" y="757" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="112.89" y="767.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (966,676,862 samples, 0.01%)</title><rect x="125.5" y="197" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="128.48" y="207.5" ></text>
</g>
<g >
<title>ExecInitInterpreter (858,165,128 samples, 0.01%)</title><rect x="429.9" y="325" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="432.94" y="335.5" ></text>
</g>
<g >
<title>ReleaseCatCache (958,184,329 samples, 0.01%)</title><rect x="1045.3" y="405" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1048.30" y="415.5" ></text>
</g>
<g >
<title>bms_make_singleton (3,673,297,637 samples, 0.04%)</title><rect x="906.4" y="501" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="909.36" y="511.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (937,198,025 samples, 0.01%)</title><rect x="978.0" y="405" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="981.04" y="415.5" ></text>
</g>
<g >
<title>pfree (1,320,298,348 samples, 0.01%)</title><rect x="1068.8" y="469" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1071.79" y="479.5" ></text>
</g>
<g >
<title>ExecScan (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="469" width="6.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="98.68" y="479.5" ></text>
</g>
<g >
<title>BufferGetLSNAtomic (10,926,695,097 samples, 0.12%)</title><rect x="325.0" y="229" width="1.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="327.97" y="239.5" ></text>
</g>
<g >
<title>list_make1_impl (2,252,599,335 samples, 0.02%)</title><rect x="975.8" y="421" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="978.80" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,192,203,662 samples, 0.01%)</title><rect x="499.5" y="453" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="502.50" y="463.5" ></text>
</g>
<g >
<title>LockHeldByMe (10,936,743,092 samples, 0.12%)</title><rect x="862.5" y="469" width="1.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="865.46" y="479.5" ></text>
</g>
<g >
<title>GrantLockLocal (1,412,840,194 samples, 0.01%)</title><rect x="448.1" y="357" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="451.08" y="367.5" ></text>
</g>
<g >
<title>newNode (3,832,571,342 samples, 0.04%)</title><rect x="971.6" y="389" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="974.61" y="399.5" ></text>
</g>
<g >
<title>AtEOXact_Files (1,085,318,624 samples, 0.01%)</title><rect x="469.6" y="517" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="472.56" y="527.5" ></text>
</g>
<g >
<title>heap_getattr (7,509,511,389 samples, 0.08%)</title><rect x="829.2" y="357" width="1.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="832.23" y="367.5" ></text>
</g>
<g >
<title>PortalRunMulti (55,519,487,286 samples, 0.58%)</title><rect x="95.7" y="645" width="6.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="98.68" y="655.5" ></text>
</g>
<g >
<title>[[vdso]] (1,321,038,397 samples, 0.01%)</title><rect x="210.2" y="565" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="213.23" y="575.5" ></text>
</g>
<g >
<title>ExecIndexScan (473,780,588,722 samples, 4.99%)</title><rect x="284.9" y="405" width="58.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="287.87" y="415.5" >ExecIn..</text>
</g>
<g >
<title>core_yylex (87,175,758,287 samples, 0.92%)</title><rect x="1103.1" y="725" width="10.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1106.11" y="735.5" ></text>
</g>
<g >
<title>_bt_readpage (20,772,002,555 samples, 0.22%)</title><rect x="327.2" y="245" width="2.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="330.24" y="255.5" ></text>
</g>
<g >
<title>pfree (1,711,801,119 samples, 0.02%)</title><rect x="323.4" y="245" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="326.41" y="255.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (2,317,953,935 samples, 0.02%)</title><rect x="173.4" y="261" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="176.38" y="271.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,180,245,984 samples, 0.01%)</title><rect x="848.3" y="389" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="851.30" y="399.5" ></text>
</g>
<g >
<title>CheckExprStillValid (8,582,358,154 samples, 0.09%)</title><rect x="269.7" y="357" width="1.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="272.71" y="367.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (896,646,103 samples, 0.01%)</title><rect x="1049.5" y="437" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1052.52" y="447.5" ></text>
</g>
<g >
<title>coerce_to_boolean (894,193,468 samples, 0.01%)</title><rect x="1128.1" y="757" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1131.14" y="767.5" ></text>
</g>
<g >
<title>tag_hash (2,672,700,206 samples, 0.03%)</title><rect x="863.5" y="437" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="866.49" y="447.5" ></text>
</g>
<g >
<title>btgettreeheight (2,450,203,811 samples, 0.03%)</title><rect x="933.1" y="405" width="0.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="936.12" y="415.5" ></text>
</g>
<g >
<title>LWLockWakeup (1,222,665,025 samples, 0.01%)</title><rect x="370.2" y="245" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="373.21" y="255.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,254,728,770 samples, 0.01%)</title><rect x="104.0" y="453" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="106.95" y="463.5" ></text>
</g>
<g >
<title>PageGetItemId (1,861,098,815 samples, 0.02%)</title><rect x="313.2" y="229" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="316.15" y="239.5" ></text>
</g>
<g >
<title>LWLockRelease (1,882,196,320 samples, 0.02%)</title><rect x="1077.2" y="517" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1080.22" y="527.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,270,428,689 samples, 0.01%)</title><rect x="240.9" y="357" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="243.87" y="367.5" ></text>
</g>
<g >
<title>BufferIsLockedByMe (2,528,995,378 samples, 0.03%)</title><rect x="363.5" y="357" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="366.50" y="367.5" ></text>
</g>
<g >
<title>ExecProcNode (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="453" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="129.31" y="463.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (3,991,187,586 samples, 0.04%)</title><rect x="464.2" y="549" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="467.15" y="559.5" ></text>
</g>
<g >
<title>PostgresMain (83,672,568,701 samples, 0.88%)</title><rect x="95.7" y="693" width="10.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="98.68" y="703.5" ></text>
</g>
<g >
<title>new_list (1,822,162,319 samples, 0.02%)</title><rect x="1018.0" y="357" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1020.96" y="367.5" ></text>
</g>
<g >
<title>__schedule (1,124,399,590 samples, 0.01%)</title><rect x="177.1" y="405" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="180.09" y="415.5" ></text>
</g>
<g >
<title>pg_analyze_and_rewrite_fixedparams (550,043,223,008 samples, 5.79%)</title><rect x="802.5" y="581" width="68.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="805.49" y="591.5" >pg_anal..</text>
</g>
<g >
<title>hash_initial_lookup (892,270,982 samples, 0.01%)</title><rect x="1012.4" y="229" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1015.42" y="239.5" ></text>
</g>
<g >
<title>raw_parser (1,575,281,683 samples, 0.02%)</title><rect x="1175.4" y="757" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1178.36" y="767.5" ></text>
</g>
<g >
<title>XLogRegisterBufData (4,217,293,991 samples, 0.04%)</title><rect x="391.9" y="341" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="394.86" y="351.5" ></text>
</g>
<g >
<title>__futex_wait (1,573,188,973 samples, 0.02%)</title><rect x="496.9" y="325" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="499.87" y="335.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,328,469,786 samples, 0.01%)</title><rect x="1077.3" y="501" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1080.29" y="511.5" ></text>
</g>
<g >
<title>get_hash_value (3,017,910,220 samples, 0.03%)</title><rect x="941.9" y="325" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="944.85" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (839,670,432 samples, 0.01%)</title><rect x="829.1" y="293" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="832.08" y="303.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (4,894,859,417 samples, 0.05%)</title><rect x="365.6" y="293" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="368.57" y="303.5" ></text>
</g>
<g >
<title>bms_add_members (3,921,033,179 samples, 0.04%)</title><rect x="880.0" y="469" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="883.01" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,385,125,815 samples, 0.01%)</title><rect x="156.3" y="469" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="159.29" y="479.5" ></text>
</g>
<g >
<title>BufferAlloc (21,191,765,814 samples, 0.22%)</title><rect x="300.0" y="149" width="2.6" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="303.00" y="159.5" ></text>
</g>
<g >
<title>seg_alloc (3,983,346,449 samples, 0.04%)</title><rect x="1063.5" y="437" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1066.49" y="447.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (3,399,137,245 samples, 0.04%)</title><rect x="948.5" y="373" width="0.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="951.53" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,123,779,326 samples, 0.01%)</title><rect x="1034.5" y="181" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1037.55" y="191.5" ></text>
</g>
<g >
<title>hash_initial_lookup (983,820,102 samples, 0.01%)</title><rect x="867.4" y="405" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="870.43" y="415.5" ></text>
</g>
<g >
<title>AllocSetCheck (29,591,230,937 samples, 0.31%)</title><rect x="260.5" y="405" width="3.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="263.46" y="415.5" ></text>
</g>
<g >
<title>create_empty_pathtarget (2,484,838,322 samples, 0.03%)</title><rect x="927.8" y="421" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="930.82" y="431.5" ></text>
</g>
<g >
<title>standard_ExecutorFinish (3,972,168,049 samples, 0.04%)</title><rect x="265.8" y="517" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="268.82" y="527.5" ></text>
</g>
<g >
<title>index_can_return (2,584,147,603 samples, 0.03%)</title><rect x="939.7" y="405" width="0.3" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text  x="942.68" y="415.5" ></text>
</g>
<g >
<title>pull_up_subqueries_recurse (4,831,311,225 samples, 0.05%)</title><rect x="1069.9" y="485" width="0.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1072.91" y="495.5" ></text>
</g>
<g >
<title>distribute_qual_to_rels (129,961,314,320 samples, 1.37%)</title><rect x="957.8" y="421" width="16.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="960.79" y="431.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (3,183,882,121 samples, 0.03%)</title><rect x="902.9" y="341" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="905.86" y="351.5" ></text>
</g>
<g >
<title>finalize_primnode (1,407,547,936 samples, 0.01%)</title><rect x="882.8" y="357" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="885.82" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,333,328,147 samples, 0.01%)</title><rect x="432.2" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="435.18" y="335.5" ></text>
</g>
<g >
<title>distribute_quals_to_rels (131,524,823,477 samples, 1.38%)</title><rect x="957.6" y="437" width="16.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="960.61" y="447.5" ></text>
</g>
<g >
<title>palloc (1,217,267,063 samples, 0.01%)</title><rect x="893.5" y="421" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="896.45" y="431.5" ></text>
</g>
<g >
<title>UnpinBuffer (3,443,724,290 samples, 0.04%)</title><rect x="326.5" y="197" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="329.47" y="207.5" ></text>
</g>
<g >
<title>GetXLogBuffer (1,298,742,404 samples, 0.01%)</title><rect x="512.3" y="437" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="515.29" y="447.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (1,656,189,483 samples, 0.02%)</title><rect x="438.0" y="373" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="441.01" y="383.5" ></text>
</g>
<g >
<title>index_getattr (14,797,461,142 samples, 0.16%)</title><rect x="321.5" y="229" width="1.8" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="324.47" y="239.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (4,841,861,153 samples, 0.05%)</title><rect x="367.6" y="261" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="370.64" y="271.5" ></text>
</g>
<g >
<title>AllocSetFree (1,246,194,738 samples, 0.01%)</title><rect x="248.4" y="357" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="251.43" y="367.5" ></text>
</g>
<g >
<title>pgstat_count_io_op_time (3,577,291,607 samples, 0.04%)</title><rect x="508.3" y="453" width="0.5" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="511.32" y="463.5" ></text>
</g>
<g >
<title>ExecModifyTable (55,519,487,286 samples, 0.58%)</title><rect x="95.7" y="533" width="6.9" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="98.68" y="543.5" ></text>
</g>
<g >
<title>ExecUpdateEpilogue (2,927,654,386 samples, 0.03%)</title><rect x="395.5" y="421" width="0.4" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="398.54" y="431.5" ></text>
</g>
<g >
<title>restriction_is_always_true (996,072,163 samples, 0.01%)</title><rect x="981.0" y="405" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="984.03" y="415.5" ></text>
</g>
<g >
<title>_bt_compare (4,852,963,898 samples, 0.05%)</title><rect x="338.8" y="229" width="0.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="341.83" y="239.5" ></text>
</g>
<g >
<title>security_file_permission (4,127,581,218 samples, 0.04%)</title><rect x="501.0" y="373" width="0.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="503.98" y="383.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (835,573,177 samples, 0.01%)</title><rect x="377.8" y="325" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="380.82" y="335.5" ></text>
</g>
<g >
<title>psi_account_irqtime (2,531,487,590 samples, 0.03%)</title><rect x="485.4" y="277" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="488.44" y="287.5" ></text>
</g>
<g >
<title>exec_simple_query (817,100,162 samples, 0.01%)</title><rect x="84.2" y="741" width="0.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="87.22" y="751.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (2,841,645,866 samples, 0.03%)</title><rect x="84.3" y="309" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="87.32" y="319.5" ></text>
</g>
<g >
<title>ExecScan (472,722,226,458 samples, 4.98%)</title><rect x="284.9" y="389" width="58.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="287.91" y="399.5" >ExecScan</text>
</g>
<g >
<title>preprocess_expression (26,352,281,467 samples, 0.28%)</title><rect x="1054.0" y="485" width="3.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="1056.99" y="495.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,908,347,190 samples, 0.04%)</title><rect x="94.3" y="757" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="97.31" y="767.5" ></text>
</g>
<g >
<title>check_list_invariants (1,486,098,367 samples, 0.02%)</title><rect x="1126.2" y="757" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1129.21" y="767.5" ></text>
</g>
<g >
<title>hash_search (10,873,439,606 samples, 0.11%)</title><rect x="867.1" y="437" width="1.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="870.08" y="447.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (3,406,487,201 samples, 0.04%)</title><rect x="271.5" y="325" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="274.47" y="335.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (1,049,007,320 samples, 0.01%)</title><rect x="409.6" y="261" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="412.59" y="271.5" ></text>
</g>
<g >
<title>bms_copy (3,439,666,431 samples, 0.04%)</title><rect x="950.9" y="421" width="0.4" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="953.87" y="431.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (475,221,569,341 samples, 5.00%)</title><rect x="284.8" y="421" width="59.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="287.83" y="431.5" >ExecPr..</text>
</g>
<g >
<title>genericcostestimate (815,978,484 samples, 0.01%)</title><rect x="1140.4" y="757" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1143.45" y="767.5" ></text>
</g>
<g >
<title>PostmasterMain (3,415,261,054 samples, 0.04%)</title><rect x="1158.9" y="741" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1161.90" y="751.5" ></text>
</g>
<g >
<title>remove_useless_groupby_columns (1,688,490,611 samples, 0.02%)</title><rect x="1042.9" y="469" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1045.89" y="479.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,186,043,021 samples, 0.01%)</title><rect x="353.6" y="261" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="356.55" y="271.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (49,383,293,415 samples, 0.52%)</title><rect x="285.7" y="325" width="6.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="288.70" y="335.5" ></text>
</g>
<g >
<title>uint32_hash (909,682,450 samples, 0.01%)</title><rect x="1023.3" y="325" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1026.32" y="335.5" ></text>
</g>
<g >
<title>palloc (1,680,203,637 samples, 0.02%)</title><rect x="189.1" y="533" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="192.11" y="543.5" ></text>
</g>
<g >
<title>lappend (2,563,955,020 samples, 0.03%)</title><rect x="1017.9" y="373" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1020.87" y="383.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (1,526,558,245 samples, 0.02%)</title><rect x="332.7" y="213" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="335.72" y="223.5" ></text>
</g>
<g >
<title>ReadBufferExtended (19,141,434,356 samples, 0.20%)</title><rect x="100.1" y="277" width="2.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="103.12" y="287.5" ></text>
</g>
<g >
<title>gup_fast_fallback (2,837,958,187 samples, 0.03%)</title><rect x="492.2" y="309" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="495.21" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_add_u64_impl (1,387,052,730 samples, 0.01%)</title><rect x="497.6" y="437" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="500.57" y="447.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,271,991,822 samples, 0.01%)</title><rect x="1033.6" y="149" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1036.65" y="159.5" ></text>
</g>
<g >
<title>lappend (2,781,709,260 samples, 0.03%)</title><rect x="874.2" y="565" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="877.21" y="575.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (5,269,209,910 samples, 0.06%)</title><rect x="366.6" y="261" width="0.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="369.60" y="271.5" ></text>
</g>
<g >
<title>list_nth_cell (829,244,497 samples, 0.01%)</title><rect x="1043.2" y="453" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1046.24" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,855,028,272 samples, 0.02%)</title><rect x="458.9" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="461.85" y="431.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (2,676,811,603 samples, 0.03%)</title><rect x="213.6" y="565" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="216.58" y="575.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (9,307,357,470 samples, 0.10%)</title><rect x="1045.1" y="453" width="1.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1048.13" y="463.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,212,147,791 samples, 0.02%)</title><rect x="994.9" y="325" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="997.89" y="335.5" ></text>
</g>
<g >
<title>palloc0 (4,322,150,769 samples, 0.05%)</title><rect x="944.6" y="389" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="947.63" y="399.5" ></text>
</g>
<g >
<title>AtCommit_Memory (9,695,517,494 samples, 0.10%)</title><rect x="467.5" y="517" width="1.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="470.48" y="527.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (1,130,940,652 samples, 0.01%)</title><rect x="434.6" y="373" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="437.55" y="383.5" ></text>
</g>
<g >
<title>PageGetItemId (2,147,840,508 samples, 0.02%)</title><rect x="81.1" y="741" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="84.09" y="751.5" ></text>
</g>
<g >
<title>list_nth (819,657,936 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>ReleaseSysCache (972,571,831 samples, 0.01%)</title><rect x="1008.2" y="277" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1011.24" y="287.5" ></text>
</g>
<g >
<title>schedule (1,131,286,277 samples, 0.01%)</title><rect x="496.9" y="293" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="499.88" y="303.5" ></text>
</g>
<g >
<title>PostmasterMain (22,701,609,115 samples, 0.24%)</title><rect x="84.3" y="757" width="2.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="87.32" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (7,827,516,581 samples, 0.08%)</title><rect x="518.8" y="437" width="0.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="521.76" y="447.5" ></text>
</g>
<g >
<title>expression_returns_set_walker (2,234,886,004 samples, 0.02%)</title><rect x="845.5" y="389" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="848.45" y="399.5" ></text>
</g>
<g >
<title>standard_planner (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="613" width="3.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="105.66" y="623.5" ></text>
</g>
<g >
<title>_bt_next (9,369,977,460 samples, 0.10%)</title><rect x="283.0" y="293" width="1.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="286.02" y="303.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,546,571,702 samples, 0.04%)</title><rect x="1045.4" y="405" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1048.44" y="415.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,001,601,369 samples, 0.01%)</title><rect x="700.4" y="453" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="703.40" y="463.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (3,668,751,795 samples, 0.04%)</title><rect x="1073.9" y="517" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1076.89" y="527.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (979,979,626 samples, 0.01%)</title><rect x="264.1" y="405" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="267.13" y="415.5" ></text>
</g>
<g >
<title>tag_hash (10,400,301,170 samples, 0.11%)</title><rect x="839.1" y="325" width="1.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="842.14" y="335.5" ></text>
</g>
<g >
<title>ExecUpdate (484,478,572,189 samples, 5.10%)</title><rect x="344.0" y="437" width="60.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="347.01" y="447.5" >ExecUp..</text>
</g>
<g >
<title>CheckForBufferLeaks (1,901,294,167 samples, 0.02%)</title><rect x="469.3" y="501" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="472.25" y="511.5" ></text>
</g>
<g >
<title>ExecCheckIndexedAttrsForChanges (26,386,302,641 samples, 0.28%)</title><rect x="345.9" y="405" width="3.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="348.93" y="415.5" ></text>
</g>
<g >
<title>palloc (1,822,242,194 samples, 0.02%)</title><rect x="889.8" y="309" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="892.84" y="319.5" ></text>
</g>
<g >
<title>register_seq_scan (999,869,463 samples, 0.01%)</title><rect x="527.9" y="437" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="530.89" y="447.5" ></text>
</g>
<g >
<title>PinBufferForBlock (3,143,518,309 samples, 0.03%)</title><rect x="86.5" y="197" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="89.52" y="207.5" ></text>
</g>
<g >
<title>lappend (2,075,194,618 samples, 0.02%)</title><rect x="1053.3" y="437" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1056.33" y="447.5" ></text>
</g>
<g >
<title>pick_task_fair (1,238,855,605 samples, 0.01%)</title><rect x="484.1" y="245" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="487.10" y="255.5" ></text>
</g>
<g >
<title>AtEOXact_MultiXact (811,436,456 samples, 0.01%)</title><rect x="31.8" y="757" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="34.76" y="767.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (820,047,704 samples, 0.01%)</title><rect x="330.7" y="213" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="333.71" y="223.5" ></text>
</g>
<g >
<title>enqueue_task (2,196,889,534 samples, 0.02%)</title><rect x="202.0" y="325" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="205.02" y="335.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,790,962,900 samples, 0.02%)</title><rect x="1058.6" y="453" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1061.56" y="463.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (5,020,864,105 samples, 0.05%)</title><rect x="435.2" y="357" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="438.16" y="367.5" ></text>
</g>
<g >
<title>lappend (1,938,886,419 samples, 0.02%)</title><rect x="281.1" y="405" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="284.12" y="415.5" ></text>
</g>
<g >
<title>ExecClearTuple (2,373,490,245 samples, 0.02%)</title><rect x="269.3" y="405" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="272.30" y="415.5" ></text>
</g>
<g >
<title>makeTargetEntry (6,119,112,734 samples, 0.06%)</title><rect x="886.0" y="421" width="0.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="889.02" y="431.5" ></text>
</g>
<g >
<title>tts_virtual_clear (835,305,116 samples, 0.01%)</title><rect x="251.0" y="453" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="254.03" y="463.5" ></text>
</g>
<g >
<title>list_free_private (6,362,728,921 samples, 0.07%)</title><rect x="977.4" y="437" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="980.38" y="447.5" ></text>
</g>
<g >
<title>__task_rq_lock (1,291,805,830 samples, 0.01%)</title><rect x="389.5" y="85" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="392.45" y="95.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (23,498,308,475 samples, 0.25%)</title><rect x="809.1" y="389" width="2.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="812.13" y="399.5" ></text>
</g>
<g >
<title>palloc (2,635,927,941 samples, 0.03%)</title><rect x="236.5" y="517" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="239.52" y="527.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,610,349,409 samples, 0.02%)</title><rect x="101.4" y="149" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="104.40" y="159.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (2,187,104,939 samples, 0.02%)</title><rect x="431.4" y="293" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="434.36" y="303.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,385,748,817 samples, 0.01%)</title><rect x="1077.1" y="501" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1080.05" y="511.5" ></text>
</g>
<g >
<title>ExecBSUpdateTriggers (960,295,206 samples, 0.01%)</title><rect x="404.6" y="421" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="407.59" y="431.5" ></text>
</g>
<g >
<title>gup_fast_pte_range (2,345,970,185 samples, 0.02%)</title><rect x="489.8" y="245" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="492.77" y="255.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,499,931,219 samples, 0.04%)</title><rect x="838.3" y="325" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="841.25" y="335.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (1,023,745,549 samples, 0.01%)</title><rect x="276.3" y="373" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="279.31" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (810,290,112 samples, 0.01%)</title><rect x="377.0" y="341" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="380.01" y="351.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (845,907,824 samples, 0.01%)</title><rect x="356.2" y="261" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="359.17" y="271.5" ></text>
</g>
<g >
<title>set_baserel_size_estimates (1,423,929,784 samples, 0.01%)</title><rect x="1181.7" y="757" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1184.73" y="767.5" ></text>
</g>
<g >
<title>pull_varnos_walker (1,371,897,689 samples, 0.01%)</title><rect x="1035.3" y="197" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1038.33" y="207.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (4,073,502,377 samples, 0.04%)</title><rect x="340.1" y="197" width="0.5" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="343.13" y="207.5" ></text>
</g>
<g >
<title>add_function_cost (5,620,161,791 samples, 0.06%)</title><rect x="1045.2" y="437" width="0.7" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1048.19" y="447.5" ></text>
</g>
<g >
<title>PortalRunMulti (1,866,837,160,290 samples, 19.65%)</title><rect x="230.4" y="565" width="231.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="233.41" y="575.5" >PortalRunMulti</text>
</g>
<g >
<title>list_concat_copy (5,807,099,477 samples, 0.06%)</title><rect x="990.5" y="373" width="0.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="993.54" y="383.5" ></text>
</g>
<g >
<title>markRTEForSelectPriv (7,069,638,533 samples, 0.07%)</title><rect x="857.0" y="341" width="0.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="859.98" y="351.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (5,316,062,062 samples, 0.06%)</title><rect x="164.4" y="325" width="0.7" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="167.41" y="335.5" ></text>
</g>
<g >
<title>MemoryContextTraverseNext (8,671,946,467 samples, 0.09%)</title><rect x="800.9" y="549" width="1.0" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="803.87" y="559.5" ></text>
</g>
<g >
<title>create_indexscan_plan (40,645,572,052 samples, 0.43%)</title><rect x="887.3" y="405" width="5.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="890.33" y="415.5" ></text>
</g>
<g >
<title>WalSndWakeup (4,959,155,408 samples, 0.05%)</title><rect x="497.9" y="469" width="0.6" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="500.91" y="479.5" ></text>
</g>
<g >
<title>LockHeldByMe (8,732,104,450 samples, 0.09%)</title><rect x="452.0" y="357" width="1.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="455.03" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,104,937,725 samples, 0.01%)</title><rect x="1060.8" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1063.76" y="447.5" ></text>
</g>
<g >
<title>palloc (1,264,157,115 samples, 0.01%)</title><rect x="933.9" y="357" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="936.87" y="367.5" ></text>
</g>
<g >
<title>ExecBuildUpdateProjection (38,685,262,854 samples, 0.41%)</title><rect x="273.5" y="421" width="4.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="276.47" y="431.5" ></text>
</g>
<g >
<title>get_relation_statistics (2,432,832,943 samples, 0.03%)</title><rect x="939.4" y="405" width="0.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="942.38" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u64_impl (814,711,503 samples, 0.01%)</title><rect x="497.4" y="437" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="500.37" y="447.5" ></text>
</g>
<g >
<title>CreateExprContextInternal (10,000,665,687 samples, 0.11%)</title><rect x="272.2" y="389" width="1.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="275.23" y="399.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (811,432,908 samples, 0.01%)</title><rect x="1115.3" y="661" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1118.32" y="671.5" ></text>
</g>
<g >
<title>transformExprRecurse (101,739,854,475 samples, 1.07%)</title><rect x="845.8" y="453" width="12.7" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="848.83" y="463.5" ></text>
</g>
<g >
<title>ReleaseCatCache (870,664,899 samples, 0.01%)</title><rect x="917.0" y="357" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="920.04" y="367.5" ></text>
</g>
<g >
<title>_bt_compare (2,113,731,581 samples, 0.02%)</title><rect x="129.5" y="757" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="132.51" y="767.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,302,341,976 samples, 0.01%)</title><rect x="1134.9" y="709" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1137.90" y="719.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (1,871,243,432 samples, 0.02%)</title><rect x="269.4" y="389" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="272.36" y="399.5" ></text>
</g>
<g >
<title>hash_initial_lookup (823,177,425 samples, 0.01%)</title><rect x="868.6" y="421" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="871.64" y="431.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (21,783,123,494 samples, 0.23%)</title><rect x="407.2" y="325" width="2.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="410.16" y="335.5" ></text>
</g>
<g >
<title>palloc0 (2,962,850,189 samples, 0.03%)</title><rect x="817.6" y="405" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="820.59" y="415.5" ></text>
</g>
<g >
<title>pq_getmessage (10,474,817,378 samples, 0.11%)</title><rect x="187.3" y="565" width="1.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="190.30" y="575.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat (8,374,341,722 samples, 0.09%)</title><rect x="470.5" y="517" width="1.1" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text  x="473.52" y="527.5" ></text>
</g>
<g >
<title>deconstruct_distribute (132,531,470,230 samples, 1.40%)</title><rect x="957.5" y="453" width="16.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="960.49" y="463.5" ></text>
</g>
<g >
<title>AllocSetCheck (1,587,694,175 samples, 0.02%)</title><rect x="225.4" y="517" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="228.37" y="527.5" ></text>
</g>
<g >
<title>hash_seq_init (2,282,240,270 samples, 0.02%)</title><rect x="527.7" y="453" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="530.73" y="463.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (1,607,516,114 samples, 0.02%)</title><rect x="124.0" y="293" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="126.99" y="303.5" ></text>
</g>
<g >
<title>smgrnblocks (11,075,645,823 samples, 0.12%)</title><rect x="931.7" y="389" width="1.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="934.70" y="399.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (8,502,734,615 samples, 0.09%)</title><rect x="318.2" y="229" width="1.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="321.17" y="239.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (1,148,582,055,886 samples, 12.09%)</title><rect x="267.5" y="469" width="142.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="270.46" y="479.5" >ExecProcNodeFirst</text>
</g>
<g >
<title>_bt_checkkeys (4,627,104,075 samples, 0.05%)</title><rect x="126.3" y="245" width="0.6" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="129.31" y="255.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (6,894,472,615 samples, 0.07%)</title><rect x="890.1" y="309" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="893.06" y="319.5" ></text>
</g>
<g >
<title>[postgres] (4,620,041,081 samples, 0.05%)</title><rect x="112.0" y="757" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="115.05" y="767.5" ></text>
</g>
<g >
<title>palloc0 (2,082,528,780 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.18" y="367.5" ></text>
</g>
<g >
<title>bms_copy (1,415,100,591 samples, 0.01%)</title><rect x="968.6" y="357" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="971.62" y="367.5" ></text>
</g>
<g >
<title>_bt_binsrch (3,262,946,556 samples, 0.03%)</title><rect x="124.8" y="277" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="127.77" y="287.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,084,950,092 samples, 0.01%)</title><rect x="351.7" y="357" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="354.72" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (13,654,843,872 samples, 0.14%)</title><rect x="1074.6" y="517" width="1.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1077.60" y="527.5" ></text>
</g>
<g >
<title>MemoryContextReset (831,164,191 samples, 0.01%)</title><rect x="404.2" y="437" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="407.21" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,577,817,837 samples, 0.02%)</title><rect x="1148.5" y="533" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1151.50" y="543.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (1,926,491,662 samples, 0.02%)</title><rect x="171.9" y="245" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="174.89" y="255.5" ></text>
</g>
<g >
<title>_bt_first (966,157,519 samples, 0.01%)</title><rect x="129.9" y="757" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="132.86" y="767.5" ></text>
</g>
<g >
<title>LWLockRelease (2,059,272,808 samples, 0.02%)</title><rect x="223.6" y="549" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="226.61" y="559.5" ></text>
</g>
<g >
<title>__rint_sse41 (1,569,411,537 samples, 0.02%)</title><rect x="938.5" y="341" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="941.52" y="351.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (12,665,037,636 samples, 0.13%)</title><rect x="1142.7" y="741" width="1.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1145.73" y="751.5" ></text>
</g>
<g >
<title>newNode (2,512,721,001 samples, 0.03%)</title><rect x="919.9" y="469" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="922.86" y="479.5" ></text>
</g>
<g >
<title>asm_sysvec_thermal (919,554,249 samples, 0.01%)</title><rect x="796.1" y="517" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="799.12" y="527.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (6,733,630,383 samples, 0.07%)</title><rect x="509.2" y="453" width="0.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="512.15" y="463.5" ></text>
</g>
<g >
<title>DatumGetPointer (1,699,079,984 samples, 0.02%)</title><rect x="41.1" y="757" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="44.05" y="767.5" ></text>
</g>
<g >
<title>index_getnext_tid (16,454,052,467 samples, 0.17%)</title><rect x="282.6" y="325" width="2.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="285.62" y="335.5" ></text>
</g>
<g >
<title>lappend (2,964,151,139 samples, 0.03%)</title><rect x="1056.4" y="405" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1059.39" y="415.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,365,375,810 samples, 0.01%)</title><rect x="291.6" y="165" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="294.59" y="175.5" ></text>
</g>
<g >
<title>btgettuple (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="357" width="2.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="87.32" y="367.5" ></text>
</g>
<g >
<title>UnregisterSnapshotNoOwner (1,849,062,509 samples, 0.02%)</title><rect x="460.8" y="485" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="463.81" y="495.5" ></text>
</g>
<g >
<title>new_list (1,440,734,397 samples, 0.02%)</title><rect x="897.9" y="453" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="900.87" y="463.5" ></text>
</g>
<g >
<title>relation_open (28,186,893,177 samples, 0.30%)</title><rect x="866.8" y="501" width="3.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="869.81" y="511.5" ></text>
</g>
<g >
<title>new_list (2,320,038,453 samples, 0.02%)</title><rect x="870.5" y="517" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="873.46" y="527.5" ></text>
</g>
<g >
<title>tag_hash (2,567,225,802 samples, 0.03%)</title><rect x="1067.4" y="405" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1070.37" y="415.5" ></text>
</g>
<g >
<title>setup_simple_rel_arrays (4,960,043,149 samples, 0.05%)</title><rect x="1043.5" y="469" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1046.49" y="479.5" ></text>
</g>
<g >
<title>enqueue_task (9,462,436,757 samples, 0.10%)</title><rect x="206.4" y="309" width="1.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="209.45" y="319.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (935,760,977 samples, 0.01%)</title><rect x="165.1" y="293" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="168.14" y="303.5" ></text>
</g>
<g >
<title>CopySnapshot (4,013,424,286 samples, 0.04%)</title><rect x="461.4" y="533" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="464.38" y="543.5" ></text>
</g>
<g >
<title>_bt_getbuf (3,477,463,344 samples, 0.04%)</title><rect x="125.2" y="261" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="128.17" y="271.5" ></text>
</g>
<g >
<title>GetSnapshotData (32,447,403,724 samples, 0.34%)</title><rect x="219.9" y="565" width="4.0" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="222.90" y="575.5" ></text>
</g>
<g >
<title>palloc (1,257,133,242 samples, 0.01%)</title><rect x="438.1" y="357" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="441.06" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,295,242,976 samples, 0.01%)</title><rect x="894.1" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="897.05" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,197,166,383 samples, 0.01%)</title><rect x="890.6" y="229" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="893.55" y="239.5" ></text>
</g>
<g >
<title>pfree (1,197,702,173 samples, 0.01%)</title><rect x="861.9" y="501" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="864.93" y="511.5" ></text>
</g>
<g >
<title>lappend (2,950,144,662 samples, 0.03%)</title><rect x="980.5" y="405" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="983.49" y="415.5" ></text>
</g>
<g >
<title>palloc (1,087,446,409 samples, 0.01%)</title><rect x="126.2" y="405" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="129.17" y="415.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,857,502,626 samples, 0.03%)</title><rect x="101.2" y="165" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="104.25" y="175.5" ></text>
</g>
<g >
<title>set_sentinel (1,184,543,732 samples, 0.01%)</title><rect x="1182.7" y="757" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="1185.70" y="767.5" ></text>
</g>
<g >
<title>examine_variable (944,526,695 samples, 0.01%)</title><rect x="1135.4" y="757" width="0.1" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="1138.38" y="767.5" ></text>
</g>
<g >
<title>TupleDescAttr (4,029,220,683 samples, 0.04%)</title><rect x="108.3" y="757" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="111.25" y="767.5" ></text>
</g>
<g >
<title>transformColumnRef (25,343,357,939 samples, 0.27%)</title><rect x="855.3" y="405" width="3.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="858.32" y="415.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,756,472,230 samples, 0.05%)</title><rect x="917.7" y="421" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="920.67" y="431.5" ></text>
</g>
<g >
<title>__update_idle_core (2,598,717,311 samples, 0.03%)</title><rect x="163.8" y="309" width="0.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="166.84" y="319.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,309,601,826 samples, 0.01%)</title><rect x="833.0" y="357" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="835.96" y="367.5" ></text>
</g>
<g >
<title>hash_search (4,235,145,714 samples, 0.04%)</title><rect x="1144.8" y="757" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1147.79" y="767.5" ></text>
</g>
<g >
<title>_bt_getroot (15,010,179,720 samples, 0.16%)</title><rect x="336.3" y="245" width="1.9" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="339.32" y="255.5" ></text>
</g>
<g >
<title>futex_hash (1,659,986,968 samples, 0.02%)</title><rect x="489.2" y="309" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="492.24" y="319.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (1,799,476,686 samples, 0.02%)</title><rect x="1139.7" y="757" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1142.68" y="767.5" ></text>
</g>
<g >
<title>main (7,654,249,878,114 samples, 80.57%)</title><rect x="132.0" y="709" width="950.7" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="134.98" y="719.5" >main</text>
</g>
<g >
<title>expression_returns_set_walker (7,828,084,986 samples, 0.08%)</title><rect x="844.8" y="437" width="1.0" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="847.78" y="447.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (11,016,433,624 samples, 0.12%)</title><rect x="492.8" y="245" width="1.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="495.78" y="255.5" ></text>
</g>
<g >
<title>new_list (2,043,197,232 samples, 0.02%)</title><rect x="1057.0" y="437" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1060.00" y="447.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,057,368,347 samples, 0.04%)</title><rect x="415.5" y="389" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="418.48" y="399.5" ></text>
</g>
<g >
<title>perf_ctx_disable (1,657,125,432 samples, 0.02%)</title><rect x="485.2" y="229" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="488.24" y="239.5" ></text>
</g>
<g >
<title>pg_plan_queries (3,069,363,779 samples, 0.03%)</title><rect x="125.9" y="613" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="128.92" y="623.5" ></text>
</g>
<g >
<title>lappend (4,452,296,240 samples, 0.05%)</title><rect x="816.9" y="437" width="0.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="819.93" y="447.5" ></text>
</g>
<g >
<title>stack_is_too_deep (2,833,438,359 samples, 0.03%)</title><rect x="1127.5" y="741" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1130.51" y="751.5" ></text>
</g>
<g >
<title>palloc0 (1,557,425,161 samples, 0.02%)</title><rect x="1034.5" y="197" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1037.49" y="207.5" ></text>
</g>
<g >
<title>wipe_mem (34,768,126,424 samples, 0.37%)</title><rect x="243.8" y="357" width="4.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="246.83" y="367.5" ></text>
</g>
<g >
<title>preprocess_rowmarks (1,076,683,116 samples, 0.01%)</title><rect x="1173.9" y="757" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1176.93" y="767.5" ></text>
</g>
<g >
<title>futex_wait (907,110,079 samples, 0.01%)</title><rect x="370.0" y="149" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="372.95" y="159.5" ></text>
</g>
<g >
<title>internal_putbytes (3,358,780,253 samples, 0.04%)</title><rect x="219.1" y="549" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="222.11" y="559.5" ></text>
</g>
<g >
<title>DynaHashAlloc (960,010,806 samples, 0.01%)</title><rect x="41.4" y="757" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="44.36" y="767.5" ></text>
</g>
<g >
<title>RelationGetIndexExpressions (1,639,377,301 samples, 0.02%)</title><rect x="930.7" y="405" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="933.72" y="415.5" ></text>
</g>
<g >
<title>SyncRepWaitForLSN (1,913,969,267 samples, 0.02%)</title><rect x="477.1" y="501" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="480.10" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,905,458,566 samples, 0.02%)</title><rect x="932.2" y="309" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="935.19" y="319.5" ></text>
</g>
<g >
<title>op_input_types (5,641,073,419 samples, 0.06%)</title><rect x="972.1" y="389" width="0.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="975.08" y="399.5" ></text>
</g>
<g >
<title>BackendStartup (18,601,171,430 samples, 0.20%)</title><rect x="124.0" y="693" width="2.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="126.99" y="703.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (971,760,410 samples, 0.01%)</title><rect x="1040.9" y="309" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1043.85" y="319.5" ></text>
</g>
<g >
<title>hash_bytes (1,875,926,933 samples, 0.02%)</title><rect x="942.8" y="309" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="945.79" y="319.5" ></text>
</g>
<g >
<title>new_list (2,489,338,874 samples, 0.03%)</title><rect x="861.4" y="485" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="864.35" y="495.5" ></text>
</g>
<g >
<title>pfree (942,688,034 samples, 0.01%)</title><rect x="224.5" y="565" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="227.53" y="575.5" ></text>
</g>
<g >
<title>MemoryContextReset (145,830,053,287 samples, 1.54%)</title><rect x="133.7" y="597" width="18.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="136.71" y="607.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (5,651,725,894 samples, 0.06%)</title><rect x="153.7" y="517" width="0.7" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="156.72" y="527.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,294,419,002 samples, 0.02%)</title><rect x="277.0" y="389" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="280.02" y="399.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (894,550,064 samples, 0.01%)</title><rect x="1021.0" y="245" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1023.99" y="255.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (836,794,810 samples, 0.01%)</title><rect x="464.5" y="517" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="467.52" y="527.5" ></text>
</g>
<g >
<title>LockRelationOid (9,314,932,247 samples, 0.10%)</title><rect x="447.9" y="389" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="450.89" y="399.5" ></text>
</g>
<g >
<title>avc_has_perm_noaudit (2,686,913,986 samples, 0.03%)</title><rect x="194.0" y="373" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="197.02" y="383.5" ></text>
</g>
<g >
<title>MemoryContextDeleteChildren (18,556,513,375 samples, 0.20%)</title><rect x="133.8" y="581" width="2.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="136.79" y="591.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,001,407,015 samples, 0.01%)</title><rect x="337.4" y="181" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="340.42" y="191.5" ></text>
</g>
<g >
<title>detoast_attr (7,271,220,405 samples, 0.08%)</title><rect x="1007.1" y="261" width="0.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1010.15" y="271.5" ></text>
</g>
<g >
<title>assign_query_collations_walker (3,008,089,712 samples, 0.03%)</title><rect x="1084.8" y="757" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1087.77" y="767.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,851,693,476 samples, 0.04%)</title><rect x="838.2" y="357" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="841.21" y="367.5" ></text>
</g>
<g >
<title>_bt_checkkeys (2,463,738,124 samples, 0.03%)</title><rect x="84.7" y="293" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="87.68" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,101,920,593 samples, 0.02%)</title><rect x="1118.5" y="677" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1121.48" y="687.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (6,197,636,254 samples, 0.07%)</title><rect x="293.4" y="277" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="296.36" y="287.5" ></text>
</g>
<g >
<title>CopyXLogRecordToWAL (3,594,581,600 samples, 0.04%)</title><rect x="512.1" y="453" width="0.4" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text  x="515.09" y="463.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (6,526,914,420 samples, 0.07%)</title><rect x="366.5" y="293" width="0.9" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="369.54" y="303.5" ></text>
</g>
<g >
<title>SearchCatCache3 (4,608,026,529 samples, 0.05%)</title><rect x="1013.7" y="277" width="0.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1016.66" y="287.5" ></text>
</g>
<g >
<title>LWLockConditionalAcquire (3,384,659,164 samples, 0.04%)</title><rect x="474.3" y="501" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="477.31" y="511.5" ></text>
</g>
<g >
<title>sentinel_ok (28,575,533,843 samples, 0.30%)</title><rect x="1178.0" y="757" width="3.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1181.03" y="767.5" ></text>
</g>
<g >
<title>pstrdup (3,991,163,469 samples, 0.04%)</title><rect x="818.0" y="437" width="0.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="820.98" y="447.5" ></text>
</g>
<g >
<title>new_list (5,331,389,530 samples, 0.06%)</title><rect x="918.6" y="469" width="0.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="921.60" y="479.5" ></text>
</g>
<g >
<title>enable_statement_timeout (1,572,823,924 samples, 0.02%)</title><rect x="1077.6" y="565" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1080.57" y="575.5" ></text>
</g>
<g >
<title>palloc (1,253,623,175 samples, 0.01%)</title><rect x="1056.6" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1059.58" y="383.5" ></text>
</g>
<g >
<title>palloc0 (3,393,390,120 samples, 0.04%)</title><rect x="277.9" y="389" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="280.86" y="399.5" ></text>
</g>
<g >
<title>socket_set_nonblocking (1,056,861,653 samples, 0.01%)</title><rect x="1184.1" y="757" width="0.2" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="1187.14" y="767.5" ></text>
</g>
<g >
<title>bms_free (7,753,747,117 samples, 0.08%)</title><rect x="358.9" y="373" width="0.9" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="361.88" y="383.5" ></text>
</g>
<g >
<title>jit_compile_expr (822,683,942 samples, 0.01%)</title><rect x="1154.3" y="757" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1157.35" y="767.5" ></text>
</g>
<g >
<title>XLogRegisterData (897,941,538 samples, 0.01%)</title><rect x="514.4" y="485" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="517.40" y="495.5" ></text>
</g>
<g >
<title>AtStart_ResourceOwner (14,387,624,846 samples, 0.15%)</title><rect x="1074.5" y="533" width="1.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1077.51" y="543.5" ></text>
</g>
<g >
<title>AllocSetFree (2,358,098,746 samples, 0.02%)</title><rect x="226.5" y="533" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="229.46" y="543.5" ></text>
</g>
<g >
<title>palloc0 (5,834,045,378 samples, 0.06%)</title><rect x="1165.7" y="757" width="0.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1168.74" y="767.5" ></text>
</g>
<g >
<title>_bt_first (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="325" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1161.90" y="335.5" ></text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (7,130,309,679 samples, 0.08%)</title><rect x="280.1" y="341" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="283.11" y="351.5" ></text>
</g>
<g >
<title>table_slot_callbacks (868,418,531 samples, 0.01%)</title><rect x="1186.4" y="757" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1189.41" y="767.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (6,851,537,211 samples, 0.07%)</title><rect x="320.1" y="213" width="0.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="323.07" y="223.5" ></text>
</g>
<g >
<title>ReadBuffer_common (22,438,003,476 samples, 0.24%)</title><rect x="407.1" y="357" width="2.8" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="410.08" y="367.5" ></text>
</g>
<g >
<title>pfree (1,197,179,823 samples, 0.01%)</title><rect x="994.4" y="341" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="997.39" y="351.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableXid (4,387,636,700 samples, 0.05%)</title><rect x="305.5" y="229" width="0.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="308.53" y="239.5" ></text>
</g>
<g >
<title>BTreeTupleIsPosting (975,411,587 samples, 0.01%)</title><rect x="332.9" y="213" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="335.91" y="223.5" ></text>
</g>
<g >
<title>rewriteTargetListIU (13,147,693,076 samples, 0.14%)</title><rect x="860.5" y="517" width="1.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="863.53" y="527.5" ></text>
</g>
<g >
<title>_bt_saveitem (1,404,110,424 samples, 0.01%)</title><rect x="329.6" y="229" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="332.62" y="239.5" ></text>
</g>
<g >
<title>distribute_row_identity_vars (2,275,571,757 samples, 0.02%)</title><rect x="978.2" y="469" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="981.24" y="479.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (817,814,156 samples, 0.01%)</title><rect x="87.6" y="757" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="90.63" y="767.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (884,781,725 samples, 0.01%)</title><rect x="95.7" y="181" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="98.68" y="191.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (1,545,141,511 samples, 0.02%)</title><rect x="388.9" y="261" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="391.88" y="271.5" ></text>
</g>
<g >
<title>PageGetHeapFreeSpace (1,910,859,571 samples, 0.02%)</title><rect x="81.5" y="757" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="84.50" y="767.5" ></text>
</g>
<g >
<title>_bt_relbuf (6,981,656,451 samples, 0.07%)</title><rect x="326.4" y="229" width="0.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="329.37" y="239.5" ></text>
</g>
<g >
<title>make_one_rel (487,195,112,386 samples, 5.13%)</title><rect x="981.7" y="469" width="60.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="984.66" y="479.5" >make_o..</text>
</g>
<g >
<title>psi_task_change (1,019,531,428 samples, 0.01%)</title><rect x="202.0" y="309" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="205.04" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (937,633,953 samples, 0.01%)</title><rect x="1063.7" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1066.66" y="399.5" ></text>
</g>
<g >
<title>pgstat_get_xact_stack_level (1,093,104,099 samples, 0.01%)</title><rect x="1172.1" y="757" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1175.08" y="767.5" ></text>
</g>
<g >
<title>lappend (2,602,745,058 samples, 0.03%)</title><rect x="457.2" y="453" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="460.20" y="463.5" ></text>
</g>
<g >
<title>IsCatalogRelationOid (1,020,373,702 samples, 0.01%)</title><rect x="54.7" y="757" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="57.69" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,116,489,980 samples, 0.01%)</title><rect x="103.5" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="106.47" y="447.5" ></text>
</g>
<g >
<title>LockBuffer (2,621,671,222 samples, 0.03%)</title><rect x="326.9" y="197" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="329.91" y="207.5" ></text>
</g>
<g >
<title>ExecProcNode (502,197,614,417 samples, 5.29%)</title><rect x="281.5" y="437" width="62.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="284.49" y="447.5" >ExecPr..</text>
</g>
<g >
<title>wipe_mem (7,648,866,061 samples, 0.08%)</title><rect x="150.9" y="549" width="0.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="153.85" y="559.5" ></text>
</g>
<g >
<title>palloc (2,923,490,925 samples, 0.03%)</title><rect x="1078.0" y="565" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1080.96" y="575.5" ></text>
</g>
<g >
<title>create_plan_recurse (45,427,493,229 samples, 0.48%)</title><rect x="886.8" y="437" width="5.6" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="889.79" y="447.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,081,809,951 samples, 0.01%)</title><rect x="330.7" y="229" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="333.67" y="239.5" ></text>
</g>
<g >
<title>make_const (6,045,244,580 samples, 0.06%)</title><rect x="854.6" y="405" width="0.7" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="857.57" y="415.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,195,862,305 samples, 0.01%)</title><rect x="1081.9" y="581" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="1084.86" y="591.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,020,960,515 samples, 0.01%)</title><rect x="893.5" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="896.48" y="415.5" ></text>
</g>
<g >
<title>palloc0 (1,340,554,996 samples, 0.01%)</title><rect x="1069.6" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1072.62" y="447.5" ></text>
</g>
<g >
<title>palloc0 (1,926,562,203 samples, 0.02%)</title><rect x="927.9" y="389" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="930.89" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,260,159,562 samples, 0.01%)</title><rect x="165.1" y="309" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="168.10" y="319.5" ></text>
</g>
<g >
<title>process_equivalence (40,878,816,646 samples, 0.43%)</title><rect x="967.7" y="405" width="5.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="970.70" y="415.5" ></text>
</g>
<g >
<title>ExecEvalSysVar (2,421,014,897 samples, 0.03%)</title><rect x="290.2" y="277" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="293.16" y="287.5" ></text>
</g>
<g >
<title>examine_variable (40,094,460,673 samples, 0.42%)</title><rect x="1030.5" y="245" width="5.0" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="1033.52" y="255.5" ></text>
</g>
<g >
<title>pgstat_report_plan_id (2,821,906,507 samples, 0.03%)</title><rect x="875.1" y="533" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="878.06" y="543.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,384,080,596 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.60" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (832,872,702 samples, 0.01%)</title><rect x="992.8" y="293" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="995.84" y="303.5" ></text>
</g>
<g >
<title>palloc (1,285,286,936 samples, 0.01%)</title><rect x="914.8" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="917.82" y="447.5" ></text>
</g>
<g >
<title>get_futex_key (4,636,175,004 samples, 0.05%)</title><rect x="489.5" y="309" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="492.49" y="319.5" ></text>
</g>
<g >
<title>LWLockConditionalAcquire (3,802,505,677 samples, 0.04%)</title><rect x="477.6" y="453" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="480.57" y="463.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,966,317,843 samples, 0.04%)</title><rect x="1055.4" y="421" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1058.44" y="431.5" ></text>
</g>
<g >
<title>ExecutorRun (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="549" width="1.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="129.31" y="559.5" ></text>
</g>
<g >
<title>hash_search (4,157,801,442 samples, 0.04%)</title><rect x="831.6" y="373" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="834.63" y="383.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,283,778,308 samples, 0.01%)</title><rect x="1038.0" y="325" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1041.00" y="335.5" ></text>
</g>
<g >
<title>_mm_set1_epi8 (1,523,728,830 samples, 0.02%)</title><rect x="1081.4" y="485" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1084.42" y="495.5" ></text>
</g>
<g >
<title>ExecProcNode (1,029,469,534 samples, 0.01%)</title><rect x="45.4" y="757" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="48.42" y="767.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,147,150,128 samples, 0.01%)</title><rect x="1021.0" y="277" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1023.97" y="287.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (886,557,379 samples, 0.01%)</title><rect x="940.4" y="357" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="943.37" y="367.5" ></text>
</g>
<g >
<title>bms_union (851,917,911 samples, 0.01%)</title><rect x="879.4" y="485" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="882.43" y="495.5" ></text>
</g>
<g >
<title>main (3,415,261,054 samples, 0.04%)</title><rect x="1158.9" y="757" width="0.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1161.90" y="767.5" ></text>
</g>
<g >
<title>IndexNext (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="357" width="1.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="129.31" y="367.5" ></text>
</g>
<g >
<title>AllocSetDelete (6,623,407,519 samples, 0.07%)</title><rect x="225.3" y="533" width="0.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="228.28" y="543.5" ></text>
</g>
<g >
<title>postmaster_child_launch (3,415,261,054 samples, 0.04%)</title><rect x="1158.9" y="693" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1161.90" y="703.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple_internal (2,624,843,423 samples, 0.03%)</title><rect x="350.0" y="309" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="352.97" y="319.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,084,953,129 samples, 0.01%)</title><rect x="104.4" y="405" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="107.42" y="415.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,566,854,814 samples, 0.05%)</title><rect x="1033.8" y="149" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1036.80" y="159.5" ></text>
</g>
<g >
<title>compute_new_xmax_infomask (1,118,848,271 samples, 0.01%)</title><rect x="1128.7" y="757" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1131.70" y="767.5" ></text>
</g>
<g >
<title>new_list (1,778,039,325 samples, 0.02%)</title><rect x="975.9" y="405" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="978.86" y="415.5" ></text>
</g>
<g >
<title>table_open (16,415,319,603 samples, 0.17%)</title><rect x="923.1" y="469" width="2.0" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="926.09" y="479.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (3,910,100,198 samples, 0.04%)</title><rect x="79.5" y="757" width="0.5" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="82.51" y="767.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (829,187,176 samples, 0.01%)</title><rect x="338.7" y="229" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="341.72" y="239.5" ></text>
</g>
<g >
<title>exprType (1,071,916,546 samples, 0.01%)</title><rect x="1046.5" y="453" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1049.52" y="463.5" ></text>
</g>
<g >
<title>AssertCouldGetRelation (2,020,120,019 samples, 0.02%)</title><rect x="30.3" y="757" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="33.29" y="767.5" ></text>
</g>
<g >
<title>tag_hash (2,778,070,350 samples, 0.03%)</title><rect x="374.4" y="261" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="377.38" y="271.5" ></text>
</g>
<g >
<title>lappend_oid (2,859,368,483 samples, 0.03%)</title><rect x="911.2" y="469" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="914.25" y="479.5" ></text>
</g>
<g >
<title>restriction_is_or_clause (1,225,103,693 samples, 0.01%)</title><rect x="1177.0" y="757" width="0.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1179.96" y="767.5" ></text>
</g>
<g >
<title>SearchCatCache3 (5,287,457,532 samples, 0.06%)</title><rect x="435.1" y="373" width="0.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="438.13" y="383.5" ></text>
</g>
<g >
<title>index_beginscan (28,993,017,320 samples, 0.31%)</title><rect x="292.4" y="325" width="3.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="295.39" y="335.5" ></text>
</g>
<g >
<title>ExecModifyTable (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="517" width="2.6" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="87.32" y="527.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (11,175,660,902 samples, 0.12%)</title><rect x="862.4" y="485" width="1.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="865.43" y="495.5" ></text>
</g>
<g >
<title>SearchSysCache1 (2,260,079,369 samples, 0.02%)</title><rect x="94.9" y="757" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="97.86" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,796,617,857 samples, 0.02%)</title><rect x="951.1" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="954.06" y="399.5" ></text>
</g>
<g >
<title>LWLockRelease (1,024,835,233 samples, 0.01%)</title><rect x="377.8" y="341" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="380.79" y="351.5" ></text>
</g>
<g >
<title>palloc0 (1,539,185,187 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.63" y="415.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (23,143,335,628 samples, 0.24%)</title><rect x="900.8" y="437" width="2.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="903.83" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (2,076,986,542 samples, 0.02%)</title><rect x="241.4" y="373" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="244.42" y="383.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (1,434,114,468 samples, 0.02%)</title><rect x="236.3" y="469" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="239.26" y="479.5" ></text>
</g>
<g >
<title>lappend_oid (3,399,494,699 samples, 0.04%)</title><rect x="962.8" y="373" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="965.85" y="383.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,209,474,426 samples, 0.04%)</title><rect x="882.5" y="389" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="885.47" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,099,251,549 samples, 0.01%)</title><rect x="994.0" y="309" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="996.96" y="319.5" ></text>
</g>
<g >
<title>index_getnext_slot (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="373" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1161.90" y="383.5" ></text>
</g>
<g >
<title>sched_clock_cpu (959,903,772 samples, 0.01%)</title><rect x="174.2" y="261" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="177.17" y="271.5" ></text>
</g>
<g >
<title>llseek@GLIBC_2.2.5 (13,286,004,692 samples, 0.14%)</title><rect x="936.6" y="229" width="1.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="939.59" y="239.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (1,402,440,460 samples, 0.01%)</title><rect x="1063.8" y="421" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1066.78" y="431.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (3,746,641,229 samples, 0.04%)</title><rect x="270.3" y="309" width="0.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="273.29" y="319.5" ></text>
</g>
<g >
<title>bms_add_members (2,553,591,666 samples, 0.03%)</title><rect x="993.8" y="357" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="996.83" y="367.5" ></text>
</g>
<g >
<title>get_rightop (1,271,260,271 samples, 0.01%)</title><rect x="970.9" y="389" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="973.90" y="399.5" ></text>
</g>
<g >
<title>LockBufHdr (2,933,527,407 samples, 0.03%)</title><rect x="325.7" y="213" width="0.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="328.73" y="223.5" ></text>
</g>
<g >
<title>relation_open (28,786,113,891 samples, 0.30%)</title><rect x="940.3" y="389" width="3.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="943.25" y="399.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,150,986,441 samples, 0.01%)</title><rect x="959.5" y="261" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="962.45" y="271.5" ></text>
</g>
<g >
<title>RelationGetStatExtList (980,109,310 samples, 0.01%)</title><rect x="939.5" y="389" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="942.52" y="399.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,247,691,262 samples, 0.01%)</title><rect x="940.1" y="373" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="943.06" y="383.5" ></text>
</g>
<g >
<title>get_func_retset (6,368,280,256 samples, 0.07%)</title><rect x="836.8" y="373" width="0.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="839.80" y="383.5" ></text>
</g>
<g >
<title>enlargeStringInfo (846,147,151 samples, 0.01%)</title><rect x="190.2" y="549" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="193.17" y="559.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,172,011,044 samples, 0.01%)</title><rect x="295.8" y="261" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="298.84" y="271.5" ></text>
</g>
<g >
<title>palloc (1,239,889,070 samples, 0.01%)</title><rect x="1047.5" y="469" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1050.46" y="479.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (2,795,219,794 samples, 0.03%)</title><rect x="223.2" y="501" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="226.23" y="511.5" ></text>
</g>
<g >
<title>check_index_predicates (924,845,440 samples, 0.01%)</title><rect x="1126.1" y="757" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1129.08" y="767.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,718,843,377 samples, 0.02%)</title><rect x="298.6" y="245" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="301.57" y="255.5" ></text>
</g>
<g >
<title>skb_release_head_state (8,845,529,491 samples, 0.09%)</title><rect x="183.0" y="357" width="1.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="186.00" y="367.5" ></text>
</g>
<g >
<title>SimpleLruReadPage_ReadOnly (5,005,712,871 samples, 0.05%)</title><rect x="1148.2" y="645" width="0.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="1151.16" y="655.5" ></text>
</g>
<g >
<title>schedule (107,351,625,879 samples, 1.13%)</title><rect x="161.5" y="373" width="13.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="164.54" y="383.5" ></text>
</g>
<g >
<title>buildRelationAliases (15,788,729,485 samples, 0.17%)</title><rect x="816.5" y="453" width="2.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="819.51" y="463.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,847,519,617 samples, 0.03%)</title><rect x="348.2" y="373" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="351.18" y="383.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (845,409,504 samples, 0.01%)</title><rect x="299.7" y="149" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="302.74" y="159.5" ></text>
</g>
<g >
<title>mutex_unlock (1,091,888,881 samples, 0.01%)</title><rect x="185.2" y="373" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="188.24" y="383.5" ></text>
</g>
<g >
<title>hash_search (7,629,274,665 samples, 0.08%)</title><rect x="1022.5" y="341" width="0.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1025.49" y="351.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,050,177,499 samples, 0.01%)</title><rect x="1045.3" y="421" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1048.30" y="431.5" ></text>
</g>
<g >
<title>dclist_init (986,132,765 samples, 0.01%)</title><rect x="1131.8" y="757" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1134.85" y="767.5" ></text>
</g>
<g >
<title>DatumGetInt32 (2,582,390,080 samples, 0.03%)</title><rect x="114.1" y="741" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="117.10" y="751.5" ></text>
</g>
<g >
<title>rseq_get_rseq_cs.isra.0 (3,874,753,375 samples, 0.04%)</title><rect x="176.4" y="389" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="179.44" y="399.5" ></text>
</g>
<g >
<title>list_length (899,809,396 samples, 0.01%)</title><rect x="457.9" y="453" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="460.91" y="463.5" ></text>
</g>
<g >
<title>newNode (1,900,865,473 samples, 0.02%)</title><rect x="897.0" y="453" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="899.97" y="463.5" ></text>
</g>
<g >
<title>ConditionVariableBroadcast (4,711,950,730 samples, 0.05%)</title><rect x="497.9" y="453" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="500.94" y="463.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (2,441,914,755 samples, 0.03%)</title><rect x="347.8" y="389" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="350.80" y="399.5" ></text>
</g>
<g >
<title>PortalRun (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="597" width="1.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="129.31" y="607.5" ></text>
</g>
<g >
<title>ExecInitNode (1,157,501,317 samples, 0.01%)</title><rect x="44.3" y="757" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="47.29" y="767.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (34,604,313,801 samples, 0.36%)</title><rect x="1002.5" y="197" width="4.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1005.46" y="207.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (944,898,269 samples, 0.01%)</title><rect x="291.5" y="165" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="294.47" y="175.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (11,653,525,725 samples, 0.12%)</title><rect x="147.4" y="533" width="1.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="150.41" y="543.5" ></text>
</g>
<g >
<title>update_process_times (2,315,738,193 samples, 0.02%)</title><rect x="795.8" y="421" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="798.77" y="431.5" ></text>
</g>
<g >
<title>palloc0 (2,480,105,967 samples, 0.03%)</title><rect x="432.9" y="341" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="435.88" y="351.5" ></text>
</g>
<g >
<title>tag_hash (4,697,747,317 samples, 0.05%)</title><rect x="831.0" y="341" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="834.03" y="351.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,556,602,322 samples, 0.02%)</title><rect x="1112.9" y="645" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1115.87" y="655.5" ></text>
</g>
<g >
<title>[unknown] (89,339,434,604 samples, 0.94%)</title><rect x="112.6" y="757" width="11.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="115.62" y="767.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (3,307,470,713 samples, 0.03%)</title><rect x="437.8" y="389" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="440.81" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,263,064,757 samples, 0.01%)</title><rect x="823.5" y="357" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="826.52" y="367.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (9,127,568,800 samples, 0.10%)</title><rect x="437.8" y="405" width="1.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="440.78" y="415.5" ></text>
</g>
<g >
<title>internal_flush_buffer (156,540,332,491 samples, 1.65%)</title><rect x="190.5" y="549" width="19.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="193.49" y="559.5" ></text>
</g>
<g >
<title>relation_close (2,400,035,284 samples, 0.03%)</title><rect x="866.5" y="501" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="869.47" y="511.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (3,306,117,952 samples, 0.03%)</title><rect x="1015.6" y="325" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1018.61" y="335.5" ></text>
</g>
<g >
<title>asm_sysvec_thermal (1,460,723,842 samples, 0.02%)</title><rect x="1084.4" y="757" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1087.41" y="767.5" ></text>
</g>
<g >
<title>AtEOXact_Aio (3,502,287,000 samples, 0.04%)</title><rect x="468.7" y="517" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="471.70" y="527.5" ></text>
</g>
<g >
<title>SearchSysCache1 (8,452,558,700 samples, 0.09%)</title><rect x="443.2" y="357" width="1.0" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="446.17" y="367.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (33,004,078,477 samples, 0.35%)</title><rect x="306.2" y="245" width="4.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="309.18" y="255.5" ></text>
</g>
<g >
<title>heap_attisnull (869,254,699 samples, 0.01%)</title><rect x="931.5" y="389" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="934.51" y="399.5" ></text>
</g>
<g >
<title>ReleaseCatCacheList (1,405,300,909 samples, 0.01%)</title><rect x="961.5" y="373" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="964.50" y="383.5" ></text>
</g>
<g >
<title>new_list (1,884,515,894 samples, 0.02%)</title><rect x="955.7" y="293" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="958.72" y="303.5" ></text>
</g>
<g >
<title>make_oper_cache_key (8,962,730,364 samples, 0.09%)</title><rect x="853.1" y="389" width="1.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="856.10" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,157,377,129 samples, 0.01%)</title><rect x="513.2" y="389" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="516.20" y="399.5" ></text>
</g>
<g >
<title>fdget (3,251,770,612 samples, 0.03%)</title><rect x="499.9" y="405" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="502.89" y="415.5" ></text>
</g>
<g >
<title>ExecInitRangeTable (2,768,204,637 samples, 0.03%)</title><rect x="459.4" y="485" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="462.41" y="495.5" ></text>
</g>
<g >
<title>ensure_tabstat_xact_level (1,169,732,748 samples, 0.01%)</title><rect x="1133.6" y="757" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1136.64" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,041,251,132 samples, 0.02%)</title><rect x="448.3" y="341" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="451.31" y="351.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,734,115,888 samples, 0.06%)</title><rect x="757.9" y="485" width="0.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="760.92" y="495.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (971,078,648 samples, 0.01%)</title><rect x="128.4" y="437" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="131.36" y="447.5" ></text>
</g>
<g >
<title>BackendMain (83,672,568,701 samples, 0.88%)</title><rect x="95.7" y="709" width="10.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="98.68" y="719.5" ></text>
</g>
<g >
<title>hash_seq_search (6,581,858,005 samples, 0.07%)</title><rect x="473.3" y="501" width="0.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="476.26" y="511.5" ></text>
</g>
<g >
<title>update_irq_load_avg (854,886,332 samples, 0.01%)</title><rect x="174.8" y="325" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="177.76" y="335.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (10,269,144,712 samples, 0.11%)</title><rect x="425.4" y="325" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="428.38" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,018,707,711 samples, 0.01%)</title><rect x="934.3" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="937.29" y="351.5" ></text>
</g>
<g >
<title>palloc0 (2,333,586,559 samples, 0.02%)</title><rect x="119.7" y="741" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="122.71" y="751.5" ></text>
</g>
<g >
<title>colNameToVar (20,653,854,612 samples, 0.22%)</title><rect x="855.8" y="389" width="2.6" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="858.81" y="399.5" ></text>
</g>
<g >
<title>MarkBufferDirty (7,185,343,615 samples, 0.08%)</title><rect x="376.3" y="357" width="0.9" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="379.26" y="367.5" ></text>
</g>
<g >
<title>palloc0 (1,947,510,383 samples, 0.02%)</title><rect x="856.6" y="325" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="859.61" y="335.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (3,337,899,521 samples, 0.04%)</title><rect x="349.9" y="325" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="352.89" y="335.5" ></text>
</g>
<g >
<title>new_list (1,258,729,468 samples, 0.01%)</title><rect x="849.3" y="389" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="852.34" y="399.5" ></text>
</g>
<g >
<title>index_getnext_tid (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="373" width="2.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="87.32" y="383.5" ></text>
</g>
<g >
<title>eqsel (53,199,705,465 samples, 0.56%)</title><rect x="1029.5" y="293" width="6.6" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1032.50" y="303.5" ></text>
</g>
<g >
<title>free_attstatsslot (2,351,719,028 samples, 0.02%)</title><rect x="1000.1" y="293" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1003.12" y="303.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (4,434,105,134 samples, 0.05%)</title><rect x="397.9" y="341" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="400.91" y="351.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,989,861,894 samples, 0.07%)</title><rect x="1136.6" y="757" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1139.60" y="767.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,845,994,599 samples, 0.02%)</title><rect x="496.8" y="421" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="499.84" y="431.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (1,910,003,973 samples, 0.02%)</title><rect x="1132.4" y="757" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1135.35" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (12,389,056,324 samples, 0.13%)</title><rect x="954.5" y="421" width="1.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="957.50" y="431.5" ></text>
</g>
<g >
<title>assign_query_collations_walker (47,710,469,842 samples, 0.50%)</title><rect x="806.2" y="453" width="5.9" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="809.16" y="463.5" ></text>
</g>
<g >
<title>RelationGetSmgr (847,401,374 samples, 0.01%)</title><rect x="90.2" y="757" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="93.22" y="767.5" ></text>
</g>
<g >
<title>check_log_duration (1,630,032,952 samples, 0.02%)</title><rect x="464.9" y="581" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="467.88" y="591.5" ></text>
</g>
<g >
<title>check_index_only (1,139,327,858 samples, 0.01%)</title><rect x="1125.9" y="757" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="1128.94" y="767.5" ></text>
</g>
<g >
<title>eval_const_expressions (2,257,800,175 samples, 0.02%)</title><rect x="1134.8" y="757" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1137.78" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (63,132,965,854 samples, 0.66%)</title><rect x="179.1" y="485" width="7.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="182.14" y="495.5" ></text>
</g>
<g >
<title>is_orclause (1,290,136,142 samples, 0.01%)</title><rect x="1153.5" y="757" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1156.48" y="767.5" ></text>
</g>
<g >
<title>pfree (1,649,624,927 samples, 0.02%)</title><rect x="403.5" y="357" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="406.49" y="367.5" ></text>
</g>
<g >
<title>lappend (2,253,494,471 samples, 0.02%)</title><rect x="896.7" y="453" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="899.68" y="463.5" ></text>
</g>
<g >
<title>__x64_sys_pwrite64 (57,130,612,815 samples, 0.60%)</title><rect x="499.7" y="421" width="7.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="502.71" y="431.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,258,249,873 samples, 0.03%)</title><rect x="298.8" y="245" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="301.78" y="255.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (13,574,304,006 samples, 0.14%)</title><rect x="830.5" y="405" width="1.7" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="833.47" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (7,256,377,248 samples, 0.08%)</title><rect x="912.5" y="437" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="915.54" y="447.5" ></text>
</g>
<g >
<title>ExecInitModifyTable (1,692,601,893 samples, 0.02%)</title><rect x="44.1" y="757" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="47.08" y="767.5" ></text>
</g>
<g >
<title>palloc (1,302,341,976 samples, 0.01%)</title><rect x="1134.9" y="597" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1137.90" y="607.5" ></text>
</g>
<g >
<title>bms_copy (1,612,480,030 samples, 0.02%)</title><rect x="966.0" y="357" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="969.04" y="367.5" ></text>
</g>
<g >
<title>ReleaseSysCache (844,112,802 samples, 0.01%)</title><rect x="434.9" y="389" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="437.91" y="399.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (1,157,303,185 samples, 0.01%)</title><rect x="494.7" y="277" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="497.73" y="287.5" ></text>
</g>
<g >
<title>index_getnext_tid (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="389" width="6.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="98.68" y="399.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (7,134,108,485 samples, 0.08%)</title><rect x="1004.0" y="165" width="0.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="1006.98" y="175.5" ></text>
</g>
<g >
<title>exec_rt_fetch (1,238,494,619 samples, 0.01%)</title><rect x="451.6" y="421" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="454.62" y="431.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Database (833,353,343 samples, 0.01%)</title><rect x="32.1" y="757" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="35.13" y="767.5" ></text>
</g>
<g >
<title>heap_page_prune_execute (1,817,068,179 samples, 0.02%)</title><rect x="1146.4" y="741" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1149.36" y="751.5" ></text>
</g>
<g >
<title>ExecModifyTable (1,146,196,340,550 samples, 12.07%)</title><rect x="267.5" y="453" width="142.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="270.53" y="463.5" >ExecModifyTable</text>
</g>
<g >
<title>pull_var_clause (15,317,660,426 samples, 0.16%)</title><rect x="954.1" y="453" width="1.9" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="957.14" y="463.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,497,198,331 samples, 0.02%)</title><rect x="113.0" y="741" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="115.95" y="751.5" ></text>
</g>
<g >
<title>clauselist_selectivity_ext (76,941,918,824 samples, 0.81%)</title><rect x="1027.9" y="373" width="9.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1030.88" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (920,281,834 samples, 0.01%)</title><rect x="102.3" y="149" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="105.25" y="159.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,341,249,667 samples, 0.01%)</title><rect x="388.9" y="229" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="391.90" y="239.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (1,662,488,278 samples, 0.02%)</title><rect x="82.4" y="757" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="85.36" y="767.5" ></text>
</g>
<g >
<title>ProcArrayGroupClearXid (3,461,918,465 samples, 0.04%)</title><rect x="475.5" y="501" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="478.50" y="511.5" ></text>
</g>
<g >
<title>SearchCatCache (24,569,363,402 samples, 0.26%)</title><rect x="826.2" y="341" width="3.0" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="829.17" y="351.5" ></text>
</g>
<g >
<title>palloc0 (2,241,357,311 samples, 0.02%)</title><rect x="1055.0" y="421" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1057.95" y="431.5" ></text>
</g>
<g >
<title>TransactionIdGetStatus (6,580,710,230 samples, 0.07%)</title><rect x="1148.0" y="661" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="1150.96" y="671.5" ></text>
</g>
<g >
<title>BufferAlloc (18,282,572,212 samples, 0.19%)</title><rect x="100.1" y="197" width="2.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="103.13" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,471,676,111 samples, 0.04%)</title><rect x="757.2" y="517" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="760.18" y="527.5" ></text>
</g>
<g >
<title>hash_bytes (6,860,546,208 samples, 0.07%)</title><rect x="867.6" y="405" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="870.58" y="415.5" ></text>
</g>
<g >
<title>nameeqfast (2,407,580,003 samples, 0.03%)</title><rect x="827.5" y="293" width="0.3" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="830.50" y="303.5" ></text>
</g>
<g >
<title>AtEOXact_SMgr (863,248,197 samples, 0.01%)</title><rect x="472.1" y="517" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="475.07" y="527.5" ></text>
</g>
<g >
<title>palloc0 (2,278,239,659 samples, 0.02%)</title><rect x="816.1" y="437" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="819.12" y="447.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,265,816,152 samples, 0.01%)</title><rect x="337.1" y="197" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="340.13" y="207.5" ></text>
</g>
<g >
<title>pfree (5,011,230,182 samples, 0.05%)</title><rect x="525.6" y="437" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="528.60" y="447.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (978,727,143 samples, 0.01%)</title><rect x="186.8" y="453" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="189.83" y="463.5" ></text>
</g>
<g >
<title>ExecAssignExprContext (10,106,669,788 samples, 0.11%)</title><rect x="272.2" y="421" width="1.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="275.22" y="431.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (11,334,684,262 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.16" y="447.5" ></text>
</g>
<g >
<title>AssertTransactionIdInAllowableRange (1,673,996,710 samples, 0.02%)</title><rect x="222.6" y="533" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="225.64" y="543.5" ></text>
</g>
<g >
<title>palloc0 (1,443,935,382 samples, 0.02%)</title><rect x="973.6" y="277" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="976.63" y="287.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,004,886,995 samples, 0.01%)</title><rect x="94.1" y="741" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="97.13" y="751.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (1,103,431,194 samples, 0.01%)</title><rect x="409.7" y="277" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="412.72" y="287.5" ></text>
</g>
<g >
<title>hash_bytes (2,710,266,575 samples, 0.03%)</title><rect x="100.2" y="133" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="103.19" y="143.5" ></text>
</g>
<g >
<title>compare_pathkeys (902,596,146 samples, 0.01%)</title><rect x="1128.5" y="757" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1131.52" y="767.5" ></text>
</g>
<g >
<title>list_make1_impl (4,444,474,796 samples, 0.05%)</title><rect x="1114.1" y="741" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1117.07" y="751.5" ></text>
</g>
<g >
<title>int4eqfast (1,287,095,810 samples, 0.01%)</title><rect x="1152.3" y="757" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1155.27" y="767.5" ></text>
</g>
<g >
<title>HeapTupleHasNulls (1,383,265,197 samples, 0.01%)</title><rect x="51.4" y="757" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="54.44" y="767.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,614,880,324 samples, 0.02%)</title><rect x="301.7" y="101" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="304.72" y="111.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="405" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="89.91" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (810,036,557 samples, 0.01%)</title><rect x="1102.3" y="693" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1105.35" y="703.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,121,360,983 samples, 0.01%)</title><rect x="848.3" y="373" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="851.31" y="383.5" ></text>
</g>
<g >
<title>ReleaseSysCache (863,676,854 samples, 0.01%)</title><rect x="1055.3" y="421" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1058.33" y="431.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,874,108,414 samples, 0.03%)</title><rect x="406.4" y="373" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="409.37" y="383.5" ></text>
</g>
<g >
<title>table_relation_estimate_size (29,809,742,745 samples, 0.31%)</title><rect x="935.1" y="389" width="3.7" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="938.12" y="399.5" ></text>
</g>
<g >
<title>LockReassignOwner (3,111,228,849 samples, 0.03%)</title><rect x="227.7" y="517" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="230.66" y="527.5" ></text>
</g>
<g >
<title>relation_openrv_extended (104,493,253,962 samples, 1.10%)</title><rect x="820.3" y="437" width="13.0" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="823.34" y="447.5" ></text>
</g>
<g >
<title>ScanKeywordLookup (19,767,788,636 samples, 0.21%)</title><rect x="1109.3" y="709" width="2.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="1112.28" y="719.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,228,339,378 samples, 0.01%)</title><rect x="1009.1" y="229" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1012.06" y="239.5" ></text>
</g>
<g >
<title>UnpinBuffer (5,362,690,288 samples, 0.06%)</title><rect x="340.0" y="213" width="0.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="342.97" y="223.5" ></text>
</g>
<g >
<title>ReadBuffer_common (28,114,993,354 samples, 0.30%)</title><rect x="299.5" y="213" width="3.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="302.52" y="223.5" ></text>
</g>
<g >
<title>TrackNewBufferPin (1,542,311,900 samples, 0.02%)</title><rect x="98.6" y="165" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="101.61" y="175.5" ></text>
</g>
<g >
<title>TransactionIdSetPageStatus (25,332,091,317 samples, 0.27%)</title><rect x="477.5" y="469" width="3.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="480.48" y="479.5" ></text>
</g>
<g >
<title>HeapTupleHeaderGetRawXmax (973,575,454 samples, 0.01%)</title><rect x="51.7" y="757" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="54.69" y="767.5" ></text>
</g>
<g >
<title>pull_var_clause_walker (10,237,129,134 samples, 0.11%)</title><rect x="954.8" y="405" width="1.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="957.77" y="415.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (20,899,212,421 samples, 0.22%)</title><rect x="278.5" y="405" width="2.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="281.51" y="415.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,133,729,906 samples, 0.04%)</title><rect x="1010.0" y="261" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1012.99" y="271.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,290,723,068 samples, 0.01%)</title><rect x="522.4" y="421" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="525.41" y="431.5" ></text>
</g>
<g >
<title>ReleaseSysCache (891,724,804 samples, 0.01%)</title><rect x="1040.4" y="357" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1043.36" y="367.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (924,145,690 samples, 0.01%)</title><rect x="998.8" y="277" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1001.79" y="287.5" ></text>
</g>
<g >
<title>ExecUpdateAct (410,653,097,727 samples, 4.32%)</title><rect x="344.5" y="421" width="51.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="347.53" y="431.5" >ExecU..</text>
</g>
<g >
<title>__x64_sys_futex (56,750,265,250 samples, 0.60%)</title><rect x="483.0" y="389" width="7.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="486.02" y="399.5" ></text>
</g>
<g >
<title>socket_putmessage (2,796,123,811 samples, 0.03%)</title><rect x="189.8" y="565" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="192.78" y="575.5" ></text>
</g>
<g >
<title>coerce_to_target_type (5,490,557,935 samples, 0.06%)</title><rect x="843.7" y="437" width="0.7" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text  x="846.72" y="447.5" ></text>
</g>
<g >
<title>transformAExprOp (55,147,723,769 samples, 0.58%)</title><rect x="836.2" y="405" width="6.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="839.23" y="415.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (823,924,069 samples, 0.01%)</title><rect x="48.2" y="757" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="51.18" y="767.5" ></text>
</g>
<g >
<title>LockBuffer (2,728,487,764 samples, 0.03%)</title><rect x="341.6" y="213" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="344.58" y="223.5" ></text>
</g>
<g >
<title>list_make1_impl (1,671,603,348 samples, 0.02%)</title><rect x="909.2" y="453" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="912.16" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,796,322,316 samples, 0.03%)</title><rect x="1166.1" y="741" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1169.12" y="751.5" ></text>
</g>
<g >
<title>gup_fast (1,222,575,048 samples, 0.01%)</title><rect x="368.0" y="117" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="370.98" y="127.5" ></text>
</g>
<g >
<title>simplify_function (2,541,077,163 samples, 0.03%)</title><rect x="1185.1" y="629" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1188.13" y="639.5" ></text>
</g>
<g >
<title>hash_search (3,962,408,181 samples, 0.04%)</title><rect x="814.3" y="421" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="817.34" y="431.5" ></text>
</g>
<g >
<title>lcons (2,094,275,241 samples, 0.02%)</title><rect x="984.3" y="405" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="987.28" y="415.5" ></text>
</g>
<g >
<title>palloc0 (1,136,996,027 samples, 0.01%)</title><rect x="456.2" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="459.21" y="447.5" ></text>
</g>
<g >
<title>pfree (1,585,588,697 samples, 0.02%)</title><rect x="224.3" y="549" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="227.32" y="559.5" ></text>
</g>
<g >
<title>XLogFlush (1,699,640,404 samples, 0.02%)</title><rect x="110.8" y="757" width="0.2" height="15.0" fill="rgb(251,213,50)" rx="2" ry="2" />
<text  x="113.78" y="767.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,708,967,712 samples, 0.02%)</title><rect x="408.5" y="277" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="411.53" y="287.5" ></text>
</g>
<g >
<title>bms_free (1,706,040,789 samples, 0.02%)</title><rect x="965.7" y="373" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="968.67" y="383.5" ></text>
</g>
<g >
<title>hash_bytes (1,408,297,201 samples, 0.01%)</title><rect x="217.3" y="533" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="220.33" y="543.5" ></text>
</g>
<g >
<title>namestrcmp (1,172,745,174 samples, 0.01%)</title><rect x="1162.4" y="757" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="1165.41" y="767.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (872,093,346 samples, 0.01%)</title><rect x="356.1" y="245" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="359.06" y="255.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (1,204,085,282 samples, 0.01%)</title><rect x="487.6" y="181" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="490.61" y="191.5" ></text>
</g>
<g >
<title>lappend (2,547,864,881 samples, 0.03%)</title><rect x="818.5" y="453" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="821.47" y="463.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (19,141,434,356 samples, 0.20%)</title><rect x="100.1" y="325" width="2.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="103.12" y="335.5" ></text>
</g>
<g >
<title>futex_wait_setup (8,716,249,238 samples, 0.09%)</title><rect x="489.0" y="325" width="1.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="491.98" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,353,192,251 samples, 0.01%)</title><rect x="216.5" y="533" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="219.48" y="543.5" ></text>
</g>
<g >
<title>ExecInitUpdateProjection (76,821,844,277 samples, 0.81%)</title><rect x="271.9" y="437" width="9.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="274.94" y="447.5" ></text>
</g>
<g >
<title>verify_compact_attribute (2,366,267,701 samples, 0.02%)</title><rect x="360.8" y="325" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="363.82" y="335.5" ></text>
</g>
<g >
<title>set_base_rel_pathlists (345,329,383,218 samples, 3.64%)</title><rect x="983.0" y="453" width="42.9" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="986.02" y="463.5" >set_..</text>
</g>
<g >
<title>order_qual_clauses (1,128,706,782 samples, 0.01%)</title><rect x="892.2" y="389" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="895.23" y="399.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (2,992,733,029 samples, 0.03%)</title><rect x="341.5" y="229" width="0.4" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="344.55" y="239.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (1,083,093,696 samples, 0.01%)</title><rect x="125.8" y="181" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="128.78" y="191.5" ></text>
</g>
<g >
<title>makeRangeVar (811,277,105 samples, 0.01%)</title><rect x="1159.6" y="757" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1162.58" y="767.5" ></text>
</g>
<g >
<title>__calc_delta.constprop.0 (1,191,297,511 samples, 0.01%)</title><rect x="171.1" y="261" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="174.11" y="271.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,286,350,683 samples, 0.07%)</title><rect x="1051.1" y="453" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1054.10" y="463.5" ></text>
</g>
<g >
<title>RelationClose (1,486,116,150 samples, 0.02%)</title><rect x="940.0" y="389" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="943.03" y="399.5" ></text>
</g>
<g >
<title>ProcessQuery (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="613" width="2.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="87.32" y="623.5" ></text>
</g>
<g >
<title>pg_atomic_read_u64 (932,136,205 samples, 0.01%)</title><rect x="1168.9" y="757" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1171.86" y="767.5" ></text>
</g>
<g >
<title>ExecScanFetch (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="373" width="1.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="129.31" y="383.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (827,454,620 samples, 0.01%)</title><rect x="239.9" y="437" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="242.88" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (2,217,002,790 samples, 0.02%)</title><rect x="515.3" y="485" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="518.28" y="495.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,810,501,057 samples, 0.02%)</title><rect x="1021.6" y="229" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1024.58" y="239.5" ></text>
</g>
<g >
<title>_bt_binsrch (57,096,136,799 samples, 0.60%)</title><rect x="316.2" y="261" width="7.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="319.22" y="271.5" ></text>
</g>
<g >
<title>__strncmp_avx2 (971,486,633 samples, 0.01%)</title><rect x="834.5" y="437" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="837.48" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (805,552,407 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.56" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,057,189,916 samples, 0.01%)</title><rect x="399.0" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="402.02" y="351.5" ></text>
</g>
<g >
<title>fix_indexqual_references (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="421" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="128.92" y="431.5" ></text>
</g>
<g >
<title>ExecInitFunc (14,925,664,177 samples, 0.16%)</title><rect x="427.2" y="341" width="1.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="430.22" y="351.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (1,878,268,118 samples, 0.02%)</title><rect x="1046.0" y="405" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1049.04" y="415.5" ></text>
</g>
<g >
<title>intel_thermal_interrupt (1,761,123,484 samples, 0.02%)</title><rect x="758.7" y="485" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="761.68" y="495.5" ></text>
</g>
<g >
<title>hash_create (42,150,139,439 samples, 0.44%)</title><rect x="1058.8" y="469" width="5.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1061.78" y="479.5" ></text>
</g>
<g >
<title>palloc (1,011,376,216 samples, 0.01%)</title><rect x="1164.3" y="741" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1167.32" y="751.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (1,644,050,888 samples, 0.02%)</title><rect x="92.2" y="757" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="95.24" y="767.5" ></text>
</g>
<g >
<title>fix_expr_common (1,326,885,538 samples, 0.01%)</title><rect x="902.1" y="357" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="905.11" y="367.5" ></text>
</g>
<g >
<title>bms_copy (2,017,527,390 samples, 0.02%)</title><rect x="993.9" y="341" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="996.86" y="351.5" ></text>
</g>
<g >
<title>AtEOXact_SMgr (1,151,380,634 samples, 0.01%)</title><rect x="32.5" y="757" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="35.52" y="767.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (2,408,943,042 samples, 0.03%)</title><rect x="840.1" y="293" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="843.12" y="303.5" ></text>
</g>
<g >
<title>standard_planner (2,204,184,953 samples, 0.02%)</title><rect x="128.2" y="549" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="131.20" y="559.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,714,123,723 samples, 0.04%)</title><rect x="917.2" y="357" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="920.17" y="367.5" ></text>
</g>
<g >
<title>__futex_wait (1,015,800,283 samples, 0.01%)</title><rect x="299.0" y="101" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="302.04" y="111.5" ></text>
</g>
<g >
<title>seg_alloc (841,749,556 samples, 0.01%)</title><rect x="1177.9" y="757" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1180.89" y="767.5" ></text>
</g>
<g >
<title>ExecCheckPermissions (20,527,655,373 samples, 0.22%)</title><rect x="414.2" y="485" width="2.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="417.16" y="495.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,471,798,180 samples, 0.02%)</title><rect x="301.7" y="85" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="304.73" y="95.5" ></text>
</g>
<g >
<title>PageGetItemId (837,132,950 samples, 0.01%)</title><rect x="81.6" y="741" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="84.63" y="751.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,116,897,348 samples, 0.01%)</title><rect x="990.2" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="993.17" y="351.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (60,741,561,124 samples, 0.64%)</title><rect x="179.3" y="453" width="7.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="182.28" y="463.5" ></text>
</g>
<g >
<title>has_unique_index (1,133,702,171 samples, 0.01%)</title><rect x="1035.1" y="229" width="0.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="1038.11" y="239.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,144,634,716 samples, 0.01%)</title><rect x="454.3" y="341" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="457.28" y="351.5" ></text>
</g>
<g >
<title>AllocSetFree (4,449,814,132 samples, 0.05%)</title><rect x="359.2" y="341" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="362.18" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,393,454,475 samples, 0.01%)</title><rect x="189.1" y="517" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="192.14" y="527.5" ></text>
</g>
<g >
<title>perf_ctx_enable (1,577,770,976 samples, 0.02%)</title><rect x="484.8" y="245" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="487.80" y="255.5" ></text>
</g>
<g >
<title>__wake_up_common (2,698,611,192 samples, 0.03%)</title><rect x="183.7" y="277" width="0.4" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="186.73" y="287.5" ></text>
</g>
<g >
<title>BufTableLookup (1,799,509,755 samples, 0.02%)</title><rect x="408.2" y="277" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="411.23" y="287.5" ></text>
</g>
<g >
<title>restriction_selectivity (68,560,892,689 samples, 0.72%)</title><rect x="1028.8" y="341" width="8.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1031.81" y="351.5" ></text>
</g>
<g >
<title>get_typlen (6,391,170,952 samples, 0.07%)</title><rect x="1041.3" y="357" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1044.31" y="367.5" ></text>
</g>
<g >
<title>TransactionIdIsCurrentTransactionId (1,521,621,873 samples, 0.02%)</title><rect x="309.9" y="213" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="312.87" y="223.5" ></text>
</g>
<g >
<title>is_parallel_safe (20,058,796,641 samples, 0.21%)</title><rect x="915.8" y="485" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="918.78" y="495.5" ></text>
</g>
<g >
<title>IsToastClass (1,362,835,590 samples, 0.01%)</title><rect x="415.0" y="405" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="418.02" y="415.5" ></text>
</g>
<g >
<title>create_seqscan_path (1,066,775,720 samples, 0.01%)</title><rect x="1131.2" y="757" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1134.23" y="767.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (986,854,070 samples, 0.01%)</title><rect x="102.2" y="165" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="105.25" y="175.5" ></text>
</g>
<g >
<title>lappend (2,884,334,492 samples, 0.03%)</title><rect x="870.4" y="533" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="873.40" y="543.5" ></text>
</g>
<g >
<title>make_indexscan (977,505,634 samples, 0.01%)</title><rect x="1160.0" y="757" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="1163.05" y="767.5" ></text>
</g>
<g >
<title>dequeue_task_fair (45,831,540,527 samples, 0.48%)</title><rect x="168.8" y="325" width="5.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="171.82" y="335.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (4,047,155,151 samples, 0.04%)</title><rect x="282.0" y="325" width="0.6" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="285.05" y="335.5" ></text>
</g>
<g >
<title>set_sentinel (1,753,020,836 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.59" y="751.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,084,770,447 samples, 0.01%)</title><rect x="960.5" y="293" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="963.51" y="303.5" ></text>
</g>
<g >
<title>__libc_start_call_main (17,479,689,687 samples, 0.18%)</title><rect x="126.3" y="741" width="2.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="129.31" y="751.5" ></text>
</g>
<g >
<title>hash_bytes (1,562,708,162 samples, 0.02%)</title><rect x="214.7" y="517" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="217.72" y="527.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (4,875,783,945 samples, 0.05%)</title><rect x="258.9" y="421" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="261.94" y="431.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,722,910,336 samples, 0.04%)</title><rect x="397.3" y="325" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="400.28" y="335.5" ></text>
</g>
<g >
<title>ep_send_events (25,587,489,205 samples, 0.27%)</title><rect x="157.9" y="389" width="3.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="160.93" y="399.5" ></text>
</g>
<g >
<title>MemoryContextAllocExtended (1,675,912,941 samples, 0.02%)</title><rect x="1065.4" y="389" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1068.36" y="399.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (116,420,661,477 samples, 1.23%)</title><rect x="515.6" y="501" width="14.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="518.62" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (983,235,894 samples, 0.01%)</title><rect x="1056.6" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1059.61" y="367.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (2,463,738,124 samples, 0.03%)</title><rect x="84.7" y="325" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="87.68" y="335.5" ></text>
</g>
<g >
<title>PostgresMain (7,653,638,650,116 samples, 80.57%)</title><rect x="132.0" y="613" width="950.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="135.01" y="623.5" >PostgresMain</text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (1,743,810,358 samples, 0.02%)</title><rect x="1035.3" y="213" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1038.28" y="223.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (9,478,953,571 samples, 0.10%)</title><rect x="463.5" y="581" width="1.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="466.47" y="591.5" ></text>
</g>
<g >
<title>pg_class_aclcheck (7,377,515,640 samples, 0.08%)</title><rect x="1033.5" y="197" width="0.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="1036.48" y="207.5" ></text>
</g>
<g >
<title>palloc (1,365,239,866 samples, 0.01%)</title><rect x="1020.1" y="277" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1023.08" y="287.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,002,957,957 samples, 0.01%)</title><rect x="1045.6" y="373" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1048.64" y="383.5" ></text>
</g>
<g >
<title>XactLockTableInsert (49,502,854,890 samples, 0.52%)</title><rect x="368.6" y="325" width="6.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="371.59" y="335.5" ></text>
</g>
<g >
<title>fdget_pos (3,871,489,511 samples, 0.04%)</title><rect x="937.4" y="165" width="0.5" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="940.39" y="175.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,787,203,609 samples, 0.02%)</title><rect x="406.4" y="357" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="409.40" y="367.5" ></text>
</g>
<g >
<title>list_make2_impl (1,631,438,753 samples, 0.02%)</title><rect x="837.6" y="373" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="840.59" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,054,556,976 samples, 0.01%)</title><rect x="878.8" y="437" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="881.83" y="447.5" ></text>
</g>
<g >
<title>dequeue_entities (43,870,986,959 samples, 0.46%)</title><rect x="169.1" y="309" width="5.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="172.05" y="319.5" ></text>
</g>
<g >
<title>select_task_rq_fair (2,337,926,416 samples, 0.02%)</title><rect x="494.3" y="277" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="497.31" y="287.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (9,300,082,515 samples, 0.10%)</title><rect x="165.4" y="325" width="1.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="168.36" y="335.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (3,855,898,749 samples, 0.04%)</title><rect x="1051.4" y="405" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1054.39" y="415.5" ></text>
</g>
<g >
<title>mutex_lock (2,601,659,373 samples, 0.03%)</title><rect x="160.6" y="373" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="163.65" y="383.5" ></text>
</g>
<g >
<title>index_open (29,205,630,568 samples, 0.31%)</title><rect x="940.2" y="405" width="3.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="943.22" y="415.5" ></text>
</g>
<g >
<title>_bt_compare (36,655,076,242 samples, 0.39%)</title><rect x="331.7" y="229" width="4.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="334.71" y="239.5" ></text>
</g>
<g >
<title>update_entity_lag (1,660,208,645 samples, 0.02%)</title><rect x="487.9" y="213" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="490.86" y="223.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="533" width="1.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="129.31" y="543.5" ></text>
</g>
<g >
<title>evaluate_function (985,939,163 samples, 0.01%)</title><rect x="1055.9" y="421" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1058.93" y="431.5" ></text>
</g>
<g >
<title>CreatePortal (33,582,534,126 samples, 0.35%)</title><rect x="213.3" y="581" width="4.2" height="15.0" fill="rgb(219,66,16)" rx="2" ry="2" />
<text  x="216.35" y="591.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,010,380,461 samples, 0.01%)</title><rect x="856.7" y="309" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="859.73" y="319.5" ></text>
</g>
<g >
<title>LockBuffer (6,479,223,268 samples, 0.07%)</title><rect x="406.0" y="389" width="0.8" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="409.04" y="399.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (9,969,189,367 samples, 0.10%)</title><rect x="134.8" y="517" width="1.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="137.76" y="527.5" ></text>
</g>
<g >
<title>standard_qp_callback (5,348,051,027 samples, 0.06%)</title><rect x="1044.1" y="469" width="0.7" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1047.11" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (1,968,617,117 samples, 0.02%)</title><rect x="913.2" y="389" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="916.15" y="399.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (3,704,801,375 samples, 0.04%)</title><rect x="271.4" y="341" width="0.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="274.44" y="351.5" ></text>
</g>
<g >
<title>btcanreturn (1,588,004,489 samples, 0.02%)</title><rect x="1123.4" y="757" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1126.38" y="767.5" ></text>
</g>
<g >
<title>choose_bitmap_and (2,678,516,885 samples, 0.03%)</title><rect x="988.2" y="389" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="991.23" y="399.5" ></text>
</g>
<g >
<title>remove_useless_self_joins (1,530,937,520 samples, 0.02%)</title><rect x="1043.2" y="469" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1046.16" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,293,785,533 samples, 0.01%)</title><rect x="394.9" y="293" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="397.87" y="303.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (846,552,048 samples, 0.01%)</title><rect x="49.2" y="757" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="52.17" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,411,208,921 samples, 0.01%)</title><rect x="985.0" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="988.05" y="335.5" ></text>
</g>
<g >
<title>get_leftop (1,344,107,161 samples, 0.01%)</title><rect x="970.7" y="389" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="973.73" y="399.5" ></text>
</g>
<g >
<title>newNode (3,393,301,524 samples, 0.04%)</title><rect x="1116.1" y="725" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1119.11" y="735.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,337,524,758 samples, 0.01%)</title><rect x="1167.7" y="757" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1170.66" y="767.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,082,483,712 samples, 0.04%)</title><rect x="795.6" y="517" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="798.62" y="527.5" ></text>
</g>
<g >
<title>genericcostestimate (22,951,476,061 samples, 0.24%)</title><rect x="1010.5" y="309" width="2.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1013.51" y="319.5" ></text>
</g>
<g >
<title>resetStringInfo (978,003,555 samples, 0.01%)</title><rect x="1176.8" y="757" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1179.80" y="767.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,579,439,149 samples, 0.02%)</title><rect x="847.1" y="389" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="850.07" y="399.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (5,961,376,712 samples, 0.06%)</title><rect x="902.5" y="373" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="905.51" y="383.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="517" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1161.90" y="527.5" ></text>
</g>
<g >
<title>__futex_wait (1,035,994,061 samples, 0.01%)</title><rect x="388.9" y="149" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="391.93" y="159.5" ></text>
</g>
<g >
<title>hash_initial_lookup (909,180,096 samples, 0.01%)</title><rect x="454.2" y="341" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="457.15" y="351.5" ></text>
</g>
<g >
<title>ExecScanFetch (415,206,824,805 samples, 4.37%)</title><rect x="291.9" y="357" width="51.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="294.89" y="367.5" >ExecS..</text>
</g>
<g >
<title>SearchSysCache3 (6,593,556,860 samples, 0.07%)</title><rect x="1040.5" y="357" width="0.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1043.47" y="367.5" ></text>
</g>
<g >
<title>palloc0 (1,854,633,212 samples, 0.02%)</title><rect x="841.4" y="325" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="844.40" y="335.5" ></text>
</g>
<g >
<title>futex_do_wait (1,025,875,864 samples, 0.01%)</title><rect x="1148.5" y="469" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1151.51" y="479.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (16,592,743,976 samples, 0.17%)</title><rect x="286.7" y="277" width="2.0" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="289.68" y="287.5" ></text>
</g>
<g >
<title>IsTidRangeClause (2,070,874,338 samples, 0.02%)</title><rect x="1025.6" y="373" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1028.56" y="383.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (117,116,291,102 samples, 1.23%)</title><rect x="194.3" y="421" width="14.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="197.35" y="431.5" ></text>
</g>
<g >
<title>LWLockRelease (4,993,411,260 samples, 0.05%)</title><rect x="375.6" y="341" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="378.64" y="351.5" ></text>
</g>
<g >
<title>UnpinBuffer (2,374,229,282 samples, 0.02%)</title><rect x="282.2" y="293" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="285.25" y="303.5" ></text>
</g>
<g >
<title>palloc0 (7,337,570,389 samples, 0.08%)</title><rect x="894.6" y="501" width="0.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="897.59" y="511.5" ></text>
</g>
<g >
<title>create_modifytable_plan (80,036,082,065 samples, 0.84%)</title><rect x="884.3" y="485" width="9.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="887.29" y="495.5" ></text>
</g>
<g >
<title>add_base_clause_to_rel (9,023,487,602 samples, 0.09%)</title><rect x="980.0" y="421" width="1.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="983.04" y="431.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (812,720,091 samples, 0.01%)</title><rect x="1119.7" y="677" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1122.67" y="687.5" ></text>
</g>
<g >
<title>verify_compact_attribute (9,549,141,718 samples, 0.10%)</title><rect x="322.0" y="197" width="1.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="324.99" y="207.5" ></text>
</g>
<g >
<title>ExecShutdownNode_walker (7,143,585,460 samples, 0.08%)</title><rect x="410.2" y="469" width="0.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="413.21" y="479.5" ></text>
</g>
<g >
<title>table_open (21,436,001,691 samples, 0.23%)</title><rect x="451.8" y="421" width="2.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="454.78" y="431.5" ></text>
</g>
<g >
<title>namestrcpy (4,316,897,795 samples, 0.05%)</title><rect x="444.3" y="357" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="447.30" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,160,298,364 samples, 0.01%)</title><rect x="944.1" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="947.08" y="367.5" ></text>
</g>
<g >
<title>ExecIndexBuildScanKeys (29,718,381,834 samples, 0.31%)</title><rect x="433.5" y="421" width="3.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="436.49" y="431.5" ></text>
</g>
<g >
<title>LockTagHashCode (3,699,329,414 samples, 0.04%)</title><rect x="823.0" y="373" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="826.02" y="383.5" ></text>
</g>
<g >
<title>tag_hash (4,330,827,561 samples, 0.05%)</title><rect x="868.7" y="437" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="871.74" y="447.5" ></text>
</g>
<g >
<title>relation_close (1,484,932,184 samples, 0.02%)</title><rect x="862.2" y="501" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="865.19" y="511.5" ></text>
</g>
<g >
<title>create_index_path (160,516,776,406 samples, 1.69%)</title><rect x="997.0" y="357" width="19.9" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="999.96" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,035,413,988 samples, 0.01%)</title><rect x="406.5" y="341" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="409.47" y="351.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (34,696,550,245 samples, 0.37%)</title><rect x="243.8" y="341" width="4.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="246.83" y="351.5" ></text>
</g>
<g >
<title>generate_base_implied_equalities_const (12,618,590,042 samples, 0.13%)</title><rect x="979.9" y="453" width="1.6" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="982.92" y="463.5" ></text>
</g>
<g >
<title>RewriteQuery (42,240,632,924 samples, 0.44%)</title><rect x="859.1" y="533" width="5.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="862.13" y="543.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (959,011,903 samples, 0.01%)</title><rect x="917.4" y="325" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="920.38" y="335.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (2,541,077,163 samples, 0.03%)</title><rect x="1185.1" y="677" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1188.13" y="687.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (6,801,267,142 samples, 0.07%)</title><rect x="523.8" y="421" width="0.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="526.82" y="431.5" ></text>
</g>
<g >
<title>ExecClearTuple (1,582,968,791 samples, 0.02%)</title><rect x="285.5" y="341" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="288.47" y="351.5" ></text>
</g>
<g >
<title>FunctionCall4Coll (54,540,398,963 samples, 0.57%)</title><rect x="1029.3" y="309" width="6.8" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="1032.34" y="319.5" ></text>
</g>
<g >
<title>LWLockReleaseClearVar (2,567,541,611 samples, 0.03%)</title><rect x="513.5" y="437" width="0.3" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text  x="516.52" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (3,601,005,736 samples, 0.04%)</title><rect x="977.6" y="405" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="980.60" y="415.5" ></text>
</g>
<g >
<title>simplify_function (1,203,969,060 samples, 0.01%)</title><rect x="126.2" y="469" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="129.16" y="479.5" ></text>
</g>
<g >
<title>switch_fpu_return (1,273,977,984 samples, 0.01%)</title><rect x="490.1" y="373" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="493.10" y="383.5" ></text>
</g>
<g >
<title>int4hashfast (894,362,673 samples, 0.01%)</title><rect x="435.5" y="325" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="438.54" y="335.5" ></text>
</g>
<g >
<title>pg_plan_query (3,069,363,779 samples, 0.03%)</title><rect x="125.9" y="597" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="128.92" y="607.5" ></text>
</g>
<g >
<title>preprocess_relation_rtes (88,287,630,403 samples, 0.93%)</title><rect x="1057.3" y="501" width="11.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1060.29" y="511.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (1,637,083,888 samples, 0.02%)</title><rect x="264.3" y="405" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="267.28" y="415.5" ></text>
</g>
<g >
<title>create_indexscan_plan (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="469" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="89.91" y="479.5" ></text>
</g>
<g >
<title>max_parallel_hazard_walker (2,369,054,330 samples, 0.02%)</title><rect x="918.0" y="389" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="920.96" y="399.5" ></text>
</g>
<g >
<title>create_indexscan_plan (1,085,985,899 samples, 0.01%)</title><rect x="1130.3" y="757" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1133.31" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,082,034,745 samples, 0.01%)</title><rect x="812.8" y="453" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="815.80" y="463.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (1,132,391,942 samples, 0.01%)</title><rect x="90.0" y="757" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="92.96" y="767.5" ></text>
</g>
<g >
<title>transformFromClause (1,675,883,383 samples, 0.02%)</title><rect x="833.5" y="485" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="836.51" y="495.5" ></text>
</g>
<g >
<title>WALInsertLockRelease (2,867,817,813 samples, 0.03%)</title><rect x="513.5" y="453" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="516.48" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (3,305,571,574 samples, 0.03%)</title><rect x="178.7" y="485" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="181.73" y="495.5" ></text>
</g>
<g >
<title>enqueue_task (816,384,101 samples, 0.01%)</title><rect x="494.2" y="293" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="497.17" y="303.5" ></text>
</g>
<g >
<title>palloc0 (2,245,069,556 samples, 0.02%)</title><rect x="990.0" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="993.04" y="367.5" ></text>
</g>
<g >
<title>SearchSysCache1 (6,450,350,345 samples, 0.07%)</title><rect x="848.5" y="389" width="0.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="851.45" y="399.5" ></text>
</g>
<g >
<title>hash_bytes (2,489,309,203 samples, 0.03%)</title><rect x="814.5" y="389" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="817.53" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,553,450,341 samples, 0.02%)</title><rect x="365.7" y="261" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="368.73" y="271.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (904,500,545 samples, 0.01%)</title><rect x="1077.3" y="469" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1080.34" y="479.5" ></text>
</g>
<g >
<title>XLogWrite (94,082,570,899 samples, 0.99%)</title><rect x="498.6" y="485" width="11.7" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text  x="501.57" y="495.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,492,491,301 samples, 0.02%)</title><rect x="388.9" y="245" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="391.89" y="255.5" ></text>
</g>
<g >
<title>newNode (2,208,520,068 samples, 0.02%)</title><rect x="1117.8" y="725" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1120.76" y="735.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,414,164,431 samples, 0.04%)</title><rect x="757.2" y="501" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="760.19" y="511.5" ></text>
</g>
<g >
<title>futex_wait_setup (2,817,368,402 samples, 0.03%)</title><rect x="366.8" y="149" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="369.82" y="159.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (8,467,279,488 samples, 0.09%)</title><rect x="199.3" y="341" width="1.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="202.29" y="351.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,133,976,642 samples, 0.01%)</title><rect x="475.6" y="437" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="478.58" y="447.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (909,529,973 samples, 0.01%)</title><rect x="293.9" y="229" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="296.93" y="239.5" ></text>
</g>
<g >
<title>rw_verify_area (4,465,315,219 samples, 0.05%)</title><rect x="500.9" y="389" width="0.6" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="503.94" y="399.5" ></text>
</g>
<g >
<title>PortalRun (1,873,249,509,240 samples, 19.72%)</title><rect x="229.7" y="581" width="232.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="232.72" y="591.5" >PortalRun</text>
</g>
<g >
<title>SysCacheGetAttrNotNull (49,880,510,044 samples, 0.53%)</title><rect x="1000.8" y="277" width="6.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1003.81" y="287.5" ></text>
</g>
<g >
<title>UnpinBuffer (2,212,663,947 samples, 0.02%)</title><rect x="284.4" y="261" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="287.39" y="271.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (1,160,116,538 samples, 0.01%)</title><rect x="474.1" y="517" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="477.08" y="527.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,330,202,259 samples, 0.02%)</title><rect x="454.0" y="357" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="456.97" y="367.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,843,610,984 samples, 0.02%)</title><rect x="1148.5" y="613" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1151.49" y="623.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4,436,003,795 samples, 0.05%)</title><rect x="100.5" y="165" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="103.54" y="175.5" ></text>
</g>
<g >
<title>ExtractReplicaIdentity (2,879,996,474 samples, 0.03%)</title><rect x="47.1" y="757" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="50.10" y="767.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,008,915,234 samples, 0.01%)</title><rect x="357.8" y="341" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="360.82" y="351.5" ></text>
</g>
<g >
<title>new_list (2,047,938,923 samples, 0.02%)</title><rect x="874.3" y="549" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="877.29" y="559.5" ></text>
</g>
<g >
<title>HeapTupleHeaderXminFrozen (3,796,099,653 samples, 0.04%)</title><rect x="304.8" y="229" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="307.84" y="239.5" ></text>
</g>
<g >
<title>AllocSetFree (1,216,757,345 samples, 0.01%)</title><rect x="992.5" y="293" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="995.52" y="303.5" ></text>
</g>
<g >
<title>bms_overlap (894,952,489 samples, 0.01%)</title><rect x="958.5" y="405" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="961.49" y="415.5" ></text>
</g>
<g >
<title>estimate_expression_value (3,250,942,518 samples, 0.03%)</title><rect x="1030.1" y="245" width="0.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1033.11" y="255.5" ></text>
</g>
<g >
<title>futex_wait (1,078,741,774 samples, 0.01%)</title><rect x="388.9" y="165" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="391.92" y="175.5" ></text>
</g>
<g >
<title>AllocSetAlloc (827,016,935 samples, 0.01%)</title><rect x="897.7" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="900.68" y="431.5" ></text>
</g>
<g >
<title>do_futex (2,527,180,487 samples, 0.03%)</title><rect x="389.3" y="149" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="392.34" y="159.5" ></text>
</g>
<g >
<title>PageGetHeapFreeSpace (5,559,912,318 samples, 0.06%)</title><rect x="377.9" y="357" width="0.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="380.92" y="367.5" ></text>
</g>
<g >
<title>planner (1,578,915,045,899 samples, 16.62%)</title><rect x="875.0" y="549" width="196.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="877.95" y="559.5" >planner</text>
</g>
<g >
<title>ReadBuffer (11,333,614,982 samples, 0.12%)</title><rect x="85.0" y="277" width="1.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="87.98" y="287.5" ></text>
</g>
<g >
<title>__sys_recvfrom (59,826,007,822 samples, 0.63%)</title><rect x="179.4" y="437" width="7.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="182.40" y="447.5" ></text>
</g>
<g >
<title>get_tablespace (853,899,157 samples, 0.01%)</title><rect x="1141.9" y="757" width="0.1" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1144.87" y="767.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (5,616,562,801 samples, 0.06%)</title><rect x="453.7" y="389" width="0.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="456.72" y="399.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (848,516,569 samples, 0.01%)</title><rect x="265.5" y="453" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="268.54" y="463.5" ></text>
</g>
<g >
<title>GlobalVisUpdate (2,530,131,093 samples, 0.03%)</title><rect x="305.8" y="197" width="0.3" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text  x="308.76" y="207.5" ></text>
</g>
<g >
<title>LockBuffer (5,253,586,844 samples, 0.06%)</title><rect x="353.1" y="373" width="0.6" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="356.09" y="383.5" ></text>
</g>
<g >
<title>make_modifytable (12,684,056,409 samples, 0.13%)</title><rect x="892.7" y="469" width="1.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="895.65" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,116,994,224 samples, 0.02%)</title><rect x="1043.8" y="437" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1046.84" y="447.5" ></text>
</g>
<g >
<title>makeRangeVar (4,843,466,003 samples, 0.05%)</title><rect x="1117.1" y="741" width="0.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1120.11" y="751.5" ></text>
</g>
<g >
<title>palloc0 (2,611,463,699 samples, 0.03%)</title><rect x="446.7" y="373" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="449.71" y="383.5" ></text>
</g>
<g >
<title>LockHeldByMe (11,124,484,184 samples, 0.12%)</title><rect x="923.2" y="421" width="1.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="926.18" y="431.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (1,174,990,593 samples, 0.01%)</title><rect x="343.3" y="293" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="346.28" y="303.5" ></text>
</g>
<g >
<title>inline_function (1,946,524,090 samples, 0.02%)</title><rect x="105.8" y="453" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="108.83" y="463.5" ></text>
</g>
<g >
<title>lappend (908,475,268 samples, 0.01%)</title><rect x="976.4" y="437" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="979.45" y="447.5" ></text>
</g>
<g >
<title>bms_add_members (1,182,789,192 samples, 0.01%)</title><rect x="1120.8" y="757" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1123.80" y="767.5" ></text>
</g>
<g >
<title>ShowTransactionState (927,174,439 samples, 0.01%)</title><rect x="106.2" y="757" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="109.22" y="767.5" ></text>
</g>
<g >
<title>palloc0 (3,235,404,327 samples, 0.03%)</title><rect x="971.7" y="373" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="974.68" y="383.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,279,883,493 samples, 0.01%)</title><rect x="328.4" y="229" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="331.45" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="293" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="89.91" y="303.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (27,437,285,221 samples, 0.29%)</title><rect x="102.7" y="485" width="3.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="105.66" y="495.5" ></text>
</g>
<g >
<title>__libc_pwrite (63,494,740,405 samples, 0.67%)</title><rect x="499.2" y="469" width="7.9" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="502.21" y="479.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,036,178,711 samples, 0.01%)</title><rect x="304.3" y="229" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="307.31" y="239.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (4,488,117,583 samples, 0.05%)</title><rect x="85.2" y="197" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="88.24" y="207.5" ></text>
</g>
<g >
<title>ProcArrayEndTransactionInternal (4,675,617,793 samples, 0.05%)</title><rect x="474.9" y="501" width="0.6" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="477.92" y="511.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (945,435,215 samples, 0.01%)</title><rect x="523.0" y="421" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="526.02" y="431.5" ></text>
</g>
<g >
<title>fix_indexqual_operand (5,548,023,151 samples, 0.06%)</title><rect x="888.7" y="357" width="0.7" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="891.66" y="367.5" ></text>
</g>
<g >
<title>XLogInsert (859,926,604 samples, 0.01%)</title><rect x="1146.6" y="725" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1149.60" y="735.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,227,094,015 samples, 0.01%)</title><rect x="369.9" y="261" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="372.93" y="271.5" ></text>
</g>
<g >
<title>__futex_wait (53,800,205,016 samples, 0.57%)</title><rect x="483.4" y="341" width="6.7" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="486.38" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (919,153,485 samples, 0.01%)</title><rect x="1053.5" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1056.46" y="399.5" ></text>
</g>
<g >
<title>query_planner (1,170,853,582 samples, 0.01%)</title><rect x="1175.2" y="757" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1178.15" y="767.5" ></text>
</g>
<g >
<title>reduce_unique_semijoins (867,123,736 samples, 0.01%)</title><rect x="1042.8" y="469" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1045.78" y="479.5" ></text>
</g>
<g >
<title>hash_bytes (2,643,448,698 samples, 0.03%)</title><rect x="924.2" y="373" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="927.24" y="383.5" ></text>
</g>
<g >
<title>LockReleaseAll (107,097,264,098 samples, 1.13%)</title><rect x="516.3" y="469" width="13.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="519.27" y="479.5" ></text>
</g>
<g >
<title>MemoryContextTraverseNext (1,843,066,061 samples, 0.02%)</title><rect x="78.9" y="741" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="81.93" y="751.5" ></text>
</g>
<g >
<title>ExecIndexScan (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="485" width="6.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="98.68" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,069,885,192 samples, 0.01%)</title><rect x="896.8" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="899.81" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,017,457,778 samples, 0.01%)</title><rect x="105.6" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="108.63" y="399.5" ></text>
</g>
<g >
<title>BufferGetBlock (2,978,647,672 samples, 0.03%)</title><rect x="34.7" y="757" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="37.73" y="767.5" ></text>
</g>
<g >
<title>generic_write_checks (1,825,780,587 samples, 0.02%)</title><rect x="506.5" y="373" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="509.54" y="383.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (862,923,144 samples, 0.01%)</title><rect x="50.0" y="741" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="52.97" y="751.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (1,468,033,076 samples, 0.02%)</title><rect x="275.7" y="405" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="278.74" y="415.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (907,884,159 samples, 0.01%)</title><rect x="408.1" y="213" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="411.11" y="223.5" ></text>
</g>
<g >
<title>standard_qp_callback (1,177,396,937 samples, 0.01%)</title><rect x="1184.8" y="757" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1187.77" y="767.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberTupleDesc (1,819,189,342 samples, 0.02%)</title><rect x="446.5" y="357" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="449.48" y="367.5" ></text>
</g>
<g >
<title>SearchSysCacheList (8,492,432,289 samples, 0.09%)</title><rect x="961.7" y="373" width="1.0" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="964.68" y="383.5" ></text>
</g>
<g >
<title>initStringInfo (2,116,836,907 samples, 0.02%)</title><rect x="189.1" y="565" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="192.08" y="575.5" ></text>
</g>
<g >
<title>lcons (998,431,369 samples, 0.01%)</title><rect x="347.2" y="341" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="350.21" y="351.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (964,055,551 samples, 0.01%)</title><rect x="11.4" y="741" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="14.44" y="751.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,161,028,722 samples, 0.01%)</title><rect x="1038.0" y="309" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1041.02" y="319.5" ></text>
</g>
<g >
<title>make_fn_arguments (815,066,818 samples, 0.01%)</title><rect x="1159.9" y="757" width="0.1" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1162.95" y="767.5" ></text>
</g>
<g >
<title>simplify_function (19,453,139,221 samples, 0.20%)</title><rect x="103.7" y="469" width="2.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="106.66" y="479.5" ></text>
</g>
<g >
<title>relation_open (1,304,915,802 samples, 0.01%)</title><rect x="1176.0" y="757" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1179.03" y="767.5" ></text>
</g>
<g >
<title>update_min_vruntime (1,034,857,151 samples, 0.01%)</title><rect x="171.3" y="261" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="174.32" y="271.5" ></text>
</g>
<g >
<title>new_list (2,117,573,101 samples, 0.02%)</title><rect x="963.0" y="357" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="966.00" y="367.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (1,233,024,612 samples, 0.01%)</title><rect x="869.4" y="469" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="872.45" y="479.5" ></text>
</g>
<g >
<title>check_log_statement (1,015,903,299 samples, 0.01%)</title><rect x="1126.6" y="757" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="1129.61" y="767.5" ></text>
</g>
<g >
<title>AllocSetFree (1,137,083,039 samples, 0.01%)</title><rect x="1167.3" y="741" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1170.32" y="751.5" ></text>
</g>
<g >
<title>palloc (2,639,300,667 samples, 0.03%)</title><rect x="891.1" y="341" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="894.12" y="351.5" ></text>
</g>
<g >
<title>transformTargetEntry (60,908,257,436 samples, 0.64%)</title><rect x="835.5" y="453" width="7.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="838.52" y="463.5" ></text>
</g>
<g >
<title>palloc (1,519,445,824 samples, 0.02%)</title><rect x="957.2" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="960.21" y="431.5" ></text>
</g>
<g >
<title>palloc (1,390,185,132 samples, 0.01%)</title><rect x="911.0" y="421" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="913.96" y="431.5" ></text>
</g>
<g >
<title>palloc0 (1,594,658,706 samples, 0.02%)</title><rect x="897.0" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="900.01" y="447.5" ></text>
</g>
<g >
<title>verify_compact_attribute (4,088,633,863 samples, 0.04%)</title><rect x="127.3" y="197" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="130.26" y="207.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (1,534,446,406 samples, 0.02%)</title><rect x="962.4" y="341" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="965.41" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,238,977,313 samples, 0.01%)</title><rect x="460.4" y="485" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="463.42" y="495.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (132,172,204,873 samples, 1.39%)</title><rect x="700.6" y="533" width="16.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="703.56" y="543.5" ></text>
</g>
<g >
<title>make_rel_from_joinlist (5,511,828,020 samples, 0.06%)</title><rect x="982.3" y="453" width="0.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="985.25" y="463.5" ></text>
</g>
<g >
<title>XLogRecordAssemble (15,240,237,962 samples, 0.16%)</title><rect x="389.9" y="325" width="1.9" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="392.90" y="335.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,358,346,833 samples, 0.04%)</title><rect x="1036.9" y="277" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1039.90" y="287.5" ></text>
</g>
<g >
<title>GETSTRUCT (2,314,308,410 samples, 0.02%)</title><rect x="961.1" y="373" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="964.15" y="383.5" ></text>
</g>
<g >
<title>SlruRecentlyUsed (911,229,460 samples, 0.01%)</title><rect x="479.5" y="421" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="482.49" y="431.5" ></text>
</g>
<g >
<title>hash_search (5,352,649,914 samples, 0.06%)</title><rect x="869.6" y="469" width="0.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="872.61" y="479.5" ></text>
</g>
<g >
<title>FileSize (15,488,598,636 samples, 0.16%)</title><rect x="936.3" y="245" width="2.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="939.33" y="255.5" ></text>
</g>
<g >
<title>palloc (1,634,081,525 samples, 0.02%)</title><rect x="358.6" y="341" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="361.65" y="351.5" ></text>
</g>
<g >
<title>BTreeTupleGetHeapTID (1,468,277,342 samples, 0.02%)</title><rect x="334.7" y="197" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="337.70" y="207.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (1,397,453,227 samples, 0.01%)</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>AllocSetAlloc (935,168,571 samples, 0.01%)</title><rect x="976.0" y="373" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="978.95" y="383.5" ></text>
</g>
<g >
<title>uint32_hash (1,396,841,920 samples, 0.01%)</title><rect x="1188.9" y="757" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1191.94" y="767.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,126,431,117 samples, 0.03%)</title><rect x="972.4" y="357" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="975.39" y="367.5" ></text>
</g>
<g >
<title>issue_xlog_fsync (809,564,764 samples, 0.01%)</title><rect x="1154.2" y="757" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1157.25" y="767.5" ></text>
</g>
<g >
<title>AllocSetReset (41,064,836,577 samples, 0.43%)</title><rect x="260.0" y="421" width="5.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="263.02" y="431.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,093,304,854 samples, 0.03%)</title><rect x="301.5" y="133" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="304.53" y="143.5" ></text>
</g>
<g >
<title>TupleDescAttr (997,843,103 samples, 0.01%)</title><rect x="127.4" y="181" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="130.43" y="191.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (12,016,250,271 samples, 0.13%)</title><rect x="889.4" y="341" width="1.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="892.44" y="351.5" ></text>
</g>
<g >
<title>AtEOXact_Snapshot (2,093,769,670 samples, 0.02%)</title><rect x="472.3" y="517" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="475.29" y="527.5" ></text>
</g>
<g >
<title>assign_list_collations (27,828,712,404 samples, 0.29%)</title><rect x="808.6" y="437" width="3.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="811.63" y="447.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (2,688,315,518 samples, 0.03%)</title><rect x="1009.2" y="229" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1012.21" y="239.5" ></text>
</g>
<g >
<title>palloc (1,461,970,926 samples, 0.02%)</title><rect x="880.2" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="883.19" y="447.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (48,529,243,690 samples, 0.51%)</title><rect x="285.8" y="309" width="6.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="288.81" y="319.5" ></text>
</g>
<g >
<title>palloc0 (3,968,235,665 samples, 0.04%)</title><rect x="886.3" y="389" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="889.28" y="399.5" ></text>
</g>
<g >
<title>_bt_parallel_done (1,513,772,130 samples, 0.02%)</title><rect x="284.0" y="245" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="286.99" y="255.5" ></text>
</g>
<g >
<title>_bt_check_natts (15,726,161,082 samples, 0.17%)</title><rect x="319.5" y="229" width="1.9" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text  x="322.50" y="239.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (907,624,527 samples, 0.01%)</title><rect x="91.1" y="757" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="94.09" y="767.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,789,879,889 samples, 0.02%)</title><rect x="223.6" y="533" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="226.65" y="543.5" ></text>
</g>
<g >
<title>[unknown] (1,700,398,746 samples, 0.02%)</title><rect x="177.8" y="501" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="180.78" y="511.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (881,834,712 samples, 0.01%)</title><rect x="411.4" y="517" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="414.39" y="527.5" ></text>
</g>
<g >
<title>postmaster_child_launch (83,672,568,701 samples, 0.88%)</title><rect x="95.7" y="725" width="10.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="98.68" y="735.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (903,770,393 samples, 0.01%)</title><rect x="1045.3" y="389" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1048.31" y="399.5" ></text>
</g>
<g >
<title>uint32_hash (2,684,764,346 samples, 0.03%)</title><rect x="869.9" y="453" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="872.94" y="463.5" ></text>
</g>
<g >
<title>hash_bytes (2,565,523,029 samples, 0.03%)</title><rect x="941.9" y="293" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="944.91" y="303.5" ></text>
</g>
<g >
<title>pg_qsort (1,336,793,951 samples, 0.01%)</title><rect x="1170.7" y="757" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1173.72" y="767.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,240,223,285 samples, 0.01%)</title><rect x="368.4" y="277" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="371.35" y="287.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,438,784,314 samples, 0.03%)</title><rect x="808.3" y="389" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="811.31" y="399.5" ></text>
</g>
<g >
<title>AllocSetFree (1,154,269,734 samples, 0.01%)</title><rect x="879.2" y="453" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="882.18" y="463.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (1,509,692,979 samples, 0.02%)</title><rect x="825.8" y="309" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="828.81" y="319.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (2,697,310,817 samples, 0.03%)</title><rect x="1074.0" y="501" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1077.01" y="511.5" ></text>
</g>
<g >
<title>ReadBuffer_common (2,484,919,599 samples, 0.03%)</title><rect x="125.2" y="213" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="128.17" y="223.5" ></text>
</g>
<g >
<title>pull_varnos_walker (1,066,354,840 samples, 0.01%)</title><rect x="1175.0" y="757" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1177.96" y="767.5" ></text>
</g>
<g >
<title>pgstat_report_activity (6,268,678,228 samples, 0.07%)</title><rect x="1078.4" y="597" width="0.8" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1081.41" y="607.5" ></text>
</g>
<g >
<title>castNodeImpl (1,337,413,213 samples, 0.01%)</title><rect x="251.1" y="469" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="254.14" y="479.5" ></text>
</g>
<g >
<title>switch_fpu_return (6,213,103,817 samples, 0.07%)</title><rect x="175.2" y="421" width="0.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="178.21" y="431.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (1,209,690,930 samples, 0.01%)</title><rect x="32.7" y="757" width="0.1" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="35.66" y="767.5" ></text>
</g>
<g >
<title>list_insert_nth (2,976,053,639 samples, 0.03%)</title><rect x="984.9" y="389" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="987.88" y="399.5" ></text>
</g>
<g >
<title>clauselist_selectivity (77,153,659,160 samples, 0.81%)</title><rect x="1027.9" y="389" width="9.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1030.85" y="399.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (47,797,741,460 samples, 0.50%)</title><rect x="72.0" y="757" width="6.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="75.04" y="767.5" ></text>
</g>
<g >
<title>_bt_parallel_done (1,040,878,581 samples, 0.01%)</title><rect x="130.7" y="757" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="133.73" y="767.5" ></text>
</g>
<g >
<title>sock_def_readable (64,216,385,798 samples, 0.68%)</title><rect x="200.5" y="405" width="8.0" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="203.52" y="415.5" ></text>
</g>
<g >
<title>task_tick_fair (1,088,598,025 samples, 0.01%)</title><rect x="795.9" y="389" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="798.92" y="399.5" ></text>
</g>
<g >
<title>canonicalize_ec_expression (2,786,720,186 samples, 0.03%)</title><rect x="970.2" y="389" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="973.21" y="399.5" ></text>
</g>
<g >
<title>futex_wake (3,037,308,997 samples, 0.03%)</title><rect x="367.8" y="165" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="370.83" y="175.5" ></text>
</g>
<g >
<title>downcase_truncate_identifier (10,962,105,939 samples, 0.12%)</title><rect x="1111.9" y="709" width="1.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1114.87" y="719.5" ></text>
</g>
<g >
<title>epoll_wait (175,171,671,513 samples, 1.84%)</title><rect x="156.0" y="485" width="21.8" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="159.02" y="495.5" >e..</text>
</g>
<g >
<title>set_plan_refs (35,069,522,767 samples, 0.37%)</title><rect x="899.8" y="485" width="4.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="902.82" y="495.5" ></text>
</g>
<g >
<title>BlockIdSet (992,133,804 samples, 0.01%)</title><rect x="33.6" y="757" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="36.62" y="767.5" ></text>
</g>
<g >
<title>palloc0 (1,651,690,948 samples, 0.02%)</title><rect x="855.1" y="357" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="858.11" y="367.5" ></text>
</g>
<g >
<title>LockHeldByMe (7,010,079,425 samples, 0.07%)</title><rect x="1066.4" y="421" width="0.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1069.36" y="431.5" ></text>
</g>
<g >
<title>ReleaseSysCache (2,332,782,999 samples, 0.02%)</title><rect x="442.9" y="357" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="445.88" y="367.5" ></text>
</g>
<g >
<title>FreeSnapshot (1,868,082,717 samples, 0.02%)</title><rect x="224.3" y="565" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="227.29" y="575.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="501" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="89.91" y="511.5" ></text>
</g>
<g >
<title>tag_hash (11,088,711,533 samples, 0.12%)</title><rect x="851.7" y="357" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="854.73" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,091,218,610 samples, 0.01%)</title><rect x="965.5" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="968.50" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,034,171,510 samples, 0.01%)</title><rect x="382.6" y="309" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="385.62" y="319.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (9,312,461,801 samples, 0.10%)</title><rect x="954.9" y="389" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="957.89" y="399.5" ></text>
</g>
<g >
<title>pgstat_report_wait_start (1,043,556,687 samples, 0.01%)</title><rect x="1172.5" y="757" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1175.51" y="767.5" ></text>
</g>
<g >
<title>pfree (2,906,827,158 samples, 0.03%)</title><rect x="241.4" y="389" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="244.37" y="399.5" ></text>
</g>
<g >
<title>all_rows_selectable (831,077,129 samples, 0.01%)</title><rect x="1031.3" y="229" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1034.35" y="239.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (5,235,356,531 samples, 0.06%)</title><rect x="451.0" y="421" width="0.6" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="453.97" y="431.5" ></text>
</g>
<g >
<title>prune_freeze_plan (16,485,804,812 samples, 0.17%)</title><rect x="1146.8" y="741" width="2.0" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="1149.75" y="751.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (920,616,971 samples, 0.01%)</title><rect x="91.0" y="757" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="93.98" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,096,182,948 samples, 0.01%)</title><rect x="911.0" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="914.00" y="415.5" ></text>
</g>
<g >
<title>palloc (1,499,396,351 samples, 0.02%)</title><rect x="944.0" y="373" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="947.05" y="383.5" ></text>
</g>
<g >
<title>obj_cgroup_charge_account (1,667,376,342 samples, 0.02%)</title><rect x="198.1" y="309" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="201.14" y="319.5" ></text>
</g>
<g >
<title>get_hash_value (3,631,320,980 samples, 0.04%)</title><rect x="823.0" y="357" width="0.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="826.03" y="367.5" ></text>
</g>
<g >
<title>update_curr (6,903,434,026 samples, 0.07%)</title><rect x="487.0" y="213" width="0.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="490.00" y="223.5" ></text>
</g>
<g >
<title>scanRTEForColumn (4,171,297,637 samples, 0.04%)</title><rect x="857.9" y="357" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="860.86" y="367.5" ></text>
</g>
<g >
<title>shmem_write_end (6,097,783,518 samples, 0.06%)</title><rect x="505.8" y="357" width="0.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="508.78" y="367.5" ></text>
</g>
<g >
<title>__strcmp_avx2 (2,239,780,073 samples, 0.02%)</title><rect x="421.0" y="437" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="423.96" y="447.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (3,106,550,501 samples, 0.03%)</title><rect x="207.8" y="325" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="210.84" y="335.5" ></text>
</g>
<g >
<title>make_oper_cache_key (4,159,437,190 samples, 0.04%)</title><rect x="840.4" y="357" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="843.43" y="367.5" ></text>
</g>
<g >
<title>__update_load_avg_se (2,317,273,833 samples, 0.02%)</title><rect x="173.7" y="261" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="176.67" y="271.5" ></text>
</g>
<g >
<title>hash_search (4,156,029,174 samples, 0.04%)</title><rect x="453.9" y="373" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="456.91" y="383.5" ></text>
</g>
<g >
<title>pg_plan_queries (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="661" width="3.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="105.66" y="671.5" ></text>
</g>
<g >
<title>index_getnext_slot (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="341" width="1.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="129.31" y="351.5" ></text>
</g>
<g >
<title>core_yy_switch_to_buffer (5,139,866,925 samples, 0.05%)</title><rect x="871.8" y="517" width="0.7" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="874.85" y="527.5" ></text>
</g>
<g >
<title>xactGetCommittedChildren (959,902,762 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.78" y="767.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (116,857,528,312 samples, 1.23%)</title><rect x="515.6" y="517" width="14.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="518.57" y="527.5" ></text>
</g>
<g >
<title>pfree (1,236,325,592 samples, 0.01%)</title><rect x="993.0" y="357" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="995.96" y="367.5" ></text>
</g>
<g >
<title>new_list (3,409,189,435 samples, 0.04%)</title><rect x="813.5" y="437" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="816.48" y="447.5" ></text>
</g>
<g >
<title>SearchCatCache1 (7,803,417,071 samples, 0.08%)</title><rect x="443.2" y="341" width="1.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="446.25" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_read_membarrier_u64 (1,762,478,320 samples, 0.02%)</title><rect x="497.5" y="469" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="500.52" y="479.5" ></text>
</g>
<g >
<title>newNode (4,140,603,022 samples, 0.04%)</title><rect x="273.0" y="373" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="275.95" y="383.5" ></text>
</g>
<g >
<title>bms_is_valid_set (945,918,429 samples, 0.01%)</title><rect x="358.2" y="357" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="361.19" y="367.5" ></text>
</g>
<g >
<title>pfree (1,463,420,590 samples, 0.02%)</title><rect x="235.1" y="533" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="238.14" y="543.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (13,810,875,980 samples, 0.15%)</title><rect x="474.2" y="517" width="1.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="477.23" y="527.5" ></text>
</g>
<g >
<title>HeapCheckForSerializableConflictOut (1,343,277,671 samples, 0.01%)</title><rect x="304.6" y="245" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="307.59" y="255.5" ></text>
</g>
<g >
<title>SPI_inside_nonatomic_context (1,094,788,421 samples, 0.01%)</title><rect x="93.5" y="757" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="96.53" y="767.5" ></text>
</g>
<g >
<title>init_htab (10,144,661,058 samples, 0.11%)</title><rect x="1062.7" y="453" width="1.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1065.73" y="463.5" ></text>
</g>
<g >
<title>pfree (2,721,107,833 samples, 0.03%)</title><rect x="436.8" y="405" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="439.84" y="415.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (1,007,765,023 samples, 0.01%)</title><rect x="134.6" y="501" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="137.57" y="511.5" ></text>
</g>
<g >
<title>MemoryContextAllocExtended (1,506,414,391 samples, 0.02%)</title><rect x="1063.6" y="405" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1066.59" y="415.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="549" width="3.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="105.66" y="559.5" ></text>
</g>
<g >
<title>lappend (2,658,388,166 samples, 0.03%)</title><rect x="893.3" y="453" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="896.29" y="463.5" ></text>
</g>
<g >
<title>create_projection_plan (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="485" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="128.92" y="495.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (1,507,370,874 samples, 0.02%)</title><rect x="250.3" y="437" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="253.26" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (141,229,299,243 samples, 1.49%)</title><rect x="192.1" y="485" width="17.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="195.08" y="495.5" ></text>
</g>
<g >
<title>_int_free_create_chunk (1,244,488,976 samples, 0.01%)</title><rect x="150.7" y="517" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="153.66" y="527.5" ></text>
</g>
<g >
<title>pgstat_get_transactional_drops (1,055,755,459 samples, 0.01%)</title><rect x="1171.9" y="757" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1174.95" y="767.5" ></text>
</g>
<g >
<title>new_list (1,623,772,323 samples, 0.02%)</title><rect x="818.6" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="821.59" y="447.5" ></text>
</g>
<g >
<title>list_nth_cell (1,118,693,930 samples, 0.01%)</title><rect x="265.3" y="485" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="268.26" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,255,734,203 samples, 0.01%)</title><rect x="915.6" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="918.59" y="447.5" ></text>
</g>
<g >
<title>__schedule (42,150,001,446 samples, 0.44%)</title><rect x="483.7" y="293" width="5.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="486.68" y="303.5" ></text>
</g>
<g >
<title>CreatePortal (1,002,173,655 samples, 0.01%)</title><rect x="40.0" y="757" width="0.1" height="15.0" fill="rgb(219,66,16)" rx="2" ry="2" />
<text  x="43.00" y="767.5" ></text>
</g>
<g >
<title>_bt_checkkeys (2,827,522,797 samples, 0.03%)</title><rect x="329.3" y="229" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="332.27" y="239.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (7,129,104,160 samples, 0.08%)</title><rect x="424.3" y="341" width="0.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="427.32" y="351.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (1,752,924,875 samples, 0.02%)</title><rect x="469.7" y="517" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="472.70" y="527.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,681,415,749 samples, 0.02%)</title><rect x="526.9" y="421" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="529.92" y="431.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (2,368,656,008 samples, 0.02%)</title><rect x="330.5" y="245" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="333.51" y="255.5" ></text>
</g>
<g >
<title>ExecGetUpdateNewTuple (23,164,579,337 samples, 0.24%)</title><rect x="269.1" y="437" width="2.8" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="272.07" y="447.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (4,611,787,322 samples, 0.05%)</title><rect x="186.3" y="309" width="0.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="189.25" y="319.5" ></text>
</g>
<g >
<title>futex_wait (1,573,188,973 samples, 0.02%)</title><rect x="496.9" y="341" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="499.87" y="351.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (2,128,379,240 samples, 0.02%)</title><rect x="820.4" y="421" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="823.42" y="431.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (880,330,173 samples, 0.01%)</title><rect x="112.2" y="741" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="115.15" y="751.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,172,323,886 samples, 0.01%)</title><rect x="938.9" y="373" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="941.94" y="383.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (6,270,139,967 samples, 0.07%)</title><rect x="890.1" y="293" width="0.8" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="893.13" y="303.5" ></text>
</g>
<g >
<title>bms_next_member (1,888,487,697 samples, 0.02%)</title><rect x="360.1" y="373" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="363.07" y="383.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,220,476,765 samples, 0.01%)</title><rect x="125.8" y="213" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="128.76" y="223.5" ></text>
</g>
<g >
<title>uint32_hash (1,219,712,448 samples, 0.01%)</title><rect x="925.0" y="405" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="927.96" y="415.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (3,325,037,209 samples, 0.04%)</title><rect x="201.4" y="325" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="204.44" y="335.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,126,545,514 samples, 0.01%)</title><rect x="393.6" y="309" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="396.59" y="319.5" ></text>
</g>
<g >
<title>ReadBuffer_common (19,141,434,356 samples, 0.20%)</title><rect x="100.1" y="261" width="2.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="103.12" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,806,337,406 samples, 0.02%)</title><rect x="1114.4" y="693" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1117.35" y="703.5" ></text>
</g>
<g >
<title>transformAssignedExpr (10,287,216,765 samples, 0.11%)</title><rect x="843.2" y="453" width="1.3" height="15.0" fill="rgb(241,170,40)" rx="2" ry="2" />
<text  x="846.19" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (2,083,603,956 samples, 0.02%)</title><rect x="477.8" y="405" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="480.78" y="415.5" ></text>
</g>
<g >
<title>RelationClose (1,043,015,356 samples, 0.01%)</title><rect x="862.2" y="485" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="865.24" y="495.5" ></text>
</g>
<g >
<title>PostgresMain (973,110,606 samples, 0.01%)</title><rect x="84.2" y="757" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="87.20" y="767.5" ></text>
</g>
<g >
<title>exec_simple_query (22,701,609,115 samples, 0.24%)</title><rect x="84.3" y="661" width="2.8" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="87.32" y="671.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (2,871,476,812 samples, 0.03%)</title><rect x="375.8" y="293" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="378.82" y="303.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,684,832,133 samples, 0.02%)</title><rect x="445.0" y="341" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="447.96" y="351.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (11,266,658,778 samples, 0.12%)</title><rect x="1066.3" y="453" width="1.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1069.29" y="463.5" ></text>
</g>
<g >
<title>deconstruct_jointree (962,317,846 samples, 0.01%)</title><rect x="1132.0" y="757" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1135.03" y="767.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,416,697,638 samples, 0.01%)</title><rect x="478.1" y="357" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="481.14" y="367.5" ></text>
</g>
<g >
<title>pq_endmessage (6,284,359,761 samples, 0.07%)</title><rect x="189.3" y="581" width="0.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="192.35" y="591.5" ></text>
</g>
<g >
<title>GetBufferDescriptor (2,112,157,447 samples, 0.02%)</title><rect x="48.8" y="757" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="51.77" y="767.5" ></text>
</g>
<g >
<title>inode_needs_update_time.part.0 (2,363,892,230 samples, 0.02%)</title><rect x="501.9" y="357" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="504.90" y="367.5" ></text>
</g>
<g >
<title>verify_compact_attribute (7,045,065,720 samples, 0.07%)</title><rect x="276.1" y="389" width="0.9" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="279.08" y="399.5" ></text>
</g>
<g >
<title>newNode (9,425,121,194 samples, 0.10%)</title><rect x="912.3" y="469" width="1.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="915.27" y="479.5" ></text>
</g>
<g >
<title>build_index_tlist (987,193,319 samples, 0.01%)</title><rect x="1124.4" y="757" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1127.37" y="767.5" ></text>
</g>
<g >
<title>avc_lookup (1,118,425,923 samples, 0.01%)</title><rect x="180.8" y="341" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="183.78" y="351.5" ></text>
</g>
<g >
<title>reduce_unique_semijoins (1,061,090,841 samples, 0.01%)</title><rect x="1175.8" y="757" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1178.82" y="767.5" ></text>
</g>
<g >
<title>newNode (5,530,176,173 samples, 0.06%)</title><rect x="449.7" y="421" width="0.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="452.74" y="431.5" ></text>
</g>
<g >
<title>distribute_restrictinfo_to_rels (11,222,497,471 samples, 0.12%)</title><rect x="980.0" y="437" width="1.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="983.00" y="447.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (4,975,350,095 samples, 0.05%)</title><rect x="105.2" y="453" width="0.6" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="108.21" y="463.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,015,384,591 samples, 0.01%)</title><rect x="50.1" y="757" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="53.08" y="767.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (863,418,846 samples, 0.01%)</title><rect x="818.2" y="373" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="821.19" y="383.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,149,880,446 samples, 0.01%)</title><rect x="379.0" y="341" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="382.00" y="351.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="389" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="89.91" y="399.5" ></text>
</g>
<g >
<title>schedule (890,099,722 samples, 0.01%)</title><rect x="353.6" y="181" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="356.57" y="191.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,663,454,702 samples, 0.02%)</title><rect x="1007.8" y="229" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1010.84" y="239.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,150,244,547 samples, 0.01%)</title><rect x="1173.6" y="677" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1176.62" y="687.5" ></text>
</g>
<g >
<title>create_plan (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="581" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="89.91" y="591.5" ></text>
</g>
<g >
<title>hash_bytes (10,258,936,433 samples, 0.11%)</title><rect x="839.1" y="309" width="1.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="842.15" y="319.5" ></text>
</g>
<g >
<title>int4hashfast (1,004,833,000 samples, 0.01%)</title><rect x="963.9" y="309" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="966.94" y="319.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (8,233,433,871 samples, 0.09%)</title><rect x="225.2" y="549" width="1.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="228.19" y="559.5" ></text>
</g>
<g >
<title>palloc (1,573,369,985 samples, 0.02%)</title><rect x="861.5" y="469" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="864.45" y="479.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (1,012,472,891 samples, 0.01%)</title><rect x="830.2" y="389" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="833.22" y="399.5" ></text>
</g>
<g >
<title>remove_useless_joins (869,251,336 samples, 0.01%)</title><rect x="1176.4" y="757" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1179.38" y="767.5" ></text>
</g>
<g >
<title>object_aclcheck (1,473,078,700 samples, 0.02%)</title><rect x="428.3" y="325" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="431.31" y="335.5" ></text>
</g>
<g >
<title>requeue_delayed_entity (1,024,260,723 samples, 0.01%)</title><rect x="202.2" y="309" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="205.17" y="319.5" ></text>
</g>
<g >
<title>exprTypmod (1,766,807,762 samples, 0.02%)</title><rect x="445.7" y="373" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="448.67" y="383.5" ></text>
</g>
<g >
<title>bms_add_members (1,203,143,957 samples, 0.01%)</title><rect x="348.5" y="389" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="351.53" y="399.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,612,833,817 samples, 0.02%)</title><rect x="847.1" y="405" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="850.07" y="415.5" ></text>
</g>
<g >
<title>BufferAlloc (26,553,538,917 samples, 0.28%)</title><rect x="95.8" y="197" width="3.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="98.80" y="207.5" ></text>
</g>
<g >
<title>ReadBuffer (4,224,794,037 samples, 0.04%)</title><rect x="86.4" y="277" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="89.39" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,317,514,944 samples, 0.01%)</title><rect x="842.3" y="277" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="845.35" y="287.5" ></text>
</g>
<g >
<title>hash_seq_search (12,373,894,749 samples, 0.13%)</title><rect x="528.0" y="453" width="1.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="531.01" y="463.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,008,983,877 samples, 0.01%)</title><rect x="853.8" y="357" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="856.76" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (1,148,909,795 samples, 0.01%)</title><rect x="382.6" y="325" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="385.61" y="335.5" ></text>
</g>
<g >
<title>palloc0 (15,319,797,040 samples, 0.16%)</title><rect x="279.2" y="373" width="1.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="282.19" y="383.5" ></text>
</g>
<g >
<title>ExecARUpdateTriggers (1,007,016,437 samples, 0.01%)</title><rect x="395.7" y="405" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="398.71" y="415.5" ></text>
</g>
<g >
<title>eval_const_expressions (2,541,077,163 samples, 0.03%)</title><rect x="1185.1" y="725" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1188.13" y="735.5" ></text>
</g>
<g >
<title>ExecutorStart (397,496,428,256 samples, 4.18%)</title><rect x="411.2" y="533" width="49.4" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="414.20" y="543.5" >Exec..</text>
</g>
<g >
<title>bms_copy (1,963,157,668 samples, 0.02%)</title><rect x="880.1" y="453" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="883.13" y="463.5" ></text>
</g>
<g >
<title>FastPathGrantRelationLock (6,654,423,066 samples, 0.07%)</title><rect x="821.7" y="373" width="0.8" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text  x="824.71" y="383.5" ></text>
</g>
<g >
<title>find_relation_notnullatts (3,436,950,386 samples, 0.04%)</title><rect x="938.8" y="405" width="0.5" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="941.82" y="415.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,453,850,893 samples, 0.02%)</title><rect x="408.6" y="261" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="411.56" y="271.5" ></text>
</g>
<g >
<title>ExtendSUBTRANS (806,898,767 samples, 0.01%)</title><rect x="365.3" y="309" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="368.29" y="319.5" ></text>
</g>
<g >
<title>tag_hash (2,533,764,263 samples, 0.03%)</title><rect x="823.2" y="341" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="826.17" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,873,283,980 samples, 0.02%)</title><rect x="818.1" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="821.10" y="399.5" ></text>
</g>
<g >
<title>table_relation_size (23,240,463,389 samples, 0.24%)</title><rect x="935.6" y="325" width="2.9" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="938.63" y="335.5" ></text>
</g>
<g >
<title>index_getnext_slot (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="357" width="1.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="126.99" y="367.5" ></text>
</g>
<g >
<title>ExecutorRun (55,519,487,286 samples, 0.58%)</title><rect x="95.7" y="613" width="6.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="98.68" y="623.5" ></text>
</g>
<g >
<title>makeRawStmt (2,522,558,826 samples, 0.03%)</title><rect x="1117.7" y="741" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1120.72" y="751.5" ></text>
</g>
<g >
<title>cost_qual_eval (16,688,257,865 samples, 0.18%)</title><rect x="1037.4" y="389" width="2.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="1040.44" y="399.5" ></text>
</g>
<g >
<title>pg_nextpower2_32 (1,511,907,119 samples, 0.02%)</title><rect x="1164.4" y="741" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1167.45" y="751.5" ></text>
</g>
<g >
<title>make_indexscan (5,459,617,758 samples, 0.06%)</title><rect x="891.6" y="389" width="0.6" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="894.56" y="399.5" ></text>
</g>
<g >
<title>PinBufferForBlock (14,958,118,779 samples, 0.16%)</title><rect x="354.4" y="293" width="1.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="357.42" y="303.5" ></text>
</g>
<g >
<title>_bt_metaversion (1,304,417,079 samples, 0.01%)</title><rect x="323.6" y="261" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="326.63" y="271.5" ></text>
</g>
<g >
<title>ReadBufferExtended (29,094,637,079 samples, 0.31%)</title><rect x="299.4" y="229" width="3.6" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="302.42" y="239.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (4,795,042,600 samples, 0.05%)</title><rect x="432.6" y="357" width="0.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="435.60" y="367.5" ></text>
</g>
<g >
<title>match_clauses_to_index (27,909,785,324 samples, 0.29%)</title><rect x="1018.5" y="373" width="3.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1021.49" y="383.5" ></text>
</g>
<g >
<title>gup_fast_pgd_range (1,478,032,175 samples, 0.02%)</title><rect x="367.0" y="85" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="369.98" y="95.5" ></text>
</g>
<g >
<title>_equalList (1,060,805,892 samples, 0.01%)</title><rect x="131.7" y="757" width="0.1" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="134.68" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,450,674,986 samples, 0.05%)</title><rect x="807.0" y="373" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="810.02" y="383.5" ></text>
</g>
<g >
<title>ReleaseSysCache (849,618,039 samples, 0.01%)</title><rect x="1036.7" y="309" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1039.72" y="319.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (4,599,176,588 samples, 0.05%)</title><rect x="124.2" y="293" width="0.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="127.19" y="303.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (5,223,169,508 samples, 0.05%)</title><rect x="955.3" y="341" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="958.32" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,253,935,833 samples, 0.02%)</title><rect x="477.8" y="421" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="480.76" y="431.5" ></text>
</g>
<g >
<title>LockHeldByMe (14,530,147,478 samples, 0.15%)</title><rect x="451.9" y="373" width="1.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="454.92" y="383.5" ></text>
</g>
<g >
<title>new_list (1,654,483,277 samples, 0.02%)</title><rect x="1070.7" y="469" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1073.74" y="479.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,176,617,427 samples, 0.02%)</title><rect x="953.6" y="453" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="956.61" y="463.5" ></text>
</g>
<g >
<title>ReadBuffer_common (35,738,350,268 samples, 0.38%)</title><rect x="95.7" y="261" width="4.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="98.68" y="271.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (2,606,254,336 samples, 0.03%)</title><rect x="334.9" y="197" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="337.88" y="207.5" ></text>
</g>
<g >
<title>tag_hash (2,748,797,471 samples, 0.03%)</title><rect x="523.2" y="421" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="526.20" y="431.5" ></text>
</g>
<g >
<title>fetch_att (988,333,893 samples, 0.01%)</title><rect x="323.2" y="213" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="326.18" y="223.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (886,670,887 samples, 0.01%)</title><rect x="1167.5" y="741" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1170.46" y="751.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,302,341,976 samples, 0.01%)</title><rect x="1134.9" y="645" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1137.90" y="655.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (29,784,568,496 samples, 0.31%)</title><rect x="491.4" y="421" width="3.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="494.40" y="431.5" ></text>
</g>
<g >
<title>hash_search (4,374,995,272 samples, 0.05%)</title><rect x="451.1" y="389" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="454.07" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,238,132,143 samples, 0.02%)</title><rect x="891.2" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="894.15" y="335.5" ></text>
</g>
<g >
<title>exec_simple_query (3,415,261,054 samples, 0.04%)</title><rect x="1158.9" y="645" width="0.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="1161.90" y="655.5" ></text>
</g>
<g >
<title>wake_up_q (1,677,676,086 samples, 0.02%)</title><rect x="389.4" y="117" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="392.44" y="127.5" ></text>
</g>
<g >
<title>newNode (7,950,256,344 samples, 0.08%)</title><rect x="894.5" y="517" width="1.0" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="897.51" y="527.5" ></text>
</g>
<g >
<title>core_yy_scan_buffer (7,969,000,741 samples, 0.08%)</title><rect x="871.7" y="533" width="1.0" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="874.70" y="543.5" ></text>
</g>
<g >
<title>AllocSetFree (2,775,002,622 samples, 0.03%)</title><rect x="254.6" y="453" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="257.61" y="463.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (2,061,136,243 samples, 0.02%)</title><rect x="484.8" y="261" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="487.75" y="271.5" ></text>
</g>
<g >
<title>bms_union (2,873,548,326 samples, 0.03%)</title><rect x="345.6" y="389" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="348.58" y="399.5" ></text>
</g>
<g >
<title>heapam_fetch_row_version (40,664,867,481 samples, 0.43%)</title><rect x="404.8" y="421" width="5.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="407.84" y="431.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (1,371,392,756 samples, 0.01%)</title><rect x="240.9" y="373" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="243.86" y="383.5" ></text>
</g>
<g >
<title>verify_compact_attribute (31,352,736,416 samples, 0.33%)</title><rect x="1002.9" y="181" width="3.9" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1005.87" y="191.5" ></text>
</g>
<g >
<title>index_getattr (4,237,052,526 samples, 0.04%)</title><rect x="127.2" y="229" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="130.24" y="239.5" ></text>
</g>
<g >
<title>wipe_mem (840,750,065 samples, 0.01%)</title><rect x="29.2" y="741" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="32.23" y="751.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (966,676,862 samples, 0.01%)</title><rect x="125.5" y="165" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="128.48" y="175.5" ></text>
</g>
<g >
<title>GetSysCacheOid (865,685,696 samples, 0.01%)</title><rect x="50.5" y="757" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="53.47" y="767.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (9,610,471,733 samples, 0.10%)</title><rect x="995.8" y="309" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="998.76" y="319.5" ></text>
</g>
<g >
<title>palloc (1,322,413,108 samples, 0.01%)</title><rect x="422.9" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="425.88" y="351.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (3,262,697,675 samples, 0.03%)</title><rect x="409.5" y="293" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="412.45" y="303.5" ></text>
</g>
<g >
<title>PushCopiedSnapshot (6,586,641,761 samples, 0.07%)</title><rect x="461.4" y="549" width="0.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="464.37" y="559.5" ></text>
</g>
<g >
<title>__GI___strlcpy (896,741,392 samples, 0.01%)</title><rect x="840.7" y="341" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="843.69" y="351.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (2,745,421,149 samples, 0.03%)</title><rect x="49.7" y="757" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="52.74" y="767.5" ></text>
</g>
<g >
<title>LWLockConflictsWithVar (3,721,461,057 samples, 0.04%)</title><rect x="496.3" y="453" width="0.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="499.26" y="463.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (3,163,372,393 samples, 0.03%)</title><rect x="1059.9" y="453" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="1062.87" y="463.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (870,556,938 samples, 0.01%)</title><rect x="1129.9" y="757" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1132.90" y="767.5" ></text>
</g>
<g >
<title>XLogInsertRecord (17,260,928,731 samples, 0.18%)</title><rect x="511.8" y="469" width="2.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="514.77" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,724,928,116 samples, 0.02%)</title><rect x="1078.1" y="549" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1081.10" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,471,047,419 samples, 0.02%)</title><rect x="191.9" y="485" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="194.89" y="495.5" ></text>
</g>
<g >
<title>lappend (2,383,950,642 samples, 0.03%)</title><rect x="971.1" y="389" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="974.09" y="399.5" ></text>
</g>
<g >
<title>palloc (1,375,884,751 samples, 0.01%)</title><rect x="930.6" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="933.55" y="383.5" ></text>
</g>
<g >
<title>secure_read (276,232,890,148 samples, 2.91%)</title><rect x="152.9" y="533" width="34.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="155.93" y="543.5" >se..</text>
</g>
<g >
<title>index_pages_fetched (3,160,228,045 samples, 0.03%)</title><rect x="1016.0" y="325" width="0.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1019.02" y="335.5" ></text>
</g>
<g >
<title>eval_const_expressions (13,714,206,006 samples, 0.14%)</title><rect x="1051.9" y="485" width="1.7" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1054.89" y="495.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,197,076,664 samples, 0.03%)</title><rect x="214.2" y="533" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="217.16" y="543.5" ></text>
</g>
<g >
<title>int2hashfast (811,327,929 samples, 0.01%)</title><rect x="1032.9" y="149" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1035.89" y="159.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,004,566,512 samples, 0.01%)</title><rect x="234.0" y="469" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="237.01" y="479.5" ></text>
</g>
<g >
<title>pg_comp_crc32c_sse42 (1,253,633,907 samples, 0.01%)</title><rect x="514.2" y="453" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="517.23" y="463.5" ></text>
</g>
<g >
<title>TransactionLogFetch (6,834,045,459 samples, 0.07%)</title><rect x="1147.9" y="677" width="0.9" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1150.94" y="687.5" ></text>
</g>
<g >
<title>make_restrictinfo (1,157,992,044 samples, 0.01%)</title><rect x="1161.1" y="757" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="1164.11" y="767.5" ></text>
</g>
<g >
<title>add_base_rels_to_query (1,294,386,331 samples, 0.01%)</title><rect x="1082.9" y="757" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1085.93" y="767.5" ></text>
</g>
<g >
<title>expression_returns_set (7,920,249,509 samples, 0.08%)</title><rect x="844.8" y="453" width="1.0" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="847.77" y="463.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,515,498,775 samples, 0.05%)</title><rect x="426.1" y="261" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="429.08" y="271.5" ></text>
</g>
<g >
<title>palloc (1,663,282,879 samples, 0.02%)</title><rect x="870.5" y="501" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="873.52" y="511.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (971,078,648 samples, 0.01%)</title><rect x="128.4" y="469" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="131.36" y="479.5" ></text>
</g>
<g >
<title>ReadCommand (295,567,846,450 samples, 3.11%)</title><rect x="151.9" y="597" width="36.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="154.91" y="607.5" >Rea..</text>
</g>
<g >
<title>fetch_search_path_array (1,405,468,277 samples, 0.01%)</title><rect x="854.0" y="373" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="857.03" y="383.5" ></text>
</g>
<g >
<title>MarkBufferDirtyHint (2,345,747,940 samples, 0.02%)</title><rect x="1147.6" y="677" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1150.63" y="687.5" ></text>
</g>
<g >
<title>_bt_readpage (4,687,329,473 samples, 0.05%)</title><rect x="126.3" y="261" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="129.31" y="271.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,302,341,976 samples, 0.01%)</title><rect x="1134.9" y="677" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1137.90" y="687.5" ></text>
</g>
<g >
<title>palloc (1,484,863,677 samples, 0.02%)</title><rect x="965.5" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="968.46" y="351.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (983,012,021 samples, 0.01%)</title><rect x="265.5" y="469" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="268.52" y="479.5" ></text>
</g>
<g >
<title>newNode (2,326,951,692 samples, 0.02%)</title><rect x="856.6" y="341" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="859.57" y="351.5" ></text>
</g>
<g >
<title>ExecutePlan (15,531,807,651 samples, 0.16%)</title><rect x="124.0" y="533" width="1.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="126.99" y="543.5" ></text>
</g>
<g >
<title>fdget_pos (1,631,801,070 samples, 0.02%)</title><rect x="932.6" y="261" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="935.58" y="271.5" ></text>
</g>
<g >
<title>GetSnapshotData (1,929,345,759 samples, 0.02%)</title><rect x="50.2" y="757" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="53.22" y="767.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (10,845,568,521 samples, 0.11%)</title><rect x="446.0" y="405" width="1.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="449.02" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,003,245,304 samples, 0.01%)</title><rect x="1173.6" y="565" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1176.62" y="575.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,168,598,561 samples, 0.01%)</title><rect x="215.4" y="549" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="218.39" y="559.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (42,100,144,036 samples, 0.44%)</title><rect x="259.9" y="437" width="5.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="262.92" y="447.5" ></text>
</g>
<g >
<title>sched_balance_softirq (1,097,912,714 samples, 0.01%)</title><rect x="757.8" y="469" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="760.77" y="479.5" ></text>
</g>
<g >
<title>check_stack_depth (1,938,045,058 samples, 0.02%)</title><rect x="1137.0" y="741" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1140.02" y="751.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,896,455,345 samples, 0.04%)</title><rect x="353.3" y="357" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="356.26" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,547,918,644 samples, 0.05%)</title><rect x="366.6" y="229" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="369.65" y="239.5" ></text>
</g>
<g >
<title>get_typlen (11,123,220,609 samples, 0.12%)</title><rect x="430.5" y="357" width="1.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="433.54" y="367.5" ></text>
</g>
<g >
<title>_copyVar (8,724,881,163 samples, 0.09%)</title><rect x="951.9" y="421" width="1.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="954.86" y="431.5" ></text>
</g>
<g >
<title>DynaHashAlloc (1,352,127,764 samples, 0.01%)</title><rect x="1063.0" y="437" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1066.04" y="447.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,795,828,442 samples, 0.02%)</title><rect x="124.2" y="229" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="127.19" y="239.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (1,397,105,611 samples, 0.01%)</title><rect x="45.8" y="757" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="48.82" y="767.5" ></text>
</g>
<g >
<title>exprType (2,309,508,867 samples, 0.02%)</title><rect x="847.9" y="405" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="850.94" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,822,297,334 samples, 0.02%)</title><rect x="1168.6" y="757" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1171.63" y="767.5" ></text>
</g>
<g >
<title>WALInsertLockAcquire (3,341,249,431 samples, 0.04%)</title><rect x="513.1" y="453" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="516.07" y="463.5" ></text>
</g>
<g >
<title>list_free (2,400,616,723 samples, 0.03%)</title><rect x="944.3" y="405" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="947.26" y="415.5" ></text>
</g>
<g >
<title>InitResultRelInfo (12,452,295,165 samples, 0.13%)</title><rect x="454.5" y="437" width="1.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="457.45" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,075,551,130 samples, 0.02%)</title><rect x="365.9" y="277" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="368.92" y="287.5" ></text>
</g>
<g >
<title>palloc0 (9,197,701,873 samples, 0.10%)</title><rect x="912.3" y="453" width="1.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="915.30" y="463.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (912,254,503 samples, 0.01%)</title><rect x="882.9" y="341" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="885.88" y="351.5" ></text>
</g>
<g >
<title>StartReadBuffer (18,035,515,597 samples, 0.19%)</title><rect x="354.0" y="325" width="2.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="357.04" y="335.5" ></text>
</g>
<g >
<title>sentinel_ok (26,633,350,962 samples, 0.28%)</title><rect x="25.4" y="741" width="3.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="28.37" y="751.5" ></text>
</g>
<g >
<title>BTreeTupleIsPosting (1,037,625,161 samples, 0.01%)</title><rect x="33.4" y="757" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="36.37" y="767.5" ></text>
</g>
<g >
<title>BackendMain (18,601,171,430 samples, 0.20%)</title><rect x="124.0" y="661" width="2.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="126.99" y="671.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (1,291,805,830 samples, 0.01%)</title><rect x="389.5" y="69" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="392.45" y="79.5" ></text>
</g>
<g >
<title>BufferGetBlock (964,359,975 samples, 0.01%)</title><rect x="311.8" y="229" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="314.82" y="239.5" ></text>
</g>
<g >
<title>finalize_plan (46,253,038,359 samples, 0.49%)</title><rect x="877.3" y="501" width="5.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="880.31" y="511.5" ></text>
</g>
<g >
<title>ExecEndIndexScan (64,325,378,638 samples, 0.68%)</title><rect x="240.7" y="437" width="7.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="243.65" y="447.5" ></text>
</g>
<g >
<title>TrackNewBufferPin (944,682,270 samples, 0.01%)</title><rect x="102.1" y="165" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="105.12" y="175.5" ></text>
</g>
<g >
<title>setup_eager_aggregation (982,529,351 samples, 0.01%)</title><rect x="1043.4" y="469" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1046.36" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,011,578,261 samples, 0.02%)</title><rect x="1116.8" y="693" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1119.85" y="703.5" ></text>
</g>
<g >
<title>new_list (1,748,619,233 samples, 0.02%)</title><rect x="890.5" y="261" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="893.50" y="271.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,595,576,248 samples, 0.04%)</title><rect x="1033.9" y="133" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1036.93" y="143.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (1,324,803,868 samples, 0.01%)</title><rect x="271.7" y="261" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="274.71" y="271.5" ></text>
</g>
<g >
<title>ExecScanExtended (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="405" width="1.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="126.99" y="415.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,040,829,828 samples, 0.01%)</title><rect x="1122.5" y="757" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1125.52" y="767.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (5,118,200,385 samples, 0.05%)</title><rect x="175.3" y="405" width="0.7" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="178.35" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,011,666,888 samples, 0.01%)</title><rect x="989.6" y="309" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="992.60" y="319.5" ></text>
</g>
<g >
<title>call_function_single_prep_ipi (973,253,963 samples, 0.01%)</title><rect x="208.0" y="293" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="211.00" y="303.5" ></text>
</g>
<g >
<title>pfree (5,852,259,179 samples, 0.06%)</title><rect x="359.1" y="357" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="362.11" y="367.5" ></text>
</g>
<g >
<title>BufferIsLockedByMe (1,147,674,532 samples, 0.01%)</title><rect x="1147.7" y="661" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1150.67" y="671.5" ></text>
</g>
<g >
<title>AllocSetAlloc (10,389,138,858 samples, 0.11%)</title><rect x="279.8" y="357" width="1.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="282.79" y="367.5" ></text>
</g>
<g >
<title>updateTargetListEntry (1,130,056,068 samples, 0.01%)</title><rect x="1189.2" y="757" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="1192.21" y="767.5" ></text>
</g>
<g >
<title>tag_hash (2,436,389,534 samples, 0.03%)</title><rect x="1186.7" y="757" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1189.71" y="767.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,585,942,032 samples, 0.02%)</title><rect x="298.8" y="229" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="301.81" y="239.5" ></text>
</g>
<g >
<title>main (17,479,689,687 samples, 0.18%)</title><rect x="126.3" y="725" width="2.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="129.31" y="735.5" ></text>
</g>
<g >
<title>lappend_int (2,625,942,724 samples, 0.03%)</title><rect x="440.7" y="405" width="0.3" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text  x="443.70" y="415.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,401,218,320 samples, 0.04%)</title><rect x="291.3" y="181" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="294.33" y="191.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (9,291,827,722 samples, 0.10%)</title><rect x="185.7" y="341" width="1.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="188.67" y="351.5" ></text>
</g>
<g >
<title>TransactionBlockStatusCode (1,569,639,292 samples, 0.02%)</title><rect x="188.8" y="581" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="191.82" y="591.5" ></text>
</g>
<g >
<title>hash_search (7,627,087,116 samples, 0.08%)</title><rect x="228.6" y="565" width="0.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="231.58" y="575.5" ></text>
</g>
<g >
<title>do_futex (1,074,809,871 samples, 0.01%)</title><rect x="475.6" y="373" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="478.58" y="383.5" ></text>
</g>
<g >
<title>heap_fetch (36,370,308,383 samples, 0.38%)</title><rect x="405.4" y="405" width="4.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="408.37" y="415.5" ></text>
</g>
<g >
<title>__slab_free (1,306,789,759 samples, 0.01%)</title><rect x="184.9" y="357" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="187.86" y="367.5" ></text>
</g>
<g >
<title>ShutdownExprContext (1,020,731,457 samples, 0.01%)</title><rect x="253.6" y="469" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="256.57" y="479.5" ></text>
</g>
<g >
<title>hash_search (5,972,689,102 samples, 0.06%)</title><rect x="862.6" y="437" width="0.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="865.57" y="447.5" ></text>
</g>
<g >
<title>sentinel_ok (1,739,158,090 samples, 0.02%)</title><rect x="259.6" y="421" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="262.58" y="431.5" ></text>
</g>
<g >
<title>sched_balance_newidle (1,027,502,125 samples, 0.01%)</title><rect x="484.3" y="245" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="487.29" y="255.5" ></text>
</g>
<g >
<title>fireASTriggers (1,053,925,048 samples, 0.01%)</title><rect x="404.4" y="437" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="407.37" y="447.5" ></text>
</g>
<g >
<title>select_idle_cpu (14,753,483,129 samples, 0.16%)</title><rect x="203.6" y="277" width="1.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="206.59" y="287.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (5,097,643,658 samples, 0.05%)</title><rect x="1022.7" y="325" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1025.69" y="335.5" ></text>
</g>
<g >
<title>_equalList (1,969,861,195 samples, 0.02%)</title><rect x="913.9" y="469" width="0.2" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="916.86" y="479.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (986,139,691 samples, 0.01%)</title><rect x="326.6" y="165" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="329.55" y="175.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3,400,634,491 samples, 0.04%)</title><rect x="829.7" y="309" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="832.68" y="319.5" ></text>
</g>
<g >
<title>exprCollation (1,294,705,787 samples, 0.01%)</title><rect x="970.3" y="373" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="973.29" y="383.5" ></text>
</g>
<g >
<title>PinBufferForBlock (4,655,897,203 samples, 0.05%)</title><rect x="85.8" y="197" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="88.81" y="207.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,107,025,354 samples, 0.01%)</title><rect x="527.2" y="421" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="530.18" y="431.5" ></text>
</g>
<g >
<title>func_parallel (5,727,809,226 samples, 0.06%)</title><rect x="916.9" y="389" width="0.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="919.92" y="399.5" ></text>
</g>
<g >
<title>new_list (1,939,102,335 samples, 0.02%)</title><rect x="910.9" y="437" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="913.92" y="447.5" ></text>
</g>
<g >
<title>_bt_search (97,245,135,828 samples, 1.02%)</title><rect x="330.0" y="261" width="12.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="333.04" y="271.5" ></text>
</g>
<g >
<title>deconstruct_recurse (16,244,537,779 samples, 0.17%)</title><rect x="974.4" y="437" width="2.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="977.43" y="447.5" ></text>
</g>
<g >
<title>do_futex (3,122,279,661 samples, 0.03%)</title><rect x="367.8" y="181" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="370.82" y="191.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (7,045,219,313 samples, 0.07%)</title><rect x="290.9" y="229" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="293.92" y="239.5" ></text>
</g>
<g >
<title>check_heap_object (4,906,823,422 samples, 0.05%)</title><rect x="195.7" y="373" width="0.6" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="198.65" y="383.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (3,733,192,016 samples, 0.04%)</title><rect x="1072.4" y="581" width="0.5" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="1075.44" y="591.5" ></text>
</g>
<g >
<title>AllocSetReset (3,614,644,409 samples, 0.04%)</title><rect x="225.6" y="501" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="228.64" y="511.5" ></text>
</g>
<g >
<title>select_task_rq (26,454,569,301 samples, 0.28%)</title><rect x="202.3" y="325" width="3.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="205.33" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (62,866,301,836 samples, 0.66%)</title><rect x="179.2" y="469" width="7.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="182.17" y="479.5" ></text>
</g>
<g >
<title>RelationBuildPublicationDesc (3,739,553,397 samples, 0.04%)</title><rect x="419.8" y="421" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="422.81" y="431.5" ></text>
</g>
<g >
<title>ExecTypeFromTLInternal (35,394,921,913 samples, 0.37%)</title><rect x="441.5" y="389" width="4.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="444.52" y="399.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (999,843,566 samples, 0.01%)</title><rect x="234.5" y="501" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="237.49" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (914,064,862 samples, 0.01%)</title><rect x="816.4" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="819.40" y="431.5" ></text>
</g>
<g >
<title>exec_simple_query (18,601,171,430 samples, 0.20%)</title><rect x="124.0" y="629" width="2.3" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="126.99" y="639.5" ></text>
</g>
<g >
<title>BufferAlloc (10,754,855,326 samples, 0.11%)</title><rect x="354.5" y="277" width="1.4" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="357.52" y="287.5" ></text>
</g>
<g >
<title>recv@plt (1,023,309,623 samples, 0.01%)</title><rect x="187.1" y="501" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="190.12" y="511.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,094,299,740 samples, 0.01%)</title><rect x="341.4" y="181" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="344.41" y="191.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,003,780,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.90" y="351.5" ></text>
</g>
<g >
<title>standard_planner (3,069,363,779 samples, 0.03%)</title><rect x="125.9" y="565" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="128.92" y="575.5" ></text>
</g>
<g >
<title>base_yylex (92,080,102,714 samples, 0.97%)</title><rect x="1102.5" y="741" width="11.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1105.53" y="751.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,898,673,539 samples, 0.03%)</title><rect x="873.6" y="517" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="876.58" y="527.5" ></text>
</g>
<g >
<title>_bt_getroot (11,333,614,982 samples, 0.12%)</title><rect x="85.0" y="309" width="1.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="87.98" y="319.5" ></text>
</g>
<g >
<title>do_futex (2,329,035,961 samples, 0.02%)</title><rect x="375.9" y="213" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="378.87" y="223.5" ></text>
</g>
<g >
<title>update_load_avg (12,288,208,411 samples, 0.13%)</title><rect x="172.8" y="277" width="1.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="175.76" y="287.5" ></text>
</g>
<g >
<title>palloc0 (5,010,422,202 samples, 0.05%)</title><rect x="1119.9" y="725" width="0.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1122.95" y="735.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (2,178,414,507 samples, 0.02%)</title><rect x="354.1" y="293" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="357.15" y="303.5" ></text>
</g>
<g >
<title>pg_detoast_datum_copy (8,004,707,541 samples, 0.08%)</title><rect x="1007.1" y="277" width="1.0" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1010.06" y="287.5" ></text>
</g>
<g >
<title>ReleaseSysCache (932,154,849 samples, 0.01%)</title><rect x="1029.8" y="261" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1032.81" y="271.5" ></text>
</g>
<g >
<title>security_socket_getpeersec_dgram (2,747,604,259 samples, 0.03%)</title><rect x="195.1" y="405" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="198.11" y="415.5" ></text>
</g>
<g >
<title>create_modifytable_plan (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="549" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="89.91" y="559.5" ></text>
</g>
<g >
<title>make_pathkeys_for_sortclauses (1,364,248,292 samples, 0.01%)</title><rect x="1160.6" y="757" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1163.60" y="767.5" ></text>
</g>
<g >
<title>palloc (3,724,857,367 samples, 0.04%)</title><rect x="873.5" y="533" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="876.48" y="543.5" ></text>
</g>
<g >
<title>create_plan (86,512,391,805 samples, 0.91%)</title><rect x="883.5" y="517" width="10.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="886.50" y="527.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,048,741,102 samples, 0.02%)</title><rect x="1054.5" y="421" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1057.45" y="431.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (912,972,750 samples, 0.01%)</title><rect x="948.8" y="325" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="951.83" y="335.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (922,347,502 samples, 0.01%)</title><rect x="223.8" y="501" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="226.75" y="511.5" ></text>
</g>
<g >
<title>palloc (1,332,437,719 samples, 0.01%)</title><rect x="1018.0" y="341" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1021.01" y="351.5" ></text>
</g>
<g >
<title>palloc0 (2,363,388,156 samples, 0.02%)</title><rect x="914.4" y="437" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="917.45" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,117,678,619 samples, 0.01%)</title><rect x="275.2" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="278.21" y="367.5" ></text>
</g>
<g >
<title>table_tuple_fetch_row_version (41,520,936,143 samples, 0.44%)</title><rect x="404.7" y="437" width="5.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="407.74" y="447.5" ></text>
</g>
<g >
<title>palloc (914,064,862 samples, 0.01%)</title><rect x="816.4" y="437" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="819.40" y="447.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (952,534,523 samples, 0.01%)</title><rect x="831.5" y="309" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="834.50" y="319.5" ></text>
</g>
<g >
<title>InjectionPointRun (4,416,773,910 samples, 0.05%)</title><rect x="352.3" y="373" width="0.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="355.27" y="383.5" ></text>
</g>
<g >
<title>PortalRunMulti (1,256,272,098 samples, 0.01%)</title><rect x="83.9" y="757" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="86.95" y="767.5" ></text>
</g>
<g >
<title>bms_add_member (4,149,703,629 samples, 0.04%)</title><rect x="878.1" y="485" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="881.11" y="495.5" ></text>
</g>
<g >
<title>list_nth (909,250,796 samples, 0.01%)</title><rect x="458.0" y="453" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="461.02" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,093,058,766 samples, 0.01%)</title><rect x="416.2" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="419.22" y="431.5" ></text>
</g>
<g >
<title>bms_copy (6,491,298,743 samples, 0.07%)</title><rect x="356.9" y="357" width="0.8" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="359.88" y="367.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,247,901,778 samples, 0.01%)</title><rect x="845.6" y="373" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="848.58" y="383.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (4,383,251,789 samples, 0.05%)</title><rect x="205.9" y="309" width="0.5" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="208.89" y="319.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (2,278,711,375 samples, 0.02%)</title><rect x="1030.2" y="213" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1033.23" y="223.5" ></text>
</g>
<g >
<title>scanner_init (1,517,405,894 samples, 0.02%)</title><rect x="1177.4" y="757" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="1180.43" y="767.5" ></text>
</g>
<g >
<title>AllocSetFree (1,610,295,376 samples, 0.02%)</title><rect x="1072.2" y="549" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1075.19" y="559.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,613,819,239 samples, 0.03%)</title><rect x="369.6" y="261" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="372.59" y="271.5" ></text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (6,531,218,870 samples, 0.07%)</title><rect x="912.6" y="421" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="915.59" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32 (1,309,196,122 samples, 0.01%)</title><rect x="340.5" y="181" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="343.47" y="191.5" ></text>
</g>
<g >
<title>RegisterSnapshot (3,811,666,035 samples, 0.04%)</title><rect x="236.0" y="517" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="239.05" y="527.5" ></text>
</g>
<g >
<title>try_to_block_task.constprop.0.isra.0 (19,891,671,672 samples, 0.21%)</title><rect x="486.3" y="277" width="2.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="489.30" y="287.5" ></text>
</g>
<g >
<title>palloc0 (2,082,077,187 samples, 0.02%)</title><rect x="837.9" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="840.90" y="367.5" ></text>
</g>
<g >
<title>PageGetItem (837,127,501 samples, 0.01%)</title><rect x="335.5" y="197" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="338.45" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (62,401,311,695 samples, 0.66%)</title><rect x="482.9" y="421" width="7.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="485.92" y="431.5" ></text>
</g>
<g >
<title>ExecStorePinnedBufferHeapTuple (2,486,842,206 samples, 0.03%)</title><rect x="405.0" y="405" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="408.02" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (14,132,798,151 samples, 0.15%)</title><rect x="226.8" y="549" width="1.8" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="229.82" y="559.5" ></text>
</g>
<g >
<title>ExecutePlan (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="549" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1161.90" y="559.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,790,009,287 samples, 0.03%)</title><rect x="309.2" y="149" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="312.25" y="159.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (913,944,548 samples, 0.01%)</title><rect x="1051.7" y="341" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1054.75" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (899,317,629 samples, 0.01%)</title><rect x="984.4" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="987.42" y="367.5" ></text>
</g>
<g >
<title>ExecUpdatePrologue (835,890,574 samples, 0.01%)</title><rect x="46.6" y="757" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="49.59" y="767.5" ></text>
</g>
<g >
<title>LWLockRelease (1,261,559,876 samples, 0.01%)</title><rect x="97.7" y="181" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="100.69" y="191.5" ></text>
</g>
<g >
<title>futex_wait (1,048,376,231 samples, 0.01%)</title><rect x="475.6" y="357" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="478.58" y="367.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (938,152,268 samples, 0.01%)</title><rect x="1019.8" y="293" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="1022.83" y="303.5" ></text>
</g>
<g >
<title>list_make1_impl (1,983,990,759 samples, 0.02%)</title><rect x="1047.4" y="501" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1050.37" y="511.5" ></text>
</g>
<g >
<title>futex_wake (928,684,905 samples, 0.01%)</title><rect x="370.2" y="133" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="373.23" y="143.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,267,853,986 samples, 0.01%)</title><rect x="822.7" y="357" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="825.66" y="367.5" ></text>
</g>
<g >
<title>GrantLockLocal (945,187,931 samples, 0.01%)</title><rect x="822.5" y="373" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="825.53" y="383.5" ></text>
</g>
<g >
<title>new_list (1,856,219,732 samples, 0.02%)</title><rect x="401.3" y="357" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="404.35" y="367.5" ></text>
</g>
<g >
<title>check_heap_object (3,618,607,274 samples, 0.04%)</title><rect x="186.4" y="293" width="0.4" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="189.37" y="303.5" ></text>
</g>
<g >
<title>set_task_cpu (6,622,408,428 samples, 0.07%)</title><rect x="205.6" y="325" width="0.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="208.61" y="335.5" ></text>
</g>
<g >
<title>palloc0 (1,829,808,486 samples, 0.02%)</title><rect x="416.1" y="437" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="419.13" y="447.5" ></text>
</g>
<g >
<title>check_functions_in_node (8,000,543,338 samples, 0.08%)</title><rect x="959.1" y="341" width="1.0" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="962.13" y="351.5" ></text>
</g>
<g >
<title>TransactionGroupUpdateXidStatus (4,292,836,389 samples, 0.05%)</title><rect x="478.6" y="453" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="481.60" y="463.5" ></text>
</g>
<g >
<title>RelationClose (1,159,312,440 samples, 0.01%)</title><rect x="922.9" y="437" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="925.94" y="447.5" ></text>
</g>
<g >
<title>bms_is_valid_set (1,267,169,166 samples, 0.01%)</title><rect x="357.0" y="341" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="360.03" y="351.5" ></text>
</g>
<g >
<title>AllocSetDelete (15,470,201,331 samples, 0.16%)</title><rect x="134.1" y="533" width="1.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="137.07" y="543.5" ></text>
</g>
<g >
<title>hash_bytes (2,561,633,041 samples, 0.03%)</title><rect x="863.5" y="421" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="866.50" y="431.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (3,185,181,828 samples, 0.03%)</title><rect x="490.3" y="389" width="0.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="493.26" y="399.5" ></text>
</g>
<g >
<title>AfterTriggerEndQuery (1,338,355,706 samples, 0.01%)</title><rect x="266.1" y="501" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="269.05" y="511.5" ></text>
</g>
<g >
<title>lcons (6,451,323,691 samples, 0.07%)</title><rect x="1114.7" y="725" width="0.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1117.74" y="735.5" ></text>
</g>
<g >
<title>get_hash_value (3,007,301,300 samples, 0.03%)</title><rect x="523.2" y="437" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="526.17" y="447.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (1,195,214,777 samples, 0.01%)</title><rect x="1006.5" y="149" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1009.53" y="159.5" ></text>
</g>
<g >
<title>add_path (5,802,954,037 samples, 0.06%)</title><rect x="987.5" y="389" width="0.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="990.48" y="399.5" ></text>
</g>
<g >
<title>CreateExprContextInternal (10,630,311,151 samples, 0.11%)</title><rect x="422.1" y="389" width="1.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="425.11" y="399.5" ></text>
</g>
<g >
<title>create_indexscan_plan (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="437" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="128.92" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,219,066,873 samples, 0.01%)</title><rect x="880.2" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="883.22" y="431.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (4,182,235,203 samples, 0.04%)</title><rect x="1039.0" y="309" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1041.96" y="319.5" ></text>
</g>
<g >
<title>exec_rt_fetch (814,553,903 samples, 0.01%)</title><rect x="1135.5" y="757" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1138.50" y="767.5" ></text>
</g>
<g >
<title>bsearch (13,131,130,376 samples, 0.14%)</title><rect x="287.0" y="261" width="1.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="289.95" y="271.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (2,661,829,016 samples, 0.03%)</title><rect x="352.5" y="325" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="355.49" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,049,189,768 samples, 0.02%)</title><rect x="403.8" y="373" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="406.84" y="383.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,164,410,034 samples, 0.01%)</title><rect x="92.1" y="757" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="95.07" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,302,146,207 samples, 0.01%)</title><rect x="922.1" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="925.06" y="415.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (2,307,472,196 samples, 0.02%)</title><rect x="398.2" y="309" width="0.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="401.17" y="319.5" ></text>
</g>
<g >
<title>ExecConstraints (8,853,176,637 samples, 0.09%)</title><rect x="349.2" y="405" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="352.21" y="415.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="341" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="89.91" y="351.5" ></text>
</g>
<g >
<title>PageGetItem (1,194,029,805 samples, 0.01%)</title><rect x="333.5" y="213" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="336.52" y="223.5" ></text>
</g>
<g >
<title>heap_getattr (48,038,050,941 samples, 0.51%)</title><rect x="1001.0" y="245" width="6.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1004.03" y="255.5" ></text>
</g>
<g >
<title>pq_beginmessage (2,301,711,318 samples, 0.02%)</title><rect x="189.1" y="581" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="192.06" y="591.5" ></text>
</g>
<g >
<title>hash_bytes (2,687,570,621 samples, 0.03%)</title><rect x="523.2" y="405" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="526.21" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,413,241,866 samples, 0.01%)</title><rect x="348.3" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="351.35" y="351.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (2,478,864,355 samples, 0.03%)</title><rect x="461.9" y="533" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="464.88" y="543.5" ></text>
</g>
<g >
<title>folio_mark_dirty (1,209,835,924 samples, 0.01%)</title><rect x="505.9" y="341" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="508.89" y="351.5" ></text>
</g>
<g >
<title>get_mergejoin_opfamilies (19,810,676,201 samples, 0.21%)</title><rect x="960.8" y="389" width="2.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="963.82" y="399.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (921,568,979 samples, 0.01%)</title><rect x="468.4" y="437" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="471.38" y="447.5" ></text>
</g>
<g >
<title>hash_search (2,818,225,664 samples, 0.03%)</title><rect x="1015.7" y="293" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1018.67" y="303.5" ></text>
</g>
<g >
<title>PageAddItemExtended (24,931,591,439 samples, 0.26%)</title><rect x="379.3" y="341" width="3.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="382.28" y="351.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (4,422,981,637 samples, 0.05%)</title><rect x="397.2" y="341" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="400.19" y="351.5" ></text>
</g>
<g >
<title>palloc0 (2,106,038,384 samples, 0.02%)</title><rect x="849.8" y="389" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="852.75" y="399.5" ></text>
</g>
<g >
<title>palloc (2,361,363,173 samples, 0.02%)</title><rect x="951.0" y="405" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="954.00" y="415.5" ></text>
</g>
<g >
<title>ExecConstraints (1,409,579,014 samples, 0.01%)</title><rect x="42.5" y="757" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="45.48" y="767.5" ></text>
</g>
<g >
<title>CopySnapshot (4,300,308,435 samples, 0.05%)</title><rect x="463.6" y="549" width="0.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="466.62" y="559.5" ></text>
</g>
<g >
<title>RelationClose (1,697,762,949 samples, 0.02%)</title><rect x="240.8" y="405" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="243.82" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,174,301,782 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.67" y="399.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (968,027,246 samples, 0.01%)</title><rect x="869.2" y="405" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="872.15" y="415.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,130,840,438 samples, 0.01%)</title><rect x="1033.7" y="117" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1036.65" y="127.5" ></text>
</g>
<g >
<title>TupleDescAttr (1,470,001,716 samples, 0.02%)</title><rect x="117.1" y="741" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="120.13" y="751.5" ></text>
</g>
<g >
<title>palloc (1,209,245,753 samples, 0.01%)</title><rect x="896.8" y="421" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="899.79" y="431.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (939,751,623 samples, 0.01%)</title><rect x="440.0" y="341" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="442.99" y="351.5" ></text>
</g>
<g >
<title>palloc0 (3,728,173,317 samples, 0.04%)</title><rect x="1115.6" y="693" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1118.64" y="703.5" ></text>
</g>
<g >
<title>standard_ExecutorStart (395,063,183,486 samples, 4.16%)</title><rect x="411.5" y="517" width="49.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="414.50" y="527.5" >stan..</text>
</g>
<g >
<title>transformExprRecurse (56,537,866,421 samples, 0.60%)</title><rect x="836.1" y="421" width="7.0" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="839.06" y="431.5" ></text>
</g>
<g >
<title>ExecScanExtended (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="453" width="6.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="98.68" y="463.5" ></text>
</g>
<g >
<title>bsearch@plt (1,065,991,332 samples, 0.01%)</title><rect x="288.6" y="261" width="0.1" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text  x="291.58" y="271.5" ></text>
</g>
<g >
<title>folio_unlock (3,578,217,057 samples, 0.04%)</title><rect x="506.0" y="341" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="509.04" y="351.5" ></text>
</g>
<g >
<title>palloc0 (2,612,830,565 samples, 0.03%)</title><rect x="906.5" y="485" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="909.49" y="495.5" ></text>
</g>
<g >
<title>palloc (1,581,726,438 samples, 0.02%)</title><rect x="341.9" y="245" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="344.92" y="255.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (2,038,010,574 samples, 0.02%)</title><rect x="530.3" y="517" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="533.29" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,004,473,658 samples, 0.01%)</title><rect x="816.3" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="819.27" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,332,299,509 samples, 0.01%)</title><rect x="353.5" y="293" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="356.55" y="303.5" ></text>
</g>
<g >
<title>find_oper_cache_entry (14,064,839,130 samples, 0.15%)</title><rect x="838.7" y="357" width="1.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="841.69" y="367.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (2,417,750,261 samples, 0.03%)</title><rect x="1113.3" y="693" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1116.33" y="703.5" ></text>
</g>
<g >
<title>rewriteTargetListIU (1,034,834,286 samples, 0.01%)</title><rect x="1177.1" y="757" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1180.14" y="767.5" ></text>
</g>
<g >
<title>vector8_broadcast (1,934,241,249 samples, 0.02%)</title><rect x="1081.4" y="501" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="1084.37" y="511.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,362,674,292 samples, 0.05%)</title><rect x="807.7" y="341" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="810.73" y="351.5" ></text>
</g>
<g >
<title>LWLockRelease (2,909,023,294 samples, 0.03%)</title><rect x="370.1" y="277" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="373.08" y="287.5" ></text>
</g>
<g >
<title>ExecReadyExpr (2,877,380,705 samples, 0.03%)</title><rect x="440.2" y="405" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="443.24" y="415.5" ></text>
</g>
<g >
<title>LWLockWaitForVar (9,420,820,087 samples, 0.10%)</title><rect x="495.9" y="469" width="1.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text  x="498.94" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1,279,904,960 samples, 0.01%)</title><rect x="936.8" y="213" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="939.82" y="223.5" ></text>
</g>
<g >
<title>index_getattr (1,111,430,735 samples, 0.01%)</title><rect x="1151.3" y="757" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1154.34" y="767.5" ></text>
</g>
<g >
<title>VirtualXactLockTableCleanup (4,650,963,938 samples, 0.05%)</title><rect x="526.7" y="453" width="0.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="529.75" y="463.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (1,021,959,820 samples, 0.01%)</title><rect x="822.9" y="357" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="825.89" y="367.5" ></text>
</g>
<g >
<title>make_ands_implicit (3,494,019,306 samples, 0.04%)</title><rect x="1056.8" y="469" width="0.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1059.83" y="479.5" ></text>
</g>
<g >
<title>sched_clock_cpu (937,900,485 samples, 0.01%)</title><rect x="174.5" y="325" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="177.52" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (917,446,466 samples, 0.01%)</title><rect x="1047.5" y="453" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1050.50" y="463.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (4,513,560,012 samples, 0.05%)</title><rect x="367.7" y="245" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="370.68" y="255.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (2,721,881,167 samples, 0.03%)</title><rect x="346.8" y="341" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="349.84" y="351.5" ></text>
</g>
<g >
<title>ReleaseBuffer (4,102,407,988 samples, 0.04%)</title><rect x="326.4" y="213" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="329.39" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,008,357,478 samples, 0.01%)</title><rect x="302.5" y="117" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="305.48" y="127.5" ></text>
</g>
<g >
<title>new_list (1,352,638,368 samples, 0.01%)</title><rect x="919.7" y="453" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="922.66" y="463.5" ></text>
</g>
<g >
<title>printtup_destroy (2,315,609,137 samples, 0.02%)</title><rect x="1072.1" y="581" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1075.14" y="591.5" ></text>
</g>
<g >
<title>list_nth_cell (926,325,958 samples, 0.01%)</title><rect x="1020.3" y="309" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1023.28" y="319.5" ></text>
</g>
<g >
<title>tag_hash (2,616,226,937 samples, 0.03%)</title><rect x="814.5" y="405" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="817.51" y="415.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3,119,855,737 samples, 0.03%)</title><rect x="474.3" y="485" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="477.34" y="495.5" ></text>
</g>
<g >
<title>simplify_function (12,681,761,281 samples, 0.13%)</title><rect x="1055.2" y="437" width="1.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1058.25" y="447.5" ></text>
</g>
<g >
<title>futex_wait (3,785,267,112 samples, 0.04%)</title><rect x="366.7" y="181" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="369.70" y="191.5" ></text>
</g>
<g >
<title>AllocSetAlloc (848,948,678 samples, 0.01%)</title><rect x="973.7" y="261" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="976.70" y="271.5" ></text>
</g>
<g >
<title>selinux_socket_sendmsg (6,309,571,448 samples, 0.07%)</title><rect x="193.6" y="405" width="0.7" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="196.57" y="415.5" ></text>
</g>
<g >
<title>bms_copy (2,401,726,467 samples, 0.03%)</title><rect x="345.6" y="373" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="348.60" y="383.5" ></text>
</g>
<g >
<title>ExecutePlan (55,519,487,286 samples, 0.58%)</title><rect x="95.7" y="581" width="6.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="98.68" y="591.5" ></text>
</g>
<g >
<title>__wake_up_common (61,850,083,631 samples, 0.65%)</title><rect x="200.7" y="373" width="7.7" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="203.73" y="383.5" ></text>
</g>
<g >
<title>hash_search (2,632,524,682 samples, 0.03%)</title><rect x="1067.9" y="437" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1070.89" y="447.5" ></text>
</g>
<g >
<title>exprType (1,076,569,160 samples, 0.01%)</title><rect x="277.7" y="405" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="280.66" y="415.5" ></text>
</g>
<g >
<title>list_nth (958,926,209 samples, 0.01%)</title><rect x="1065.9" y="485" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1068.89" y="495.5" ></text>
</g>
<g >
<title>heapam_estimate_rel_size (1,417,558,013 samples, 0.01%)</title><rect x="1150.3" y="757" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="1153.31" y="767.5" ></text>
</g>
<g >
<title>printtup_create_DR (4,271,476,462 samples, 0.04%)</title><rect x="212.8" y="565" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="215.81" y="575.5" ></text>
</g>
<g >
<title>tag_hash (2,809,948,076 samples, 0.03%)</title><rect x="300.2" y="101" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="303.17" y="111.5" ></text>
</g>
<g >
<title>CreateQueryDesc (8,327,330,684 samples, 0.09%)</title><rect x="235.8" y="533" width="1.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="238.82" y="543.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,107,763,088 samples, 0.03%)</title><rect x="1145.3" y="757" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1148.32" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,746,546,703 samples, 0.02%)</title><rect x="878.4" y="437" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="881.39" y="447.5" ></text>
</g>
<g >
<title>SearchCatCache3 (6,082,363,909 samples, 0.06%)</title><rect x="1040.5" y="341" width="0.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1043.53" y="351.5" ></text>
</g>
<g >
<title>fix_scan_expr (31,198,664,176 samples, 0.33%)</title><rect x="900.3" y="469" width="3.9" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="903.29" y="479.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (7,342,803,594 samples, 0.08%)</title><rect x="297.3" y="261" width="0.9" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="300.27" y="271.5" ></text>
</g>
<g >
<title>bms_copy (2,161,331,631 samples, 0.02%)</title><rect x="957.1" y="437" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="960.13" y="447.5" ></text>
</g>
<g >
<title>SyncRepWaitForLSN (1,192,040,114 samples, 0.01%)</title><rect x="106.9" y="757" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="109.90" y="767.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (1,660,227,967 samples, 0.02%)</title><rect x="428.1" y="293" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="431.10" y="303.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,939,871,897 samples, 0.02%)</title><rect x="519.2" y="421" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="522.23" y="431.5" ></text>
</g>
<g >
<title>AtEOXact_Enum (1,240,290,169 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.04" y="767.5" ></text>
</g>
<g >
<title>palloc (1,264,827,881 samples, 0.01%)</title><rect x="401.4" y="341" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="404.42" y="351.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (4,200,821,678 samples, 0.04%)</title><rect x="1067.7" y="453" width="0.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="1070.69" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,110,760,179 samples, 0.01%)</title><rect x="514.8" y="469" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="517.82" y="479.5" ></text>
</g>
<g >
<title>hash_search (6,335,326,853 samples, 0.07%)</title><rect x="947.3" y="325" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="950.28" y="335.5" ></text>
</g>
<g >
<title>get_hash_value (3,106,881,449 samples, 0.03%)</title><rect x="300.1" y="117" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="303.13" y="127.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,095,078,867 samples, 0.02%)</title><rect x="1034.4" y="213" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1037.43" y="223.5" ></text>
</g>
<g >
<title>list_copy (964,207,431 samples, 0.01%)</title><rect x="1155.5" y="757" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1158.52" y="767.5" ></text>
</g>
<g >
<title>strlen@plt (896,195,308 samples, 0.01%)</title><rect x="853.9" y="357" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="856.91" y="367.5" ></text>
</g>
<g >
<title>_bt_check_natts (15,783,257,821 samples, 0.17%)</title><rect x="333.8" y="213" width="2.0" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text  x="336.81" y="223.5" ></text>
</g>
<g >
<title>coerce_to_boolean (10,002,819,333 samples, 0.11%)</title><rect x="844.5" y="469" width="1.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="847.52" y="479.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (4,064,551,160 samples, 0.04%)</title><rect x="827.3" y="309" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="830.30" y="319.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,060,594,112 samples, 0.01%)</title><rect x="1038.0" y="293" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1041.03" y="303.5" ></text>
</g>
<g >
<title>palloc (2,763,918,956 samples, 0.03%)</title><rect x="873.0" y="501" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="875.98" y="511.5" ></text>
</g>
<g >
<title>makeIndexInfo (9,374,020,907 samples, 0.10%)</title><rect x="400.0" y="373" width="1.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="403.02" y="383.5" ></text>
</g>
<g >
<title>int4pl (1,434,568,464 samples, 0.02%)</title><rect x="290.5" y="277" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="293.48" y="287.5" ></text>
</g>
<g >
<title>distribute_quals_to_rels (946,907,650 samples, 0.01%)</title><rect x="1132.6" y="757" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="1135.62" y="767.5" ></text>
</g>
<g >
<title>btbeginscan (20,683,398,458 samples, 0.22%)</title><rect x="293.0" y="293" width="2.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="296.05" y="303.5" ></text>
</g>
<g >
<title>name_matches_visible_ENR (886,800,917 samples, 0.01%)</title><rect x="1162.2" y="757" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1165.20" y="767.5" ></text>
</g>
<g >
<title>new_list (4,405,067,043 samples, 0.05%)</title><rect x="1164.1" y="757" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1167.09" y="767.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (1,462,878,688 samples, 0.02%)</title><rect x="490.4" y="357" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="493.37" y="367.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (1,575,847,117 samples, 0.02%)</title><rect x="478.1" y="389" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="481.12" y="399.5" ></text>
</g>
<g >
<title>AtEOXact_RelationMap (2,440,207,599 samples, 0.03%)</title><rect x="471.8" y="517" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="474.77" y="527.5" ></text>
</g>
<g >
<title>pgstat_count_io_op_time (7,459,781,144 samples, 0.08%)</title><rect x="509.1" y="469" width="0.9" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="512.06" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,697,802,365 samples, 0.02%)</title><rect x="906.6" y="469" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="909.60" y="479.5" ></text>
</g>
<g >
<title>get_op_opfamily_properties (8,482,297,370 samples, 0.09%)</title><rect x="434.7" y="405" width="1.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="437.73" y="415.5" ></text>
</g>
<g >
<title>__strlen_avx2 (967,114,867 samples, 0.01%)</title><rect x="229.2" y="533" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="232.19" y="543.5" ></text>
</g>
<g >
<title>avc_has_perm (2,162,347,210 samples, 0.02%)</title><rect x="180.7" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="183.65" y="383.5" ></text>
</g>
<g >
<title>_mdnblocks (8,198,018,510 samples, 0.09%)</title><rect x="932.0" y="357" width="1.0" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="935.00" y="367.5" ></text>
</g>
<g >
<title>hash_search (8,222,046,896 samples, 0.09%)</title><rect x="823.7" y="373" width="1.0" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="826.70" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (887,513,278 samples, 0.01%)</title><rect x="277.2" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="280.19" y="367.5" ></text>
</g>
<g >
<title>list_free_private (1,916,159,398 samples, 0.02%)</title><rect x="992.5" y="325" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="995.45" y="335.5" ></text>
</g>
<g >
<title>MemoryContextCreate (856,357,065 samples, 0.01%)</title><rect x="347.1" y="325" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="350.07" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (5,603,661,356 samples, 0.06%)</title><rect x="1049.9" y="421" width="0.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1052.86" y="431.5" ></text>
</g>
<g >
<title>expr_setup_walker (5,785,741,054 samples, 0.06%)</title><rect x="425.9" y="277" width="0.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="428.92" y="287.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (4,327,253,586 samples, 0.05%)</title><rect x="322.6" y="181" width="0.6" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="325.64" y="191.5" ></text>
</g>
<g >
<title>uint32_hash (1,172,007,513 samples, 0.01%)</title><rect x="943.6" y="341" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="946.65" y="351.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (12,859,390,985 samples, 0.14%)</title><rect x="1074.7" y="501" width="1.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1077.68" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,757,883,085 samples, 0.02%)</title><rect x="813.6" y="405" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="816.64" y="415.5" ></text>
</g>
<g >
<title>ExecInitExprRec (21,070,306,462 samples, 0.22%)</title><rect x="426.7" y="357" width="2.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="429.66" y="367.5" ></text>
</g>
<g >
<title>_find_next_bit (822,281,814 samples, 0.01%)</title><rect x="204.0" y="261" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="206.95" y="271.5" ></text>
</g>
<g >
<title>ReadBuffer (809,812,762 samples, 0.01%)</title><rect x="88.4" y="757" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="91.37" y="767.5" ></text>
</g>
<g >
<title>PostmasterMain (18,601,171,430 samples, 0.20%)</title><rect x="124.0" y="725" width="2.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="126.99" y="735.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,900,169,101 samples, 0.02%)</title><rect x="388.6" y="261" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="391.57" y="271.5" ></text>
</g>
<g >
<title>palloc0 (1,824,960,161 samples, 0.02%)</title><rect x="1117.8" y="709" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1120.80" y="719.5" ></text>
</g>
<g >
<title>ExecIndexScan (1,472,358,513 samples, 0.02%)</title><rect x="43.4" y="757" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="46.44" y="767.5" ></text>
</g>
<g >
<title>sentinel_ok (300,405,911,690 samples, 3.16%)</title><rect x="758.9" y="533" width="37.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="761.92" y="543.5" >sen..</text>
</g>
<g >
<title>pg_plan_query (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="645" width="3.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="105.66" y="655.5" ></text>
</g>
<g >
<title>palloc0 (1,162,330,643 samples, 0.01%)</title><rect x="897.3" y="437" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="900.29" y="447.5" ></text>
</g>
<g >
<title>exprType (1,426,294,868 samples, 0.02%)</title><rect x="844.6" y="453" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="847.59" y="463.5" ></text>
</g>
<g >
<title>do_futex (3,984,167,261 samples, 0.04%)</title><rect x="366.7" y="197" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="369.67" y="207.5" ></text>
</g>
<g >
<title>ksys_lseek (6,041,512,571 samples, 0.06%)</title><rect x="937.3" y="181" width="0.8" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="940.34" y="191.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (3,265,681,155 samples, 0.03%)</title><rect x="183.7" y="293" width="0.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="186.67" y="303.5" ></text>
</g>
<g >
<title>DatumGetInt32 (3,059,403,399 samples, 0.03%)</title><rect x="40.5" y="757" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="43.47" y="767.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (13,306,790,772 samples, 0.14%)</title><rect x="959.0" y="357" width="1.7" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="962.01" y="367.5" ></text>
</g>
<g >
<title>futex_wait (1,050,059,736 samples, 0.01%)</title><rect x="299.0" y="117" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="302.03" y="127.5" ></text>
</g>
<g >
<title>FullTransactionIdNewer (1,033,225,903 samples, 0.01%)</title><rect x="222.4" y="549" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="225.42" y="559.5" ></text>
</g>
<g >
<title>BufferGetPage (1,204,605,462 samples, 0.01%)</title><rect x="338.6" y="229" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="341.57" y="239.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (898,703,936 samples, 0.01%)</title><rect x="128.0" y="229" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="130.99" y="239.5" ></text>
</g>
<g >
<title>do_epoll_wait (146,468,337,264 samples, 1.54%)</title><rect x="156.9" y="421" width="18.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="159.93" y="431.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,325,157,373 samples, 0.01%)</title><rect x="963.9" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="966.90" y="335.5" ></text>
</g>
<g >
<title>ExecutorRun (1,166,411,855,152 samples, 12.28%)</title><rect x="266.3" y="533" width="144.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="269.31" y="543.5" >ExecutorRun</text>
</g>
<g >
<title>postmaster_child_launch (7,654,249,878,114 samples, 80.57%)</title><rect x="132.0" y="645" width="950.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="134.98" y="655.5" >postmaster_child_launch</text>
</g>
<g >
<title>SearchCatCache4 (8,670,698,731 samples, 0.09%)</title><rect x="1008.6" y="261" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1011.62" y="271.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (7,418,342,014 samples, 0.08%)</title><rect x="290.9" y="245" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="293.88" y="255.5" ></text>
</g>
<g >
<title>PageIsNew (3,134,470,857 samples, 0.03%)</title><rect x="340.8" y="213" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="343.76" y="223.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,455,345,032 samples, 0.02%)</title><rect x="942.2" y="341" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="945.23" y="351.5" ></text>
</g>
<g >
<title>tts_buffer_heap_materialize (24,528,667,689 samples, 0.26%)</title><rect x="396.1" y="389" width="3.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="399.12" y="399.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,194,675,272 samples, 0.02%)</title><rect x="513.1" y="421" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="516.14" y="431.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,492,382,391 samples, 0.02%)</title><rect x="924.1" y="389" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="927.05" y="399.5" ></text>
</g>
<g >
<title>create_plan_recurse (84,160,387,966 samples, 0.89%)</title><rect x="883.8" y="501" width="10.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="886.79" y="511.5" ></text>
</g>
<g >
<title>palloc0 (2,431,075,053 samples, 0.03%)</title><rect x="398.9" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="401.86" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (839,199,135 samples, 0.01%)</title><rect x="966.1" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="969.13" y="335.5" ></text>
</g>
<g >
<title>fastgetattr (7,248,522,371 samples, 0.08%)</title><rect x="829.3" y="341" width="0.9" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="832.27" y="351.5" ></text>
</g>
<g >
<title>eval_const_expressions (1,203,969,060 samples, 0.01%)</title><rect x="126.2" y="501" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="129.16" y="511.5" ></text>
</g>
<g >
<title>pfree (3,696,271,707 samples, 0.04%)</title><rect x="254.6" y="469" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="257.57" y="479.5" ></text>
</g>
<g >
<title>AllocSetFree (1,064,710,461 samples, 0.01%)</title><rect x="993.0" y="341" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="995.96" y="351.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,766,702,342 samples, 0.02%)</title><rect x="373.6" y="245" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="376.58" y="255.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,832,871,227 samples, 0.02%)</title><rect x="967.4" y="309" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="970.35" y="319.5" ></text>
</g>
<g >
<title>base_yylex (998,853,590 samples, 0.01%)</title><rect x="1085.4" y="757" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1088.40" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_futex (3,188,802,269 samples, 0.03%)</title><rect x="367.8" y="197" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="370.81" y="207.5" ></text>
</g>
<g >
<title>__libc_start_call_main (7,654,249,878,114 samples, 80.57%)</title><rect x="132.0" y="725" width="950.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="134.98" y="735.5" >__libc_start_call_main</text>
</g>
<g >
<title>SearchCatCache1 (3,603,320,101 samples, 0.04%)</title><rect x="838.2" y="341" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="841.24" y="351.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (2,487,488,076 samples, 0.03%)</title><rect x="322.3" y="181" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="325.33" y="191.5" ></text>
</g>
<g >
<title>selinux_file_permission (3,530,904,921 samples, 0.04%)</title><rect x="501.1" y="357" width="0.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="504.05" y="367.5" ></text>
</g>
<g >
<title>relation_open (15,964,847,091 samples, 0.17%)</title><rect x="1066.3" y="469" width="1.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1069.25" y="479.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (3,139,010,565 samples, 0.03%)</title><rect x="262.9" y="389" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="265.88" y="399.5" ></text>
</g>
<g >
<title>pfree (1,547,167,052 samples, 0.02%)</title><rect x="250.8" y="421" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="253.84" y="431.5" ></text>
</g>
<g >
<title>IncrTupleDescRefCount (2,160,529,097 samples, 0.02%)</title><rect x="278.9" y="373" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="281.91" y="383.5" ></text>
</g>
<g >
<title>getRTEPermissionInfo (1,167,637,663 samples, 0.01%)</title><rect x="897.4" y="469" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="900.44" y="479.5" ></text>
</g>
<g >
<title>updateTargetListEntry (11,099,207,505 samples, 0.12%)</title><rect x="843.1" y="469" width="1.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="846.09" y="479.5" ></text>
</g>
<g >
<title>AllocSetReset (126,220,107,985 samples, 1.33%)</title><rect x="136.1" y="565" width="15.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="139.12" y="575.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64.constprop.0 (66,875,600,247 samples, 0.70%)</title><rect x="482.5" y="453" width="8.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="485.48" y="463.5" ></text>
</g>
<g >
<title>SimpleLruReadPage_ReadOnly (6,283,460,725 samples, 0.07%)</title><rect x="309.1" y="165" width="0.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="312.07" y="175.5" ></text>
</g>
<g >
<title>ExecInitModifyTable (338,942,103,873 samples, 3.57%)</title><rect x="417.2" y="469" width="42.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="420.17" y="479.5" >Exe..</text>
</g>
<g >
<title>FreeExecutorState (112,907,411,203 samples, 1.19%)</title><rect x="251.4" y="501" width="14.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="254.39" y="511.5" ></text>
</g>
<g >
<title>palloc0 (1,554,340,742 samples, 0.02%)</title><rect x="953.7" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="956.69" y="447.5" ></text>
</g>
<g >
<title>SocketBackend (294,841,434,282 samples, 3.10%)</title><rect x="152.0" y="581" width="36.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="154.99" y="591.5" >Soc..</text>
</g>
<g >
<title>tag_hash (4,432,906,850 samples, 0.05%)</title><rect x="1066.7" y="389" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1069.68" y="399.5" ></text>
</g>
<g >
<title>add_base_rels_to_query (189,116,927,141 samples, 1.99%)</title><rect x="926.4" y="453" width="23.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="929.39" y="463.5" >a..</text>
</g>
<g >
<title>CheckVarSlotCompatibility (1,451,288,861 samples, 0.02%)</title><rect x="286.5" y="277" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="289.50" y="287.5" ></text>
</g>
<g >
<title>hash_search (6,329,832,191 samples, 0.07%)</title><rect x="1066.4" y="405" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1069.44" y="415.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,131,799,659 samples, 0.01%)</title><rect x="127.9" y="197" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="130.85" y="207.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,156,795,536 samples, 0.01%)</title><rect x="971.2" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="974.23" y="351.5" ></text>
</g>
<g >
<title>ReserveXLogInsertLocation (6,126,611,530 samples, 0.06%)</title><rect x="387.7" y="309" width="0.8" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="390.69" y="319.5" ></text>
</g>
<g >
<title>[[vdso]] (972,743,365 samples, 0.01%)</title><rect x="1071.5" y="549" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1074.48" y="559.5" ></text>
</g>
<g >
<title>AllocSetAlloc (870,411,187 samples, 0.01%)</title><rect x="974.3" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="977.30" y="399.5" ></text>
</g>
<g >
<title>_bt_search (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="341" width="6.8" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="98.68" y="351.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (9,070,562,566 samples, 0.10%)</title><rect x="972.8" y="389" width="1.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="975.81" y="399.5" ></text>
</g>
<g >
<title>ReadBufferExtended (11,333,614,982 samples, 0.12%)</title><rect x="85.0" y="261" width="1.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="87.98" y="271.5" ></text>
</g>
<g >
<title>SearchSysCache1 (6,089,029,668 samples, 0.06%)</title><rect x="865.5" y="485" width="0.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="868.53" y="495.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,447,792,970 samples, 0.02%)</title><rect x="1082.1" y="565" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1085.09" y="575.5" ></text>
</g>
<g >
<title>bms_copy (1,988,952,163 samples, 0.02%)</title><rect x="883.2" y="501" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="886.21" y="511.5" ></text>
</g>
<g >
<title>pull_up_subqueries_recurse (1,944,658,821 samples, 0.02%)</title><rect x="1070.3" y="469" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1073.27" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,614,057,768 samples, 0.02%)</title><rect x="815.5" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="818.48" y="415.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="128.92" y="383.5" ></text>
</g>
<g >
<title>BufTableLookup (7,404,723,289 samples, 0.08%)</title><rect x="300.5" y="133" width="0.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="303.51" y="143.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,618,061,962 samples, 0.02%)</title><rect x="971.9" y="357" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="974.88" y="367.5" ></text>
</g>
<g >
<title>ExecGetRangeTableRelation (1,002,913,354 samples, 0.01%)</title><rect x="447.5" y="405" width="0.1" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text  x="450.45" y="415.5" ></text>
</g>
<g >
<title>palloc0 (3,053,153,039 samples, 0.03%)</title><rect x="1116.2" y="709" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1119.15" y="719.5" ></text>
</g>
<g >
<title>palloc0 (3,472,106,790 samples, 0.04%)</title><rect x="812.5" y="469" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="815.50" y="479.5" ></text>
</g>
<g >
<title>list_last_cell (1,037,004,091 samples, 0.01%)</title><rect x="1154.9" y="741" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="1157.86" y="751.5" ></text>
</g>
<g >
<title>check_enable_rls (8,587,690,560 samples, 0.09%)</title><rect x="865.2" y="501" width="1.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="868.22" y="511.5" ></text>
</g>
<g >
<title>create_modifytable_plan (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="517" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="128.92" y="527.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (1,390,143,234 samples, 0.01%)</title><rect x="1013.1" y="261" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1016.11" y="271.5" ></text>
</g>
<g >
<title>IsSystemClass (1,810,319,429 samples, 0.02%)</title><rect x="415.0" y="421" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="417.99" y="431.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,208,089,634 samples, 0.01%)</title><rect x="241.7" y="405" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="244.73" y="415.5" ></text>
</g>
<g >
<title>CopyIndexAttOptions (2,009,252,521 samples, 0.02%)</title><rect x="930.5" y="389" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="933.47" y="399.5" ></text>
</g>
<g >
<title>assign_collations_walker (1,058,664,766 samples, 0.01%)</title><rect x="1084.6" y="757" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1087.59" y="767.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (81,716,458,196 samples, 0.86%)</title><rect x="255.1" y="469" width="10.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="258.10" y="479.5" ></text>
</g>
<g >
<title>ExecScan (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="437" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1161.90" y="447.5" ></text>
</g>
<g >
<title>palloc (2,509,121,541 samples, 0.03%)</title><rect x="1118.4" y="693" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1121.43" y="703.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (966,872,314 samples, 0.01%)</title><rect x="716.8" y="501" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="719.81" y="511.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,832,218,866 samples, 0.05%)</title><rect x="811.4" y="325" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="814.37" y="335.5" ></text>
</g>
<g >
<title>LockBuffer (2,646,796,789 samples, 0.03%)</title><rect x="337.8" y="197" width="0.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="340.84" y="207.5" ></text>
</g>
<g >
<title>CreateTemplateTupleDesc (2,261,196,558 samples, 0.02%)</title><rect x="441.8" y="373" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="444.82" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,087,369,933 samples, 0.02%)</title><rect x="234.1" y="485" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="237.14" y="495.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3,322,208,524 samples, 0.03%)</title><rect x="484.0" y="261" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="487.03" y="271.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (1,650,801,750 samples, 0.02%)</title><rect x="120.7" y="741" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="123.67" y="751.5" ></text>
</g>
<g >
<title>newNode (11,627,752,157 samples, 0.12%)</title><rect x="1162.6" y="757" width="1.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1165.62" y="767.5" ></text>
</g>
<g >
<title>palloc (865,702,070 samples, 0.01%)</title><rect x="837.7" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="840.68" y="351.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,209,642,699 samples, 0.01%)</title><rect x="948.1" y="325" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="951.10" y="335.5" ></text>
</g>
<g >
<title>RelationPutHeapTuple (959,210,580 samples, 0.01%)</title><rect x="90.5" y="757" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="93.52" y="767.5" ></text>
</g>
<g >
<title>makeAlias (4,631,557,917 samples, 0.05%)</title><rect x="818.8" y="453" width="0.6" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="821.81" y="463.5" ></text>
</g>
<g >
<title>verify_compact_attribute (2,117,867,440 samples, 0.02%)</title><rect x="347.8" y="373" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="350.84" y="383.5" ></text>
</g>
<g >
<title>murmurhash32 (1,082,425,095 samples, 0.01%)</title><rect x="431.5" y="261" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="434.50" y="271.5" ></text>
</g>
<g >
<title>RelationClose (1,897,239,250 samples, 0.02%)</title><rect x="866.5" y="485" width="0.3" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="869.53" y="495.5" ></text>
</g>
<g >
<title>ExecCloseIndices (15,549,290,634 samples, 0.16%)</title><rect x="238.1" y="469" width="1.9" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="241.05" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9,225,058,986 samples, 0.10%)</title><rect x="937.0" y="213" width="1.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="939.98" y="223.5" ></text>
</g>
<g >
<title>disable_statement_timeout (1,198,082,511 samples, 0.01%)</title><rect x="802.1" y="565" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="805.11" y="575.5" ></text>
</g>
<g >
<title>palloc0 (6,855,577,264 samples, 0.07%)</title><rect x="458.2" y="437" width="0.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="461.23" y="447.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,897,497,546 samples, 0.03%)</title><rect x="1054.3" y="437" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1057.35" y="447.5" ></text>
</g>
<g >
<title>set_rel_width (20,608,748,073 samples, 0.22%)</title><rect x="1039.5" y="389" width="2.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1042.54" y="399.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (876,239,873 samples, 0.01%)</title><rect x="238.5" y="421" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="241.54" y="431.5" ></text>
</g>
<g >
<title>DynaHashAlloc (1,605,699,438 samples, 0.02%)</title><rect x="1063.6" y="421" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1066.58" y="431.5" ></text>
</g>
<g >
<title>get_hash_value (2,847,980,411 samples, 0.03%)</title><rect x="354.6" y="245" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="357.60" y="255.5" ></text>
</g>
<g >
<title>PageGetItem (917,132,156 samples, 0.01%)</title><rect x="353.8" y="373" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="356.77" y="383.5" ></text>
</g>
<g >
<title>set_rel_pathlist (342,470,312,317 samples, 3.61%)</title><rect x="983.4" y="437" width="42.5" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="986.37" y="447.5" >set_..</text>
</g>
<g >
<title>heap_attisnull (1,001,961,943 samples, 0.01%)</title><rect x="930.8" y="389" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="933.80" y="399.5" ></text>
</g>
<g >
<title>LockBuffer (966,676,862 samples, 0.01%)</title><rect x="125.5" y="229" width="0.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="128.48" y="239.5" ></text>
</g>
<g >
<title>makeString (3,823,330,999 samples, 0.04%)</title><rect x="817.5" y="437" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="820.49" y="447.5" ></text>
</g>
<g >
<title>assign_expr_collations (26,612,162,991 samples, 0.28%)</title><rect x="808.8" y="421" width="3.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="811.78" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,689,054,999 samples, 0.02%)</title><rect x="464.4" y="533" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="467.42" y="543.5" ></text>
</g>
<g >
<title>hash_search (5,815,676,938 samples, 0.06%)</title><rect x="923.3" y="389" width="0.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="926.31" y="399.5" ></text>
</g>
<g >
<title>scanRTEForColumn (1,724,065,773 samples, 0.02%)</title><rect x="842.8" y="325" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="845.82" y="335.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (3,009,410,946 samples, 0.03%)</title><rect x="284.3" y="293" width="0.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="287.29" y="303.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (2,207,564,684 samples, 0.02%)</title><rect x="496.8" y="453" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="499.82" y="463.5" ></text>
</g>
<g >
<title>__strcpy_avx2 (1,406,205,318 samples, 0.01%)</title><rect x="1061.0" y="453" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="1063.96" y="463.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (7,798,973,279 samples, 0.08%)</title><rect x="215.7" y="549" width="1.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="218.71" y="559.5" ></text>
</g>
<g >
<title>ItemPointerEquals (2,492,146,687 samples, 0.03%)</title><rect x="296.2" y="309" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="299.20" y="319.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (9,176,549,138 samples, 0.10%)</title><rect x="215.6" y="565" width="1.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="218.58" y="575.5" ></text>
</g>
<g >
<title>SIGetDataEntries (2,196,151,528 samples, 0.02%)</title><rect x="1074.1" y="485" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1077.07" y="495.5" ></text>
</g>
<g >
<title>table_block_relation_estimate_size (28,154,698,378 samples, 0.30%)</title><rect x="935.3" y="357" width="3.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="938.32" y="367.5" ></text>
</g>
<g >
<title>SetCurrentStatementStartTimestamp (3,292,023,590 samples, 0.03%)</title><rect x="210.1" y="597" width="0.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="213.09" y="607.5" ></text>
</g>
<g >
<title>LWLockAcquireOrWait (79,095,828,534 samples, 0.83%)</title><rect x="481.2" y="485" width="9.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="484.16" y="495.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (2,456,324,126 samples, 0.03%)</title><rect x="1185.1" y="581" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1188.13" y="591.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (1,155,267,042 samples, 0.01%)</title><rect x="80.3" y="757" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="83.25" y="767.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (884,781,725 samples, 0.01%)</title><rect x="95.7" y="197" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="98.68" y="207.5" ></text>
</g>
<g >
<title>HeapTupleHasNulls (939,450,766 samples, 0.01%)</title><rect x="1002.3" y="197" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1005.33" y="207.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,302,341,976 samples, 0.01%)</title><rect x="1134.9" y="629" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1137.90" y="639.5" ></text>
</g>
<g >
<title>tag_hash (2,580,327,036 samples, 0.03%)</title><rect x="370.6" y="245" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="373.57" y="255.5" ></text>
</g>
<g >
<title>btint4cmp (1,268,256,603 samples, 0.01%)</title><rect x="1123.9" y="757" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1126.92" y="767.5" ></text>
</g>
<g >
<title>murmurhash32 (1,513,528,316 samples, 0.02%)</title><rect x="828.0" y="277" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="831.03" y="287.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (907,517,998 samples, 0.01%)</title><rect x="57.5" y="757" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="60.48" y="767.5" ></text>
</g>
<g >
<title>index_getattr (2,463,738,124 samples, 0.03%)</title><rect x="84.7" y="261" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="87.68" y="271.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="533" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="128.92" y="543.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (1,825,459,093 samples, 0.02%)</title><rect x="405.7" y="389" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="408.73" y="399.5" ></text>
</g>
<g >
<title>pg_class_aclmask_ext (6,847,734,651 samples, 0.07%)</title><rect x="1033.5" y="165" width="0.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1036.54" y="175.5" ></text>
</g>
<g >
<title>mutex_unlock (1,099,243,932 samples, 0.01%)</title><rect x="161.0" y="373" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="163.97" y="383.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (19,311,270,732 samples, 0.20%)</title><rect x="311.1" y="261" width="2.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="314.07" y="271.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (860,242,846 samples, 0.01%)</title><rect x="819.0" y="389" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="821.95" y="399.5" ></text>
</g>
<g >
<title>BufferAlloc (1,290,999,928 samples, 0.01%)</title><rect x="34.4" y="757" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="37.40" y="767.5" ></text>
</g>
<g >
<title>pq_recvbuf (279,605,486,156 samples, 2.94%)</title><rect x="152.5" y="549" width="34.8" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="155.54" y="559.5" >pq..</text>
</g>
<g >
<title>hash_search (2,593,872,515 samples, 0.03%)</title><rect x="989.6" y="325" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="992.57" y="335.5" ></text>
</g>
<g >
<title>psi_group_change (2,415,877,500 samples, 0.03%)</title><rect x="485.9" y="261" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="488.90" y="271.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,922,399,953 samples, 0.05%)</title><rect x="1041.5" y="325" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1044.49" y="335.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (4,876,537,898 samples, 0.05%)</title><rect x="214.9" y="565" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="217.94" y="575.5" ></text>
</g>
<g >
<title>AllocSetAlloc (927,094,221 samples, 0.01%)</title><rect x="872.4" y="453" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="875.35" y="463.5" ></text>
</g>
<g >
<title>op_in_opfamily (8,729,901,585 samples, 0.09%)</title><rect x="1020.8" y="309" width="1.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1023.83" y="319.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (1,458,980,256 samples, 0.02%)</title><rect x="1076.1" y="469" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="1079.08" y="479.5" ></text>
</g>
<g >
<title>TupleDescAttr (940,498,688 samples, 0.01%)</title><rect x="861.1" y="501" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="864.13" y="511.5" ></text>
</g>
<g >
<title>ReserveXLogInsertLocation (4,239,665,048 samples, 0.04%)</title><rect x="512.5" y="453" width="0.6" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="515.54" y="463.5" ></text>
</g>
<g >
<title>bms_copy (1,590,025,224 samples, 0.02%)</title><rect x="1121.0" y="757" width="0.1" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="1123.95" y="767.5" ></text>
</g>
<g >
<title>RelnameGetRelid (43,193,875,598 samples, 0.45%)</title><rect x="825.0" y="405" width="5.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="827.98" y="415.5" ></text>
</g>
<g >
<title>_bt_getbuf (11,333,614,982 samples, 0.12%)</title><rect x="85.0" y="293" width="1.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="87.98" y="303.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,806,856,863 samples, 0.02%)</title><rect x="923.4" y="373" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="926.36" y="383.5" ></text>
</g>
<g >
<title>planner (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="629" width="3.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="105.66" y="639.5" ></text>
</g>
<g >
<title>newNode (2,370,823,418 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.10" y="431.5" ></text>
</g>
<g >
<title>bms_make_singleton (3,952,332,804 samples, 0.04%)</title><rect x="974.7" y="405" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="977.69" y="415.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (3,571,723,324 samples, 0.04%)</title><rect x="164.5" y="293" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="167.53" y="303.5" ></text>
</g>
<g >
<title>SPI_inside_nonatomic_context (1,021,133,993 samples, 0.01%)</title><rect x="1076.5" y="533" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1079.46" y="543.5" ></text>
</g>
<g >
<title>scanNameSpaceForENR (967,806,935 samples, 0.01%)</title><rect x="833.4" y="469" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="836.38" y="479.5" ></text>
</g>
<g >
<title>is_redundant_with_indexclauses (1,353,027,827 samples, 0.01%)</title><rect x="1015.4" y="309" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="1018.44" y="319.5" ></text>
</g>
<g >
<title>new_list (4,356,746,797 samples, 0.05%)</title><rect x="1115.0" y="709" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1117.99" y="719.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (915,185,204 samples, 0.01%)</title><rect x="86.7" y="165" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="89.69" y="175.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (2,585,020,680 samples, 0.03%)</title><rect x="424.5" y="325" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="427.51" y="335.5" ></text>
</g>
<g >
<title>set_next_entity (1,085,712,733 samples, 0.01%)</title><rect x="163.4" y="309" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text  x="166.40" y="319.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (830,739,932 samples, 0.01%)</title><rect x="409.2" y="245" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="412.18" y="255.5" ></text>
</g>
<g >
<title>newNode (2,235,453,069 samples, 0.02%)</title><rect x="934.2" y="373" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="937.16" y="383.5" ></text>
</g>
<g >
<title>AllocSetCheck (3,644,188,127 samples, 0.04%)</title><rect x="135.1" y="485" width="0.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="138.06" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,295,826,693 samples, 0.01%)</title><rect x="996.8" y="229" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="999.79" y="239.5" ></text>
</g>
<g >
<title>bms_is_valid_set (1,013,833,191 samples, 0.01%)</title><rect x="880.4" y="453" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="883.37" y="463.5" ></text>
</g>
<g >
<title>ExecCloseResultRelations (17,893,009,191 samples, 0.19%)</title><rect x="237.8" y="485" width="2.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="240.77" y="495.5" ></text>
</g>
<g >
<title>__update_idle_core (906,467,145 samples, 0.01%)</title><rect x="484.6" y="245" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="487.59" y="255.5" ></text>
</g>
<g >
<title>new_list (3,381,265,959 samples, 0.04%)</title><rect x="1114.2" y="725" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1117.20" y="735.5" ></text>
</g>
<g >
<title>MemoryContextDelete (17,775,127,030 samples, 0.19%)</title><rect x="133.9" y="565" width="2.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="136.89" y="575.5" ></text>
</g>
<g >
<title>list_make1_impl (2,852,159,762 samples, 0.03%)</title><rect x="984.9" y="373" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="987.90" y="383.5" ></text>
</g>
<g >
<title>get_func_retset (8,243,444,765 samples, 0.09%)</title><rect x="848.2" y="405" width="1.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="851.23" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,260,871,668 samples, 0.01%)</title><rect x="861.5" y="453" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="864.49" y="463.5" ></text>
</g>
<g >
<title>try_to_wake_up (58,397,294,825 samples, 0.61%)</title><rect x="201.2" y="341" width="7.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="204.16" y="351.5" ></text>
</g>
<g >
<title>PointerGetDatum (3,039,486,939 samples, 0.03%)</title><rect x="83.3" y="757" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="86.34" y="767.5" ></text>
</g>
<g >
<title>AllocSetFree (981,885,140 samples, 0.01%)</title><rect x="861.9" y="485" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="864.94" y="495.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (1,291,805,830 samples, 0.01%)</title><rect x="389.5" y="37" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="392.45" y="47.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (14,663,255,160 samples, 0.15%)</title><rect x="1037.7" y="357" width="1.8" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1040.69" y="367.5" ></text>
</g>
<g >
<title>AllocSetReset (8,356,357,771 samples, 0.09%)</title><rect x="467.6" y="469" width="1.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="470.60" y="479.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (1,058,924,974 samples, 0.01%)</title><rect x="437.9" y="373" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="440.88" y="383.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,409,985,659 samples, 0.01%)</title><rect x="1189.5" y="757" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1192.49" y="767.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (2,541,077,163 samples, 0.03%)</title><rect x="1185.1" y="597" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1188.13" y="607.5" ></text>
</g>
<g >
<title>UnpinBuffer (2,602,885,911 samples, 0.03%)</title><rect x="382.5" y="341" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="385.55" y="351.5" ></text>
</g>
<g >
<title>list_nth_cell (1,091,586,932 samples, 0.01%)</title><rect x="1035.6" y="245" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1038.55" y="255.5" ></text>
</g>
<g >
<title>table_index_fetch_end (3,220,394,746 samples, 0.03%)</title><rect x="248.2" y="405" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="251.23" y="415.5" ></text>
</g>
<g >
<title>heapam_estimate_rel_size (28,595,290,857 samples, 0.30%)</title><rect x="935.3" y="373" width="3.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="938.26" y="383.5" ></text>
</g>
<g >
<title>build_index_tlist (13,130,811,371 samples, 0.14%)</title><rect x="933.4" y="405" width="1.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="936.42" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,157,971,526 samples, 0.01%)</title><rect x="863.3" y="437" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="866.35" y="447.5" ></text>
</g>
<g >
<title>palloc0 (5,760,879,673 samples, 0.06%)</title><rect x="949.1" y="405" width="0.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="952.13" y="415.5" ></text>
</g>
<g >
<title>transformReturningClause (1,128,239,273 samples, 0.01%)</title><rect x="1187.4" y="757" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1190.42" y="767.5" ></text>
</g>
<g >
<title>lappend_int (3,094,704,084 samples, 0.03%)</title><rect x="457.5" y="453" width="0.4" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text  x="460.53" y="463.5" ></text>
</g>
<g >
<title>LockRelationOid (1,570,319,129 samples, 0.02%)</title><rect x="59.1" y="757" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="62.08" y="767.5" ></text>
</g>
<g >
<title>markVarForSelectPriv (7,471,060,040 samples, 0.08%)</title><rect x="856.9" y="357" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="859.93" y="367.5" ></text>
</g>
<g >
<title>BufferIsValid (944,816,175 samples, 0.01%)</title><rect x="250.1" y="437" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="253.14" y="447.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,481,080,629 samples, 0.04%)</title><rect x="917.2" y="341" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="920.20" y="351.5" ></text>
</g>
<g >
<title>compute_new_xmax_infomask (1,394,884,353 samples, 0.01%)</title><rect x="383.3" y="357" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="386.27" y="367.5" ></text>
</g>
<g >
<title>check_lock_if_inplace_updateable_rel (1,040,069,233 samples, 0.01%)</title><rect x="1126.4" y="757" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1129.39" y="767.5" ></text>
</g>
<g >
<title>CheckExprStillValid (941,754,196 samples, 0.01%)</title><rect x="38.3" y="757" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="41.30" y="767.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (1,212,849,874 samples, 0.01%)</title><rect x="279.0" y="341" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="282.03" y="351.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,236,995,579 samples, 0.01%)</title><rect x="921.6" y="405" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="924.55" y="415.5" ></text>
</g>
<g >
<title>__virt_addr_valid (3,802,862,419 samples, 0.04%)</title><rect x="195.7" y="357" width="0.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="198.72" y="367.5" ></text>
</g>
<g >
<title>check_redundant_nullability_qual (924,370,551 samples, 0.01%)</title><rect x="964.2" y="405" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="967.18" y="415.5" ></text>
</g>
<g >
<title>tag_hash (3,618,709,238 samples, 0.04%)</title><rect x="923.6" y="373" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="926.58" y="383.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (8,233,096,366 samples, 0.09%)</title><rect x="1008.7" y="245" width="1.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1011.67" y="255.5" ></text>
</g>
<g >
<title>hash_bytes (2,109,215,735 samples, 0.02%)</title><rect x="948.3" y="309" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="951.25" y="319.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,514,327,687 samples, 0.02%)</title><rect x="353.3" y="341" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="356.34" y="351.5" ></text>
</g>
<g >
<title>simplify_function (916,247,721 samples, 0.01%)</title><rect x="1182.9" y="757" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1185.92" y="767.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,296,006,930 samples, 0.01%)</title><rect x="361.0" y="309" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="363.95" y="319.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,583,759,191 samples, 0.02%)</title><rect x="1013.9" y="245" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1016.89" y="255.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,334,472,513 samples, 0.04%)</title><rect x="1038.3" y="293" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1041.26" y="303.5" ></text>
</g>
<g >
<title>pfree (1,481,872,888 samples, 0.02%)</title><rect x="992.5" y="309" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="995.51" y="319.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (960,954,854 samples, 0.01%)</title><rect x="363.7" y="341" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="366.68" y="351.5" ></text>
</g>
<g >
<title>new_list (2,000,222,439 samples, 0.02%)</title><rect x="975.5" y="405" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="978.55" y="415.5" ></text>
</g>
<g >
<title>ExecOpenIndices (1,195,486,297 samples, 0.01%)</title><rect x="45.2" y="757" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="48.19" y="767.5" ></text>
</g>
<g >
<title>BoolGetDatum (841,876,701 samples, 0.01%)</title><rect x="34.2" y="757" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="37.16" y="767.5" ></text>
</g>
<g >
<title>LWLockRelease (898,377,181 samples, 0.01%)</title><rect x="406.7" y="373" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="409.73" y="383.5" ></text>
</g>
<g >
<title>list_insert_nth (2,094,708,131 samples, 0.02%)</title><rect x="992.7" y="357" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="995.69" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,773,667,127 samples, 0.02%)</title><rect x="1119.0" y="677" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1122.02" y="687.5" ></text>
</g>
<g >
<title>pg_class_aclcheck (895,616,830 samples, 0.01%)</title><rect x="1169.2" y="757" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="1172.18" y="767.5" ></text>
</g>
<g >
<title>smgrdestroyall (979,630,493 samples, 0.01%)</title><rect x="1183.5" y="757" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1186.53" y="767.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (55,519,487,286 samples, 0.58%)</title><rect x="95.7" y="549" width="6.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="98.68" y="559.5" ></text>
</g>
<g >
<title>build_simple_rel (188,004,027,073 samples, 1.98%)</title><rect x="926.5" y="437" width="23.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="929.53" y="447.5" >b..</text>
</g>
<g >
<title>yy_get_previous_state (1,113,411,716 samples, 0.01%)</title><rect x="1113.8" y="709" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1116.80" y="719.5" ></text>
</g>
<g >
<title>new_list (2,165,448,846 samples, 0.02%)</title><rect x="931.2" y="373" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="934.21" y="383.5" ></text>
</g>
<g >
<title>MemoryContextTraverseNext (2,093,795,956 samples, 0.02%)</title><rect x="80.0" y="757" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="82.99" y="767.5" ></text>
</g>
<g >
<title>bms_get_singleton_member (1,501,073,524 samples, 0.02%)</title><rect x="981.2" y="421" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="984.17" y="431.5" ></text>
</g>
<g >
<title>get_cheapest_fractional_path (907,861,694 samples, 0.01%)</title><rect x="1140.7" y="757" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1143.68" y="767.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,631,444,954 samples, 0.02%)</title><rect x="353.5" y="341" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="356.54" y="351.5" ></text>
</g>
<g >
<title>ExecUpdatePrologue (66,139,083,506 samples, 0.70%)</title><rect x="395.9" y="421" width="8.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="398.91" y="431.5" ></text>
</g>
<g >
<title>[[vdso]] (1,532,396,249 samples, 0.02%)</title><rect x="1078.8" y="565" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1081.82" y="575.5" ></text>
</g>
<g >
<title>__scm_recv_common.isra.0 (1,085,535,715 samples, 0.01%)</title><rect x="185.5" y="357" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="188.47" y="367.5" ></text>
</g>
<g >
<title>ReleaseCatCache (836,646,210 samples, 0.01%)</title><rect x="415.2" y="405" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="418.24" y="415.5" ></text>
</g>
<g >
<title>TupleDescInitEntry (24,441,111,701 samples, 0.26%)</title><rect x="442.1" y="373" width="3.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="445.14" y="383.5" ></text>
</g>
<g >
<title>PostgresMain (17,479,689,687 samples, 0.18%)</title><rect x="126.3" y="629" width="2.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="129.31" y="639.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node_noprof (14,464,905,975 samples, 0.15%)</title><rect x="198.6" y="357" width="1.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="201.57" y="367.5" ></text>
</g>
<g >
<title>newNode (3,621,333,076 samples, 0.04%)</title><rect x="347.3" y="341" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="350.34" y="351.5" ></text>
</g>
<g >
<title>set_plain_rel_pathlist (978,946,569 samples, 0.01%)</title><rect x="1182.2" y="757" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1185.16" y="767.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,520,253,429 samples, 0.02%)</title><rect x="109.2" y="741" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="112.20" y="751.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,529,172,839 samples, 0.02%)</title><rect x="1041.0" y="309" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1043.97" y="319.5" ></text>
</g>
<g >
<title>parse_analyze_fixedparams (449,366,471,343 samples, 4.73%)</title><rect x="802.7" y="565" width="55.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="805.67" y="575.5" >parse..</text>
</g>
<g >
<title>AllocSetAlloc (1,155,327,914 samples, 0.01%)</title><rect x="441.9" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="444.94" y="351.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,908,953,901 samples, 0.07%)</title><rect x="844.9" y="421" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="847.89" y="431.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (1,302,566,734 samples, 0.01%)</title><rect x="448.9" y="373" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="451.88" y="383.5" ></text>
</g>
<g >
<title>futex_do_wait (43,302,055,181 samples, 0.46%)</title><rect x="483.5" y="325" width="5.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="486.54" y="335.5" ></text>
</g>
<g >
<title>PageGetItem (2,287,170,361 samples, 0.02%)</title><rect x="321.0" y="213" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="323.96" y="223.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (2,823,016,946 samples, 0.03%)</title><rect x="852.7" y="325" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="855.74" y="335.5" ></text>
</g>
<g >
<title>palloc (1,856,417,268 samples, 0.02%)</title><rect x="514.7" y="485" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="517.74" y="495.5" ></text>
</g>
<g >
<title>bms_int_members (1,817,860,378 samples, 0.02%)</title><rect x="359.8" y="373" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="362.84" y="383.5" ></text>
</g>
<g >
<title>palloc0 (2,605,950,152 samples, 0.03%)</title><rect x="815.4" y="421" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="818.36" y="431.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (2,204,309,515 samples, 0.02%)</title><rect x="490.4" y="373" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="493.36" y="383.5" ></text>
</g>
<g >
<title>LWLockAcquire (15,072,114,706 samples, 0.16%)</title><rect x="365.5" y="309" width="1.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="368.49" y="319.5" ></text>
</g>
<g >
<title>AllocSetCheck (4,751,655,520 samples, 0.05%)</title><rect x="252.6" y="421" width="0.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="255.60" y="431.5" ></text>
</g>
<g >
<title>LockAcquireExtended (20,491,319,632 samples, 0.22%)</title><rect x="940.5" y="357" width="2.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="943.48" y="367.5" ></text>
</g>
<g >
<title>lappend (960,047,100 samples, 0.01%)</title><rect x="433.2" y="357" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="436.19" y="367.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,829,573,722 samples, 0.04%)</title><rect x="216.8" y="549" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="219.77" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,560,841,102 samples, 0.03%)</title><rect x="389.3" y="197" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="392.33" y="207.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,323,698,452 samples, 0.01%)</title><rect x="812.3" y="437" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="815.27" y="447.5" ></text>
</g>
<g >
<title>palloc (1,165,647,944 samples, 0.01%)</title><rect x="872.3" y="469" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="875.32" y="479.5" ></text>
</g>
<g >
<title>ExecProcNode (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="485" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1161.90" y="495.5" ></text>
</g>
<g >
<title>nocachegetattr (5,729,707,640 samples, 0.06%)</title><rect x="829.5" y="325" width="0.7" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="832.46" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,140,055,657 samples, 0.01%)</title><rect x="861.8" y="485" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="864.79" y="495.5" ></text>
</g>
<g >
<title>exprType (1,188,224,543 samples, 0.01%)</title><rect x="960.7" y="389" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="963.67" y="399.5" ></text>
</g>
<g >
<title>make_op (37,523,422,204 samples, 0.39%)</title><rect x="836.3" y="389" width="4.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="839.33" y="399.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,322,313,126 samples, 0.01%)</title><rect x="998.8" y="309" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1001.75" y="319.5" ></text>
</g>
<g >
<title>LockHeldByMe (19,216,721,740 samples, 0.20%)</title><rect x="866.9" y="469" width="2.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="869.91" y="479.5" ></text>
</g>
<g >
<title>IsAbortedTransactionBlockState (1,186,336,041 samples, 0.01%)</title><rect x="133.5" y="597" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="136.53" y="607.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (2,002,016,725 samples, 0.02%)</title><rect x="1158.9" y="309" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1161.90" y="319.5" ></text>
</g>
<g >
<title>check_mergejoinable (44,874,820,285 samples, 0.47%)</title><rect x="958.6" y="405" width="5.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="961.61" y="415.5" ></text>
</g>
<g >
<title>[[vdso]] (1,460,790,467 samples, 0.02%)</title><rect x="476.8" y="469" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="479.80" y="479.5" ></text>
</g>
<g >
<title>LWLockQueueSelf (1,292,174,060 samples, 0.01%)</title><rect x="366.4" y="293" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="369.35" y="303.5" ></text>
</g>
<g >
<title>futex_wait (1,523,372,546 samples, 0.02%)</title><rect x="1148.5" y="501" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1151.51" y="511.5" ></text>
</g>
<g >
<title>generic_perform_write (34,975,505,395 samples, 0.37%)</title><rect x="502.2" y="373" width="4.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="505.20" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,175,253,227 samples, 0.01%)</title><rect x="278.1" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="281.12" y="383.5" ></text>
</g>
<g >
<title>create_scan_plan (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="485" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="89.91" y="495.5" ></text>
</g>
<g >
<title>LWLockRelease (1,609,635,361 samples, 0.02%)</title><rect x="822.8" y="373" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="825.82" y="383.5" ></text>
</g>
<g >
<title>table_close (2,329,665,994 samples, 0.02%)</title><rect x="803.5" y="533" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="806.46" y="543.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,766,256,405 samples, 0.02%)</title><rect x="496.9" y="405" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="499.85" y="415.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (862,854,465 samples, 0.01%)</title><rect x="443.7" y="309" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="446.68" y="319.5" ></text>
</g>
<g >
<title>list_copy (2,240,455,877 samples, 0.02%)</title><rect x="899.5" y="469" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="902.54" y="479.5" ></text>
</g>
<g >
<title>heap_page_prune_and_freeze (9,684,059,828 samples, 0.10%)</title><rect x="1148.9" y="741" width="1.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1151.95" y="751.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (7,400,625,927 samples, 0.08%)</title><rect x="274.4" y="405" width="0.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="277.43" y="415.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (2,541,077,163 samples, 0.03%)</title><rect x="1185.1" y="709" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1188.13" y="719.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,346,480,802 samples, 0.01%)</title><rect x="358.7" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="361.68" y="335.5" ></text>
</g>
<g >
<title>namehashfast (5,405,659,739 samples, 0.06%)</title><rect x="828.2" y="293" width="0.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="831.22" y="303.5" ></text>
</g>
<g >
<title>_int_free (972,306,543 samples, 0.01%)</title><rect x="150.3" y="533" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="153.31" y="543.5" ></text>
</g>
<g >
<title>LWLockAcquire (5,159,645,686 samples, 0.05%)</title><rect x="223.0" y="549" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="225.97" y="559.5" ></text>
</g>
<g >
<title>fdget (2,062,666,655 samples, 0.02%)</title><rect x="174.9" y="405" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="177.87" y="415.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,108,443,145 samples, 0.02%)</title><rect x="757.3" y="485" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="760.34" y="495.5" ></text>
</g>
<g >
<title>futex_wake (2,306,665,663 samples, 0.02%)</title><rect x="375.9" y="197" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="378.87" y="207.5" ></text>
</g>
<g >
<title>verify_compact_attribute (1,603,467,045 samples, 0.02%)</title><rect x="357.7" y="357" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="360.75" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (27,750,898,730 samples, 0.29%)</title><rect x="491.6" y="389" width="3.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="494.62" y="399.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,226,476,090 samples, 0.04%)</title><rect x="960.1" y="341" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="963.13" y="351.5" ></text>
</g>
<g >
<title>current_time (1,671,497,623 samples, 0.02%)</title><rect x="502.0" y="341" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="504.98" y="351.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (937,278,864 samples, 0.01%)</title><rect x="488.3" y="197" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="491.28" y="207.5" ></text>
</g>
<g >
<title>wipe_mem (3,609,936,595 samples, 0.04%)</title><rect x="135.5" y="485" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="138.53" y="495.5" ></text>
</g>
<g >
<title>bms_is_valid_set (871,678,597 samples, 0.01%)</title><rect x="951.5" y="421" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="954.49" y="431.5" ></text>
</g>
<g >
<title>markRTEForSelectPriv (1,867,256,937 samples, 0.02%)</title><rect x="842.6" y="309" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="845.59" y="319.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (5,140,514,068 samples, 0.05%)</title><rect x="186.2" y="325" width="0.6" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="189.19" y="335.5" ></text>
</g>
<g >
<title>addNSItemToQuery (7,055,865,646 samples, 0.07%)</title><rect x="813.2" y="469" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="816.21" y="479.5" ></text>
</g>
<g >
<title>ReleaseBuffer (2,679,458,734 samples, 0.03%)</title><rect x="284.3" y="277" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="287.34" y="287.5" ></text>
</g>
<g >
<title>makeString (4,538,387,098 samples, 0.05%)</title><rect x="1115.5" y="725" width="0.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="1118.54" y="735.5" ></text>
</g>
<g >
<title>BackendMain (17,479,689,687 samples, 0.18%)</title><rect x="126.3" y="645" width="2.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="129.31" y="655.5" ></text>
</g>
<g >
<title>palloc (1,679,105,978 samples, 0.02%)</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.56" y="431.5" ></text>
</g>
<g >
<title>CreateExprContextInternal (9,508,331,263 samples, 0.10%)</title><rect x="346.6" y="357" width="1.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="349.61" y="367.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,514,618,311 samples, 0.03%)</title><rect x="438.6" y="325" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="441.60" y="335.5" ></text>
</g>
<g >
<title>XidInMVCCSnapshot (1,219,947,884 samples, 0.01%)</title><rect x="310.1" y="213" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="313.07" y="223.5" ></text>
</g>
<g >
<title>transformAExprOp (835,705,736 samples, 0.01%)</title><rect x="1187.1" y="757" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1190.09" y="767.5" ></text>
</g>
<g >
<title>palloc0 (2,786,828,587 samples, 0.03%)</title><rect x="910.2" y="437" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="913.22" y="447.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,344,510,520 samples, 0.04%)</title><rect x="1034.0" y="117" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1036.96" y="127.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,131,629,320 samples, 0.01%)</title><rect x="1082.3" y="565" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="1085.27" y="575.5" ></text>
</g>
<g >
<title>PortalRun (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="645" width="2.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="87.32" y="655.5" ></text>
</g>
<g >
<title>hash_search (7,955,164,943 samples, 0.08%)</title><rect x="452.1" y="341" width="1.0" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="455.11" y="351.5" ></text>
</g>
<g >
<title>btcostestimate (137,928,825,857 samples, 1.45%)</title><rect x="997.9" y="325" width="17.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text  x="1000.92" y="335.5" ></text>
</g>
<g >
<title>list_delete_ptr (6,986,516,276 samples, 0.07%)</title><rect x="253.7" y="469" width="0.9" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="256.70" y="479.5" ></text>
</g>
<g >
<title>palloc (1,448,418,902 samples, 0.02%)</title><rect x="817.3" y="405" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="820.25" y="415.5" ></text>
</g>
<g >
<title>LockRelease (8,871,709,935 samples, 0.09%)</title><rect x="238.7" y="421" width="1.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="241.69" y="431.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (4,268,901,613 samples, 0.04%)</title><rect x="274.6" y="389" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="277.55" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (148,553,898,770 samples, 1.56%)</title><rect x="156.7" y="437" width="18.4" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="159.67" y="447.5" ></text>
</g>
<g >
<title>RelationGetIndexPredicate (1,162,339,197 samples, 0.01%)</title><rect x="89.8" y="757" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="92.82" y="767.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,021,420,011 samples, 0.04%)</title><rect x="932.4" y="293" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="935.45" y="303.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitializeWithInfo (1,518,594,471 samples, 0.02%)</title><rect x="316.0" y="261" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="319.04" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (846,735,987 samples, 0.01%)</title><rect x="963.1" y="325" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="966.13" y="335.5" ></text>
</g>
<g >
<title>LockTagHashCode (3,017,910,220 samples, 0.03%)</title><rect x="941.9" y="341" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="944.85" y="351.5" ></text>
</g>
<g >
<title>ExecMaterializeSlot (25,099,600,868 samples, 0.26%)</title><rect x="396.0" y="405" width="3.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text  x="399.04" y="415.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="309" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="128.92" y="319.5" ></text>
</g>
<g >
<title>ExecutorRun (15,531,807,651 samples, 0.16%)</title><rect x="124.0" y="565" width="1.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="126.99" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (141,024,159,717 samples, 1.48%)</title><rect x="192.1" y="469" width="17.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="195.10" y="479.5" ></text>
</g>
<g >
<title>__slab_free (1,817,111,718 samples, 0.02%)</title><rect x="182.8" y="325" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="185.75" y="335.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (2,358,161,980 samples, 0.02%)</title><rect x="1078.8" y="581" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1081.80" y="591.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,962,323,620 samples, 0.02%)</title><rect x="442.9" y="325" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="445.93" y="335.5" ></text>
</g>
<g >
<title>issue_xlog_fsync (13,731,213,425 samples, 0.14%)</title><rect x="507.1" y="469" width="1.7" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="510.10" y="479.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,149,125,232 samples, 0.01%)</title><rect x="309.3" y="117" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="312.34" y="127.5" ></text>
</g>
<g >
<title>preprocess_qual_conditions (28,355,260,223 samples, 0.30%)</title><rect x="1053.8" y="501" width="3.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1056.77" y="511.5" ></text>
</g>
<g >
<title>LockAcquire (49,006,972,544 samples, 0.52%)</title><rect x="368.7" y="309" width="6.0" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="371.65" y="319.5" ></text>
</g>
<g >
<title>get_hash_value (3,533,914,337 samples, 0.04%)</title><rect x="96.0" y="165" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="98.99" y="175.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (1,344,893,110 samples, 0.01%)</title><rect x="470.0" y="517" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="472.97" y="527.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,028,627,101 samples, 0.01%)</title><rect x="848.3" y="357" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="851.32" y="367.5" ></text>
</g>
<g >
<title>do_futex (928,684,905 samples, 0.01%)</title><rect x="370.2" y="149" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="373.23" y="159.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (35,738,350,268 samples, 0.38%)</title><rect x="95.7" y="229" width="4.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="98.68" y="239.5" ></text>
</g>
<g >
<title>pg_class_aclcheck_ext (7,225,603,338 samples, 0.08%)</title><rect x="1033.5" y="181" width="0.9" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1036.50" y="191.5" ></text>
</g>
<g >
<title>all (9,499,813,485,584 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>GetPrivateRefCount (899,002,840 samples, 0.01%)</title><rect x="393.8" y="309" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="396.84" y="319.5" ></text>
</g>
<g >
<title>get_attstatsslot (61,513,794,930 samples, 0.65%)</title><rect x="1000.4" y="293" width="7.7" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="1003.41" y="303.5" ></text>
</g>
<g >
<title>pull_var_clause_walker (14,702,325,729 samples, 0.15%)</title><rect x="954.2" y="437" width="1.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="957.22" y="447.5" ></text>
</g>
<g >
<title>_mdnblocks (17,122,087,324 samples, 0.18%)</title><rect x="936.1" y="261" width="2.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="939.13" y="271.5" ></text>
</g>
<g >
<title>ExecInitIndexScan (232,433,500,729 samples, 2.45%)</title><rect x="421.6" y="437" width="28.9" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="424.61" y="447.5" >Ex..</text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (975,868,388 samples, 0.01%)</title><rect x="430.7" y="293" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="433.73" y="303.5" ></text>
</g>
<g >
<title>bms_copy (2,152,198,280 samples, 0.02%)</title><rect x="965.4" y="357" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="968.38" y="367.5" ></text>
</g>
<g >
<title>AllocSetCheck (4,664,597,562 samples, 0.05%)</title><rect x="134.2" y="517" width="0.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="137.15" y="527.5" ></text>
</g>
<g >
<title>RelationGetIndexAttrBitmap (11,299,535,910 samples, 0.12%)</title><rect x="356.3" y="373" width="1.4" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text  x="359.29" y="383.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (810,686,037 samples, 0.01%)</title><rect x="406.6" y="357" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="409.63" y="367.5" ></text>
</g>
<g >
<title>LockAcquireExtended (7,544,346,831 samples, 0.08%)</title><rect x="447.9" y="373" width="1.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="450.94" y="383.5" ></text>
</g>
<g >
<title>GetPortalByName (7,885,405,325 samples, 0.08%)</title><rect x="214.0" y="565" width="0.9" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="216.96" y="575.5" ></text>
</g>
<g >
<title>fdget (4,598,288,728 samples, 0.05%)</title><rect x="192.9" y="421" width="0.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="195.94" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (852,559,956 samples, 0.01%)</title><rect x="955.8" y="261" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="958.82" y="271.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (2,225,632,892 samples, 0.02%)</title><rect x="370.2" y="261" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="373.17" y="271.5" ></text>
</g>
<g >
<title>get_relids_in_jointree (2,695,041,778 samples, 0.03%)</title><rect x="1069.5" y="469" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1072.45" y="479.5" ></text>
</g>
<g >
<title>HeapTupleNoNulls (1,812,256,018 samples, 0.02%)</title><rect x="52.4" y="757" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="55.41" y="767.5" ></text>
</g>
<g >
<title>__strcmp_avx2 (1,120,368,563 samples, 0.01%)</title><rect x="858.1" y="341" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="861.08" y="351.5" ></text>
</g>
<g >
<title>hash_search (18,065,048,633 samples, 0.19%)</title><rect x="850.9" y="373" width="2.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="853.86" y="383.5" ></text>
</g>
<g >
<title>palloc (1,071,561,686 samples, 0.01%)</title><rect x="119.6" y="741" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="122.57" y="751.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (2,345,129,759 samples, 0.02%)</title><rect x="407.3" y="309" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="410.25" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,096,584,991 samples, 0.01%)</title><rect x="1014.4" y="261" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1017.44" y="271.5" ></text>
</g>
<g >
<title>expr_setup_walker (5,530,496,597 samples, 0.06%)</title><rect x="438.2" y="389" width="0.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="441.23" y="399.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (13,223,466,967 samples, 0.14%)</title><rect x="1052.0" y="469" width="1.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1054.95" y="479.5" ></text>
</g>
<g >
<title>__errno_location (2,608,005,738 samples, 0.03%)</title><rect x="154.0" y="501" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="157.04" y="511.5" ></text>
</g>
<g >
<title>palloc (894,248,361 samples, 0.01%)</title><rect x="899.7" y="437" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="902.70" y="447.5" ></text>
</g>
<g >
<title>RecordTransactionCommit (315,764,807,008 samples, 3.32%)</title><rect x="475.9" y="517" width="39.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="478.94" y="527.5" >Rec..</text>
</g>
<g >
<title>list_last_cell (1,406,396,302 samples, 0.01%)</title><rect x="1156.0" y="757" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="1158.97" y="767.5" ></text>
</g>
<g >
<title>_bt_first (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="357" width="6.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="98.68" y="367.5" ></text>
</g>
<g >
<title>buildRelationAliases (1,090,564,487 samples, 0.01%)</title><rect x="1124.2" y="757" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1127.16" y="767.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (8,887,566,130 samples, 0.09%)</title><rect x="339.5" y="229" width="1.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="342.54" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,250,402,797 samples, 0.01%)</title><rect x="957.2" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="960.24" y="415.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (18,792,318,849 samples, 0.20%)</title><rect x="269.6" y="405" width="2.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="272.60" y="415.5" ></text>
</g>
<g >
<title>bms_difference (2,733,857,238 samples, 0.03%)</title><rect x="965.3" y="373" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="968.33" y="383.5" ></text>
</g>
<g >
<title>LWLockRelease (35,529,659,288 samples, 0.37%)</title><rect x="491.0" y="485" width="4.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="494.00" y="495.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (4,224,794,037 samples, 0.04%)</title><rect x="86.4" y="309" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="89.39" y="319.5" ></text>
</g>
<g >
<title>tas (3,133,316,133 samples, 0.03%)</title><rect x="498.1" y="437" width="0.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="501.14" y="447.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,150,244,547 samples, 0.01%)</title><rect x="1173.6" y="661" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1176.62" y="671.5" ></text>
</g>
<g >
<title>fill_val (3,184,830,669 samples, 0.03%)</title><rect x="398.5" y="341" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="401.46" y="351.5" ></text>
</g>
<g >
<title>ExecInterpExpr (23,989,096,201 samples, 0.25%)</title><rect x="288.8" y="293" width="3.0" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="291.83" y="303.5" ></text>
</g>
<g >
<title>PageGetItemId (3,396,705,384 samples, 0.04%)</title><rect x="81.8" y="757" width="0.5" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="84.84" y="767.5" ></text>
</g>
<g >
<title>UnlockBufHdr (1,326,513,112 samples, 0.01%)</title><rect x="326.2" y="213" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="329.15" y="223.5" ></text>
</g>
<g >
<title>list_nth (1,377,623,644 samples, 0.01%)</title><rect x="860.3" y="517" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="863.29" y="527.5" ></text>
</g>
<g >
<title>VirtualXactLockTableInsert (5,860,117,599 samples, 0.06%)</title><rect x="1076.7" y="533" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1079.74" y="543.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (850,143,726 samples, 0.01%)</title><rect x="1173.0" y="757" width="0.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1175.99" y="767.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,043,330,139 samples, 0.01%)</title><rect x="948.7" y="341" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="951.70" y="351.5" ></text>
</g>
<g >
<title>relation_close (1,373,242,578 samples, 0.01%)</title><rect x="946.9" y="389" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="949.93" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,183,898,347 samples, 0.01%)</title><rect x="459.1" y="437" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="462.12" y="447.5" ></text>
</g>
<g >
<title>palloc (1,121,877,899 samples, 0.01%)</title><rect x="984.4" y="373" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="987.40" y="383.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (928,126,987 samples, 0.01%)</title><rect x="396.8" y="357" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="399.77" y="367.5" ></text>
</g>
<g >
<title>palloc0 (1,983,553,596 samples, 0.02%)</title><rect x="812.2" y="453" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="815.20" y="463.5" ></text>
</g>
<g >
<title>gup_fast_pgd_range (1,045,770,493 samples, 0.01%)</title><rect x="368.0" y="101" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="371.00" y="111.5" ></text>
</g>
<g >
<title>ServerLoop (83,672,568,701 samples, 0.88%)</title><rect x="95.7" y="757" width="10.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="98.68" y="767.5" ></text>
</g>
<g >
<title>update_curr (15,436,267,163 samples, 0.16%)</title><rect x="170.4" y="277" width="1.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="173.40" y="287.5" ></text>
</g>
<g >
<title>transformTopLevelStmt (433,682,255,277 samples, 4.57%)</title><rect x="804.6" y="549" width="53.9" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="807.62" y="559.5" >trans..</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (3,164,203,444 samples, 0.03%)</title><rect x="795.7" y="485" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="798.73" y="495.5" ></text>
</g>
<g >
<title>LWLockRelease (887,955,707 samples, 0.01%)</title><rect x="301.9" y="133" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="304.92" y="143.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (15,028,927,322 samples, 0.16%)</title><rect x="916.4" y="453" width="1.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="919.40" y="463.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,995,818,510 samples, 0.04%)</title><rect x="959.6" y="293" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="962.60" y="303.5" ></text>
</g>
<g >
<title>get_relname_relid (38,808,284,830 samples, 0.41%)</title><rect x="825.4" y="389" width="4.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="828.40" y="399.5" ></text>
</g>
<g >
<title>_bt_mark_scankey_required (1,809,479,512 samples, 0.02%)</title><rect x="324.3" y="245" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="327.32" y="255.5" ></text>
</g>
<g >
<title>get_tablespace (8,272,176,246 samples, 0.09%)</title><rect x="1022.4" y="357" width="1.0" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1025.41" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,632,955,722 samples, 0.03%)</title><rect x="1017.4" y="309" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1020.41" y="319.5" ></text>
</g>
<g >
<title>palloc (4,245,287,253 samples, 0.04%)</title><rect x="1112.6" y="677" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1115.59" y="687.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,676,045,534 samples, 0.05%)</title><rect x="811.4" y="309" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="814.39" y="319.5" ></text>
</g>
<g >
<title>newNode (4,746,523,660 samples, 0.05%)</title><rect x="969.6" y="357" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="972.61" y="367.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (5,797,923,851 samples, 0.06%)</title><rect x="429.3" y="341" width="0.7" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="432.33" y="351.5" ></text>
</g>
<g >
<title>get_restriction_variable (46,310,726,580 samples, 0.49%)</title><rect x="1029.9" y="261" width="5.8" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="1032.94" y="271.5" ></text>
</g>
<g >
<title>pull_varnos (1,986,833,910 samples, 0.02%)</title><rect x="1035.2" y="229" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="1038.25" y="239.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (3,042,244,167 samples, 0.03%)</title><rect x="471.2" y="501" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="474.19" y="511.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (2,691,113,864 samples, 0.03%)</title><rect x="485.1" y="261" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="488.11" y="271.5" ></text>
</g>
<g >
<title>parserOpenTable (811,643,400 samples, 0.01%)</title><rect x="1166.9" y="757" width="0.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="1169.94" y="767.5" ></text>
</g>
<g >
<title>palloc (1,582,309,571 samples, 0.02%)</title><rect x="457.7" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="460.70" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,064,515,365 samples, 0.01%)</title><rect x="1069.6" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1072.65" y="431.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (902,080,660 samples, 0.01%)</title><rect x="302.9" y="133" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="305.89" y="143.5" ></text>
</g>
<g >
<title>new_list (3,882,521,532 samples, 0.04%)</title><rect x="1118.3" y="709" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1121.31" y="719.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,278,555,757 samples, 0.01%)</title><rect x="890.8" y="277" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="893.75" y="287.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (4,885,545,640 samples, 0.05%)</title><rect x="1052.7" y="421" width="0.6" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1055.71" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,231,646,390 samples, 0.01%)</title><rect x="849.9" y="373" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="852.86" y="383.5" ></text>
</g>
<g >
<title>ExecModifyTable (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="501" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1161.90" y="511.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="565" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="89.91" y="575.5" ></text>
</g>
<g >
<title>newNode (2,658,144,043 samples, 0.03%)</title><rect x="842.2" y="309" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="845.19" y="319.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (7,790,469,852 samples, 0.08%)</title><rect x="431.0" y="309" width="0.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="433.95" y="319.5" ></text>
</g>
<g >
<title>hash_bytes (2,580,327,036 samples, 0.03%)</title><rect x="370.6" y="229" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="373.57" y="239.5" ></text>
</g>
<g >
<title>XLogBeginInsert (1,831,686,203 samples, 0.02%)</title><rect x="384.9" y="341" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="387.87" y="351.5" ></text>
</g>
<g >
<title>fdget (2,723,440,563 samples, 0.03%)</title><rect x="179.8" y="421" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="182.83" y="431.5" ></text>
</g>
<g >
<title>heapam_index_fetch_begin (2,356,991,461 samples, 0.02%)</title><rect x="295.7" y="293" width="0.3" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="298.70" y="303.5" ></text>
</g>
<g >
<title>GETSTRUCT (2,443,598,647 samples, 0.03%)</title><rect x="48.4" y="757" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="51.37" y="767.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (62,411,451,018 samples, 0.66%)</title><rect x="200.7" y="389" width="7.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="203.66" y="399.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5,279,897,731 samples, 0.06%)</title><rect x="757.9" y="469" width="0.7" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="760.95" y="479.5" ></text>
</g>
<g >
<title>pfree (2,095,818,668 samples, 0.02%)</title><rect x="987.9" y="373" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="990.94" y="383.5" ></text>
</g>
<g >
<title>new_list (1,758,865,787 samples, 0.02%)</title><rect x="971.2" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="974.17" y="383.5" ></text>
</g>
<g >
<title>ReleaseBuffer (2,913,844,670 samples, 0.03%)</title><rect x="250.4" y="437" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="253.45" y="447.5" ></text>
</g>
<g >
<title>LockTagHashCode (3,240,231,810 samples, 0.03%)</title><rect x="523.1" y="453" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="526.14" y="463.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (4,224,794,037 samples, 0.04%)</title><rect x="86.4" y="293" width="0.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="89.39" y="303.5" ></text>
</g>
<g >
<title>palloc (1,160,912,755 samples, 0.01%)</title><rect x="1019.1" y="309" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1022.06" y="319.5" ></text>
</g>
<g >
<title>IncrTupleDescRefCount (2,437,231,840 samples, 0.03%)</title><rect x="446.4" y="373" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="449.41" y="383.5" ></text>
</g>
<g >
<title>preprocess_targetlist (38,489,371,642 samples, 0.41%)</title><rect x="920.4" y="485" width="4.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="923.35" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (997,464,857 samples, 0.01%)</title><rect x="815.2" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="818.17" y="399.5" ></text>
</g>
<g >
<title>BufferIsLockedByMeInMode (1,692,154,102 samples, 0.02%)</title><rect x="393.4" y="309" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="396.35" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,139,686,251 samples, 0.01%)</title><rect x="975.6" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="978.63" y="383.5" ></text>
</g>
<g >
<title>ProcessQuery (55,519,487,286 samples, 0.58%)</title><rect x="95.7" y="629" width="6.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="98.68" y="639.5" ></text>
</g>
<g >
<title>relation_excluded_by_constraints (2,171,561,684 samples, 0.02%)</title><rect x="1026.8" y="421" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1029.76" y="431.5" ></text>
</g>
<g >
<title>palloc (1,212,886,658 samples, 0.01%)</title><rect x="874.4" y="533" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="877.38" y="543.5" ></text>
</g>
<g >
<title>fetch_att (874,816,361 samples, 0.01%)</title><rect x="336.2" y="197" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="339.15" y="207.5" ></text>
</g>
<g >
<title>palloc0 (2,727,165,008 samples, 0.03%)</title><rect x="423.1" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="426.09" y="367.5" ></text>
</g>
<g >
<title>StartReadBuffer (21,917,682,525 samples, 0.23%)</title><rect x="407.1" y="341" width="2.8" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="410.14" y="351.5" ></text>
</g>
<g >
<title>btint4cmp (3,472,786,044 samples, 0.04%)</title><rect x="318.8" y="213" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="321.79" y="223.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (64,597,736,793 samples, 0.68%)</title><rect x="303.0" y="261" width="8.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="306.04" y="271.5" ></text>
</g>
<g >
<title>down_write (814,601,374 samples, 0.01%)</title><rect x="501.6" y="373" width="0.1" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="504.55" y="383.5" ></text>
</g>
<g >
<title>sock_wfree (8,196,218,826 samples, 0.09%)</title><rect x="183.1" y="325" width="1.0" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="186.08" y="335.5" ></text>
</g>
<g >
<title>btcost_correlation (79,380,228,677 samples, 0.84%)</title><rect x="999.9" y="309" width="9.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1002.86" y="319.5" ></text>
</g>
<g >
<title>MemoryContextCheck (4,312,347,325 samples, 0.05%)</title><rect x="78.6" y="757" width="0.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="81.63" y="767.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,008,083,031 samples, 0.01%)</title><rect x="972.2" y="373" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="975.21" y="383.5" ></text>
</g>
<g >
<title>new_list (4,458,984,007 samples, 0.05%)</title><rect x="1017.2" y="341" width="0.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1020.24" y="351.5" ></text>
</g>
<g >
<title>EvalPlanQualEnd (943,255,014 samples, 0.01%)</title><rect x="240.5" y="453" width="0.1" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="243.46" y="463.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (1,200,227,702 samples, 0.01%)</title><rect x="828.9" y="309" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="831.90" y="319.5" ></text>
</g>
<g >
<title>palloc0 (1,678,323,907 samples, 0.02%)</title><rect x="975.3" y="405" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="978.26" y="415.5" ></text>
</g>
<g >
<title>CheckExprStillValid (23,265,093,794 samples, 0.24%)</title><rect x="285.9" y="293" width="2.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="288.86" y="303.5" ></text>
</g>
<g >
<title>relation_close (1,711,933,364 samples, 0.02%)</title><rect x="1066.0" y="469" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1069.03" y="479.5" ></text>
</g>
<g >
<title>palloc (1,009,733,911 samples, 0.01%)</title><rect x="971.5" y="357" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="974.47" y="367.5" ></text>
</g>
<g >
<title>GetSnapshotData (26,463,605,531 samples, 0.28%)</title><rect x="231.4" y="533" width="3.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="234.39" y="543.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (1,548,717,501 samples, 0.02%)</title><rect x="201.7" y="309" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="204.66" y="319.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,188,806,025 samples, 0.01%)</title><rect x="925.0" y="389" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="927.97" y="399.5" ></text>
</g>
<g >
<title>XLogRecPtrToBytePos (1,109,790,295 samples, 0.01%)</title><rect x="388.0" y="293" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="391.04" y="303.5" ></text>
</g>
<g >
<title>lcons (3,310,137,003 samples, 0.03%)</title><rect x="943.9" y="405" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="946.85" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (945,101,750 samples, 0.01%)</title><rect x="98.7" y="149" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="101.69" y="159.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,150,244,547 samples, 0.01%)</title><rect x="1173.6" y="613" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1176.62" y="623.5" ></text>
</g>
<g >
<title>_bt_lockbuf (2,931,804,980 samples, 0.03%)</title><rect x="337.8" y="213" width="0.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="340.81" y="223.5" ></text>
</g>
<g >
<title>ExecProcNode (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="533" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1161.90" y="543.5" ></text>
</g>
<g >
<title>tick_nohz_handler (2,470,464,007 samples, 0.03%)</title><rect x="795.8" y="437" width="0.3" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="798.77" y="447.5" ></text>
</g>
<g >
<title>intel_thermal_interrupt (897,509,062 samples, 0.01%)</title><rect x="757.6" y="469" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="760.62" y="479.5" ></text>
</g>
<g >
<title>planner (1,837,816,106 samples, 0.02%)</title><rect x="86.9" y="613" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="89.91" y="623.5" ></text>
</g>
<g >
<title>bms_del_member (2,550,043,439 samples, 0.03%)</title><rect x="994.2" y="357" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="997.22" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,494,511,907 samples, 0.02%)</title><rect x="819.9" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="822.85" y="431.5" ></text>
</g>
<g >
<title>GlobalVisTestFor (943,984,697 samples, 0.01%)</title><rect x="312.0" y="245" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="314.96" y="255.5" ></text>
</g>
<g >
<title>AtEOXact_Buffers (2,524,408,039 samples, 0.03%)</title><rect x="469.2" y="517" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="472.19" y="527.5" ></text>
</g>
<g >
<title>MemoryContextDelete (82,279,702,288 samples, 0.87%)</title><rect x="255.0" y="485" width="10.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="258.03" y="495.5" ></text>
</g>
<g >
<title>lappend (5,997,678,530 samples, 0.06%)</title><rect x="1017.1" y="357" width="0.7" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1020.06" y="367.5" ></text>
</g>
<g >
<title>list_free (2,333,142,510 samples, 0.02%)</title><rect x="403.4" y="389" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="406.41" y="399.5" ></text>
</g>
<g >
<title>gup_fast (3,744,977,719 samples, 0.04%)</title><rect x="489.6" y="277" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="492.60" y="287.5" ></text>
</g>
<g >
<title>RelationGetIndexAttOptions (2,580,931,345 samples, 0.03%)</title><rect x="930.4" y="405" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="933.40" y="415.5" ></text>
</g>
<g >
<title>SearchSysCache3 (879,107,096 samples, 0.01%)</title><rect x="95.1" y="757" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="98.14" y="767.5" ></text>
</g>
<g >
<title>fetch_upper_rel (1,239,476,320 samples, 0.01%)</title><rect x="894.2" y="517" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="897.24" y="527.5" ></text>
</g>
<g >
<title>ExecScanFetch (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="389" width="1.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="126.99" y="399.5" ></text>
</g>
<g >
<title>transformUpdateStmt (429,201,329,475 samples, 4.52%)</title><rect x="805.2" y="501" width="53.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="808.17" y="511.5" >trans..</text>
</g>
<g >
<title>pg_rotate_left32 (1,774,753,089 samples, 0.02%)</title><rect x="1144.3" y="741" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1147.31" y="751.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (4,053,923,908 samples, 0.04%)</title><rect x="276.5" y="373" width="0.5" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="279.45" y="383.5" ></text>
</g>
<g >
<title>tag_hash (2,814,909,912 samples, 0.03%)</title><rect x="100.2" y="149" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="103.17" y="159.5" ></text>
</g>
<g >
<title>RelationClose (899,389,415 samples, 0.01%)</title><rect x="237.6" y="437" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="240.65" y="447.5" ></text>
</g>
<g >
<title>ExecScanExtended (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="437" width="2.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="87.32" y="447.5" ></text>
</g>
<g >
<title>_bt_compare (52,604,939,067 samples, 0.55%)</title><rect x="316.8" y="245" width="6.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="319.77" y="255.5" ></text>
</g>
<g >
<title>replace_nestloop_params (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="421" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="89.91" y="431.5" ></text>
</g>
<g >
<title>bms_del_member (2,978,723,760 samples, 0.03%)</title><rect x="1068.6" y="485" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1071.59" y="495.5" ></text>
</g>
<g >
<title>pfree (2,471,686,914 samples, 0.03%)</title><rect x="515.3" y="501" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="518.26" y="511.5" ></text>
</g>
<g >
<title>LWLockWaitListLock (808,587,696 samples, 0.01%)</title><rect x="482.1" y="453" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="485.10" y="463.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (2,760,531,233 samples, 0.03%)</title><rect x="1030.2" y="229" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1033.17" y="239.5" ></text>
</g>
<g >
<title>assign_collations_walker (6,096,974,260 samples, 0.06%)</title><rect x="810.2" y="325" width="0.8" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="813.24" y="335.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (1,655,518,961 samples, 0.02%)</title><rect x="409.5" y="277" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="412.52" y="287.5" ></text>
</g>
<g >
<title>hash_initial_lookup (881,652,927 samples, 0.01%)</title><rect x="239.3" y="373" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="242.30" y="383.5" ></text>
</g>
<g >
<title>assign_special_exec_param (3,445,391,208 samples, 0.04%)</title><rect x="911.2" y="485" width="0.4" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="914.18" y="495.5" ></text>
</g>
<g >
<title>dlist_move_head (866,198,342 samples, 0.01%)</title><rect x="1133.2" y="757" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1136.23" y="767.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (9,498,815,836 samples, 0.10%)</title><rect x="11.6" y="757" width="1.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="14.63" y="767.5" ></text>
</g>
<g >
<title>ExecTypeFromTL (3,568,378,946 samples, 0.04%)</title><rect x="456.4" y="437" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="459.44" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,394,779,831 samples, 0.01%)</title><rect x="928.0" y="373" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="930.95" y="383.5" ></text>
</g>
<g >
<title>ExecInitNode (342,799,807,292 samples, 3.61%)</title><rect x="416.8" y="485" width="42.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="419.83" y="495.5" >Exec..</text>
</g>
<g >
<title>get_hash_value (3,800,301,036 samples, 0.04%)</title><rect x="407.8" y="261" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="410.75" y="271.5" ></text>
</g>
<g >
<title>PageGetItemId (2,452,993,619 samples, 0.03%)</title><rect x="116.1" y="741" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="119.13" y="751.5" ></text>
</g>
<g >
<title>newNode (5,065,359,064 samples, 0.05%)</title><rect x="400.5" y="357" width="0.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="403.55" y="367.5" ></text>
</g>
<g >
<title>BufferIsValid (9,769,845,352 samples, 0.10%)</title><rect x="36.1" y="757" width="1.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="39.11" y="767.5" ></text>
</g>
<g >
<title>pfree (1,379,095,530 samples, 0.01%)</title><rect x="879.2" y="469" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="882.17" y="479.5" ></text>
</g>
<g >
<title>BufferIsValid (1,400,424,238 samples, 0.01%)</title><rect x="113.8" y="741" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="116.80" y="751.5" ></text>
</g>
<g >
<title>index_close (11,066,765,995 samples, 0.12%)</title><rect x="238.4" y="453" width="1.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="241.42" y="463.5" ></text>
</g>
<g >
<title>GetXLogBuffer (3,822,093,160 samples, 0.04%)</title><rect x="386.9" y="293" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="389.95" y="303.5" ></text>
</g>
<g >
<title>_bt_getrootheight (1,156,099,782 samples, 0.01%)</title><rect x="130.3" y="757" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="133.27" y="767.5" ></text>
</g>
<g >
<title>palloc0 (2,155,404,518 samples, 0.02%)</title><rect x="889.1" y="293" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="892.06" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (58,932,292,539 samples, 0.62%)</title><rect x="499.6" y="453" width="7.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="502.65" y="463.5" ></text>
</g>
<g >
<title>hash_bytes (3,921,248,835 samples, 0.04%)</title><rect x="947.6" y="293" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="950.57" y="303.5" ></text>
</g>
<g >
<title>get_futex_key (1,894,397,668 samples, 0.02%)</title><rect x="366.9" y="133" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="369.93" y="143.5" ></text>
</g>
<g >
<title>get_opmethod_canorder (875,634,043 samples, 0.01%)</title><rect x="962.7" y="373" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="965.74" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,291,805,830 samples, 0.01%)</title><rect x="389.5" y="53" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="392.45" y="63.5" ></text>
</g>
<g >
<title>ExecutorFinish (4,449,432,917 samples, 0.05%)</title><rect x="265.8" y="533" width="0.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="268.76" y="543.5" ></text>
</g>
<g >
<title>set_opfuncid (953,687,427 samples, 0.01%)</title><rect x="1182.0" y="757" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1185.03" y="767.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,233,442,853 samples, 0.01%)</title><rect x="1120.3" y="693" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1123.35" y="703.5" ></text>
</g>
<g >
<title>SearchSysCacheList (1,257,797,087 samples, 0.01%)</title><rect x="95.4" y="757" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="98.37" y="767.5" ></text>
</g>
<g >
<title>uint32_hash (1,372,303,028 samples, 0.01%)</title><rect x="1015.8" y="277" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1018.85" y="287.5" ></text>
</g>
<g >
<title>XLogRegisterData (1,280,229,877 samples, 0.01%)</title><rect x="394.0" y="341" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="396.97" y="351.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,177,648,321 samples, 0.02%)</title><rect x="1144.9" y="741" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1147.95" y="751.5" ></text>
</g>
<g >
<title>get_hash_entry (855,250,005 samples, 0.01%)</title><rect x="942.6" y="309" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="945.61" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,298,517,155 samples, 0.02%)</title><rect x="1119.5" y="693" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1122.53" y="703.5" ></text>
</g>
<g >
<title>AllocSetFree (1,276,455,129 samples, 0.01%)</title><rect x="461.1" y="501" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="464.05" y="511.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (991,205,549 samples, 0.01%)</title><rect x="98.8" y="165" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="101.81" y="175.5" ></text>
</g>
<g >
<title>ExecProcNode (15,531,807,651 samples, 0.16%)</title><rect x="124.0" y="517" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="126.99" y="527.5" ></text>
</g>
<g >
<title>exprTypmod (1,343,408,235 samples, 0.01%)</title><rect x="1034.9" y="229" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1037.91" y="239.5" ></text>
</g>
<g >
<title>bms_add_members (2,305,584,635 samples, 0.02%)</title><rect x="968.6" y="373" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="971.58" y="383.5" ></text>
</g>
<g >
<title>lappend (3,681,894,359 samples, 0.04%)</title><rect x="953.1" y="437" width="0.5" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="956.13" y="447.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (3,529,119,117 samples, 0.04%)</title><rect x="394.6" y="309" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="397.59" y="319.5" ></text>
</g>
<g >
<title>fmgr_info (2,013,372,161 samples, 0.02%)</title><rect x="439.3" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="442.27" y="383.5" ></text>
</g>
<g >
<title>_bt_getroot (35,738,350,268 samples, 0.38%)</title><rect x="95.7" y="325" width="4.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="98.68" y="335.5" ></text>
</g>
<g >
<title>handle_softirqs (1,160,247,817 samples, 0.01%)</title><rect x="757.2" y="469" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="760.20" y="479.5" ></text>
</g>
<g >
<title>kmalloc_size_roundup (1,193,202,543 samples, 0.01%)</title><rect x="198.4" y="341" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="201.43" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (58,754,055,376 samples, 0.62%)</title><rect x="499.7" y="437" width="7.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="502.67" y="447.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (934,496,892 samples, 0.01%)</title><rect x="241.8" y="389" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="244.76" y="399.5" ></text>
</g>
<g >
<title>palloc (1,274,572,324 samples, 0.01%)</title><rect x="966.1" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="969.08" y="351.5" ></text>
</g>
<g >
<title>bms_add_member (3,315,178,360 samples, 0.03%)</title><rect x="348.1" y="389" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="351.12" y="399.5" ></text>
</g>
<g >
<title>palloc0 (2,311,164,640 samples, 0.02%)</title><rect x="348.2" y="357" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="351.24" y="367.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,012,858,039 samples, 0.01%)</title><rect x="339.8" y="213" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="342.75" y="223.5" ></text>
</g>
<g >
<title>create_modifytable_path (13,887,000,742 samples, 0.15%)</title><rect x="911.7" y="485" width="1.7" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="914.72" y="495.5" ></text>
</g>
<g >
<title>gup_fast (2,742,246,924 samples, 0.03%)</title><rect x="492.2" y="293" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="495.22" y="303.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (872,995,785 samples, 0.01%)</title><rect x="29.0" y="741" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="32.05" y="751.5" ></text>
</g>
<g >
<title>subquery_planner (3,060,492,147 samples, 0.03%)</title><rect x="1185.1" y="757" width="0.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text  x="1188.09" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,470,586,992 samples, 0.03%)</title><rect x="293.8" y="245" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="296.81" y="255.5" ></text>
</g>
<g >
<title>create_index_paths (295,340,285,105 samples, 3.11%)</title><rect x="985.3" y="405" width="36.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="988.27" y="415.5" >cre..</text>
</g>
<g >
<title>ExecClearTuple (12,695,250,563 samples, 0.13%)</title><rect x="249.6" y="469" width="1.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="252.56" y="479.5" ></text>
</g>
<g >
<title>page_verify_redirects (1,351,587,093 samples, 0.01%)</title><rect x="1149.1" y="709" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1152.10" y="719.5" ></text>
</g>
<g >
<title>fireRules (1,098,765,408 samples, 0.01%)</title><rect x="1139.3" y="757" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="1142.32" y="767.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,238,095,590 samples, 0.04%)</title><rect x="837.1" y="325" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="840.06" y="335.5" ></text>
</g>
<g >
<title>sched_tick (3,091,854,062 samples, 0.03%)</title><rect x="758.1" y="421" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="761.15" y="431.5" ></text>
</g>
<g >
<title>ExecutorEnd (232,748,182,138 samples, 2.45%)</title><rect x="236.8" y="533" width="29.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="239.85" y="543.5" >Ex..</text>
</g>
<g >
<title>ExecProcNodeFirst (15,531,807,651 samples, 0.16%)</title><rect x="124.0" y="501" width="1.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="126.99" y="511.5" ></text>
</g>
<g >
<title>ExecInterpExpr (964,500,540 samples, 0.01%)</title><rect x="44.8" y="757" width="0.1" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="47.76" y="767.5" ></text>
</g>
<g >
<title>native_write_msr (3,571,723,324 samples, 0.04%)</title><rect x="164.5" y="277" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="167.53" y="287.5" ></text>
</g>
<g >
<title>lcons (1,727,676,689 samples, 0.02%)</title><rect x="272.7" y="373" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="275.74" y="383.5" ></text>
</g>
<g >
<title>ExecScan (991,204,959 samples, 0.01%)</title><rect x="343.7" y="405" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="346.72" y="415.5" ></text>
</g>
<g >
<title>_bt_readpage (945,281,554 samples, 0.01%)</title><rect x="131.1" y="757" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="134.12" y="767.5" ></text>
</g>
<g >
<title>palloc0 (5,191,405,261 samples, 0.05%)</title><rect x="449.8" y="405" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="452.78" y="415.5" ></text>
</g>
<g >
<title>heap_getattr (881,646,598 samples, 0.01%)</title><rect x="1146.1" y="757" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1149.09" y="767.5" ></text>
</g>
<g >
<title>RecoveryInProgress (1,572,269,623 samples, 0.02%)</title><rect x="88.9" y="757" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="91.86" y="767.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (2,201,059,197 samples, 0.02%)</title><rect x="818.1" y="405" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="821.06" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,254,377,106 samples, 0.02%)</title><rect x="496.4" y="437" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="499.42" y="447.5" ></text>
</g>
<g >
<title>finalize_plan (27,894,257,973 samples, 0.29%)</title><rect x="879.5" y="485" width="3.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="882.54" y="495.5" ></text>
</g>
<g >
<title>new_list (3,469,891,824 samples, 0.04%)</title><rect x="990.8" y="341" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="993.82" y="351.5" ></text>
</g>
<g >
<title>schedule (1,025,875,864 samples, 0.01%)</title><rect x="1148.5" y="453" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1151.51" y="463.5" ></text>
</g>
<g >
<title>MemoryContextCreate (1,207,559,631 samples, 0.01%)</title><rect x="1060.1" y="437" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="1063.11" y="447.5" ></text>
</g>
<g >
<title>psi_group_change (6,221,037,678 samples, 0.07%)</title><rect x="167.6" y="325" width="0.7" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="170.56" y="335.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (6,343,855,476 samples, 0.07%)</title><rect x="323.8" y="261" width="0.8" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="326.80" y="271.5" ></text>
</g>
<g >
<title>ComputeXidHorizons (1,553,442,582 samples, 0.02%)</title><rect x="312.4" y="197" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="315.37" y="207.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (9,124,155,013 samples, 0.10%)</title><rect x="290.7" y="277" width="1.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="293.67" y="287.5" ></text>
</g>
<g >
<title>PinBufferForBlock (19,141,434,356 samples, 0.20%)</title><rect x="100.1" y="213" width="2.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="103.12" y="223.5" ></text>
</g>
<g >
<title>make_op (60,431,431,192 samples, 0.64%)</title><rect x="846.8" y="421" width="7.5" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="849.79" y="431.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,387,464,438 samples, 0.01%)</title><rect x="989.7" y="293" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="992.72" y="303.5" ></text>
</g>
<g >
<title>newNode (4,382,063,455 samples, 0.05%)</title><rect x="886.2" y="405" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="889.22" y="415.5" ></text>
</g>
<g >
<title>enforce_generic_type_consistency (5,388,483,649 samples, 0.06%)</title><rect x="847.3" y="405" width="0.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="850.27" y="415.5" ></text>
</g>
<g >
<title>check_lock_if_inplace_updateable_rel (1,338,515,829 samples, 0.01%)</title><rect x="360.4" y="373" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="363.39" y="383.5" ></text>
</g>
<g >
<title>table_block_relation_size (22,804,555,470 samples, 0.24%)</title><rect x="935.7" y="309" width="2.8" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="938.68" y="319.5" ></text>
</g>
<g >
<title>hash_search (6,835,709,819 samples, 0.07%)</title><rect x="832.4" y="389" width="0.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="835.41" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,049,547,257 samples, 0.01%)</title><rect x="522.4" y="405" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="525.44" y="415.5" ></text>
</g>
<g >
<title>newNode (4,580,540,116 samples, 0.05%)</title><rect x="893.7" y="453" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="896.65" y="463.5" ></text>
</g>
<g >
<title>tts_virtual_clear (1,139,349,603 samples, 0.01%)</title><rect x="285.5" y="325" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="288.52" y="335.5" ></text>
</g>
<g >
<title>mdnblocks (9,059,726,210 samples, 0.10%)</title><rect x="932.0" y="373" width="1.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="934.95" y="383.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,217,499,738 samples, 0.01%)</title><rect x="952.7" y="357" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="955.71" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,111,760,549 samples, 0.01%)</title><rect x="1065.4" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1068.43" y="383.5" ></text>
</g>
<g >
<title>ExecResetTupleTable (21,224,328,790 samples, 0.22%)</title><rect x="248.7" y="485" width="2.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="251.71" y="495.5" ></text>
</g>
<g >
<title>SysCacheGetAttr (49,089,648,764 samples, 0.52%)</title><rect x="1000.9" y="261" width="6.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="1003.90" y="271.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,815,080,476 samples, 0.02%)</title><rect x="474.5" y="453" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="477.50" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,429,826,462 samples, 0.03%)</title><rect x="375.9" y="261" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="378.86" y="271.5" ></text>
</g>
<g >
<title>find_lateral_references (878,511,525 samples, 0.01%)</title><rect x="1138.8" y="757" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text  x="1141.85" y="767.5" ></text>
</g>
<g >
<title>makeTargetEntry (2,952,428,921 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.03" y="447.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (1,872,432,694 samples, 0.02%)</title><rect x="509.8" y="437" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="512.76" y="447.5" ></text>
</g>
<g >
<title>ParallelContextActive (887,882,677 samples, 0.01%)</title><rect x="83.1" y="757" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="86.08" y="767.5" ></text>
</g>
<g >
<title>heap_freetuple (1,723,911,010 samples, 0.02%)</title><rect x="250.8" y="437" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="253.82" y="447.5" ></text>
</g>
<g >
<title>_bt_checkpage (4,088,943,389 samples, 0.04%)</title><rect x="340.6" y="229" width="0.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="343.65" y="239.5" ></text>
</g>
<g >
<title>xas_load (4,525,555,751 samples, 0.05%)</title><rect x="505.1" y="309" width="0.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="508.13" y="319.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (984,537,577 samples, 0.01%)</title><rect x="1055.7" y="373" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1058.70" y="383.5" ></text>
</g>
<g >
<title>AllocSetFree (1,177,028,935 samples, 0.01%)</title><rect x="250.9" y="405" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="253.86" y="415.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (4,815,402,983 samples, 0.05%)</title><rect x="943.2" y="373" width="0.6" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="946.20" y="383.5" ></text>
</g>
<g >
<title>PinBuffer (2,218,922,817 samples, 0.02%)</title><rect x="355.5" y="261" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="358.54" y="271.5" ></text>
</g>
<g >
<title>new_list (1,658,488,557 samples, 0.02%)</title><rect x="835.3" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="838.31" y="447.5" ></text>
</g>
<g >
<title>WaitXLogInsertionsToFinish (18,940,554,903 samples, 0.20%)</title><rect x="495.5" y="485" width="2.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="498.47" y="495.5" ></text>
</g>
<g >
<title>query_tree_walker_impl (51,971,787,236 samples, 0.55%)</title><rect x="805.6" y="469" width="6.5" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="808.63" y="479.5" ></text>
</g>
<g >
<title>copy_generic_path_info (1,057,003,120 samples, 0.01%)</title><rect x="887.9" y="389" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="890.94" y="399.5" ></text>
</g>
<g >
<title>start_xact_command (39,073,250,501 samples, 0.41%)</title><rect x="1072.9" y="581" width="4.9" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1075.92" y="591.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,051,584,591 samples, 0.01%)</title><rect x="883.3" y="469" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="886.32" y="479.5" ></text>
</g>
<g >
<title>list_free (1,970,918,686 samples, 0.02%)</title><rect x="992.4" y="341" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="995.45" y="351.5" ></text>
</g>
<g >
<title>heap_prune_satisfies_vacuum (3,981,835,124 samples, 0.04%)</title><rect x="1149.7" y="709" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1152.65" y="719.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,686,524,791 samples, 0.02%)</title><rect x="496.9" y="373" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="499.86" y="383.5" ></text>
</g>
<g >
<title>generic_write_check_limits (1,342,857,493 samples, 0.01%)</title><rect x="506.6" y="357" width="0.2" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text  x="509.60" y="367.5" ></text>
</g>
<g >
<title>hash_bytes (3,552,828,548 samples, 0.04%)</title><rect x="923.6" y="357" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="926.59" y="367.5" ></text>
</g>
<g >
<title>palloc0 (4,164,683,411 samples, 0.04%)</title><rect x="969.7" y="341" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="972.69" y="351.5" ></text>
</g>
<g >
<title>TransactionIdDidCommit (10,110,082,844 samples, 0.11%)</title><rect x="308.6" y="213" width="1.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="311.60" y="223.5" ></text>
</g>
<g >
<title>tag_hash (2,622,726,118 samples, 0.03%)</title><rect x="354.6" y="229" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="357.63" y="239.5" ></text>
</g>
<g >
<title>dequeue_task_fair (19,100,737,722 samples, 0.20%)</title><rect x="486.4" y="261" width="2.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="489.40" y="271.5" ></text>
</g>
<g >
<title>bms_make_singleton (2,274,491,837 samples, 0.02%)</title><rect x="975.2" y="421" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="978.18" y="431.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,677,676,086 samples, 0.02%)</title><rect x="389.4" y="101" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="392.44" y="111.5" ></text>
</g>
<g >
<title>transformExprRecurse (16,757,652,677 samples, 0.18%)</title><rect x="841.0" y="389" width="2.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="844.00" y="399.5" ></text>
</g>
<g >
<title>HeapTupleHeaderXminCommitted (1,525,040,061 samples, 0.02%)</title><rect x="52.1" y="757" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="55.11" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,259,913,548 samples, 0.01%)</title><rect x="446.9" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="449.88" y="367.5" ></text>
</g>
<g >
<title>hash_search (4,791,866,496 samples, 0.05%)</title><rect x="942.4" y="341" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="945.43" y="351.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (831,614,962 samples, 0.01%)</title><rect x="35.1" y="757" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="38.10" y="767.5" ></text>
</g>
<g >
<title>pull_up_subqueries (5,740,404,837 samples, 0.06%)</title><rect x="1069.8" y="501" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1072.80" y="511.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="485" width="2.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="87.32" y="495.5" ></text>
</g>
<g >
<title>palloc (1,899,005,744 samples, 0.02%)</title><rect x="425.0" y="309" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="427.97" y="319.5" ></text>
</g>
<g >
<title>LockHeldByMe (6,746,733,794 samples, 0.07%)</title><rect x="947.2" y="341" width="0.9" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="950.23" y="351.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (2,123,664,785 samples, 0.02%)</title><rect x="529.6" y="485" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="532.61" y="495.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,280,905,085 samples, 0.01%)</title><rect x="374.2" y="245" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="377.22" y="255.5" ></text>
</g>
<g >
<title>__libc_start_main@@GLIBC_2.34 (7,654,249,878,114 samples, 80.57%)</title><rect x="132.0" y="741" width="950.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="134.98" y="751.5" >__libc_start_main@@GLIBC_2.34</text>
</g>
<g >
<title>CatalogCacheCompareTuple (911,755,927 samples, 0.01%)</title><rect x="1010.1" y="245" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1013.11" y="255.5" ></text>
</g>
<g >
<title>palloc0 (2,864,267,922 samples, 0.03%)</title><rect x="977.0" y="437" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="979.99" y="447.5" ></text>
</g>
<g >
<title>lappend (2,407,939,000 samples, 0.03%)</title><rect x="815.0" y="437" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="818.01" y="447.5" ></text>
</g>
<g >
<title>pull_var_clause_walker (7,373,745,227 samples, 0.08%)</title><rect x="955.1" y="373" width="0.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="958.13" y="383.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (956,410,952 samples, 0.01%)</title><rect x="33.2" y="757" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="36.25" y="767.5" ></text>
</g>
<g >
<title>AtStart_Cache (3,694,074,083 samples, 0.04%)</title><rect x="1073.9" y="533" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1076.88" y="543.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="453" width="1.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="126.99" y="463.5" ></text>
</g>
<g >
<title>XLogRegisterBuffer (12,747,522,322 samples, 0.13%)</title><rect x="392.4" y="341" width="1.6" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="395.39" y="351.5" ></text>
</g>
<g >
<title>XLogBytePosToRecPtr (1,213,074,245 samples, 0.01%)</title><rect x="387.9" y="293" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="390.89" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,173,228,450 samples, 0.01%)</title><rect x="976.7" y="373" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="979.75" y="383.5" ></text>
</g>
<g >
<title>datumIsEqual (1,982,492,994 samples, 0.02%)</title><rect x="1131.5" y="757" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1134.51" y="767.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (11,303,820,152 samples, 0.12%)</title><rect x="85.0" y="213" width="1.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="87.99" y="223.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,257,540,797 samples, 0.01%)</title><rect x="959.4" y="293" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="962.44" y="303.5" ></text>
</g>
<g >
<title>AdvanceXLInsertBuffer (847,641,860 samples, 0.01%)</title><rect x="387.3" y="277" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="390.27" y="287.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (1,006,114,033 samples, 0.01%)</title><rect x="940.1" y="357" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="943.09" y="367.5" ></text>
</g>
<g >
<title>FreeExprContext (27,974,233,542 samples, 0.29%)</title><rect x="251.6" y="485" width="3.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="254.56" y="495.5" ></text>
</g>
<g >
<title>castNodeImpl (1,047,588,174 samples, 0.01%)</title><rect x="906.8" y="501" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="909.82" y="511.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,128,746,448 samples, 0.01%)</title><rect x="914.6" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="917.60" y="431.5" ></text>
</g>
<g >
<title>string_hash (2,166,069,554 samples, 0.02%)</title><rect x="217.2" y="549" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="220.25" y="559.5" ></text>
</g>
<g >
<title>LockHeldByMe (13,208,571,679 samples, 0.14%)</title><rect x="830.5" y="389" width="1.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="833.51" y="399.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTuple (1,199,489,458 samples, 0.01%)</title><rect x="363.9" y="357" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="366.86" y="367.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (2,697,557,875 samples, 0.03%)</title><rect x="263.3" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="266.27" y="399.5" ></text>
</g>
<g >
<title>x64_sys_call (1,941,111,757 samples, 0.02%)</title><rect x="177.2" y="437" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="180.23" y="447.5" ></text>
</g>
<g >
<title>assign_collations_walker (1,173,662,217 samples, 0.01%)</title><rect x="808.5" y="373" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="811.46" y="383.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (4,660,528,515 samples, 0.05%)</title><rect x="1056.2" y="421" width="0.6" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1059.18" y="431.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (1,037,946,447 samples, 0.01%)</title><rect x="182.8" y="309" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="185.85" y="319.5" ></text>
</g>
<g >
<title>ReadyForQuery (172,066,123,498 samples, 1.81%)</title><rect x="188.6" y="597" width="21.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="191.62" y="607.5" >R..</text>
</g>
<g >
<title>bms_union (2,360,770,743 samples, 0.02%)</title><rect x="966.0" y="373" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="969.00" y="383.5" ></text>
</g>
<g >
<title>update_ps_display_precheck (1,298,849,205 samples, 0.01%)</title><rect x="1082.5" y="565" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1085.52" y="575.5" ></text>
</g>
<g >
<title>copy_folio_from_iter_atomic (13,041,680,307 samples, 0.14%)</title><rect x="502.8" y="357" width="1.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="505.78" y="367.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (924,700,544 samples, 0.01%)</title><rect x="297.8" y="213" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="300.84" y="223.5" ></text>
</g>
<g >
<title>exprCollation (1,175,629,326 samples, 0.01%)</title><rect x="810.5" y="309" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="813.48" y="319.5" ></text>
</g>
<g >
<title>CreateCommandTag (3,158,677,723 samples, 0.03%)</title><rect x="212.3" y="581" width="0.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="215.29" y="591.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (7,410,173,818 samples, 0.08%)</title><rect x="757.7" y="533" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="760.74" y="543.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,849,967,068 samples, 0.02%)</title><rect x="924.7" y="405" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="927.73" y="415.5" ></text>
</g>
<g >
<title>sysvec_thermal (860,527,632 samples, 0.01%)</title><rect x="796.1" y="501" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="799.13" y="511.5" ></text>
</g>
<g >
<title>pgstat_count_slru_blocks_hit (1,226,248,395 samples, 0.01%)</title><rect x="480.0" y="421" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="482.99" y="431.5" ></text>
</g>
<g >
<title>exec_simple_query (17,479,689,687 samples, 0.18%)</title><rect x="126.3" y="613" width="2.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="129.31" y="623.5" ></text>
</g>
<g >
<title>transformExprRecurse (33,578,355,930 samples, 0.35%)</title><rect x="854.3" y="421" width="4.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="857.30" y="431.5" ></text>
</g>
<g >
<title>smgrnblocks_cached (1,248,231,399 samples, 0.01%)</title><rect x="938.4" y="277" width="0.1" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text  x="941.36" y="287.5" ></text>
</g>
<g >
<title>get_typavgwidth (6,544,022,737 samples, 0.07%)</title><rect x="1041.3" y="373" width="0.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="1044.29" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,017,359,513 samples, 0.01%)</title><rect x="450.3" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="453.29" y="399.5" ></text>
</g>
<g >
<title>AllocSetFree (1,587,809,962 samples, 0.02%)</title><rect x="988.0" y="357" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="990.97" y="367.5" ></text>
</g>
<g >
<title>core_yylex_init (6,266,221,298 samples, 0.07%)</title><rect x="872.7" y="533" width="0.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="875.69" y="543.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,097,269,834 samples, 0.01%)</title><rect x="902.0" y="357" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="904.97" y="367.5" ></text>
</g>
<g >
<title>estimate_rel_size (30,356,564,124 samples, 0.32%)</title><rect x="935.1" y="405" width="3.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="938.05" y="415.5" ></text>
</g>
<g >
<title>gup_fast_pgd_range (3,235,204,720 samples, 0.03%)</title><rect x="489.7" y="261" width="0.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="492.66" y="271.5" ></text>
</g>
<g >
<title>index_getattr (1,304,462,264 samples, 0.01%)</title><rect x="125.6" y="245" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="128.60" y="255.5" ></text>
</g>
<g >
<title>hash_bytes (2,456,804,720 samples, 0.03%)</title><rect x="354.6" y="213" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="357.65" y="223.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (1,481,688,423 samples, 0.02%)</title><rect x="282.3" y="277" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="285.26" y="287.5" ></text>
</g>
<g >
<title>_bt_moveright (1,304,462,264 samples, 0.01%)</title><rect x="125.6" y="277" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="128.60" y="287.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (923,554,004 samples, 0.01%)</title><rect x="436.3" y="373" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="439.32" y="383.5" ></text>
</g>
<g >
<title>attnumTypeId (950,058,379 samples, 0.01%)</title><rect x="843.6" y="437" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="846.59" y="447.5" ></text>
</g>
<g >
<title>relation_open (21,036,878,955 samples, 0.22%)</title><rect x="451.8" y="405" width="2.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="454.82" y="415.5" ></text>
</g>
<g >
<title>palloc (976,018,637 samples, 0.01%)</title><rect x="909.2" y="421" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="912.24" y="431.5" ></text>
</g>
<g >
<title>mutex_lock (1,755,714,939 samples, 0.02%)</title><rect x="185.0" y="373" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="188.02" y="383.5" ></text>
</g>
<g >
<title>string_hash (3,038,797,296 samples, 0.03%)</title><rect x="214.6" y="533" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="217.56" y="543.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (909,374,906 samples, 0.01%)</title><rect x="259.8" y="437" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="262.81" y="447.5" ></text>
</g>
<g >
<title>ExecScan (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="453" width="2.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="87.32" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,317,387,065 samples, 0.02%)</title><rect x="830.7" y="341" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="833.74" y="351.5" ></text>
</g>
<g >
<title>sched_balance_newidle (3,687,411,645 samples, 0.04%)</title><rect x="162.9" y="309" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="165.94" y="319.5" ></text>
</g>
<g >
<title>ExecInitExprRec (1,621,877,376 samples, 0.02%)</title><rect x="427.7" y="325" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="430.71" y="335.5" ></text>
</g>
<g >
<title>eqsel (1,798,925,613 samples, 0.02%)</title><rect x="1134.4" y="757" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1137.36" y="767.5" ></text>
</g>
<g >
<title>PageGetItem (835,427,416 samples, 0.01%)</title><rect x="382.4" y="341" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="385.38" y="351.5" ></text>
</g>
<g >
<title>assign_expr_collations (17,559,728,273 samples, 0.18%)</title><rect x="806.4" y="437" width="2.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="809.44" y="447.5" ></text>
</g>
<g >
<title>PinBuffer (9,050,426,698 samples, 0.10%)</title><rect x="97.9" y="181" width="1.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="100.85" y="191.5" ></text>
</g>
<g >
<title>ExecScanExtended (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="421" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1161.90" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (966,676,862 samples, 0.01%)</title><rect x="125.5" y="181" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="128.48" y="191.5" ></text>
</g>
<g >
<title>QueryRewrite (1,135,813,297 samples, 0.01%)</title><rect x="88.1" y="757" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="91.13" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,028,776,699 samples, 0.01%)</title><rect x="126.2" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="129.17" y="399.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (10,991,958,811 samples, 0.12%)</title><rect x="947.2" y="373" width="1.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="950.16" y="383.5" ></text>
</g>
<g >
<title>make_const (3,858,307,067 samples, 0.04%)</title><rect x="841.2" y="373" width="0.4" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="844.15" y="383.5" ></text>
</g>
<g >
<title>gup_fast (1,594,836,564 samples, 0.02%)</title><rect x="367.0" y="101" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="369.97" y="111.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,749,918,609 samples, 0.02%)</title><rect x="366.0" y="261" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="368.96" y="271.5" ></text>
</g>
<g >
<title>BufferGetBlock (931,566,225 samples, 0.01%)</title><rect x="328.6" y="213" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="331.63" y="223.5" ></text>
</g>
<g >
<title>palloc0 (4,103,869,676 samples, 0.04%)</title><rect x="966.6" y="357" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="969.62" y="367.5" ></text>
</g>
<g >
<title>_bt_readnextpage (4,291,360,124 samples, 0.05%)</title><rect x="283.6" y="261" width="0.6" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="286.64" y="271.5" ></text>
</g>
<g >
<title>btgettuple (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="325" width="1.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="126.99" y="335.5" ></text>
</g>
<g >
<title>StartReadBuffer (27,698,801,440 samples, 0.29%)</title><rect x="299.6" y="197" width="3.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="302.56" y="207.5" ></text>
</g>
<g >
<title>prepare_task_switch (2,861,230,978 samples, 0.03%)</title><rect x="485.1" y="277" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="488.09" y="287.5" ></text>
</g>
<g >
<title>match_clause_to_index (26,180,917,385 samples, 0.28%)</title><rect x="1018.7" y="357" width="3.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1021.70" y="367.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,651,794,084 samples, 0.05%)</title><rect x="104.1" y="453" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="107.11" y="463.5" ></text>
</g>
<g >
<title>futex_wake_mark (942,008,586 samples, 0.01%)</title><rect x="492.0" y="325" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="495.00" y="335.5" ></text>
</g>
<g >
<title>GlobalVisTestIsRemovableXid (3,922,568,998 samples, 0.04%)</title><rect x="312.1" y="245" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="315.08" y="255.5" ></text>
</g>
<g >
<title>futex_do_wait (1,131,286,277 samples, 0.01%)</title><rect x="496.9" y="309" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="499.88" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,710,008,929 samples, 0.02%)</title><rect x="413.4" y="453" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="416.36" y="463.5" ></text>
</g>
<g >
<title>ExecClearTuple (4,983,464,416 samples, 0.05%)</title><rect x="281.9" y="341" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="284.93" y="351.5" ></text>
</g>
<g >
<title>palloc0 (1,712,444,720 samples, 0.02%)</title><rect x="818.9" y="421" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="821.86" y="431.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,442,668,614 samples, 0.02%)</title><rect x="430.7" y="325" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="433.68" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,049,279,697 samples, 0.01%)</title><rect x="914.8" y="421" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="917.84" y="431.5" ></text>
</g>
<g >
<title>__strncmp_avx2 (1,551,431,799 samples, 0.02%)</title><rect x="827.6" y="277" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="830.59" y="287.5" ></text>
</g>
<g >
<title>new_list (3,343,204,781 samples, 0.04%)</title><rect x="891.0" y="357" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="894.04" y="367.5" ></text>
</g>
<g >
<title>reconsider_outer_join_clauses (3,317,749,848 samples, 0.03%)</title><rect x="1042.4" y="469" width="0.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1045.37" y="479.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (933,752,216 samples, 0.01%)</title><rect x="522.6" y="405" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="525.62" y="415.5" ></text>
</g>
<g >
<title>_bt_search (9,265,348,929 samples, 0.10%)</title><rect x="124.8" y="293" width="1.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="127.77" y="303.5" ></text>
</g>
<g >
<title>DeconstructQualifiedName (1,772,113,138 samples, 0.02%)</title><rect x="853.4" y="373" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="856.44" y="383.5" ></text>
</g>
<g >
<title>__ieee754_log_fma (2,969,471,947 samples, 0.03%)</title><rect x="998.9" y="309" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1001.92" y="319.5" ></text>
</g>
<g >
<title>internal_putbytes (2,004,423,578 samples, 0.02%)</title><rect x="189.9" y="549" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="192.88" y="559.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (1,035,936,813 samples, 0.01%)</title><rect x="430.1" y="357" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="433.13" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,191,098,032 samples, 0.04%)</title><rect x="507.7" y="421" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="510.67" y="431.5" ></text>
</g>
<g >
<title>unix_maybe_add_creds (1,944,111,981 samples, 0.02%)</title><rect x="208.5" y="405" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="211.49" y="415.5" ></text>
</g>
<g >
<title>palloc0 (4,699,083,864 samples, 0.05%)</title><rect x="400.6" y="341" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="403.59" y="351.5" ></text>
</g>
<g >
<title>relation_open (23,855,348,349 samples, 0.25%)</title><rect x="830.4" y="421" width="2.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="833.36" y="431.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,832,554,424 samples, 0.02%)</title><rect x="1145.5" y="741" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1148.48" y="751.5" ></text>
</g>
<g >
<title>rseq_update_cpu_node_id (1,067,821,846 samples, 0.01%)</title><rect x="176.9" y="405" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="179.92" y="415.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (2,777,553,854 samples, 0.03%)</title><rect x="389.3" y="213" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="392.31" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (983,169,158 samples, 0.01%)</title><rect x="369.6" y="245" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="372.64" y="255.5" ></text>
</g>
<g >
<title>convert_saop_to_hashed_saop_walker (4,865,099,078 samples, 0.05%)</title><rect x="1051.3" y="437" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1054.27" y="447.5" ></text>
</g>
<g >
<title>__put_user_nocheck_4 (2,241,941,927 samples, 0.02%)</title><rect x="158.3" y="373" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="161.28" y="383.5" ></text>
</g>
<g >
<title>preprocess_expression (2,600,633,993 samples, 0.03%)</title><rect x="1185.1" y="741" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="1188.12" y="751.5" ></text>
</g>
<g >
<title>AllocSetFree (1,177,480,530 samples, 0.01%)</title><rect x="323.4" y="229" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="326.43" y="239.5" ></text>
</g>
<g >
<title>tag_hash (4,614,334,974 samples, 0.05%)</title><rect x="452.5" y="325" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="455.53" y="335.5" ></text>
</g>
<g >
<title>set_plain_rel_size (121,262,703,836 samples, 1.28%)</title><rect x="1027.0" y="421" width="15.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1030.04" y="431.5" ></text>
</g>
<g >
<title>standard_planner (1,575,179,795,911 samples, 16.58%)</title><rect x="875.4" y="533" width="195.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="878.41" y="543.5" >standard_planner</text>
</g>
<g >
<title>ExecShutdownNode_walker (3,525,774,931 samples, 0.04%)</title><rect x="410.5" y="437" width="0.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="413.54" y="447.5" ></text>
</g>
<g >
<title>pq_getbytes (4,042,898,642 samples, 0.04%)</title><rect x="188.0" y="549" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="190.96" y="559.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (971,078,648 samples, 0.01%)</title><rect x="128.4" y="421" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="131.36" y="431.5" ></text>
</g>
<g >
<title>ExecAssignExprContext (10,853,675,765 samples, 0.11%)</title><rect x="422.1" y="421" width="1.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="425.09" y="431.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (2,290,634,572 samples, 0.02%)</title><rect x="509.5" y="437" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="512.46" y="447.5" ></text>
</g>
<g >
<title>FileSize (7,909,773,044 samples, 0.08%)</title><rect x="932.0" y="341" width="1.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="935.04" y="351.5" ></text>
</g>
<g >
<title>fdatasync (7,614,223,250 samples, 0.08%)</title><rect x="507.3" y="437" width="0.9" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="510.29" y="447.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (10,184,421,025 samples, 0.11%)</title><rect x="504.5" y="341" width="1.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="507.52" y="351.5" ></text>
</g>
<g >
<title>uint32_hash (1,596,056,009 samples, 0.02%)</title><rect x="1065.6" y="453" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1068.64" y="463.5" ></text>
</g>
<g >
<title>tag_hash (2,588,232,114 samples, 0.03%)</title><rect x="451.3" y="373" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="454.29" y="383.5" ></text>
</g>
<g >
<title>get_attavgwidth (8,765,545,611 samples, 0.09%)</title><rect x="1040.2" y="373" width="1.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="1043.20" y="383.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,375,195,855 samples, 0.01%)</title><rect x="822.7" y="373" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="825.65" y="383.5" ></text>
</g>
<g >
<title>list_free_private (1,594,111,789 samples, 0.02%)</title><rect x="953.9" y="437" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="956.92" y="447.5" ></text>
</g>
<g >
<title>create_lateral_join_info (1,249,679,691 samples, 0.01%)</title><rect x="956.0" y="469" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="959.04" y="479.5" ></text>
</g>
<g >
<title>IndexNext (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="373" width="1.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="126.99" y="383.5" ></text>
</g>
<g >
<title>palloc (1,750,682,771 samples, 0.02%)</title><rect x="985.0" y="341" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="988.01" y="351.5" ></text>
</g>
<g >
<title>relation_open (16,045,980,953 samples, 0.17%)</title><rect x="923.1" y="453" width="2.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="926.13" y="463.5" ></text>
</g>
<g >
<title>IndexNext (22,572,743,756 samples, 0.24%)</title><rect x="281.9" y="357" width="2.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="284.87" y="367.5" ></text>
</g>
<g >
<title>ExecAssignProjectionInfo (70,891,170,959 samples, 0.75%)</title><rect x="423.6" y="389" width="8.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="426.60" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,405,089,711 samples, 0.01%)</title><rect x="835.8" y="389" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="838.83" y="399.5" ></text>
</g>
<g >
<title>hash_initial_lookup (807,343,724 samples, 0.01%)</title><rect x="869.8" y="437" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="872.84" y="447.5" ></text>
</g>
<g >
<title>palloc (3,215,963,744 samples, 0.03%)</title><rect x="1017.3" y="325" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1020.34" y="335.5" ></text>
</g>
<g >
<title>_bt_moveright (10,088,207,313 samples, 0.11%)</title><rect x="338.2" y="245" width="1.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="341.19" y="255.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,817,023,752 samples, 0.02%)</title><rect x="1136.4" y="757" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1139.37" y="767.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,064,060,014 samples, 0.01%)</title><rect x="864.2" y="437" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="867.22" y="447.5" ></text>
</g>
<g >
<title>palloc (943,425,543 samples, 0.01%)</title><rect x="992.8" y="309" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="995.82" y="319.5" ></text>
</g>
<g >
<title>decimalLength64 (2,751,657,249 samples, 0.03%)</title><rect x="218.5" y="533" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="221.49" y="543.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,120,285,893 samples, 0.01%)</title><rect x="102.0" y="165" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="104.97" y="175.5" ></text>
</g>
<g >
<title>palloc (1,208,629,233 samples, 0.01%)</title><rect x="459.1" y="453" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="462.12" y="463.5" ></text>
</g>
<g >
<title>heap_fill_tuple (8,908,565,962 samples, 0.09%)</title><rect x="397.7" y="357" width="1.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="400.75" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,161,100,655 samples, 0.01%)</title><rect x="889.2" y="277" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="892.19" y="287.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u64_impl (873,931,247 samples, 0.01%)</title><rect x="1167.9" y="757" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1170.94" y="767.5" ></text>
</g>
<g >
<title>SearchSysCache1 (5,141,753,524 samples, 0.05%)</title><rect x="415.3" y="421" width="0.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="418.35" y="431.5" ></text>
</g>
<g >
<title>pg_plan_queries (1,837,816,106 samples, 0.02%)</title><rect x="86.9" y="645" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="89.91" y="655.5" ></text>
</g>
<g >
<title>palloc (1,595,252,831 samples, 0.02%)</title><rect x="993.9" y="325" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="996.92" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (1,233,829,423 samples, 0.01%)</title><rect x="282.3" y="261" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="285.29" y="271.5" ></text>
</g>
<g >
<title>ExecProcNode (1,047,626,423 samples, 0.01%)</title><rect x="266.9" y="501" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="269.93" y="511.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (14,629,585,902 samples, 0.15%)</title><rect x="226.8" y="565" width="1.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="229.77" y="575.5" ></text>
</g>
<g >
<title>pfree (1,185,464,010 samples, 0.01%)</title><rect x="254.4" y="389" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="257.38" y="399.5" ></text>
</g>
<g >
<title>ReadBuffer (18,909,736,002 samples, 0.20%)</title><rect x="353.9" y="373" width="2.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="356.94" y="383.5" ></text>
</g>
<g >
<title>newNode (3,961,567,553 samples, 0.04%)</title><rect x="1116.6" y="725" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1119.62" y="735.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,656,680,946 samples, 0.03%)</title><rect x="112.6" y="741" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="115.62" y="751.5" ></text>
</g>
<g >
<title>palloc0 (1,775,498,101 samples, 0.02%)</title><rect x="979.4" y="421" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="982.39" y="431.5" ></text>
</g>
<g >
<title>bms_free (2,839,920,246 samples, 0.03%)</title><rect x="995.2" y="341" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="998.16" y="351.5" ></text>
</g>
<g >
<title>AllocSetFree (2,082,255,245 samples, 0.02%)</title><rect x="803.2" y="517" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="806.16" y="527.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3,393,212,510 samples, 0.04%)</title><rect x="522.3" y="437" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="525.32" y="447.5" ></text>
</g>
<g >
<title>ExecProcNode (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="501" width="2.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="87.32" y="511.5" ></text>
</g>
<g >
<title>transformUpdateStmt (1,156,482,497 samples, 0.01%)</title><rect x="1187.7" y="757" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1190.74" y="767.5" ></text>
</g>
<g >
<title>MultiXactIdSetOldestMember (6,219,971,333 samples, 0.07%)</title><rect x="377.2" y="357" width="0.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="380.15" y="367.5" ></text>
</g>
<g >
<title>fastgetattr (4,028,483,796 samples, 0.04%)</title><rect x="360.7" y="357" width="0.5" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="363.67" y="367.5" ></text>
</g>
<g >
<title>MaintainLatestCompletedXid (2,524,355,100 samples, 0.03%)</title><rect x="475.2" y="485" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="478.19" y="495.5" ></text>
</g>
<g >
<title>bms_union (3,263,029,955 samples, 0.03%)</title><rect x="957.1" y="453" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="960.05" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,099,248,456 samples, 0.01%)</title><rect x="368.4" y="245" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="371.37" y="255.5" ></text>
</g>
<g >
<title>BackendStartup (22,701,609,115 samples, 0.24%)</title><rect x="84.3" y="725" width="2.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="87.32" y="735.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (943,148,909 samples, 0.01%)</title><rect x="218.2" y="549" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="221.18" y="559.5" ></text>
</g>
<g >
<title>LockHeldByMe (6,502,745,256 samples, 0.07%)</title><rect x="923.2" y="405" width="0.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="926.23" y="415.5" ></text>
</g>
<g >
<title>addRangeTableEntryForRelation (48,012,681,730 samples, 0.51%)</title><rect x="814.1" y="469" width="5.9" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="817.08" y="479.5" ></text>
</g>
<g >
<title>_bt_compare (3,262,946,556 samples, 0.03%)</title><rect x="124.8" y="261" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="127.77" y="271.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (1,892,544,427 samples, 0.02%)</title><rect x="217.9" y="549" width="0.3" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="220.95" y="559.5" ></text>
</g>
<g >
<title>preprocess_expression (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="581" width="3.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="105.66" y="591.5" ></text>
</g>
<g >
<title>palloc (1,133,717,239 samples, 0.01%)</title><rect x="897.7" y="437" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="900.65" y="447.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (1,304,462,264 samples, 0.01%)</title><rect x="125.6" y="229" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="128.60" y="239.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (836,304,340 samples, 0.01%)</title><rect x="1032.6" y="165" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1035.60" y="175.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,535,033,158 samples, 0.02%)</title><rect x="829.9" y="277" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="832.91" y="287.5" ></text>
</g>
<g >
<title>getRTEPermissionInfo (1,325,301,701 samples, 0.01%)</title><rect x="928.2" y="421" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="931.20" y="431.5" ></text>
</g>
<g >
<title>cost_qual_eval_node (1,800,746,918 samples, 0.02%)</title><rect x="1013.1" y="277" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1016.06" y="287.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumber (1,152,855,994 samples, 0.01%)</title><rect x="310.4" y="245" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="313.45" y="255.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (892,186,450 samples, 0.01%)</title><rect x="896.5" y="469" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="899.48" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,613,528,055 samples, 0.05%)</title><rect x="366.6" y="245" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="369.64" y="255.5" ></text>
</g>
<g >
<title>index_close (1,715,169,845 samples, 0.02%)</title><rect x="940.0" y="405" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="943.01" y="415.5" ></text>
</g>
<g >
<title>palloc0 (3,162,858,751 samples, 0.03%)</title><rect x="974.8" y="389" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="977.79" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,105,434,880 samples, 0.01%)</title><rect x="447.2" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="450.20" y="351.5" ></text>
</g>
<g >
<title>create_modifytable_path (1,144,141,636 samples, 0.01%)</title><rect x="1130.6" y="757" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="1133.59" y="767.5" ></text>
</g>
<g >
<title>ExecIndexScan (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="421" width="1.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="129.31" y="431.5" ></text>
</g>
<g >
<title>filemap_get_entry (8,249,714,709 samples, 0.09%)</title><rect x="504.7" y="325" width="1.0" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text  x="507.66" y="335.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (950,700,672 samples, 0.01%)</title><rect x="1021.5" y="229" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1024.47" y="239.5" ></text>
</g>
<g >
<title>pull_varnos_walker (8,165,899,171 samples, 0.09%)</title><rect x="972.9" y="373" width="1.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="975.92" y="383.5" ></text>
</g>
<g >
<title>element_alloc (9,579,042,900 samples, 0.10%)</title><rect x="1064.4" y="421" width="1.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="1067.39" y="431.5" ></text>
</g>
<g >
<title>LWLockWakeup (3,223,314,787 samples, 0.03%)</title><rect x="389.3" y="245" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="392.27" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,099,383,352 samples, 0.01%)</title><rect x="860.1" y="469" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="863.06" y="479.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,106,979,430 samples, 0.01%)</title><rect x="939.1" y="357" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="942.11" y="367.5" ></text>
</g>
<g >
<title>set_plain_rel_pathlist (332,823,965,509 samples, 3.50%)</title><rect x="984.6" y="421" width="41.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="987.57" y="431.5" >set..</text>
</g>
<g >
<title>LockBuffer (1,853,327,073 samples, 0.02%)</title><rect x="127.8" y="213" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="130.76" y="223.5" ></text>
</g>
<g >
<title>WALInsertLockAcquire (5,136,821,178 samples, 0.05%)</title><rect x="388.5" y="309" width="0.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="391.46" y="319.5" ></text>
</g>
<g >
<title>nocachegetattr (45,713,740,521 samples, 0.48%)</title><rect x="1001.3" y="213" width="5.7" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="1004.32" y="223.5" ></text>
</g>
<g >
<title>socket_putmessage (5,231,324,521 samples, 0.06%)</title><rect x="218.9" y="565" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="221.88" y="575.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,703,100,369 samples, 0.02%)</title><rect x="897.2" y="453" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="900.22" y="463.5" ></text>
</g>
<g >
<title>subquery_planner (2,204,184,953 samples, 0.02%)</title><rect x="128.2" y="533" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text  x="131.20" y="543.5" ></text>
</g>
<g >
<title>replace_nestloop_params (12,162,864,594 samples, 0.13%)</title><rect x="889.4" y="357" width="1.5" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="892.42" y="367.5" ></text>
</g>
<g >
<title>ReadCommand (841,019,835 samples, 0.01%)</title><rect x="88.5" y="757" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="91.54" y="767.5" ></text>
</g>
<g >
<title>replace_nestloop_params_mutator (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="89.91" y="383.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (1,156,928,373 samples, 0.01%)</title><rect x="348.0" y="357" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="350.96" y="367.5" ></text>
</g>
<g >
<title>__log_finite@GLIBC_2.15@plt (4,472,084,137 samples, 0.05%)</title><rect x="999.3" y="309" width="0.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1002.29" y="319.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (1,548,598,726 samples, 0.02%)</title><rect x="490.1" y="389" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="493.07" y="399.5" ></text>
</g>
<g >
<title>get_row_security_policies (10,817,185,799 samples, 0.11%)</title><rect x="865.0" y="517" width="1.4" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="868.04" y="527.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (47,538,421,121 samples, 0.50%)</title><rect x="180.9" y="405" width="5.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="183.92" y="415.5" ></text>
</g>
<g >
<title>FullXidRelativeTo (1,412,080,331 samples, 0.01%)</title><rect x="305.6" y="213" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="308.57" y="223.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,239,468,530 samples, 0.03%)</title><rect x="101.2" y="181" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="104.20" y="191.5" ></text>
</g>
<g >
<title>AllocSetAlloc (16,648,628,768 samples, 0.18%)</title><rect x="1048.6" y="469" width="2.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1051.64" y="479.5" ></text>
</g>
<g >
<title>transformExpr (102,336,941,746 samples, 1.08%)</title><rect x="845.8" y="469" width="12.7" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="848.76" y="479.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,537,959,094 samples, 0.02%)</title><rect x="304.1" y="245" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="307.11" y="255.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (2,717,677,953 samples, 0.03%)</title><rect x="476.8" y="485" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="479.76" y="495.5" ></text>
</g>
<g >
<title>newNode (3,273,427,976 samples, 0.03%)</title><rect x="934.6" y="373" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="937.64" y="383.5" ></text>
</g>
<g >
<title>SimpleLruReadPage (6,919,952,927 samples, 0.07%)</title><rect x="479.3" y="437" width="0.8" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="482.28" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,520,164,632 samples, 0.02%)</title><rect x="873.1" y="485" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="876.13" y="495.5" ></text>
</g>
<g >
<title>eval_const_expressions (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="565" width="3.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="105.66" y="575.5" ></text>
</g>
<g >
<title>CheckRelationLockedByMe (14,824,560,978 samples, 0.16%)</title><rect x="451.9" y="389" width="1.8" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="454.88" y="399.5" ></text>
</g>
<g >
<title>assign_query_collations (52,222,188,760 samples, 0.55%)</title><rect x="805.6" y="485" width="6.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="808.60" y="495.5" ></text>
</g>
<g >
<title>__sys_sendto (132,797,281,655 samples, 1.40%)</title><rect x="192.4" y="437" width="16.5" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="195.40" y="447.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (902,269,803 samples, 0.01%)</title><rect x="376.7" y="325" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="379.66" y="335.5" ></text>
</g>
<g >
<title>shmem_file_llseek (1,142,119,908 samples, 0.01%)</title><rect x="932.8" y="261" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="935.80" y="271.5" ></text>
</g>
<g >
<title>LockBuffer (3,012,852,234 samples, 0.03%)</title><rect x="341.2" y="213" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="344.17" y="223.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (2,707,317,520 samples, 0.03%)</title><rect x="825.7" y="325" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="828.66" y="335.5" ></text>
</g>
<g >
<title>ExtendCommitTs (2,574,577,980 samples, 0.03%)</title><rect x="365.0" y="309" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="367.97" y="319.5" ></text>
</g>
<g >
<title>register_seq_scan (852,136,044 samples, 0.01%)</title><rect x="473.2" y="485" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="476.15" y="495.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (64,664,044,868 samples, 0.68%)</title><rect x="482.7" y="437" width="8.0" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="485.72" y="447.5" ></text>
</g>
<g >
<title>create_plan_recurse (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="533" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="89.91" y="543.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,248,726,048 samples, 0.02%)</title><rect x="869.7" y="453" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="872.66" y="463.5" ></text>
</g>
<g >
<title>CleanUpLock (9,613,407,826 samples, 0.10%)</title><rect x="518.5" y="453" width="1.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text  x="521.54" y="463.5" ></text>
</g>
<g >
<title>_bt_checkkeys (2,002,016,725 samples, 0.02%)</title><rect x="1158.9" y="277" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1161.90" y="287.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (1,036,349,575 samples, 0.01%)</title><rect x="298.2" y="261" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="301.23" y="271.5" ></text>
</g>
<g >
<title>__schedule (1,099,952,697 samples, 0.01%)</title><rect x="496.9" y="277" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="499.88" y="287.5" ></text>
</g>
<g >
<title>palloc0 (3,581,012,093 samples, 0.04%)</title><rect x="1116.7" y="709" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1119.66" y="719.5" ></text>
</g>
<g >
<title>hash_search (6,910,862,501 samples, 0.07%)</title><rect x="373.9" y="277" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="376.87" y="287.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,175,301,248 samples, 0.01%)</title><rect x="1111.6" y="693" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="1114.57" y="703.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (4,308,763,817 samples, 0.05%)</title><rect x="375.7" y="325" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="378.72" y="335.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (2,699,016,652 samples, 0.03%)</title><rect x="126.9" y="229" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="129.89" y="239.5" ></text>
</g>
<g >
<title>AllocSetCheck (1,252,055,832 samples, 0.01%)</title><rect x="225.9" y="485" width="0.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="228.89" y="495.5" ></text>
</g>
<g >
<title>CommitTransaction (1,707,912,138 samples, 0.02%)</title><rect x="38.8" y="757" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="41.84" y="767.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (1,635,519,883 samples, 0.02%)</title><rect x="996.3" y="277" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="999.32" y="287.5" ></text>
</g>
<g >
<title>BuildUpdateIndexInfo (7,366,556,829 samples, 0.08%)</title><rect x="345.0" y="405" width="0.9" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="348.02" y="415.5" ></text>
</g>
<g >
<title>AllocSetCheck (106,507,653,084 samples, 1.12%)</title><rect x="136.5" y="549" width="13.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="139.47" y="559.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (29,928,058,260 samples, 0.32%)</title><rect x="196.7" y="389" width="3.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="199.66" y="399.5" ></text>
</g>
<g >
<title>LWLockAcquire (966,676,862 samples, 0.01%)</title><rect x="125.5" y="213" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="128.48" y="223.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (860,361,082 samples, 0.01%)</title><rect x="355.3" y="245" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="358.31" y="255.5" ></text>
</g>
<g >
<title>bms_copy (1,871,027,893 samples, 0.02%)</title><rect x="358.3" y="373" width="0.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="361.31" y="383.5" ></text>
</g>
<g >
<title>_bt_getroot (840,928,765 samples, 0.01%)</title><rect x="130.2" y="757" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="133.16" y="767.5" ></text>
</g>
<g >
<title>index_getnext_tid (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="341" width="1.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="126.99" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,192,291,137 samples, 0.01%)</title><rect x="165.5" y="293" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="168.51" y="303.5" ></text>
</g>
<g >
<title>relation_open (14,836,972,792 samples, 0.16%)</title><rect x="947.1" y="389" width="1.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="950.13" y="399.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,004,261,240 samples, 0.01%)</title><rect x="341.3" y="197" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="344.26" y="207.5" ></text>
</g>
<g >
<title>expand_function_arguments (1,026,391,396 samples, 0.01%)</title><rect x="1056.1" y="421" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1059.05" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (872,871,344 samples, 0.01%)</title><rect x="835.4" y="405" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="838.40" y="415.5" ></text>
</g>
<g >
<title>StartReadBuffer (1,220,476,765 samples, 0.01%)</title><rect x="125.8" y="197" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="128.76" y="207.5" ></text>
</g>
<g >
<title>max_parallel_hazard_walker (13,454,344,990 samples, 0.14%)</title><rect x="916.6" y="437" width="1.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="919.60" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (1,346,959,812 samples, 0.01%)</title><rect x="1000.2" y="261" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1003.22" y="271.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,398,732,473 samples, 0.01%)</title><rect x="831.7" y="357" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="834.67" y="367.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (4,182,860,317 samples, 0.04%)</title><rect x="24.9" y="741" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="27.85" y="751.5" ></text>
</g>
<g >
<title>pfree (1,750,361,070 samples, 0.02%)</title><rect x="1000.2" y="277" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1003.20" y="287.5" ></text>
</g>
<g >
<title>enqueue_entity (2,221,106,605 samples, 0.02%)</title><rect x="206.6" y="277" width="0.3" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="209.59" y="287.5" ></text>
</g>
<g >
<title>__schedule (105,810,841,434 samples, 1.11%)</title><rect x="161.7" y="357" width="13.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="164.73" y="367.5" ></text>
</g>
<g >
<title>SS_finalize_plan (47,533,412,020 samples, 0.50%)</title><rect x="877.2" y="517" width="5.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="880.22" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,119,189,571 samples, 0.01%)</title><rect x="841.5" y="309" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="844.48" y="319.5" ></text>
</g>
<g >
<title>lappend (2,549,438,143 samples, 0.03%)</title><rect x="447.0" y="389" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="450.04" y="399.5" ></text>
</g>
<g >
<title>secure_write (835,161,170 samples, 0.01%)</title><rect x="1177.8" y="757" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1180.78" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,165,371,183 samples, 0.01%)</title><rect x="457.7" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="460.74" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (169,088,446,031 samples, 1.78%)</title><rect x="156.5" y="453" width="21.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="159.47" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,774,903,522 samples, 0.02%)</title><rect x="947.3" y="309" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="950.34" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (886,416,193 samples, 0.01%)</title><rect x="440.9" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="443.89" y="367.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (3,384,950,319 samples, 0.04%)</title><rect x="901.9" y="373" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="904.85" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,927,590,917 samples, 0.02%)</title><rect x="880.9" y="421" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="883.92" y="431.5" ></text>
</g>
<g >
<title>_bt_first (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="309" width="1.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="126.99" y="319.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,094,972,911 samples, 0.01%)</title><rect x="700.4" y="485" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="703.40" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,890,853,492 samples, 0.03%)</title><rect x="886.4" y="373" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="889.41" y="383.5" ></text>
</g>
<g >
<title>ExecInitResultTypeTL (36,294,385,815 samples, 0.38%)</title><rect x="441.4" y="421" width="4.6" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="444.44" y="431.5" ></text>
</g>
<g >
<title>newNode (3,496,490,167 samples, 0.04%)</title><rect x="431.9" y="357" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="434.92" y="367.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (1,310,856,530 samples, 0.01%)</title><rect x="302.1" y="117" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="305.09" y="127.5" ></text>
</g>
<g >
<title>CreateExprContext (10,051,582,799 samples, 0.11%)</title><rect x="272.2" y="405" width="1.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="275.22" y="415.5" ></text>
</g>
<g >
<title>list_delete_nth_cell (3,900,739,408 samples, 0.04%)</title><rect x="254.1" y="437" width="0.5" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="257.08" y="447.5" ></text>
</g>
<g >
<title>tick_nohz_handler (1,480,325,505 samples, 0.02%)</title><rect x="757.4" y="437" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="760.38" y="447.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (10,262,152,788 samples, 0.11%)</title><rect x="146.1" y="533" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="149.13" y="543.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,302,341,976 samples, 0.01%)</title><rect x="1134.9" y="581" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1137.90" y="591.5" ></text>
</g>
<g >
<title>newNode (24,025,311,080 samples, 0.25%)</title><rect x="1047.7" y="501" width="3.0" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1050.74" y="511.5" ></text>
</g>
<g >
<title>FastPathUnGrantRelationLock (19,978,046,467 samples, 0.21%)</title><rect x="519.7" y="453" width="2.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="522.73" y="463.5" ></text>
</g>
<g >
<title>IndexNext (414,550,658,632 samples, 4.36%)</title><rect x="291.9" y="341" width="51.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="294.94" y="351.5" >Index..</text>
</g>
<g >
<title>_int_malloc (1,845,629,268 samples, 0.02%)</title><rect x="280.8" y="309" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="283.76" y="319.5" ></text>
</g>
<g >
<title>att_isnull (1,107,956,378 samples, 0.01%)</title><rect x="1085.2" y="757" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1088.20" y="767.5" ></text>
</g>
<g >
<title>ExecProcNode (55,519,487,286 samples, 0.58%)</title><rect x="95.7" y="565" width="6.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="98.68" y="575.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (3,904,739,205 samples, 0.04%)</title><rect x="1012.2" y="293" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1015.24" y="303.5" ></text>
</g>
<g >
<title>palloc0 (3,411,183,006 samples, 0.04%)</title><rect x="212.9" y="549" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="215.92" y="559.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (860,475,275 samples, 0.01%)</title><rect x="280.0" y="341" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="283.01" y="351.5" ></text>
</g>
<g >
<title>palloc0 (2,850,685,598 samples, 0.03%)</title><rect x="976.1" y="421" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="979.09" y="431.5" ></text>
</g>
<g >
<title>gup_fast_pte_range (1,017,358,232 samples, 0.01%)</title><rect x="367.0" y="69" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="370.04" y="79.5" ></text>
</g>
<g >
<title>xas_start (2,109,747,953 samples, 0.02%)</title><rect x="505.4" y="293" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="508.43" y="303.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,234,207,871 samples, 0.01%)</title><rect x="90.8" y="757" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="93.81" y="767.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,425,280,107 samples, 0.02%)</title><rect x="866.6" y="469" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="869.58" y="479.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (15,531,807,651 samples, 0.16%)</title><rect x="124.0" y="549" width="1.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="126.99" y="559.5" ></text>
</g>
<g >
<title>IsInParallelMode (1,061,870,314 samples, 0.01%)</title><rect x="54.8" y="757" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="57.82" y="767.5" ></text>
</g>
<g >
<title>restriction_is_always_false (1,344,629,198 samples, 0.01%)</title><rect x="980.9" y="405" width="0.1" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text  x="983.86" y="415.5" ></text>
</g>
<g >
<title>postmaster_child_launch (22,701,609,115 samples, 0.24%)</title><rect x="84.3" y="709" width="2.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="87.32" y="719.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (1,643,910,278 samples, 0.02%)</title><rect x="446.5" y="341" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="449.50" y="351.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,542,720,607 samples, 0.02%)</title><rect x="1066.5" y="389" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1069.49" y="399.5" ></text>
</g>
<g >
<title>tick_nohz_handler (870,876,914 samples, 0.01%)</title><rect x="700.4" y="437" width="0.1" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="703.41" y="447.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,582,288,439 samples, 0.02%)</title><rect x="941.5" y="325" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="944.53" y="335.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,203,969,060 samples, 0.01%)</title><rect x="126.2" y="421" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="129.16" y="431.5" ></text>
</g>
<g >
<title>canonicalize_qual (1,332,785,224 samples, 0.01%)</title><rect x="1054.1" y="469" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="1057.12" y="479.5" ></text>
</g>
<g >
<title>palloc (2,267,575,081 samples, 0.02%)</title><rect x="880.9" y="437" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="883.88" y="447.5" ></text>
</g>
<g >
<title>transformColumnRef (11,705,737,090 samples, 0.12%)</title><rect x="841.6" y="373" width="1.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="844.63" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,085,768,088 samples, 0.01%)</title><rect x="369.9" y="197" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="372.95" y="207.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,332,870,859 samples, 0.01%)</title><rect x="459.9" y="453" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="462.92" y="463.5" ></text>
</g>
<g >
<title>ExecScan (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="405" width="1.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="129.31" y="415.5" ></text>
</g>
<g >
<title>tick_nohz_handler (4,451,406,526 samples, 0.05%)</title><rect x="758.0" y="453" width="0.6" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="761.00" y="463.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,302,341,976 samples, 0.01%)</title><rect x="1134.9" y="725" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1137.90" y="735.5" ></text>
</g>
<g >
<title>pg_comp_crc32c_sse42 (4,556,563,730 samples, 0.05%)</title><rect x="391.2" y="309" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="394.23" y="319.5" ></text>
</g>
<g >
<title>XLogFlush (242,445,079,296 samples, 2.55%)</title><rect x="480.8" y="501" width="30.1" height="15.0" fill="rgb(251,213,50)" rx="2" ry="2" />
<text  x="483.78" y="511.5" >XL..</text>
</g>
<g >
<title>check_list_invariants (823,689,930 samples, 0.01%)</title><rect x="1154.8" y="741" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1157.75" y="751.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (30,053,645,816 samples, 0.32%)</title><rect x="491.4" y="437" width="3.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="494.37" y="447.5" ></text>
</g>
<g >
<title>get_futex_key (1,468,602,696 samples, 0.02%)</title><rect x="367.9" y="149" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="370.95" y="159.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (1,616,880,660 samples, 0.02%)</title><rect x="113.2" y="741" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="116.17" y="751.5" ></text>
</g>
<g >
<title>DatumGetObjectId (1,251,981,651 samples, 0.01%)</title><rect x="40.9" y="757" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="43.90" y="767.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (3,002,874,428 samples, 0.03%)</title><rect x="484.7" y="277" width="0.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="487.70" y="287.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,083,061,574 samples, 0.02%)</title><rect x="449.3" y="357" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="452.29" y="367.5" ></text>
</g>
<g >
<title>ExecEndNode (65,022,561,986 samples, 0.68%)</title><rect x="240.6" y="453" width="8.1" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="243.59" y="463.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTupleCommon (1,029,877,019 samples, 0.01%)</title><rect x="37.5" y="757" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="40.51" y="767.5" ></text>
</g>
<g >
<title>add_path (12,654,368,477 samples, 0.13%)</title><rect x="991.5" y="373" width="1.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="994.54" y="383.5" ></text>
</g>
<g >
<title>RangeVarGetRelidExtended (77,836,027,295 samples, 0.82%)</title><rect x="820.7" y="421" width="9.7" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="823.69" y="431.5" ></text>
</g>
<g >
<title>hash_search (14,621,010,854 samples, 0.15%)</title><rect x="1064.0" y="469" width="1.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1067.02" y="479.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,086,843,988 samples, 0.03%)</title><rect x="1046.9" y="405" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1049.95" y="415.5" ></text>
</g>
<g >
<title>dlist_is_empty (1,718,059,754 samples, 0.02%)</title><rect x="1133.0" y="757" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1136.02" y="767.5" ></text>
</g>
<g >
<title>pfree (4,119,154,877 samples, 0.04%)</title><rect x="1167.1" y="757" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1170.06" y="767.5" ></text>
</g>
<g >
<title>newNode (5,277,492,908 samples, 0.06%)</title><rect x="819.4" y="453" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="822.39" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_read_u64_impl (940,847,819 samples, 0.01%)</title><rect x="508.9" y="453" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="511.91" y="463.5" ></text>
</g>
<g >
<title>hash_bytes (4,378,385,995 samples, 0.05%)</title><rect x="1066.7" y="373" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1069.68" y="383.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (829,036,178 samples, 0.01%)</title><rect x="98.7" y="133" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="101.70" y="143.5" ></text>
</g>
<g >
<title>generate_base_implied_equalities (21,566,085,089 samples, 0.23%)</title><rect x="978.8" y="469" width="2.7" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="981.83" y="479.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (1,798,680,845 samples, 0.02%)</title><rect x="50.6" y="757" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="53.62" y="767.5" ></text>
</g>
<g >
<title>BufferGetPage (976,646,974 samples, 0.01%)</title><rect x="363.4" y="357" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="366.38" y="367.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (3,053,814,047 samples, 0.03%)</title><rect x="355.9" y="277" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="358.90" y="287.5" ></text>
</g>
<g >
<title>enforce_generic_type_consistency (805,557,954 samples, 0.01%)</title><rect x="836.6" y="373" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="839.61" y="383.5" ></text>
</g>
<g >
<title>makeTargetEntry (3,368,931,210 samples, 0.04%)</title><rect x="835.6" y="437" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="838.59" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3,101,695,727 samples, 0.03%)</title><rect x="795.7" y="469" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="798.73" y="479.5" ></text>
</g>
<g >
<title>finish_spin_delay (846,074,828 samples, 0.01%)</title><rect x="1139.0" y="757" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1142.02" y="767.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,510,786,482 samples, 0.03%)</title><rect x="125.2" y="229" width="0.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="128.17" y="239.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (1,557,139,665 samples, 0.02%)</title><rect x="471.6" y="517" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="474.58" y="527.5" ></text>
</g>
<g >
<title>new_list (1,530,244,283 samples, 0.02%)</title><rect x="1019.0" y="325" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1022.03" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (808,372,747 samples, 0.01%)</title><rect x="340.0" y="197" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="343.03" y="207.5" ></text>
</g>
<g >
<title>addRTEPermissionInfo (4,985,693,855 samples, 0.05%)</title><rect x="896.6" y="469" width="0.6" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="899.59" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,241,928,639 samples, 0.01%)</title><rect x="920.0" y="437" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="923.01" y="447.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (1,145,995,108 samples, 0.01%)</title><rect x="326.5" y="181" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="329.53" y="191.5" ></text>
</g>
<g >
<title>PortalRunMulti (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="613" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1161.90" y="623.5" ></text>
</g>
<g >
<title>fireRIRrules (47,954,846,959 samples, 0.50%)</title><rect x="864.4" y="533" width="5.9" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="867.38" y="543.5" ></text>
</g>
<g >
<title>BufTableHashCode (3,127,738,881 samples, 0.03%)</title><rect x="300.1" y="133" width="0.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="303.13" y="143.5" ></text>
</g>
<g >
<title>new_list (2,344,286,730 samples, 0.02%)</title><rect x="944.0" y="389" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="946.97" y="399.5" ></text>
</g>
<g >
<title>new_list (1,307,582,965 samples, 0.01%)</title><rect x="899.7" y="453" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="902.65" y="463.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (3,142,226,571 samples, 0.03%)</title><rect x="410.6" y="421" width="0.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="413.58" y="431.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,765,919,164 samples, 0.02%)</title><rect x="463.8" y="533" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="466.82" y="543.5" ></text>
</g>
<g >
<title>LockHeldByMe (10,678,874,079 samples, 0.11%)</title><rect x="947.2" y="357" width="1.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="950.19" y="367.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,307,280,234 samples, 0.01%)</title><rect x="1015.9" y="261" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1018.86" y="271.5" ></text>
</g>
<g >
<title>palloc0 (6,446,349,723 samples, 0.07%)</title><rect x="412.8" y="469" width="0.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="415.78" y="479.5" ></text>
</g>
<g >
<title>rint@plt (849,702,568 samples, 0.01%)</title><rect x="938.7" y="341" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="941.71" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,420,217,013 samples, 0.01%)</title><rect x="870.5" y="485" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="873.55" y="495.5" ></text>
</g>
<g >
<title>fireBSTriggers (953,915,431 samples, 0.01%)</title><rect x="1139.2" y="757" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1142.17" y="767.5" ></text>
</g>
<g >
<title>AllocSetFree (2,273,793,883 samples, 0.02%)</title><rect x="436.9" y="389" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="439.87" y="399.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (1,587,707,298 samples, 0.02%)</title><rect x="127.6" y="181" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="130.55" y="191.5" ></text>
</g>
<g >
<title>planner (2,204,184,953 samples, 0.02%)</title><rect x="128.2" y="565" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="131.20" y="575.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (4,101,929,631 samples, 0.04%)</title><rect x="226.3" y="565" width="0.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="229.26" y="575.5" ></text>
</g>
<g >
<title>AllocSetAlloc (972,279,135 samples, 0.01%)</title><rect x="949.7" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="952.72" y="399.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,203,969,060 samples, 0.01%)</title><rect x="126.2" y="437" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="129.16" y="447.5" ></text>
</g>
<g >
<title>TransactionIdSetPageStatusInternal (923,544,865 samples, 0.01%)</title><rect x="478.9" y="437" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="481.95" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,079,964,508 samples, 0.01%)</title><rect x="872.5" y="485" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="875.54" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,060,847,647 samples, 0.01%)</title><rect x="838.0" y="341" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="841.02" y="351.5" ></text>
</g>
<g >
<title>consume_skb (17,407,689,318 samples, 0.18%)</title><rect x="181.9" y="373" width="2.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="184.94" y="383.5" ></text>
</g>
<g >
<title>index_fetch_heap (136,159,990,272 samples, 1.43%)</title><rect x="296.6" y="309" width="16.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="299.55" y="319.5" ></text>
</g>
<g >
<title>EndCommand (16,187,831,597 samples, 0.17%)</title><rect x="217.5" y="581" width="2.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="220.52" y="591.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (1,336,245,085 samples, 0.01%)</title><rect x="31.4" y="757" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="34.40" y="767.5" ></text>
</g>
<g >
<title>palloc (889,215,306 samples, 0.01%)</title><rect x="968.7" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="971.68" y="351.5" ></text>
</g>
<g >
<title>list_delete_nth_cell (2,645,562,410 samples, 0.03%)</title><rect x="992.4" y="357" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="995.37" y="367.5" ></text>
</g>
<g >
<title>scanNSItemForColumn (9,339,694,682 samples, 0.10%)</title><rect x="841.9" y="341" width="1.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="844.88" y="351.5" ></text>
</g>
<g >
<title>newNode (2,586,926,609 samples, 0.03%)</title><rect x="921.9" y="437" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="924.91" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,277,894,642 samples, 0.01%)</title><rect x="977.2" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="980.17" y="431.5" ></text>
</g>
<g >
<title>bms_add_members (1,796,598,677 samples, 0.02%)</title><rect x="974.2" y="437" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="977.21" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (884,017,872 samples, 0.01%)</title><rect x="481.6" y="437" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="484.61" y="447.5" ></text>
</g>
<g >
<title>_bt_drop_lock_and_maybe_pin (19,161,805,025 samples, 0.20%)</title><rect x="324.9" y="245" width="2.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="327.86" y="255.5" ></text>
</g>
<g >
<title>_bt_binsrch (41,571,791,019 samples, 0.44%)</title><rect x="331.1" y="245" width="5.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="334.10" y="255.5" ></text>
</g>
<g >
<title>palloc0 (2,889,692,874 samples, 0.03%)</title><rect x="1118.9" y="693" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1121.88" y="703.5" ></text>
</g>
<g >
<title>AssertBufferLocksPermitCatalogRead (3,216,537,284 samples, 0.03%)</title><rect x="29.9" y="757" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="32.89" y="767.5" ></text>
</g>
<g >
<title>pfree (1,756,431,581 samples, 0.02%)</title><rect x="248.4" y="373" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="251.40" y="383.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (3,262,946,556 samples, 0.03%)</title><rect x="124.8" y="197" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="127.77" y="207.5" ></text>
</g>
<g >
<title>get_quals_from_indexclauses (5,627,191,605 samples, 0.06%)</title><rect x="1011.5" y="293" width="0.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1014.54" y="303.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (2,652,178,857 samples, 0.03%)</title><rect x="302.7" y="149" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="305.67" y="159.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,940,033,097 samples, 0.02%)</title><rect x="868.2" y="389" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="871.19" y="399.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (2,445,628,252 samples, 0.03%)</title><rect x="485.1" y="245" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="488.14" y="255.5" ></text>
</g>
<g >
<title>index_insert_cleanup (1,565,966,003 samples, 0.02%)</title><rect x="239.8" y="453" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="242.79" y="463.5" ></text>
</g>
<g >
<title>palloc (1,487,811,388 samples, 0.02%)</title><rect x="953.4" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="956.37" y="415.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (846,366,649 samples, 0.01%)</title><rect x="350.2" y="261" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="353.17" y="271.5" ></text>
</g>
<g >
<title>ep_done_scan (2,646,496,910 samples, 0.03%)</title><rect x="158.8" y="373" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="161.82" y="383.5" ></text>
</g>
<g >
<title>SearchCatCache1 (5,306,197,840 samples, 0.06%)</title><rect x="850.1" y="373" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="853.15" y="383.5" ></text>
</g>
<g >
<title>XLogWrite (855,056,365 samples, 0.01%)</title><rect x="111.6" y="757" width="0.1" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text  x="114.63" y="767.5" ></text>
</g>
<g >
<title>hash_bytes (2,914,449,362 samples, 0.03%)</title><rect x="402.3" y="293" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="405.26" y="303.5" ></text>
</g>
<g >
<title>replace_nestloop_params (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="389" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="128.92" y="399.5" ></text>
</g>
<g >
<title>_bt_readpage (2,002,016,725 samples, 0.02%)</title><rect x="1158.9" y="293" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1161.90" y="303.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (2,803,085,885 samples, 0.03%)</title><rect x="389.3" y="229" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="392.30" y="239.5" ></text>
</g>
<g >
<title>lappend (4,279,738,330 samples, 0.05%)</title><rect x="890.9" y="373" width="0.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="893.93" y="383.5" ></text>
</g>
<g >
<title>palloc0 (3,567,865,744 samples, 0.04%)</title><rect x="945.6" y="405" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="948.56" y="415.5" ></text>
</g>
<g >
<title>wake_up_q (1,598,667,031 samples, 0.02%)</title><rect x="376.0" y="181" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="378.96" y="191.5" ></text>
</g>
<g >
<title>ExtendCommitTs (937,708,298 samples, 0.01%)</title><rect x="47.0" y="757" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="49.95" y="767.5" ></text>
</g>
<g >
<title>PortalRun (55,519,487,286 samples, 0.58%)</title><rect x="95.7" y="661" width="6.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="98.68" y="671.5" ></text>
</g>
<g >
<title>palloc (828,055,787 samples, 0.01%)</title><rect x="885.9" y="389" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="888.89" y="399.5" ></text>
</g>
<g >
<title>BufferIsDirty (4,051,898,174 samples, 0.04%)</title><rect x="393.3" y="325" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="396.25" y="335.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (913,397,512 samples, 0.01%)</title><rect x="1066.1" y="437" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1069.11" y="447.5" ></text>
</g>
<g >
<title>palloc (1,426,352,211 samples, 0.02%)</title><rect x="883.3" y="485" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="886.28" y="495.5" ></text>
</g>
<g >
<title>is_andclause (1,384,087,670 samples, 0.01%)</title><rect x="1153.0" y="757" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1155.97" y="767.5" ></text>
</g>
<g >
<title>new_list (1,145,970,129 samples, 0.01%)</title><rect x="885.9" y="405" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="888.86" y="415.5" ></text>
</g>
<g >
<title>finalize_plan (1,348,028,978 samples, 0.01%)</title><rect x="1138.3" y="757" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1141.33" y="767.5" ></text>
</g>
<g >
<title>_bt_check_natts (1,835,845,779 samples, 0.02%)</title><rect x="129.1" y="757" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text  x="132.11" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,202,706,917 samples, 0.01%)</title><rect x="982.7" y="389" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="985.68" y="399.5" ></text>
</g>
<g >
<title>lappend (1,702,059,381 samples, 0.02%)</title><rect x="897.6" y="469" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="900.58" y="479.5" ></text>
</g>
<g >
<title>new_list (2,523,211,542 samples, 0.03%)</title><rect x="1011.9" y="261" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1014.93" y="271.5" ></text>
</g>
<g >
<title>heapam_tuple_update (360,088,443,077 samples, 3.79%)</title><rect x="350.8" y="389" width="44.7" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="353.81" y="399.5" >heap..</text>
</g>
<g >
<title>TupleDescCompactAttr (2,549,935,098 samples, 0.03%)</title><rect x="360.8" y="341" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="363.80" y="351.5" ></text>
</g>
<g >
<title>transformOptionalSelectInto (432,794,894,788 samples, 4.56%)</title><rect x="804.7" y="533" width="53.8" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="807.72" y="543.5" >trans..</text>
</g>
<g >
<title>palloc0 (1,592,855,321 samples, 0.02%)</title><rect x="277.1" y="373" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="280.10" y="383.5" ></text>
</g>
<g >
<title>gup_fast_fallback (1,716,567,282 samples, 0.02%)</title><rect x="367.0" y="117" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="369.95" y="127.5" ></text>
</g>
<g >
<title>fix_indexqual_references (25,955,712,057 samples, 0.27%)</title><rect x="888.2" y="389" width="3.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="891.24" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,218,387,641 samples, 0.03%)</title><rect x="1084.0" y="757" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1087.01" y="767.5" ></text>
</g>
<g >
<title>palloc0 (3,300,538,546 samples, 0.03%)</title><rect x="1043.7" y="453" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1046.70" y="463.5" ></text>
</g>
<g >
<title>transformWhereClause (112,774,182,229 samples, 1.19%)</title><rect x="844.5" y="485" width="14.0" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="847.47" y="495.5" ></text>
</g>
<g >
<title>RegisterSnapshot (1,335,700,270 samples, 0.01%)</title><rect x="460.2" y="501" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="463.17" y="511.5" ></text>
</g>
<g >
<title>relation_close (1,416,987,912 samples, 0.01%)</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.91" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (888,058,262 samples, 0.01%)</title><rect x="930.6" y="357" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="933.61" y="367.5" ></text>
</g>
<g >
<title>core_yyalloc (972,616,847 samples, 0.01%)</title><rect x="1129.4" y="757" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1132.39" y="767.5" ></text>
</g>
<g >
<title>ExecInitExprRec (847,797,546 samples, 0.01%)</title><rect x="439.2" y="373" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="442.16" y="383.5" ></text>
</g>
<g >
<title>newNode (2,614,686,117 samples, 0.03%)</title><rect x="849.7" y="405" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="852.69" y="415.5" ></text>
</g>
<g >
<title>PostgresMain (3,415,261,054 samples, 0.04%)</title><rect x="1158.9" y="661" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1161.90" y="671.5" ></text>
</g>
<g >
<title>_raw_spin_lock (930,113,168 samples, 0.01%)</title><rect x="201.9" y="293" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="204.87" y="303.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (924,851,775 samples, 0.01%)</title><rect x="1134.9" y="565" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1137.90" y="575.5" ></text>
</g>
<g >
<title>palloc0 (2,700,416,501 samples, 0.03%)</title><rect x="878.3" y="453" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="881.29" y="463.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (1,228,776,442 samples, 0.01%)</title><rect x="436.6" y="373" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="439.62" y="383.5" ></text>
</g>
<g >
<title>_bt_getroot (1,853,327,073 samples, 0.02%)</title><rect x="127.8" y="261" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="130.76" y="271.5" ></text>
</g>
<g >
<title>XLogInsert (22,230,827,455 samples, 0.23%)</title><rect x="511.6" y="485" width="2.8" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="514.64" y="495.5" ></text>
</g>
<g >
<title>build_index_paths (198,854,069,398 samples, 2.09%)</title><rect x="993.1" y="373" width="24.7" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="996.12" y="383.5" >b..</text>
</g>
<g >
<title>relation_open (14,417,655,788 samples, 0.15%)</title><rect x="401.6" y="373" width="1.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="404.60" y="383.5" ></text>
</g>
<g >
<title>__x64_sys_fdatasync (2,711,704,930 samples, 0.03%)</title><rect x="507.7" y="389" width="0.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="510.73" y="399.5" ></text>
</g>
<g >
<title>is_valid_ascii (4,452,065,626 samples, 0.05%)</title><rect x="1081.3" y="517" width="0.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1084.26" y="527.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,307,206,475 samples, 0.01%)</title><rect x="819.1" y="405" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="822.11" y="415.5" ></text>
</g>
<g >
<title>fput (986,021,142 samples, 0.01%)</title><rect x="159.6" y="357" width="0.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="162.57" y="367.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (2,285,427,510 samples, 0.02%)</title><rect x="272.4" y="373" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="275.44" y="383.5" ></text>
</g>
<g >
<title>yy_get_next_buffer (1,378,517,711 samples, 0.01%)</title><rect x="1113.6" y="709" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1116.63" y="719.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,150,244,547 samples, 0.01%)</title><rect x="1173.6" y="725" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1176.62" y="735.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (2,838,145,237 samples, 0.03%)</title><rect x="460.7" y="501" width="0.3" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="463.69" y="511.5" ></text>
</g>
<g >
<title>core_yyensure_buffer_stack (2,958,333,713 samples, 0.03%)</title><rect x="872.1" y="501" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="875.12" y="511.5" ></text>
</g>
<g >
<title>obj_cgroup_charge_account (1,483,537,421 samples, 0.02%)</title><rect x="200.2" y="325" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="203.16" y="335.5" ></text>
</g>
<g >
<title>RelationClose (1,219,841,811 samples, 0.01%)</title><rect x="946.9" y="373" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="949.95" y="383.5" ></text>
</g>
<g >
<title>free_parsestate (5,667,331,642 samples, 0.06%)</title><rect x="803.0" y="549" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="806.04" y="559.5" ></text>
</g>
<g >
<title>IndexNext (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="389" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1161.90" y="399.5" ></text>
</g>
<g >
<title>simplify_function (971,078,648 samples, 0.01%)</title><rect x="128.4" y="453" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="131.36" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,257,991,570 samples, 0.02%)</title><rect x="943.4" y="341" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="946.37" y="351.5" ></text>
</g>
<g >
<title>AllocSetDelete (80,246,583,800 samples, 0.84%)</title><rect x="255.2" y="453" width="10.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="258.19" y="463.5" ></text>
</g>
<g >
<title>do_futex (1,637,483,053 samples, 0.02%)</title><rect x="496.9" y="357" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="499.86" y="367.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (962,621,502 samples, 0.01%)</title><rect x="112.3" y="741" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="115.26" y="751.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,494,513,226 samples, 0.04%)</title><rect x="1046.9" y="421" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1049.90" y="431.5" ></text>
</g>
<g >
<title>TidQualFromRestrictInfoList (985,908,506 samples, 0.01%)</title><rect x="107.2" y="757" width="0.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="110.20" y="767.5" ></text>
</g>
<g >
<title>TransactionIdDidCommit (6,834,045,459 samples, 0.07%)</title><rect x="1147.9" y="693" width="0.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1150.94" y="703.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,081,503,302 samples, 0.01%)</title><rect x="1077.3" y="485" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1080.32" y="495.5" ></text>
</g>
<g >
<title>AllocSetFree (1,939,611,982 samples, 0.02%)</title><rect x="189.5" y="549" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="192.47" y="559.5" ></text>
</g>
<g >
<title>new_list (1,195,319,033 samples, 0.01%)</title><rect x="837.6" y="357" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="840.64" y="367.5" ></text>
</g>
<g >
<title>ExecSetupTransitionCaptureState (916,580,491 samples, 0.01%)</title><rect x="456.9" y="453" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="459.90" y="463.5" ></text>
</g>
<g >
<title>ReleaseCatCache (807,592,620 samples, 0.01%)</title><rect x="1040.4" y="341" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1043.37" y="351.5" ></text>
</g>
<g >
<title>ReleaseCatCache (806,247,750 samples, 0.01%)</title><rect x="1055.3" y="405" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1058.34" y="415.5" ></text>
</g>
<g >
<title>list_make1_impl (6,760,858,207 samples, 0.07%)</title><rect x="918.4" y="485" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="921.43" y="495.5" ></text>
</g>
<g >
<title>index_getnext_slot (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="389" width="2.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="87.32" y="399.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,576,409,287 samples, 0.02%)</title><rect x="1010.2" y="245" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1013.22" y="255.5" ></text>
</g>
<g >
<title>btendscan (50,966,429,185 samples, 0.54%)</title><rect x="241.9" y="405" width="6.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="244.89" y="415.5" ></text>
</g>
<g >
<title>exprType (1,364,967,939 samples, 0.01%)</title><rect x="1136.0" y="757" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1138.95" y="767.5" ></text>
</g>
<g >
<title>list_copy (3,746,918,873 samples, 0.04%)</title><rect x="931.0" y="389" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="934.01" y="399.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (35,446,177,013 samples, 0.37%)</title><rect x="219.6" y="581" width="4.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="222.63" y="591.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,570,743,990 samples, 0.05%)</title><rect x="807.7" y="357" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="810.71" y="367.5" ></text>
</g>
<g >
<title>wipe_mem (888,410,258 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.67" y="767.5" ></text>
</g>
<g >
<title>LockAcquireExtended (7,509,499,670 samples, 0.08%)</title><rect x="401.7" y="341" width="0.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="404.69" y="351.5" ></text>
</g>
<g >
<title>BufferGetPage (1,001,816,223 samples, 0.01%)</title><rect x="325.2" y="213" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="328.17" y="223.5" ></text>
</g>
<g >
<title>new_list (1,771,169,428 samples, 0.02%)</title><rect x="976.7" y="405" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="979.69" y="415.5" ></text>
</g>
<g >
<title>_bt_getbuf (9,892,389,053 samples, 0.10%)</title><rect x="336.9" y="229" width="1.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="339.95" y="239.5" ></text>
</g>
<g >
<title>create_plan_recurse (61,423,603,293 samples, 0.65%)</title><rect x="885.0" y="469" width="7.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="888.02" y="479.5" ></text>
</g>
<g >
<title>[[vdso]] (1,473,957,784 samples, 0.02%)</title><rect x="111.9" y="757" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="114.86" y="767.5" ></text>
</g>
<g >
<title>list_nth (4,129,774,446 samples, 0.04%)</title><rect x="1157.8" y="757" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1160.77" y="767.5" ></text>
</g>
<g >
<title>get_typcollation (7,654,916,593 samples, 0.08%)</title><rect x="811.0" y="357" width="1.0" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="814.03" y="367.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (4,551,375,165 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.86" y="751.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (14,768,257,788 samples, 0.16%)</title><rect x="1004.9" y="165" width="1.9" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="1007.93" y="175.5" ></text>
</g>
<g >
<title>BufferGetPage (1,168,042,549 samples, 0.01%)</title><rect x="351.7" y="373" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="354.71" y="383.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,764,953,165 samples, 0.02%)</title><rect x="309.3" y="133" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="312.27" y="143.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,617,119,237 samples, 0.03%)</title><rect x="952.6" y="373" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="955.60" y="383.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,107,298,699 samples, 0.01%)</title><rect x="406.2" y="357" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="409.23" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_monotonic_advance_u64 (2,225,920,523 samples, 0.02%)</title><rect x="497.2" y="469" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="500.24" y="479.5" ></text>
</g>
<g >
<title>list_length (11,350,819,798 samples, 0.12%)</title><rect x="1156.1" y="757" width="1.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1159.14" y="767.5" ></text>
</g>
<g >
<title>dequeue_entities (18,098,453,702 samples, 0.19%)</title><rect x="486.5" y="245" width="2.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="489.51" y="255.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (823,428,921 samples, 0.01%)</title><rect x="934.9" y="325" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="937.91" y="335.5" ></text>
</g>
<g >
<title>fetch_search_path_array (939,929,325 samples, 0.01%)</title><rect x="840.8" y="341" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="843.82" y="351.5" ></text>
</g>
<g >
<title>new_list (1,906,420,937 samples, 0.02%)</title><rect x="447.1" y="373" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="450.12" y="383.5" ></text>
</g>
<g >
<title>PortalRunMulti (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="581" width="1.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="129.31" y="591.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (2,541,077,163 samples, 0.03%)</title><rect x="1185.1" y="693" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1188.13" y="703.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (849,642,535 samples, 0.01%)</title><rect x="1056.3" y="405" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1059.29" y="415.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (2,791,509,702 samples, 0.03%)</title><rect x="275.4" y="389" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="278.36" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,115,128,237 samples, 0.01%)</title><rect x="223.7" y="517" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="226.73" y="527.5" ></text>
</g>
<g >
<title>object_aclcheck_ext (1,209,839,797 samples, 0.01%)</title><rect x="428.3" y="309" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="431.33" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,329,175,188 samples, 0.01%)</title><rect x="898.1" y="453" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="901.13" y="463.5" ></text>
</g>
<g >
<title>expand_function_arguments (2,372,926,891 samples, 0.02%)</title><rect x="104.9" y="453" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="107.91" y="463.5" ></text>
</g>
<g >
<title>obj_cgroup_charge_pages (1,098,447,585 samples, 0.01%)</title><rect x="198.2" y="293" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="201.20" y="303.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,391,512,428 samples, 0.01%)</title><rect x="1072.6" y="565" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="1075.64" y="575.5" ></text>
</g>
<g >
<title>palloc (1,150,244,547 samples, 0.01%)</title><rect x="1173.6" y="581" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1176.62" y="591.5" ></text>
</g>
<g >
<title>pgstat_count_heap_update (10,382,258,527 samples, 0.11%)</title><rect x="394.2" y="357" width="1.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="397.20" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,934,024,717 samples, 0.02%)</title><rect x="234.2" y="469" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="237.16" y="479.5" ></text>
</g>
<g >
<title>BufferGetBlock (947,003,842 samples, 0.01%)</title><rect x="338.6" y="213" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="341.60" y="223.5" ></text>
</g>
<g >
<title>pg_client_to_server (1,166,101,651 samples, 0.01%)</title><rect x="1169.5" y="757" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1172.46" y="767.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (1,130,088,407 samples, 0.01%)</title><rect x="159.0" y="357" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="162.01" y="367.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (5,984,151,783 samples, 0.06%)</title><rect x="176.3" y="421" width="0.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="179.31" y="431.5" ></text>
</g>
<g >
<title>hash_search (2,051,266,570 samples, 0.02%)</title><rect x="948.7" y="357" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="951.69" y="367.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (7,455,537,735 samples, 0.08%)</title><rect x="287.7" y="245" width="0.9" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="290.66" y="255.5" ></text>
</g>
<g >
<title>PinBuffer (3,208,331,571 samples, 0.03%)</title><rect x="408.9" y="277" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="411.91" y="287.5" ></text>
</g>
<g >
<title>ExecOpenIndices (39,830,080,297 samples, 0.42%)</title><rect x="399.2" y="405" width="4.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="402.16" y="415.5" ></text>
</g>
<g >
<title>colNameToVar (10,365,370,763 samples, 0.11%)</title><rect x="841.8" y="357" width="1.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="844.75" y="367.5" ></text>
</g>
<g >
<title>pg_plan_queries (1,586,811,688,584 samples, 16.70%)</title><rect x="874.0" y="581" width="197.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="876.98" y="591.5" >pg_plan_queries</text>
</g>
<g >
<title>AllocSetFree (1,089,343,880 samples, 0.01%)</title><rect x="1068.8" y="453" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1071.81" y="463.5" ></text>
</g>
<g >
<title>SearchCatCache (6,040,567,029 samples, 0.06%)</title><rect x="1021.2" y="261" width="0.7" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1024.16" y="271.5" ></text>
</g>
<g >
<title>new_list (1,879,408,270 samples, 0.02%)</title><rect x="980.6" y="389" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="983.63" y="399.5" ></text>
</g>
<g >
<title>ExecProcNode (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="501" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="129.31" y="511.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (2,937,777,304 samples, 0.03%)</title><rect x="149.7" y="549" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="152.70" y="559.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (2,811,815,576 samples, 0.03%)</title><rect x="1158.9" y="469" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1161.90" y="479.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,366,172,720 samples, 0.01%)</title><rect x="1134.9" y="741" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1137.89" y="751.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,346,163,185 samples, 0.01%)</title><rect x="423.3" y="341" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="426.26" y="351.5" ></text>
</g>
<g >
<title>palloc0 (2,421,498,791 samples, 0.03%)</title><rect x="842.2" y="293" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="845.22" y="303.5" ></text>
</g>
<g >
<title>ExecutePlan (1,159,672,037,327 samples, 12.21%)</title><rect x="267.1" y="501" width="144.0" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="270.07" y="511.5" >ExecutePlan</text>
</g>
<g >
<title>CatalogCacheComputeHashValue (968,028,315 samples, 0.01%)</title><rect x="959.9" y="245" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="962.89" y="255.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3,365,339,773 samples, 0.04%)</title><rect x="946.4" y="373" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="949.37" y="383.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (1,682,891,337 samples, 0.02%)</title><rect x="824.8" y="389" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="827.77" y="399.5" ></text>
</g>
<g >
<title>downcase_identifier (10,684,990,481 samples, 0.11%)</title><rect x="1111.9" y="693" width="1.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1114.90" y="703.5" ></text>
</g>
<g >
<title>palloc (1,024,250,758 samples, 0.01%)</title><rect x="919.7" y="437" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="922.69" y="447.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (943,883,885 samples, 0.01%)</title><rect x="236.7" y="485" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="239.70" y="495.5" ></text>
</g>
<g >
<title>pfree (2,137,738,734 samples, 0.02%)</title><rect x="1072.2" y="565" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1075.16" y="575.5" ></text>
</g>
<g >
<title>MarkPortalActive (817,349,718 samples, 0.01%)</title><rect x="59.9" y="757" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="62.90" y="767.5" ></text>
</g>
<g >
<title>newNode (6,345,393,856 samples, 0.07%)</title><rect x="949.1" y="421" width="0.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="952.06" y="431.5" ></text>
</g>
<g >
<title>palloc (2,504,342,000 samples, 0.03%)</title><rect x="990.9" y="325" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="993.89" y="335.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="533" width="3.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="105.66" y="543.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,024,748,466 samples, 0.01%)</title><rect x="375.5" y="341" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="378.51" y="351.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,085,851,288 samples, 0.01%)</title><rect x="94.1" y="757" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="97.12" y="767.5" ></text>
</g>
<g >
<title>exprSetCollation (869,097,649 samples, 0.01%)</title><rect x="809.7" y="357" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="812.69" y="367.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,827,939,197 samples, 0.02%)</title><rect x="1144.6" y="757" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1147.57" y="767.5" ></text>
</g>
<g >
<title>bms_is_member (1,213,294,783 samples, 0.01%)</title><rect x="1011.4" y="245" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="1014.36" y="255.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,422,792,597 samples, 0.04%)</title><rect x="1036.9" y="293" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1039.89" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,174,588,545 samples, 0.02%)</title><rect x="194.8" y="405" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="197.76" y="415.5" ></text>
</g>
<g >
<title>arch_exit_to_user_mode_prepare.isra.0 (6,919,100,808 samples, 0.07%)</title><rect x="175.1" y="437" width="0.9" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="178.13" y="447.5" ></text>
</g>
<g >
<title>unix_destruct_scm (8,787,234,774 samples, 0.09%)</title><rect x="183.0" y="341" width="1.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="186.01" y="351.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (1,207,080,433 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>handle_softirqs (1,206,781,108 samples, 0.01%)</title><rect x="757.8" y="485" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="760.76" y="495.5" ></text>
</g>
<g >
<title>PinBufferForBlock (25,113,249,348 samples, 0.26%)</title><rect x="299.9" y="165" width="3.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="302.88" y="175.5" ></text>
</g>
<g >
<title>fix_indexqual_clause (18,895,327,713 samples, 0.20%)</title><rect x="888.6" y="373" width="2.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="891.58" y="383.5" ></text>
</g>
<g >
<title>update_rq_clock_task (1,840,162,593 samples, 0.02%)</title><rect x="174.6" y="341" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="177.64" y="351.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (873,696,687 samples, 0.01%)</title><rect x="328.9" y="229" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="331.93" y="239.5" ></text>
</g>
<g >
<title>verify_compact_attribute (3,210,254,954 samples, 0.03%)</title><rect x="829.7" y="293" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="832.71" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_thermal (923,566,761 samples, 0.01%)</title><rect x="757.6" y="517" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="760.62" y="527.5" ></text>
</g>
<g >
<title>hash_search (5,467,062,859 samples, 0.06%)</title><rect x="239.1" y="405" width="0.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="242.10" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,247,899,947 samples, 0.01%)</title><rect x="461.6" y="501" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="464.65" y="511.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (5,909,956,055 samples, 0.06%)</title><rect x="150.1" y="549" width="0.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="153.09" y="559.5" ></text>
</g>
<g >
<title>pfree (2,638,862,701 samples, 0.03%)</title><rect x="226.4" y="549" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="229.44" y="559.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,270,760,925 samples, 0.01%)</title><rect x="889.9" y="293" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="892.90" y="303.5" ></text>
</g>
<g >
<title>llseek@GLIBC_2.2.5 (7,326,056,845 samples, 0.08%)</title><rect x="932.1" y="325" width="0.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="935.11" y="335.5" ></text>
</g>
<g >
<title>palloc0 (1,661,697,278 samples, 0.02%)</title><rect x="345.4" y="357" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="348.36" y="367.5" ></text>
</g>
<g >
<title>hash_bytes (2,471,679,304 samples, 0.03%)</title><rect x="96.1" y="133" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="99.12" y="143.5" ></text>
</g>
<g >
<title>check_index_only (19,526,104,321 samples, 0.21%)</title><rect x="994.5" y="357" width="2.5" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="997.53" y="367.5" ></text>
</g>
<g >
<title>get_op_opfamily_strategy (6,971,393,117 samples, 0.07%)</title><rect x="1013.4" y="309" width="0.8" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="1016.36" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,767,825,322 samples, 0.02%)</title><rect x="365.7" y="277" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="368.70" y="287.5" ></text>
</g>
<g >
<title>ExecScan (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="421" width="1.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="126.99" y="431.5" ></text>
</g>
<g >
<title>btcostestimate (1,973,290,642 samples, 0.02%)</title><rect x="1123.6" y="757" width="0.2" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text  x="1126.58" y="767.5" ></text>
</g>
<g >
<title>fetch_upper_rel (1,145,675,810 samples, 0.01%)</title><rect x="907.0" y="501" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="909.98" y="511.5" ></text>
</g>
<g >
<title>bms_copy (2,406,611,456 samples, 0.03%)</title><rect x="459.8" y="485" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="462.79" y="495.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (6,202,508,476 samples, 0.07%)</title><rect x="195.5" y="389" width="0.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="198.53" y="399.5" ></text>
</g>
<g >
<title>ReadBuffer_common (18,501,516,448 samples, 0.19%)</title><rect x="354.0" y="341" width="2.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="356.99" y="351.5" ></text>
</g>
<g >
<title>palloc (1,137,511,697 samples, 0.01%)</title><rect x="835.4" y="421" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="838.37" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,104,816,266 samples, 0.01%)</title><rect x="342.0" y="229" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="344.98" y="239.5" ></text>
</g>
<g >
<title>set_baserel_size_estimates (117,334,772,216 samples, 1.24%)</title><rect x="1027.5" y="405" width="14.6" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1030.53" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_thermal (2,023,790,705 samples, 0.02%)</title><rect x="758.7" y="533" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="761.66" y="543.5" ></text>
</g>
<g >
<title>SetupLockInTable (22,234,294,926 samples, 0.23%)</title><rect x="371.0" y="277" width="2.8" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="374.04" y="287.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (926,009,828 samples, 0.01%)</title><rect x="86.4" y="181" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="89.39" y="191.5" ></text>
</g>
<g >
<title>relation_open (16,023,700,029 samples, 0.17%)</title><rect x="862.4" y="501" width="2.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="865.37" y="511.5" ></text>
</g>
<g >
<title>is_publishable_relation (1,756,663,451 samples, 0.02%)</title><rect x="1153.8" y="757" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1156.84" y="767.5" ></text>
</g>
<g >
<title>list_make1_impl (1,664,103,247 samples, 0.02%)</title><rect x="971.4" y="389" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="974.39" y="399.5" ></text>
</g>
<g >
<title>BufTableLookup (2,151,770,197 samples, 0.02%)</title><rect x="355.0" y="261" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="357.96" y="271.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,645,284,842 samples, 0.02%)</title><rect x="823.5" y="373" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="826.48" y="383.5" ></text>
</g>
<g >
<title>pfree (1,492,096,338 samples, 0.02%)</title><rect x="965.7" y="357" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="968.70" y="367.5" ></text>
</g>
<g >
<title>ExecScanFetch (54,879,784,624 samples, 0.58%)</title><rect x="95.7" y="437" width="6.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="98.68" y="447.5" ></text>
</g>
<g >
<title>new_list (1,627,707,130 samples, 0.02%)</title><rect x="1056.5" y="389" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1059.54" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (997,091,571 samples, 0.01%)</title><rect x="953.8" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="956.76" y="431.5" ></text>
</g>
<g >
<title>ExecClearTuple (878,960,716 samples, 0.01%)</title><rect x="42.3" y="757" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="45.26" y="767.5" ></text>
</g>
<g >
<title>bms_add_member (2,427,715,697 samples, 0.03%)</title><rect x="345.3" y="389" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="348.27" y="399.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (982,893,308 samples, 0.01%)</title><rect x="302.3" y="117" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="305.27" y="127.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (17,922,102,413 samples, 0.19%)</title><rect x="354.1" y="309" width="2.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="357.05" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,672,029,327 samples, 0.02%)</title><rect x="1012.0" y="229" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1015.01" y="239.5" ></text>
</g>
<g >
<title>_copy_to_iter (3,332,445,272 samples, 0.04%)</title><rect x="185.8" y="325" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="188.77" y="335.5" ></text>
</g>
<g >
<title>XLogBeginInsert (1,111,656,933 samples, 0.01%)</title><rect x="110.5" y="757" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="113.52" y="767.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,725,669,843 samples, 0.02%)</title><rect x="377.6" y="341" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="380.58" y="351.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="357" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="89.91" y="367.5" ></text>
</g>
<g >
<title>pstrdup (2,673,406,419 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.39" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (872,316,289 samples, 0.01%)</title><rect x="834.8" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="837.82" y="431.5" ></text>
</g>
<g >
<title>internal_flush (156,715,568,396 samples, 1.65%)</title><rect x="190.5" y="565" width="19.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="193.48" y="575.5" ></text>
</g>
<g >
<title>btbeginscan (1,187,297,176 samples, 0.01%)</title><rect x="1123.2" y="757" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1126.23" y="767.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (4,237,052,526 samples, 0.04%)</title><rect x="127.2" y="213" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="130.24" y="223.5" ></text>
</g>
<g >
<title>hash_bytes (2,454,724,767 samples, 0.03%)</title><rect x="831.8" y="341" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="834.84" y="351.5" ></text>
</g>
<g >
<title>find_base_rel (829,894,115 samples, 0.01%)</title><rect x="953.0" y="437" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="956.03" y="447.5" ></text>
</g>
<g >
<title>_bt_getrootheight (2,244,020,908 samples, 0.02%)</title><rect x="933.1" y="389" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="936.14" y="399.5" ></text>
</g>
<g >
<title>transformAExprOp (96,143,299,367 samples, 1.01%)</title><rect x="846.5" y="437" width="12.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="849.53" y="447.5" ></text>
</g>
<g >
<title>log_heap_update (1,029,125,105 samples, 0.01%)</title><rect x="1158.8" y="757" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1161.77" y="767.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,435,445,393 samples, 0.02%)</title><rect x="125.9" y="293" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="128.92" y="303.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,344,295,273 samples, 0.01%)</title><rect x="1012.6" y="229" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1015.56" y="239.5" ></text>
</g>
<g >
<title>newNode (2,277,482,878 samples, 0.02%)</title><rect x="889.0" y="309" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="892.05" y="319.5" ></text>
</g>
<g >
<title>add_row_identity_var (7,866,423,926 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.75" y="463.5" ></text>
</g>
<g >
<title>expr_setup_walker (1,621,681,643 samples, 0.02%)</title><rect x="426.4" y="229" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="429.43" y="239.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,569,759,193 samples, 0.02%)</title><rect x="462.0" y="501" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="464.99" y="511.5" ></text>
</g>
<g >
<title>_bt_returnitem (1,647,450,883 samples, 0.02%)</title><rect x="329.8" y="261" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="332.83" y="271.5" ></text>
</g>
<g >
<title>palloc (1,122,099,526 samples, 0.01%)</title><rect x="1030.4" y="197" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1033.38" y="207.5" ></text>
</g>
<g >
<title>__strlen_avx2 (1,387,913,265 samples, 0.01%)</title><rect x="1061.1" y="453" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="1064.13" y="463.5" ></text>
</g>
<g >
<title>balance_dirty_pages_ratelimited_flags (2,044,743,615 samples, 0.02%)</title><rect x="502.5" y="357" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="505.52" y="367.5" ></text>
</g>
<g >
<title>assign_collations_walker (16,935,073,265 samples, 0.18%)</title><rect x="806.5" y="421" width="2.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="809.51" y="431.5" ></text>
</g>
<g >
<title>malloc (2,362,747,923 samples, 0.02%)</title><rect x="280.7" y="325" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="283.69" y="335.5" ></text>
</g>
<g >
<title>ExecScanFetch (22,631,995,978 samples, 0.24%)</title><rect x="281.9" y="373" width="2.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="284.86" y="383.5" ></text>
</g>
<g >
<title>lappend (3,329,453,147 samples, 0.04%)</title><rect x="890.3" y="277" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="893.33" y="287.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,745,573,972 samples, 0.05%)</title><rect x="845.2" y="405" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="848.16" y="415.5" ></text>
</g>
<g >
<title>palloc0 (3,158,810,305 samples, 0.03%)</title><rect x="432.0" y="341" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="434.97" y="351.5" ></text>
</g>
<g >
<title>palloc (1,291,642,293 samples, 0.01%)</title><rect x="358.4" y="357" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="361.38" y="367.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitialize (1,514,712,321 samples, 0.02%)</title><rect x="93.7" y="757" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="96.73" y="767.5" ></text>
</g>
<g >
<title>AtEOXact_MultiXact (1,093,084,053 samples, 0.01%)</title><rect x="470.3" y="517" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="473.26" y="527.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,722,705,699 samples, 0.02%)</title><rect x="408.2" y="261" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="411.24" y="271.5" ></text>
</g>
<g >
<title>base_yyparse (1,053,885,578 samples, 0.01%)</title><rect x="871.1" y="549" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="874.14" y="559.5" ></text>
</g>
<g >
<title>process_integer_literal (3,108,710,492 samples, 0.03%)</title><rect x="1113.2" y="709" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1116.24" y="719.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,527,359,504 samples, 0.04%)</title><rect x="1051.4" y="389" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1054.43" y="399.5" ></text>
</g>
<g >
<title>palloc0 (1,172,266,575 samples, 0.01%)</title><rect x="813.9" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="816.93" y="447.5" ></text>
</g>
<g >
<title>PageGetItem (810,786,055 samples, 0.01%)</title><rect x="81.7" y="757" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="84.74" y="767.5" ></text>
</g>
<g >
<title>skb_release_data (8,416,569,876 samples, 0.09%)</title><rect x="182.0" y="357" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="184.96" y="367.5" ></text>
</g>
<g >
<title>sem_post@GLIBC_2.2.5 (2,775,476,542 samples, 0.03%)</title><rect x="375.8" y="277" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="378.83" y="287.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (3,863,650,694 samples, 0.04%)</title><rect x="818.0" y="421" width="0.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="820.99" y="431.5" ></text>
</g>
<g >
<title>palloc0 (2,060,212,515 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>pull_var_clause_walker (3,879,442,672 samples, 0.04%)</title><rect x="955.5" y="325" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="958.48" y="335.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,498,102,932 samples, 0.02%)</title><rect x="525.4" y="389" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="528.41" y="399.5" ></text>
</g>
<g >
<title>hash_search (3,070,158,231 samples, 0.03%)</title><rect x="864.0" y="469" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="866.98" y="479.5" ></text>
</g>
<g >
<title>ReleaseCatCache (2,184,628,281 samples, 0.02%)</title><rect x="442.9" y="341" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="445.90" y="351.5" ></text>
</g>
<g >
<title>AllocSetCheck (2,103,968,291 samples, 0.02%)</title><rect x="465.3" y="565" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="468.31" y="575.5" ></text>
</g>
<g >
<title>LockAcquireExtended (48,802,429,981 samples, 0.51%)</title><rect x="368.7" y="293" width="6.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="371.67" y="303.5" ></text>
</g>
<g >
<title>list_nth (1,177,242,631 samples, 0.01%)</title><rect x="451.6" y="405" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="454.63" y="415.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (2,554,305,394 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.40" y="431.5" ></text>
</g>
<g >
<title>add_path (3,606,560,507 samples, 0.04%)</title><rect x="984.8" y="405" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="987.81" y="415.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (979,150,011 samples, 0.01%)</title><rect x="405.2" y="389" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="408.20" y="399.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (982,085,081 samples, 0.01%)</title><rect x="382.7" y="325" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="385.75" y="335.5" ></text>
</g>
<g >
<title>SearchSysCache1 (5,563,990,102 samples, 0.06%)</title><rect x="1041.4" y="341" width="0.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1044.41" y="351.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (922,758,410 samples, 0.01%)</title><rect x="947.9" y="277" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="950.95" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,091,856,773 samples, 0.02%)</title><rect x="181.6" y="373" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="184.61" y="383.5" ></text>
</g>
<g >
<title>FreeQueryDesc (5,469,909,814 samples, 0.06%)</title><rect x="460.6" y="533" width="0.7" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="463.57" y="543.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,311,124,659 samples, 0.05%)</title><rect x="369.5" y="277" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="372.55" y="287.5" ></text>
</g>
<g >
<title>pg_plan_query (1,582,101,399,492 samples, 16.65%)</title><rect x="874.6" y="565" width="196.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="877.56" y="575.5" >pg_plan_query</text>
</g>
<g >
<title>RelationGetNumberOfBlocksInFork (23,692,429,601 samples, 0.25%)</title><rect x="935.6" y="341" width="2.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="938.57" y="351.5" ></text>
</g>
<g >
<title>pull_varattnos (10,972,619,365 samples, 0.12%)</title><rect x="995.6" y="341" width="1.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="998.60" y="351.5" ></text>
</g>
<g >
<title>SlruSelectLRUPage (3,119,832,447 samples, 0.03%)</title><rect x="479.6" y="421" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="482.60" y="431.5" ></text>
</g>
<g >
<title>CheckReadBuffersOperation (1,056,393,843 samples, 0.01%)</title><rect x="86.4" y="197" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="89.39" y="207.5" ></text>
</g>
<g >
<title>lappend (2,653,408,473 samples, 0.03%)</title><rect x="955.6" y="309" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="958.64" y="319.5" ></text>
</g>
<g >
<title>ExecProcNode (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="469" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="126.99" y="479.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,624,920,452 samples, 0.02%)</title><rect x="451.1" y="373" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="454.09" y="383.5" ></text>
</g>
<g >
<title>Float8GetDatum (915,119,584 samples, 0.01%)</title><rect x="47.5" y="757" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="50.54" y="767.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (5,705,299,624 samples, 0.06%)</title><rect x="1021.2" y="245" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1024.20" y="255.5" ></text>
</g>
<g >
<title>prepare_task_switch (9,717,573,584 samples, 0.10%)</title><rect x="165.3" y="341" width="1.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="168.31" y="351.5" ></text>
</g>
<g >
<title>PostgresMain (18,601,171,430 samples, 0.20%)</title><rect x="124.0" y="645" width="2.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="126.99" y="655.5" ></text>
</g>
<g >
<title>new_list (1,881,812,419 samples, 0.02%)</title><rect x="457.3" y="437" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="460.29" y="447.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,775,049,329 samples, 0.05%)</title><rect x="865.7" y="469" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="868.70" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,642,858,338 samples, 0.03%)</title><rect x="428.7" y="309" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="431.74" y="319.5" ></text>
</g>
<g >
<title>finalize_primnode (1,955,552,326 samples, 0.02%)</title><rect x="1138.5" y="757" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="1141.49" y="767.5" ></text>
</g>
<g >
<title>bms_copy (2,294,422,485 samples, 0.02%)</title><rect x="358.6" y="357" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="361.57" y="367.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (2,699,513,520 samples, 0.03%)</title><rect x="271.6" y="293" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="274.56" y="303.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (7,686,230,723 samples, 0.08%)</title><rect x="810.1" y="341" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="813.07" y="351.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (1,609,362,355 samples, 0.02%)</title><rect x="478.1" y="405" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="481.12" y="415.5" ></text>
</g>
<g >
<title>make_pathtarget_from_tlist (867,532,952 samples, 0.01%)</title><rect x="1160.8" y="757" width="0.1" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text  x="1163.79" y="767.5" ></text>
</g>
<g >
<title>tag_hash (3,352,790,488 samples, 0.04%)</title><rect x="407.8" y="245" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="410.81" y="255.5" ></text>
</g>
<g >
<title>eval_const_expressions (16,909,639,231 samples, 0.18%)</title><rect x="1054.7" y="469" width="2.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1057.72" y="479.5" ></text>
</g>
<g >
<title>bms_is_valid_set (5,142,128,027 samples, 0.05%)</title><rect x="1121.8" y="757" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1124.85" y="767.5" ></text>
</g>
<g >
<title>BufTableLookup (4,607,704,089 samples, 0.05%)</title><rect x="100.5" y="181" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="103.52" y="191.5" ></text>
</g>
<g >
<title>lappend (2,413,851,152 samples, 0.03%)</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.73" y="399.5" ></text>
</g>
<g >
<title>do_futex (1,140,864,244 samples, 0.01%)</title><rect x="388.9" y="181" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="391.91" y="191.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (15,275,504,734 samples, 0.16%)</title><rect x="126.3" y="437" width="1.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="129.31" y="447.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,603,179,522 samples, 0.04%)</title><rect x="959.6" y="277" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="962.65" y="287.5" ></text>
</g>
<g >
<title>AllocSetFree (893,475,780 samples, 0.01%)</title><rect x="254.4" y="373" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="257.40" y="383.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,967,776,911 samples, 0.03%)</title><rect x="388.5" y="277" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="391.51" y="287.5" ></text>
</g>
<g >
<title>wakeup_preempt (1,295,584,164 samples, 0.01%)</title><rect x="207.7" y="309" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="210.68" y="319.5" ></text>
</g>
<g >
<title>bms_del_member (2,101,634,744 samples, 0.02%)</title><rect x="879.1" y="485" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="882.08" y="495.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (2,998,270,464 samples, 0.03%)</title><rect x="352.4" y="341" width="0.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="355.44" y="351.5" ></text>
</g>
<g >
<title>PortalStart (7,958,324,688 samples, 0.08%)</title><rect x="462.5" y="581" width="1.0" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="465.48" y="591.5" ></text>
</g>
<g >
<title>__pick_next_task (16,146,153,076 samples, 0.17%)</title><rect x="162.2" y="341" width="2.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="165.16" y="351.5" ></text>
</g>
<g >
<title>list_delete_cell (4,595,504,095 samples, 0.05%)</title><rect x="254.0" y="453" width="0.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="257.00" y="463.5" ></text>
</g>
<g >
<title>gup_fast_pgd_range (2,427,578,805 samples, 0.03%)</title><rect x="492.3" y="277" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="495.26" y="287.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (826,977,544 samples, 0.01%)</title><rect x="39.1" y="757" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="42.06" y="767.5" ></text>
</g>
<g >
<title>AllocSetAlloc (871,546,492 samples, 0.01%)</title><rect x="897.1" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="900.09" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (855,853,252 samples, 0.01%)</title><rect x="822.9" y="341" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="825.91" y="351.5" ></text>
</g>
<g >
<title>futex_wake (2,495,102,696 samples, 0.03%)</title><rect x="389.3" y="133" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="392.34" y="143.5" ></text>
</g>
<g >
<title>unix_stream_read_actor (9,840,489,809 samples, 0.10%)</title><rect x="185.6" y="373" width="1.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="188.60" y="383.5" ></text>
</g>
<g >
<title>create_empty_pathtarget (2,543,206,963 samples, 0.03%)</title><rect x="914.4" y="469" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="917.43" y="479.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,886,182,597 samples, 0.02%)</title><rect x="757.4" y="453" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="760.35" y="463.5" ></text>
</g>
<g >
<title>makeVar (3,616,208,516 samples, 0.04%)</title><rect x="856.4" y="357" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="859.41" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,113,937,086 samples, 0.01%)</title><rect x="818.6" y="405" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="821.64" y="415.5" ></text>
</g>
<g >
<title>bms_add_member (2,104,247,530 samples, 0.02%)</title><rect x="1058.5" y="469" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1061.52" y="479.5" ></text>
</g>
<g >
<title>_start (7,654,249,878,114 samples, 80.57%)</title><rect x="132.0" y="757" width="950.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="134.98" y="767.5" >_start</text>
</g>
<g >
<title>uint32_hash (1,190,299,119 samples, 0.01%)</title><rect x="864.2" y="453" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="867.21" y="463.5" ></text>
</g>
<g >
<title>WaitEventSetWait (190,440,249,407 samples, 2.00%)</title><rect x="154.4" y="517" width="23.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="157.42" y="527.5" >W..</text>
</g>
<g >
<title>TidRangeQualFromRestrictInfoList (3,835,226,336 samples, 0.04%)</title><rect x="1025.4" y="389" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="1028.37" y="399.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (17,911,071,976 samples, 0.19%)</title><rect x="269.7" y="373" width="2.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="272.68" y="383.5" ></text>
</g>
<g >
<title>bms_add_member (2,494,408,464 samples, 0.03%)</title><rect x="994.9" y="341" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="997.85" y="351.5" ></text>
</g>
<g >
<title>LockHeldByMe (4,744,407,229 samples, 0.05%)</title><rect x="814.2" y="437" width="0.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="817.25" y="447.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (10,124,940,418 samples, 0.11%)</title><rect x="249.8" y="453" width="1.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="252.77" y="463.5" ></text>
</g>
<g >
<title>PortalRunMulti (15,531,807,651 samples, 0.16%)</title><rect x="124.0" y="597" width="1.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="126.99" y="607.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3,114,597,944 samples, 0.03%)</title><rect x="477.7" y="437" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="480.66" y="447.5" ></text>
</g>
<g >
<title>index_other_operands_eval_cost (4,907,375,378 samples, 0.05%)</title><rect x="1012.7" y="293" width="0.6" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="1015.73" y="303.5" ></text>
</g>
<g >
<title>add_eq_member (13,679,848,707 samples, 0.14%)</title><rect x="968.5" y="389" width="1.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="971.51" y="399.5" ></text>
</g>
<g >
<title>PageGetHeapFreeSpace (6,686,027,861 samples, 0.07%)</title><rect x="312.6" y="245" width="0.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="315.58" y="255.5" ></text>
</g>
<g >
<title>new_list (2,419,776,979 samples, 0.03%)</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.48" y="447.5" ></text>
</g>
<g >
<title>hash_bytes (13,774,387,338 samples, 0.14%)</title><rect x="1142.6" y="757" width="1.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1145.59" y="767.5" ></text>
</g>
<g >
<title>index_getprocinfo (1,366,987,364 samples, 0.01%)</title><rect x="342.1" y="261" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="345.13" y="271.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (851,061,516 samples, 0.01%)</title><rect x="836.9" y="309" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="839.90" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (950,996,549 samples, 0.01%)</title><rect x="302.5" y="101" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="305.49" y="111.5" ></text>
</g>
<g >
<title>hash_search (4,792,212,308 samples, 0.05%)</title><rect x="448.3" y="357" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="451.28" y="367.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (1,163,465,944 samples, 0.01%)</title><rect x="475.6" y="469" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="478.57" y="479.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,703,431,546 samples, 0.05%)</title><rect x="837.0" y="357" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="840.01" y="367.5" ></text>
</g>
<g >
<title>pfree (1,619,584,340 samples, 0.02%)</title><rect x="944.4" y="373" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="947.36" y="383.5" ></text>
</g>
<g >
<title>pq_getbyte (280,681,017,344 samples, 2.95%)</title><rect x="152.4" y="565" width="34.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="155.43" y="575.5" >pq..</text>
</g>
<g >
<title>do_syscall_64 (955,025,299 samples, 0.01%)</title><rect x="370.2" y="181" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="373.23" y="191.5" ></text>
</g>
<g >
<title>bms_overlap (1,776,343,779 samples, 0.02%)</title><rect x="383.0" y="357" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="386.05" y="367.5" ></text>
</g>
<g >
<title>ExecIndexScan (15,501,275,807 samples, 0.16%)</title><rect x="124.0" y="437" width="1.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="126.99" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,231,729,022 samples, 0.01%)</title><rect x="969.1" y="325" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="972.11" y="335.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,494,428,742 samples, 0.02%)</title><rect x="1158.9" y="245" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1161.90" y="255.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (990,876,013 samples, 0.01%)</title><rect x="85.6" y="165" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="88.59" y="175.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (8,740,230,110 samples, 0.09%)</title><rect x="809.9" y="357" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="812.94" y="367.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (824,654,824 samples, 0.01%)</title><rect x="341.7" y="197" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="344.67" y="207.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (820,084,821 samples, 0.01%)</title><rect x="1067.3" y="405" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1070.27" y="415.5" ></text>
</g>
<g >
<title>list_free_private (2,318,654,561 samples, 0.02%)</title><rect x="944.3" y="389" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="947.27" y="399.5" ></text>
</g>
<g >
<title>create_projection_plan (1,415,588,197 samples, 0.01%)</title><rect x="86.9" y="517" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="89.91" y="527.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (49,053,997,604 samples, 0.52%)</title><rect x="60.0" y="757" width="6.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="63.03" y="767.5" ></text>
</g>
<g >
<title>FastPathGrantRelationLock (5,173,974,241 samples, 0.05%)</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.73" y="351.5" ></text>
</g>
<g >
<title>AfterTriggerBeginXact (1,148,444,201 samples, 0.01%)</title><rect x="1073.7" y="533" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1076.74" y="543.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (1,068,417,493 samples, 0.01%)</title><rect x="836.9" y="325" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="839.87" y="335.5" ></text>
</g>
<g >
<title>pq_sendint8 (1,724,627,968 samples, 0.02%)</title><rect x="190.2" y="565" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="193.16" y="575.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (988,610,300 samples, 0.01%)</title><rect x="946.6" y="357" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="949.57" y="367.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,124,852,091 samples, 0.01%)</title><rect x="830.9" y="325" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="833.89" y="335.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (27,464,774,605 samples, 0.29%)</title><rect x="102.7" y="501" width="3.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="105.66" y="511.5" ></text>
</g>
<g >
<title>reweight_entity (1,823,561,732 samples, 0.02%)</title><rect x="206.9" y="277" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="209.86" y="287.5" ></text>
</g>
<g >
<title>BufTableHashCode (2,986,958,315 samples, 0.03%)</title><rect x="100.2" y="181" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="103.15" y="191.5" ></text>
</g>
<g >
<title>pg_atomic_read_u64 (1,743,954,405 samples, 0.02%)</title><rect x="508.8" y="469" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="511.81" y="479.5" ></text>
</g>
<g >
<title>bms_add_member (4,392,799,912 samples, 0.05%)</title><rect x="974.6" y="421" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="977.64" y="431.5" ></text>
</g>
<g >
<title>int4hashfast (1,287,358,690 samples, 0.01%)</title><rect x="431.5" y="277" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="434.47" y="287.5" ></text>
</g>
<g >
<title>palloc0 (3,127,518,799 samples, 0.03%)</title><rect x="1023.6" y="373" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1026.57" y="383.5" ></text>
</g>
<g >
<title>PostmasterMain (17,479,689,687 samples, 0.18%)</title><rect x="126.3" y="709" width="2.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="129.31" y="719.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (3,553,452,724 samples, 0.04%)</title><rect x="333.1" y="213" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="336.05" y="223.5" ></text>
</g>
<g >
<title>pgstat_tracks_io_op (1,374,947,025 samples, 0.01%)</title><rect x="99.5" y="165" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="102.46" y="175.5" ></text>
</g>
<g >
<title>psi_task_switch (3,698,538,555 samples, 0.04%)</title><rect x="485.8" y="277" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="488.76" y="287.5" ></text>
</g>
<g >
<title>TransactionLogFetch (9,829,693,526 samples, 0.10%)</title><rect x="308.6" y="197" width="1.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="311.63" y="207.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (1,981,319,256 samples, 0.02%)</title><rect x="357.7" y="373" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="360.70" y="383.5" ></text>
</g>
<g >
<title>pull_varnos (4,371,358,221 samples, 0.05%)</title><rect x="967.1" y="373" width="0.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="970.13" y="383.5" ></text>
</g>
<g >
<title>palloc0 (1,338,335,883 samples, 0.01%)</title><rect x="967.4" y="293" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="970.42" y="303.5" ></text>
</g>
<g >
<title>SearchSysCache1 (6,531,736,579 samples, 0.07%)</title><rect x="811.2" y="341" width="0.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="814.16" y="351.5" ></text>
</g>
<g >
<title>btgettuple (11,204,751,701 samples, 0.12%)</title><rect x="282.8" y="309" width="1.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="285.81" y="319.5" ></text>
</g>
<g >
<title>_bt_checkpage (4,086,931,287 samples, 0.04%)</title><rect x="337.3" y="213" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="340.30" y="223.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (3,324,290,637 samples, 0.03%)</title><rect x="78.0" y="757" width="0.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="80.98" y="767.5" ></text>
</g>
<g >
<title>newNode (3,481,640,756 samples, 0.04%)</title><rect x="1016.5" y="341" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1019.47" y="351.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (16,271,788,347 samples, 0.17%)</title><rect x="806.6" y="405" width="2.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="809.59" y="415.5" ></text>
</g>
<g >
<title>tag_hash (2,484,839,112 samples, 0.03%)</title><rect x="831.8" y="357" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="834.84" y="367.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (11,012,596,052 samples, 0.12%)</title><rect x="889.6" y="325" width="1.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="892.55" y="335.5" ></text>
</g>
<g >
<title>gup_fast_pte_range (1,610,530,955 samples, 0.02%)</title><rect x="492.4" y="261" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="495.36" y="271.5" ></text>
</g>
<g >
<title>hash_search (7,548,364,557 samples, 0.08%)</title><rect x="214.0" y="549" width="0.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="217.00" y="559.5" ></text>
</g>
<g >
<title>check_preempt_wakeup_fair (1,053,352,688 samples, 0.01%)</title><rect x="207.7" y="293" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="210.71" y="303.5" ></text>
</g>
<g >
<title>__futex_wait (3,462,706,530 samples, 0.04%)</title><rect x="366.7" y="165" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="369.74" y="175.5" ></text>
</g>
<g >
<title>put_prev_task_fair (1,021,834,507 samples, 0.01%)</title><rect x="484.4" y="261" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="487.44" y="271.5" ></text>
</g>
<g >
<title>UnGrantLock (1,870,407,717 samples, 0.02%)</title><rect x="526.5" y="453" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="529.52" y="463.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,346,004,108 samples, 0.01%)</title><rect x="478.1" y="341" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="481.15" y="351.5" ></text>
</g>
<g >
<title>fetch_att (950,924,577 samples, 0.01%)</title><rect x="1138.0" y="757" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1140.95" y="767.5" ></text>
</g>
<g >
<title>_bt_compare (7,061,984,186 samples, 0.07%)</title><rect x="126.9" y="245" width="0.9" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="129.89" y="255.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,584,145,858 samples, 0.02%)</title><rect x="101.4" y="133" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="104.41" y="143.5" ></text>
</g>
<g >
<title>AtEOXact_LogicalRepWorkers (1,099,561,921 samples, 0.01%)</title><rect x="31.6" y="757" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="34.63" y="767.5" ></text>
</g>
<g >
<title>pfree (2,829,074,053 samples, 0.03%)</title><rect x="803.1" y="533" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="806.10" y="543.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (952,086,204 samples, 0.01%)</title><rect x="474.8" y="485" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="477.81" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,724,147,688 samples, 0.02%)</title><rect x="1148.5" y="565" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1151.50" y="575.5" ></text>
</g>
<g >
<title>lcons (2,105,903,530 samples, 0.02%)</title><rect x="1070.7" y="485" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1073.68" y="495.5" ></text>
</g>
<g >
<title>pq_getmsgstring (15,774,286,067 samples, 0.17%)</title><rect x="1079.9" y="597" width="1.9" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text  x="1082.88" y="607.5" ></text>
</g>
<g >
<title>stack_is_too_deep (3,171,470,865 samples, 0.03%)</title><rect x="1184.3" y="757" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1187.29" y="767.5" ></text>
</g>
<g >
<title>tag_hash (2,865,863,888 samples, 0.03%)</title><rect x="453.4" y="341" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="456.36" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,413,464,147 samples, 0.01%)</title><rect x="1060.6" y="421" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1063.57" y="431.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (47,440,171,408 samples, 0.50%)</title><rect x="13.3" y="741" width="5.9" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="16.29" y="751.5" ></text>
</g>
<g >
<title>ExecScanFetch (20,863,793,009 samples, 0.22%)</title><rect x="84.3" y="421" width="2.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="87.32" y="431.5" ></text>
</g>
<g >
<title>hash_search (5,152,638,625 samples, 0.05%)</title><rect x="402.0" y="325" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="404.98" y="335.5" ></text>
</g>
<g >
<title>palloc (1,387,788,426 samples, 0.01%)</title><rect x="969.1" y="341" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="972.09" y="351.5" ></text>
</g>
<g >
<title>pg_ulltoa_n (3,294,194,350 samples, 0.03%)</title><rect x="218.4" y="549" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="221.42" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (925,846,291 samples, 0.01%)</title><rect x="801.9" y="549" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="804.95" y="559.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (2,641,964,487 samples, 0.03%)</title><rect x="1032.7" y="165" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1035.71" y="175.5" ></text>
</g>
<g >
<title>ObjectIdGetDatum (3,796,972,719 samples, 0.04%)</title><rect x="80.4" y="757" width="0.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="83.42" y="767.5" ></text>
</g>
<g >
<title>cost_index (155,139,797,715 samples, 1.63%)</title><rect x="997.1" y="341" width="19.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1000.14" y="351.5" ></text>
</g>
<g >
<title>XLogInsertAllowed (816,275,749 samples, 0.01%)</title><rect x="111.0" y="757" width="0.1" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="114.04" y="767.5" ></text>
</g>
<g >
<title>palloc0 (1,565,664,833 samples, 0.02%)</title><rect x="420.5" y="437" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="423.49" y="447.5" ></text>
</g>
<g >
<title>heap_prune_satisfies_vacuum (11,039,765,090 samples, 0.12%)</title><rect x="1147.4" y="725" width="1.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1150.42" y="735.5" ></text>
</g>
<g >
<title>pfree (1,239,943,872 samples, 0.01%)</title><rect x="954.0" y="421" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="956.96" y="431.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (1,450,686,337 samples, 0.02%)</title><rect x="296.2" y="293" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="299.23" y="303.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (5,170,068,295 samples, 0.05%)</title><rect x="901.6" y="389" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="904.64" y="399.5" ></text>
</g>
<g >
<title>match_restriction_clauses_to_index (28,212,274,403 samples, 0.30%)</title><rect x="1018.4" y="389" width="3.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1021.45" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_futex (27,245,196,607 samples, 0.29%)</title><rect x="491.6" y="373" width="3.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="494.65" y="383.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (2,939,238,642 samples, 0.03%)</title><rect x="98.1" y="165" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="101.05" y="175.5" ></text>
</g>
<g >
<title>bms_is_subset (1,792,146,787 samples, 0.02%)</title><rect x="951.4" y="437" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="954.37" y="447.5" ></text>
</g>
<g >
<title>SearchSysCache3 (9,217,732,283 samples, 0.10%)</title><rect x="1032.0" y="213" width="1.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1035.02" y="223.5" ></text>
</g>
<g >
<title>newNode (2,313,482,458 samples, 0.02%)</title><rect x="812.2" y="469" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="815.16" y="479.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (849,000,005 samples, 0.01%)</title><rect x="158.6" y="373" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="161.62" y="383.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (1,172,402,378 samples, 0.01%)</title><rect x="369.9" y="229" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="372.94" y="239.5" ></text>
</g>
<g >
<title>BufferGetBlock (884,278,557 samples, 0.01%)</title><rect x="325.2" y="197" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="328.18" y="207.5" ></text>
</g>
<g >
<title>extract_restriction_or_clauses (1,451,081,424 samples, 0.02%)</title><rect x="978.5" y="469" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="981.52" y="479.5" ></text>
</g>
<g >
<title>coerce_type (807,331,385 samples, 0.01%)</title><rect x="844.1" y="421" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="847.06" y="431.5" ></text>
</g>
<g >
<title>palloc0 (3,523,434,439 samples, 0.04%)</title><rect x="891.8" y="357" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="894.79" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,064,622,194 samples, 0.02%)</title><rect x="817.7" y="389" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="820.70" y="399.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (7,827,969,943 samples, 0.08%)</title><rect x="869.3" y="485" width="1.0" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="872.30" y="495.5" ></text>
</g>
<g >
<title>uint32_hash (982,120,582 samples, 0.01%)</title><rect x="449.5" y="357" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="452.55" y="367.5" ></text>
</g>
</g>
</svg>