<?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="1400" height="816" onload="init(evt)" viewBox="0 0 1400 816" 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:14px; 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:19px}
	#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 * 14 * 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;
		if (currentSearchTerm === null) return;

		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="1400.0" height="816.0" fill="url(#background)"  />
<text id="title" x="700.00" y="28" >Flame Graph</text>
<text id="details" x="10.00" y="797" > </text>
<text id="unzoom" x="10.00" y="28" class="hide">Reset Zoom</text>
<text id="search" x="1290.00" y="28" >Search</text>
<text id="ignorecase" x="1374.00" y="28" >ic</text>
<text id="matched" x="1290.00" y="797" > </text>
<g id="frames">
<g >
<title>_bt_search (791 samples, 2.68%)</title><rect x="44.6" y="395" width="36.9" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="47.58" y="405.5" >_b..</text>
</g>
<g >
<title>UnregisterSnapshotNoOwner (23 samples, 0.08%)</title><rect x="1203.4" y="507" width="1.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1206.36" y="517.5" ></text>
</g>
<g >
<title>lappend (37 samples, 0.13%)</title><rect x="726.3" y="507" width="1.7" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="729.25" y="517.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="766.0" y="523" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="769.02" y="533.5" ></text>
</g>
<g >
<title>s_lock (15 samples, 0.05%)</title><rect x="1176.8" y="507" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1179.81" y="517.5" ></text>
</g>
<g >
<title>index_create (4 samples, 0.01%)</title><rect x="1278.3" y="555" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1281.32" y="565.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (3 samples, 0.01%)</title><rect x="815.7" y="491" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="818.72" y="501.5" ></text>
</g>
<g >
<title>PortalCleanup (949 samples, 3.21%)</title><rect x="1160.8" y="571" width="44.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1163.75" y="581.5" >Por..</text>
</g>
<g >
<title>StoreAttrDefault (5 samples, 0.02%)</title><rect x="1292.9" y="411" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1295.93" y="421.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (15 samples, 0.05%)</title><rect x="53.6" y="219" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="56.64" y="229.5" ></text>
</g>
<g >
<title>__inet_lookup_established (157 samples, 0.53%)</title><rect x="357.3" y="187" width="7.3" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text  x="360.28" y="197.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (3 samples, 0.01%)</title><rect x="1254.4" y="603" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1257.42" y="613.5" ></text>
</g>
<g >
<title>internal_putbytes (27 samples, 0.09%)</title><rect x="875.2" y="603" width="1.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="878.18" y="613.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (3 samples, 0.01%)</title><rect x="1292.7" y="251" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1295.69" y="261.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (6 samples, 0.02%)</title><rect x="685.8" y="507" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="688.84" y="517.5" ></text>
</g>
<g >
<title>AtEOXact_TypeCache (8 samples, 0.03%)</title><rect x="1156.4" y="603" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1159.37" y="613.5" ></text>
</g>
<g >
<title>WaitEventSetWaitBlock (2,793 samples, 9.45%)</title><rect x="108.2" y="571" width="130.3" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="111.19" y="581.5" >WaitEventSetW..</text>
</g>
<g >
<title>ComputeIndexAttrs (6 samples, 0.02%)</title><rect x="39.0" y="715" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="42.03" y="725.5" ></text>
</g>
<g >
<title>initStringInfoInternal (3 samples, 0.01%)</title><rect x="1261.4" y="667" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1264.42" y="677.5" ></text>
</g>
<g >
<title>ExecClearTuple (23 samples, 0.08%)</title><rect x="912.3" y="459" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="915.33" y="469.5" ></text>
</g>
<g >
<title>pgss_ExecutorEnd (863 samples, 2.92%)</title><rect x="1161.3" y="539" width="40.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1164.27" y="549.5" >pg..</text>
</g>
<g >
<title>_bt_first (3 samples, 0.01%)</title><rect x="1389.0" y="571" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1392.02" y="581.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (30 samples, 0.10%)</title><rect x="36.5" y="507" width="1.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="39.46" y="517.5" ></text>
</g>
<g >
<title>tcp_event_data_recv (10 samples, 0.03%)</title><rect x="425.3" y="155" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="428.32" y="165.5" ></text>
</g>
<g >
<title>ReadBufferExtended (3 samples, 0.01%)</title><rect x="39.8" y="523" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="42.82" y="533.5" ></text>
</g>
<g >
<title>index_getnext_tid (3 samples, 0.01%)</title><rect x="20.9" y="491" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="23.92" y="501.5" ></text>
</g>
<g >
<title>enlargeStringInfo (7 samples, 0.02%)</title><rect x="298.4" y="619" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="301.38" y="629.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (16 samples, 0.05%)</title><rect x="40.8" y="651" width="0.7" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="43.76" y="661.5" ></text>
</g>
<g >
<title>btgettuple (6 samples, 0.02%)</title><rect x="21.2" y="491" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="24.15" y="501.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (7 samples, 0.02%)</title><rect x="299.8" y="603" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="302.82" y="613.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="1389.0" y="619" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1392.02" y="629.5" ></text>
</g>
<g >
<title>pq_recvbuf (4,240 samples, 14.34%)</title><rect x="98.6" y="619" width="197.9" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="101.63" y="629.5" >pq_recvbuf</text>
</g>
<g >
<title>AtCCI_LocalCache (16 samples, 0.05%)</title><rect x="40.8" y="635" width="0.7" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="43.76" y="645.5" ></text>
</g>
<g >
<title>ExecProcNode (11 samples, 0.04%)</title><rect x="1384.8" y="587" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1387.77" y="597.5" ></text>
</g>
<g >
<title>available_idle_cpu (43 samples, 0.15%)</title><rect x="389.8" y="59" width="2.0" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="392.80" y="69.5" ></text>
</g>
<g >
<title>DeleteComments (4 samples, 0.01%)</title><rect x="1276.6" y="283" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1279.64" y="293.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,123 samples, 13.94%)</title><rect x="314.7" y="539" width="192.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="317.67" y="549.5" >do_syscall_64</text>
</g>
<g >
<title>ExecProcNodeFirst (3 samples, 0.01%)</title><rect x="905.4" y="459" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="908.37" y="469.5" ></text>
</g>
<g >
<title>DefineIndex (9 samples, 0.03%)</title><rect x="22.5" y="475" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="25.46" y="485.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (10 samples, 0.03%)</title><rect x="28.2" y="731" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="31.20" y="741.5" ></text>
</g>
<g >
<title>LockAcquireExtended (360 samples, 1.22%)</title><rect x="561.9" y="571" width="16.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="564.88" y="581.5" ></text>
</g>
<g >
<title>memset@plt (8 samples, 0.03%)</title><rect x="1176.4" y="507" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1179.44" y="517.5" ></text>
</g>
<g >
<title>hash_search (59 samples, 0.20%)</title><rect x="813.1" y="523" width="2.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="816.11" y="533.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (3 samples, 0.01%)</title><rect x="39.8" y="571" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="42.82" y="581.5" ></text>
</g>
<g >
<title>attach_entity_load_avg (3 samples, 0.01%)</title><rect x="196.0" y="283" width="0.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="199.03" y="293.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (169 samples, 0.57%)</title><rect x="488.7" y="379" width="7.9" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text  x="491.75" y="389.5" ></text>
</g>
<g >
<title>findDependentObjects (4 samples, 0.01%)</title><rect x="36.1" y="315" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="39.14" y="325.5" ></text>
</g>
<g >
<title>ProcessUtility (54 samples, 0.18%)</title><rect x="1134.2" y="603" width="2.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1137.20" y="613.5" ></text>
</g>
<g >
<title>__new_sem_post (4 samples, 0.01%)</title><rect x="1232.1" y="475" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1235.11" y="485.5" ></text>
</g>
<g >
<title>AtEOXact_Parallel (16 samples, 0.05%)</title><rect x="1149.9" y="603" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1152.93" y="613.5" ></text>
</g>
<g >
<title>netif_rx_internal (50 samples, 0.17%)</title><rect x="448.9" y="299" width="2.3" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text  x="451.89" y="309.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (3 samples, 0.01%)</title><rect x="610.2" y="603" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="613.23" y="613.5" ></text>
</g>
<g >
<title>__virt_addr_valid (4 samples, 0.01%)</title><rect x="327.2" y="427" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="330.17" y="437.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (15 samples, 0.05%)</title><rect x="1200.7" y="491" width="0.7" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="1203.70" y="501.5" ></text>
</g>
<g >
<title>ExecGetRangeTableRelation (169 samples, 0.57%)</title><rect x="728.1" y="523" width="7.9" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text  x="731.07" y="533.5" ></text>
</g>
<g >
<title>RelationBuildDesc (4 samples, 0.01%)</title><rect x="22.5" y="315" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="25.46" y="325.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (3 samples, 0.01%)</title><rect x="294.8" y="523" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="297.83" y="533.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (114 samples, 0.39%)</title><rect x="392.1" y="75" width="5.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="395.09" y="85.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (4 samples, 0.01%)</title><rect x="1385.3" y="571" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1388.29" y="581.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (13 samples, 0.04%)</title><rect x="1295.2" y="411" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1298.21" y="421.5" ></text>
</g>
<g >
<title>expr_setup_walker (66 samples, 0.22%)</title><rect x="689.6" y="507" width="3.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="692.57" y="517.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (3 samples, 0.01%)</title><rect x="870.7" y="571" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="873.65" y="581.5" ></text>
</g>
<g >
<title>list_nth_cell (4 samples, 0.01%)</title><rect x="1200.2" y="491" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1203.24" y="501.5" ></text>
</g>
<g >
<title>exec_stmt_block (57 samples, 0.19%)</title><rect x="81.5" y="475" width="2.7" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="84.50" y="485.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (28 samples, 0.09%)</title><rect x="1215.9" y="603" width="1.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1218.87" y="613.5" ></text>
</g>
<g >
<title>heap_inplace_lock (3 samples, 0.01%)</title><rect x="37.0" y="315" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="40.02" y="325.5" ></text>
</g>
<g >
<title>shmem_write_begin (4 samples, 0.01%)</title><rect x="1291.8" y="107" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1294.81" y="117.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="1275.9" y="283" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1278.89" y="293.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (37 samples, 0.13%)</title><rect x="15.3" y="299" width="1.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="18.32" y="309.5" ></text>
</g>
<g >
<title>AllocSetAlloc (8 samples, 0.03%)</title><rect x="657.2" y="443" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="660.18" y="453.5" ></text>
</g>
<g >
<title>systable_getnext (11 samples, 0.04%)</title><rect x="1297.3" y="619" width="0.5" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1300.27" y="629.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (4 samples, 0.01%)</title><rect x="26.9" y="747" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="29.89" y="757.5" ></text>
</g>
<g >
<title>AtEOXact_SMgr (4 samples, 0.01%)</title><rect x="1155.6" y="603" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1158.57" y="613.5" ></text>
</g>
<g >
<title>__strlen_evex (3 samples, 0.01%)</title><rect x="1133.5" y="619" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1136.50" y="629.5" ></text>
</g>
<g >
<title>update_min_vruntime (5 samples, 0.02%)</title><rect x="188.1" y="379" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="191.14" y="389.5" ></text>
</g>
<g >
<title>hash_initial_lookup (16 samples, 0.05%)</title><rect x="526.6" y="587" width="0.8" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="529.64" y="597.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (3 samples, 0.01%)</title><rect x="22.6" y="315" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="25.65" y="325.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4 samples, 0.01%)</title><rect x="454.2" y="363" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="457.21" y="373.5" ></text>
</g>
<g >
<title>ExecIndexScan (161 samples, 0.54%)</title><rect x="897.7" y="539" width="7.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="900.67" y="549.5" ></text>
</g>
<g >
<title>palloc0 (42 samples, 0.14%)</title><rect x="882.5" y="619" width="1.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="885.46" y="629.5" ></text>
</g>
<g >
<title>LWLockAcquire (7 samples, 0.02%)</title><rect x="1068.1" y="299" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1071.11" y="309.5" ></text>
</g>
<g >
<title>LWLockAcquire (52 samples, 0.18%)</title><rect x="953.5" y="251" width="2.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="956.54" y="261.5" ></text>
</g>
<g >
<title>btgettuple (8 samples, 0.03%)</title><rect x="40.1" y="603" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="43.06" y="613.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (3 samples, 0.01%)</title><rect x="1268.1" y="571" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1271.14" y="581.5" ></text>
</g>
<g >
<title>_bt_steppage (23 samples, 0.08%)</title><rect x="902.6" y="395" width="1.0" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="905.57" y="405.5" ></text>
</g>
<g >
<title>internal_putbytes (36 samples, 0.12%)</title><rect x="800.8" y="619" width="1.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="803.78" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (9 samples, 0.03%)</title><rect x="953.8" y="203" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="956.77" y="213.5" ></text>
</g>
<g >
<title>StartReadBuffer (3 samples, 0.01%)</title><rect x="39.8" y="491" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="42.82" y="501.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (3 samples, 0.01%)</title><rect x="628.5" y="459" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="631.52" y="469.5" ></text>
</g>
<g >
<title>ProcessUtility (6 samples, 0.02%)</title><rect x="1269.0" y="731" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1271.98" y="741.5" ></text>
</g>
<g >
<title>palloc (25 samples, 0.08%)</title><rect x="688.4" y="475" width="1.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="691.40" y="485.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (4 samples, 0.01%)</title><rect x="22.5" y="411" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="25.46" y="421.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (16 samples, 0.05%)</title><rect x="40.8" y="603" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="43.76" y="613.5" ></text>
</g>
<g >
<title>recordMultipleDependencies (3 samples, 0.01%)</title><rect x="1276.3" y="315" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1279.31" y="325.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (4 samples, 0.01%)</title><rect x="1278.3" y="747" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1281.32" y="757.5" ></text>
</g>
<g >
<title>index_create (110 samples, 0.37%)</title><rect x="1287.7" y="427" width="5.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1290.74" y="437.5" ></text>
</g>
<g >
<title>ExecProject (190 samples, 0.64%)</title><rect x="915.2" y="475" width="8.8" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="918.17" y="485.5" ></text>
</g>
<g >
<title>secure_write (4,254 samples, 14.39%)</title><rect x="308.9" y="603" width="198.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="311.88" y="613.5" >secure_write</text>
</g>
<g >
<title>perform_spin_delay (4 samples, 0.01%)</title><rect x="1177.3" y="491" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1180.28" y="501.5" ></text>
</g>
<g >
<title>RelationBuildDesc (27 samples, 0.09%)</title><rect x="1287.9" y="283" width="1.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1290.93" y="293.5" ></text>
</g>
<g >
<title>BufferGetPage (5 samples, 0.02%)</title><rect x="1082.1" y="331" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1085.11" y="341.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (3 samples, 0.01%)</title><rect x="1200.0" y="459" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1202.96" y="469.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (4 samples, 0.01%)</title><rect x="1385.3" y="587" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1388.29" y="597.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (6 samples, 0.02%)</title><rect x="95.4" y="667" width="0.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="98.41" y="677.5" ></text>
</g>
<g >
<title>AllocSetAlloc (50 samples, 0.17%)</title><rect x="535.0" y="603" width="2.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="538.04" y="613.5" ></text>
</g>
<g >
<title>ChooseIndexName (3 samples, 0.01%)</title><rect x="1275.5" y="347" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1278.52" y="357.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (7 samples, 0.02%)</title><rect x="38.5" y="683" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="41.52" y="693.5" ></text>
</g>
<g >
<title>hash_initial_lookup (7 samples, 0.02%)</title><rect x="68.7" y="203" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="71.71" y="213.5" ></text>
</g>
<g >
<title>BackendMain (16 samples, 0.05%)</title><rect x="12.2" y="747" width="0.8" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="15.24" y="757.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3 samples, 0.01%)</title><rect x="1231.4" y="347" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1234.41" y="357.5" ></text>
</g>
<g >
<title>get_hash_value (31 samples, 0.10%)</title><rect x="946.3" y="235" width="1.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="949.30" y="245.5" ></text>
</g>
<g >
<title>CreateQueryDesc (59 samples, 0.20%)</title><rect x="598.7" y="635" width="2.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="601.66" y="645.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (3 samples, 0.01%)</title><rect x="965.0" y="347" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="968.02" y="357.5" ></text>
</g>
<g >
<title>BufferAlloc (283 samples, 0.96%)</title><rect x="946.0" y="267" width="13.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="949.02" y="277.5" ></text>
</g>
<g >
<title>enqueue_to_backlog (33 samples, 0.11%)</title><rect x="449.7" y="283" width="1.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="452.68" y="293.5" ></text>
</g>
<g >
<title>__strlen_evex (13 samples, 0.04%)</title><rect x="1130.2" y="635" width="0.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1133.19" y="645.5" ></text>
</g>
<g >
<title>getObjectDescription (11 samples, 0.04%)</title><rect x="1294.7" y="379" width="0.5" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1297.70" y="389.5" ></text>
</g>
<g >
<title>exec_stmts (185 samples, 0.63%)</title><rect x="1287.2" y="603" width="8.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1290.18" y="613.5" ></text>
</g>
<g >
<title>LockAcquireExtended (5 samples, 0.02%)</title><rect x="1329.0" y="715" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1331.95" y="725.5" ></text>
</g>
<g >
<title>exec_execute_message (11 samples, 0.04%)</title><rect x="1384.8" y="699" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1387.77" y="709.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (68 samples, 0.23%)</title><rect x="520.1" y="635" width="3.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="523.11" y="645.5" ></text>
</g>
<g >
<title>systable_beginscan (5 samples, 0.02%)</title><rect x="83.1" y="171" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="86.09" y="181.5" ></text>
</g>
<g >
<title>printtup (334 samples, 1.13%)</title><rect x="1096.7" y="555" width="15.6" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1099.68" y="565.5" ></text>
</g>
<g >
<title>postgres (1,813 samples, 6.13%)</title><rect x="1300.2" y="747" width="84.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1303.16" y="757.5" >postgres</text>
</g>
<g >
<title>murmurhash32 (15 samples, 0.05%)</title><rect x="679.9" y="427" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="682.91" y="437.5" ></text>
</g>
<g >
<title>ExecutorStart (6 samples, 0.02%)</title><rect x="1320.5" y="715" width="0.3" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="1323.51" y="725.5" ></text>
</g>
<g >
<title>update_curr (8 samples, 0.03%)</title><rect x="188.0" y="395" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="191.00" y="405.5" ></text>
</g>
<g >
<title>heap_create_with_catalog (7 samples, 0.02%)</title><rect x="1388.1" y="443" width="0.4" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="1391.13" y="453.5" ></text>
</g>
<g >
<title>get_hash_value (80 samples, 0.27%)</title><rect x="61.3" y="219" width="3.7" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="64.29" y="229.5" ></text>
</g>
<g >
<title>AppendAttributeTuples (4 samples, 0.01%)</title><rect x="1287.7" y="411" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1290.74" y="421.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (4 samples, 0.01%)</title><rect x="1293.3" y="347" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1296.30" y="357.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (6 samples, 0.02%)</title><rect x="964.6" y="363" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="967.65" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (10 samples, 0.03%)</title><rect x="52.8" y="187" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="55.84" y="197.5" ></text>
</g>
<g >
<title>schedule (1,399 samples, 4.73%)</title><rect x="155.0" y="459" width="65.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="158.01" y="469.5" >sched..</text>
</g>
<g >
<title>ReleaseAndReadBuffer (352 samples, 1.19%)</title><rect x="943.5" y="379" width="16.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="946.50" y="389.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (3 samples, 0.01%)</title><rect x="196.5" y="299" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="199.50" y="309.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (9 samples, 0.03%)</title><rect x="1107.8" y="443" width="0.5" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1110.83" y="453.5" ></text>
</g>
<g >
<title>ExecutePlan (96 samples, 0.32%)</title><rect x="13.0" y="587" width="4.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="15.99" y="597.5" ></text>
</g>
<g >
<title>deleteOneObject (3 samples, 0.01%)</title><rect x="17.5" y="235" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="20.47" y="245.5" ></text>
</g>
<g >
<title>AllocSetAlloc (16 samples, 0.05%)</title><rect x="659.8" y="443" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="662.84" y="453.5" ></text>
</g>
<g >
<title>SearchSysCache1 (51 samples, 0.17%)</title><rect x="714.4" y="475" width="2.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="717.40" y="485.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (34 samples, 0.11%)</title><rect x="756.4" y="475" width="1.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="759.40" y="485.5" ></text>
</g>
<g >
<title>_int_free (21 samples, 0.07%)</title><rect x="1186.4" y="379" width="1.0" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1189.38" y="389.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (42 samples, 0.14%)</title><rect x="870.0" y="587" width="1.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="872.95" y="597.5" ></text>
</g>
<g >
<title>PrepareToInvalidateCacheTuple (3 samples, 0.01%)</title><rect x="1280.5" y="699" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1283.51" y="709.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (89 samples, 0.30%)</title><rect x="722.1" y="507" width="4.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="725.10" y="517.5" ></text>
</g>
<g >
<title>__mod_timer (62 samples, 0.21%)</title><rect x="471.6" y="379" width="2.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="474.62" y="389.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (7 samples, 0.02%)</title><rect x="1180.1" y="395" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1183.12" y="405.5" ></text>
</g>
<g >
<title>pg_server_to_client (5 samples, 0.02%)</title><rect x="1104.7" y="523" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1107.66" y="533.5" ></text>
</g>
<g >
<title>Int32GetDatum (6 samples, 0.02%)</title><rect x="24.7" y="747" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="27.65" y="757.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (3 samples, 0.01%)</title><rect x="197.8" y="315" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="200.85" y="325.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (13 samples, 0.04%)</title><rect x="1294.0" y="219" width="0.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1297.05" y="229.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (9 samples, 0.03%)</title><rect x="1336.8" y="715" width="0.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1339.80" y="725.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (22 samples, 0.07%)</title><rect x="19.8" y="667" width="1.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="22.85" y="677.5" ></text>
</g>
<g >
<title>index_getattr (3 samples, 0.01%)</title><rect x="1356.8" y="715" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1359.77" y="725.5" ></text>
</g>
<g >
<title>SearchSysCacheAttName (4 samples, 0.01%)</title><rect x="39.1" y="699" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="42.12" y="709.5" ></text>
</g>
<g >
<title>PortalRunSelect (810 samples, 2.74%)</title><rect x="43.7" y="651" width="37.8" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="46.70" y="661.5" >Po..</text>
</g>
<g >
<title>pgss_ProcessUtility (57 samples, 0.19%)</title><rect x="81.5" y="347" width="2.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="84.50" y="357.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (17 samples, 0.06%)</title><rect x="55.0" y="219" width="0.8" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="58.04" y="229.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (4 samples, 0.01%)</title><rect x="1330.0" y="715" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1332.98" y="725.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3 samples, 0.01%)</title><rect x="206.8" y="347" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="209.81" y="357.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (41 samples, 0.14%)</title><rect x="1386.7" y="699" width="1.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1389.73" y="709.5" ></text>
</g>
<g >
<title>PinBufferForBlock (317 samples, 1.07%)</title><rect x="45.0" y="267" width="14.8" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="48.05" y="277.5" ></text>
</g>
<g >
<title>AllocSetReset (24 samples, 0.08%)</title><rect x="1159.2" y="507" width="1.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1162.21" y="517.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (4 samples, 0.01%)</title><rect x="296.0" y="555" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="298.95" y="565.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (14 samples, 0.05%)</title><rect x="1294.0" y="363" width="0.7" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1297.05" y="373.5" ></text>
</g>
<g >
<title>GetUserId@plt (8 samples, 0.03%)</title><rect x="1168.0" y="507" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1171.04" y="517.5" ></text>
</g>
<g >
<title>_bt_relbuf (70 samples, 0.24%)</title><rect x="1016.2" y="347" width="3.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1019.22" y="357.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (14 samples, 0.05%)</title><rect x="774.6" y="603" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="777.65" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (7 samples, 0.02%)</title><rect x="713.8" y="427" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="716.84" y="437.5" ></text>
</g>
<g >
<title>int4eqfast (6 samples, 0.02%)</title><rect x="675.3" y="443" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="678.33" y="453.5" ></text>
</g>
<g >
<title>record_times (11 samples, 0.04%)</title><rect x="197.1" y="299" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="200.15" y="309.5" ></text>
</g>
<g >
<title>RemoveRelations (9 samples, 0.03%)</title><rect x="1389.2" y="699" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1392.16" y="709.5" ></text>
</g>
<g >
<title>ExecScanFetch (13 samples, 0.04%)</title><rect x="12.2" y="523" width="0.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="15.24" y="533.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (7 samples, 0.02%)</title><rect x="38.5" y="667" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="41.52" y="677.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (8 samples, 0.03%)</title><rect x="1155.8" y="603" width="0.3" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1158.76" y="613.5" ></text>
</g>
<g >
<title>systable_getnext (3 samples, 0.01%)</title><rect x="1294.5" y="203" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1297.47" y="213.5" ></text>
</g>
<g >
<title>MarkPortalActive (5 samples, 0.02%)</title><rect x="892.0" y="635" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="894.98" y="645.5" ></text>
</g>
<g >
<title>afterTriggerMarkEvents (10 samples, 0.03%)</title><rect x="1141.9" y="587" width="0.5" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1144.90" y="597.5" ></text>
</g>
<g >
<title>RelationFlushRelation (14 samples, 0.05%)</title><rect x="1279.3" y="667" width="0.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1282.30" y="677.5" ></text>
</g>
<g >
<title>hash_bytes (31 samples, 0.10%)</title><rect x="47.5" y="187" width="1.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="50.52" y="197.5" ></text>
</g>
<g >
<title>hash_bytes (22 samples, 0.07%)</title><rect x="546.3" y="603" width="1.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="549.29" y="613.5" ></text>
</g>
<g >
<title>Int32GetDatum (15 samples, 0.05%)</title><rect x="1055.3" y="299" width="0.7" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1058.28" y="309.5" ></text>
</g>
<g >
<title>AtStart_GUC (30 samples, 0.10%)</title><rect x="848.3" y="603" width="1.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="851.30" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (9 samples, 0.03%)</title><rect x="1232.3" y="507" width="0.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1235.35" y="517.5" ></text>
</g>
<g >
<title>systable_getnext (3 samples, 0.01%)</title><rect x="20.7" y="555" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="23.73" y="565.5" ></text>
</g>
<g >
<title>spin_delay (9 samples, 0.03%)</title><rect x="842.7" y="523" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="845.70" y="533.5" ></text>
</g>
<g >
<title>_bt_search (1,395 samples, 4.72%)</title><rect x="1026.0" y="379" width="65.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1028.97" y="389.5" >_bt_s..</text>
</g>
<g >
<title>LaunchMissingBackgroundProcesses (7 samples, 0.02%)</title><rect x="1268.1" y="731" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1271.14" y="741.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (4 samples, 0.01%)</title><rect x="899.9" y="427" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="902.91" y="437.5" ></text>
</g>
<g >
<title>IndexNext (11 samples, 0.04%)</title><rect x="1384.8" y="491" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1387.77" y="501.5" ></text>
</g>
<g >
<title>_bt_insertonpg (3 samples, 0.01%)</title><rect x="1289.3" y="315" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1292.29" y="325.5" ></text>
</g>
<g >
<title>IndexInfoFindDataOffset (9 samples, 0.03%)</title><rect x="1005.2" y="331" width="0.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1008.16" y="341.5" ></text>
</g>
<g >
<title>ExecutorEnd (864 samples, 2.92%)</title><rect x="1161.2" y="555" width="40.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1164.22" y="565.5" >Ex..</text>
</g>
<g >
<title>exec_stmt_fori (49 samples, 0.17%)</title><rect x="1275.5" y="507" width="2.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1278.52" y="517.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (22 samples, 0.07%)</title><rect x="19.8" y="699" width="1.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="22.85" y="709.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1231.3" y="475" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1234.32" y="485.5" ></text>
</g>
<g >
<title>LockBufHdr (29 samples, 0.10%)</title><rect x="1013.9" y="331" width="1.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1016.93" y="341.5" ></text>
</g>
<g >
<title>exec_describe_portal_message (314 samples, 1.06%)</title><rect x="864.4" y="667" width="14.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="867.44" y="677.5" ></text>
</g>
<g >
<title>IOContextForStrategy (17 samples, 0.06%)</title><rect x="1324.1" y="715" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1327.15" y="725.5" ></text>
</g>
<g >
<title>PortalRun (5 samples, 0.02%)</title><rect x="17.5" y="667" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="20.47" y="677.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (6 samples, 0.02%)</title><rect x="173.2" y="379" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="176.21" y="389.5" ></text>
</g>
<g >
<title>index_fetch_heap (6 samples, 0.02%)</title><rect x="1287.3" y="347" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1290.28" y="357.5" ></text>
</g>
<g >
<title>ProcessClientWriteInterrupt (11 samples, 0.04%)</title><rect x="309.9" y="587" width="0.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="312.86" y="597.5" ></text>
</g>
<g >
<title>BufferGetBlock (6 samples, 0.02%)</title><rect x="1030.0" y="347" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1033.03" y="357.5" ></text>
</g>
<g >
<title>AddNewAttributeTuples (4 samples, 0.01%)</title><rect x="1388.1" y="427" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1391.13" y="437.5" ></text>
</g>
<g >
<title>index_insert (4 samples, 0.01%)</title><rect x="28.4" y="395" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="31.39" y="405.5" ></text>
</g>
<g >
<title>PlanCacheRelCallback (29 samples, 0.10%)</title><rect x="811.5" y="539" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="814.52" y="549.5" ></text>
</g>
<g >
<title>RelationCloseCleanup (12 samples, 0.04%)</title><rect x="1179.5" y="427" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1182.47" y="437.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (5 samples, 0.02%)</title><rect x="17.5" y="571" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="20.47" y="581.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (24 samples, 0.08%)</title><rect x="1299.0" y="539" width="1.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1301.99" y="549.5" ></text>
</g>
<g >
<title>btgettuple (4 samples, 0.01%)</title><rect x="20.5" y="411" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="23.50" y="421.5" ></text>
</g>
<g >
<title>deleteObjectsInList (45 samples, 0.15%)</title><rect x="81.8" y="251" width="2.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="84.78" y="261.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberSnapshot (10 samples, 0.03%)</title><rect x="599.9" y="587" width="0.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="602.92" y="597.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (11 samples, 0.04%)</title><rect x="1277.8" y="651" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1280.80" y="661.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (368 samples, 1.24%)</title><rect x="220.5" y="491" width="17.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="223.48" y="501.5" ></text>
</g>
<g >
<title>ReadBufferExtended (6 samples, 0.02%)</title><rect x="1287.3" y="267" width="0.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1290.28" y="277.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (49 samples, 0.17%)</title><rect x="1275.5" y="475" width="2.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1278.52" y="485.5" ></text>
</g>
<g >
<title>pgss_ExecutorFinish (21 samples, 0.07%)</title><rect x="1201.9" y="539" width="1.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1204.92" y="549.5" ></text>
</g>
<g >
<title>GetSysCacheOid (3 samples, 0.01%)</title><rect x="1290.3" y="395" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1293.31" y="405.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (57 samples, 0.19%)</title><rect x="81.5" y="603" width="2.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="84.50" y="613.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (4,003 samples, 13.54%)</title><rect x="315.9" y="523" width="186.8" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="318.88" y="533.5" >__x64_sys_sendto</text>
</g>
<g >
<title>index_getattr (6 samples, 0.02%)</title><rect x="1281.8" y="747" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1284.77" y="757.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitialize (18 samples, 0.06%)</title><rect x="670.0" y="523" width="0.8" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="672.97" y="533.5" ></text>
</g>
<g >
<title>doDeletion (3 samples, 0.01%)</title><rect x="1389.3" y="635" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1392.35" y="645.5" ></text>
</g>
<g >
<title>exec_stmts (24 samples, 0.08%)</title><rect x="1299.0" y="683" width="1.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1301.99" y="693.5" ></text>
</g>
<g >
<title>systable_getnext (3 samples, 0.01%)</title><rect x="1389.0" y="635" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1392.02" y="645.5" ></text>
</g>
<g >
<title>ReadBufferExtended (464 samples, 1.57%)</title><rect x="59.8" y="331" width="21.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="62.84" y="341.5" ></text>
</g>
<g >
<title>exec_stmts (41 samples, 0.14%)</title><rect x="1386.7" y="619" width="1.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1389.73" y="629.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (4 samples, 0.01%)</title><rect x="1385.3" y="523" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1388.29" y="533.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (27 samples, 0.09%)</title><rect x="813.3" y="507" width="1.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="816.34" y="517.5" ></text>
</g>
<g >
<title>BuildQueryCompletionString (49 samples, 0.17%)</title><rect x="884.6" y="635" width="2.3" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="887.61" y="645.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (7 samples, 0.02%)</title><rect x="867.3" y="587" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="870.34" y="597.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (3 samples, 0.01%)</title><rect x="862.6" y="571" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="865.58" y="581.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (45 samples, 0.15%)</title><rect x="678.9" y="475" width="2.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="681.88" y="485.5" ></text>
</g>
<g >
<title>UnpinBuffer (15 samples, 0.05%)</title><rect x="904.3" y="379" width="0.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="907.25" y="389.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (11 samples, 0.04%)</title><rect x="37.9" y="443" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="40.86" y="453.5" ></text>
</g>
<g >
<title>exec_stmt_block (3 samples, 0.01%)</title><rect x="12.8" y="507" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="15.85" y="517.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (5 samples, 0.02%)</title><rect x="17.5" y="347" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="20.47" y="357.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (58 samples, 0.20%)</title><rect x="658.1" y="491" width="2.7" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="661.11" y="501.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (6 samples, 0.02%)</title><rect x="1056.0" y="331" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1059.03" y="341.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (95 samples, 0.32%)</title><rect x="193.7" y="363" width="4.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="196.74" y="373.5" ></text>
</g>
<g >
<title>index_open (486 samples, 1.64%)</title><rect x="736.3" y="539" width="22.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="739.29" y="549.5" ></text>
</g>
<g >
<title>ReadBuffer_common (464 samples, 1.57%)</title><rect x="59.8" y="315" width="21.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="62.84" y="325.5" ></text>
</g>
<g >
<title>CopyQueryCompletion (3 samples, 0.01%)</title><rect x="891.6" y="635" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="894.61" y="645.5" ></text>
</g>
<g >
<title>palloc (18 samples, 0.06%)</title><rect x="727.0" y="475" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="730.05" y="485.5" ></text>
</g>
<g >
<title>__GI_bsearch (3 samples, 0.01%)</title><rect x="1303.7" y="715" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="1306.71" y="725.5" ></text>
</g>
<g >
<title>BufTableLookup (18 samples, 0.06%)</title><rect x="49.0" y="235" width="0.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="51.97" y="245.5" ></text>
</g>
<g >
<title>object_aclcheck_ext (12 samples, 0.04%)</title><rect x="698.9" y="475" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="701.90" y="485.5" ></text>
</g>
<g >
<title>pgstat_report_activity (4 samples, 0.01%)</title><rect x="1367.8" y="715" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1370.78" y="725.5" ></text>
</g>
<g >
<title>doDeletion (4 samples, 0.01%)</title><rect x="41.7" y="651" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="44.69" y="661.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (40 samples, 0.14%)</title><rect x="1131.8" y="635" width="1.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1134.77" y="645.5" ></text>
</g>
<g >
<title>ExecCheckPermissions (173 samples, 0.59%)</title><rect x="620.7" y="571" width="8.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="623.73" y="581.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (4 samples, 0.01%)</title><rect x="751.8" y="443" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="754.83" y="453.5" ></text>
</g>
<g >
<title>do_epoll_wait (46 samples, 0.16%)</title><rect x="1380.9" y="683" width="2.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="1383.85" y="693.5" ></text>
</g>
<g >
<title>ExecutorFinish (29 samples, 0.10%)</title><rect x="1201.5" y="555" width="1.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1204.54" y="565.5" ></text>
</g>
<g >
<title>RelationBuildDesc (9 samples, 0.03%)</title><rect x="1386.8" y="299" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1389.78" y="309.5" ></text>
</g>
<g >
<title>__GI___libc_free (22 samples, 0.07%)</title><rect x="1198.7" y="411" width="1.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1201.65" y="421.5" ></text>
</g>
<g >
<title>update_load_avg (14 samples, 0.05%)</title><rect x="188.8" y="411" width="0.7" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="191.84" y="421.5" ></text>
</g>
<g >
<title>getRelationDescription (9 samples, 0.03%)</title><rect x="1294.8" y="363" width="0.4" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1297.79" y="373.5" ></text>
</g>
<g >
<title>PinBuffer (107 samples, 0.36%)</title><rect x="74.9" y="235" width="5.0" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="77.92" y="245.5" ></text>
</g>
<g >
<title>PortalSetResultFormat (27 samples, 0.09%)</title><rect x="595.5" y="651" width="1.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="598.48" y="661.5" ></text>
</g>
<g >
<title>read_tsc (8 samples, 0.03%)</title><rect x="427.3" y="203" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="430.28" y="213.5" ></text>
</g>
<g >
<title>int4hashfast (14 samples, 0.05%)</title><rect x="1109.6" y="443" width="0.7" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1112.60" y="453.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (24 samples, 0.08%)</title><rect x="31.9" y="283" width="1.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="34.89" y="293.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (13 samples, 0.04%)</title><rect x="249.9" y="443" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="252.89" y="453.5" ></text>
</g>
<g >
<title>ItemPointerSet (7 samples, 0.02%)</title><rect x="965.2" y="363" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="968.16" y="373.5" ></text>
</g>
<g >
<title>StartTransaction (25 samples, 0.08%)</title><rect x="102.7" y="539" width="1.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="105.69" y="549.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (50 samples, 0.17%)</title><rect x="13.0" y="395" width="2.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="15.99" y="405.5" ></text>
</g>
<g >
<title>pq_endmessage (39 samples, 0.13%)</title><rect x="305.2" y="651" width="1.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="308.24" y="661.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (10 samples, 0.03%)</title><rect x="28.2" y="603" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="31.20" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (40 samples, 0.14%)</title><rect x="50.8" y="203" width="1.9" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="53.84" y="213.5" ></text>
</g>
<g >
<title>AllocSetFree (10 samples, 0.03%)</title><rect x="685.4" y="507" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="688.37" y="517.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (3 samples, 0.01%)</title><rect x="1344.9" y="715" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="1347.92" y="725.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (6 samples, 0.02%)</title><rect x="1005.7" y="331" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1008.72" y="341.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (32 samples, 0.11%)</title><rect x="1152.3" y="587" width="1.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1155.26" y="597.5" ></text>
</g>
<g >
<title>smgrdestroyall (4 samples, 0.01%)</title><rect x="1155.6" y="587" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1158.57" y="597.5" ></text>
</g>
<g >
<title>get_hash_entry (29 samples, 0.10%)</title><rect x="538.5" y="603" width="1.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="541.54" y="613.5" ></text>
</g>
<g >
<title>table_index_fetch_reset (5 samples, 0.02%)</title><rect x="1093.6" y="427" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1096.64" y="437.5" ></text>
</g>
<g >
<title>spin_delay (3 samples, 0.01%)</title><rect x="1177.3" y="475" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1180.32" y="485.5" ></text>
</g>
<g >
<title>do_syscall_64 (12 samples, 0.04%)</title><rect x="1135.4" y="203" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1138.37" y="213.5" ></text>
</g>
<g >
<title>__libc_send (6 samples, 0.02%)</title><rect x="1386.1" y="731" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1389.13" y="741.5" ></text>
</g>
<g >
<title>exec_stmts (4 samples, 0.01%)</title><rect x="1385.3" y="475" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1388.29" y="485.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (11 samples, 0.04%)</title><rect x="39.3" y="651" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="42.31" y="661.5" ></text>
</g>
<g >
<title>systable_endscan (5 samples, 0.02%)</title><rect x="1288.8" y="251" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1291.82" y="261.5" ></text>
</g>
<g >
<title>__libc_send (4,207 samples, 14.23%)</title><rect x="311.1" y="571" width="196.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="314.07" y="581.5" >__libc_send</text>
</g>
<g >
<title>AllocSetAlloc (13 samples, 0.04%)</title><rect x="764.5" y="539" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="767.52" y="549.5" ></text>
</g>
<g >
<title>pq_writestring (15 samples, 0.05%)</title><rect x="877.6" y="635" width="0.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="880.60" y="645.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (7 samples, 0.02%)</title><rect x="1086.9" y="267" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1089.88" y="277.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (3 samples, 0.01%)</title><rect x="1317.8" y="715" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1320.75" y="725.5" ></text>
</g>
<g >
<title>release_sock (20 samples, 0.07%)</title><rect x="249.7" y="459" width="0.9" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="252.70" y="469.5" ></text>
</g>
<g >
<title>ExecDropStmt (49 samples, 0.17%)</title><rect x="81.8" y="299" width="2.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="84.78" y="309.5" ></text>
</g>
<g >
<title>cmpxchg_double_slab.constprop.0.isra.0 (8 samples, 0.03%)</title><rect x="415.1" y="123" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="418.15" y="133.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (17 samples, 0.06%)</title><rect x="912.6" y="443" width="0.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="915.61" y="453.5" ></text>
</g>
<g >
<title>exec_stmts (13 samples, 0.04%)</title><rect x="22.5" y="603" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="25.46" y="613.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (30 samples, 0.10%)</title><rect x="688.2" y="491" width="1.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="691.17" y="501.5" ></text>
</g>
<g >
<title>_bt_search (3 samples, 0.01%)</title><rect x="39.4" y="459" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="42.45" y="469.5" ></text>
</g>
<g >
<title>exec_stmt_block (20 samples, 0.07%)</title><rect x="1298.1" y="715" width="0.9" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1301.06" y="725.5" ></text>
</g>
<g >
<title>hash_search (113 samples, 0.38%)</title><rect x="542.0" y="635" width="5.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="545.04" y="645.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (58 samples, 0.20%)</title><rect x="292.1" y="491" width="2.7" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="295.12" y="501.5" ></text>
</g>
<g >
<title>decimalLength64 (21 samples, 0.07%)</title><rect x="885.9" y="603" width="1.0" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="888.91" y="613.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3 samples, 0.01%)</title><rect x="1375.0" y="715" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1377.97" y="725.5" ></text>
</g>
<g >
<title>ExecReadyExpr (46 samples, 0.16%)</title><rect x="703.2" y="523" width="2.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="706.15" y="533.5" ></text>
</g>
<g >
<title>BufTableHashCode (42 samples, 0.14%)</title><rect x="47.0" y="235" width="2.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="50.01" y="245.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (4 samples, 0.01%)</title><rect x="1107.0" y="491" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1110.04" y="501.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (8 samples, 0.03%)</title><rect x="789.1" y="603" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="792.07" y="613.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (4 samples, 0.01%)</title><rect x="1278.3" y="603" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1281.32" y="613.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (6 samples, 0.02%)</title><rect x="1266.6" y="651" width="0.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="1269.60" y="661.5" ></text>
</g>
<g >
<title>ProcessUtility (10 samples, 0.03%)</title><rect x="38.5" y="747" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="41.52" y="757.5" ></text>
</g>
<g >
<title>hash_search (3 samples, 0.01%)</title><rect x="738.0" y="427" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="741.01" y="437.5" ></text>
</g>
<g >
<title>ExecCheckOneRelPerms (141 samples, 0.48%)</title><rect x="622.2" y="555" width="6.6" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="625.18" y="565.5" ></text>
</g>
<g >
<title>tag_hash (41 samples, 0.14%)</title><rect x="568.2" y="523" width="1.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="571.23" y="533.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (10 samples, 0.03%)</title><rect x="723.9" y="459" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="726.87" y="469.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (3 samples, 0.01%)</title><rect x="20.2" y="475" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="23.17" y="485.5" ></text>
</g>
<g >
<title>_bt_compare (5 samples, 0.02%)</title><rect x="1345.8" y="715" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1348.85" y="725.5" ></text>
</g>
<g >
<title>UnpinBuffer (37 samples, 0.13%)</title><rect x="1016.7" y="315" width="1.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1019.68" y="325.5" ></text>
</g>
<g >
<title>index_getnext_slot (6 samples, 0.02%)</title><rect x="1290.7" y="219" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1293.69" y="229.5" ></text>
</g>
<g >
<title>__mod_timer (10 samples, 0.03%)</title><rect x="475.5" y="379" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="478.54" y="389.5" ></text>
</g>
<g >
<title>PageGetItemId (5 samples, 0.02%)</title><rect x="1022.8" y="347" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1025.84" y="357.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat (6 samples, 0.02%)</title><rect x="1310.7" y="715" width="0.2" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text  x="1313.66" y="725.5" ></text>
</g>
<g >
<title>scanner_isspace (5 samples, 0.02%)</title><rect x="1167.6" y="491" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1170.57" y="501.5" ></text>
</g>
<g >
<title>BufferGetPage (3 samples, 0.01%)</title><rect x="1071.8" y="347" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1074.85" y="357.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (16 samples, 0.05%)</title><rect x="1188.1" y="427" width="0.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1191.10" y="437.5" ></text>
</g>
<g >
<title>tcp_check_space (117 samples, 0.40%)</title><rect x="419.8" y="155" width="5.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="422.81" y="165.5" ></text>
</g>
<g >
<title>AttrDefaultFetch (5 samples, 0.02%)</title><rect x="19.8" y="555" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="22.85" y="565.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (18 samples, 0.06%)</title><rect x="862.9" y="539" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="865.86" y="549.5" ></text>
</g>
<g >
<title>AtCommit_Memory (23 samples, 0.08%)</title><rect x="1142.4" y="603" width="1.0" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1145.37" y="613.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (4 samples, 0.01%)</title><rect x="1204.2" y="475" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1207.20" y="485.5" ></text>
</g>
<g >
<title>deleteOneObject (45 samples, 0.15%)</title><rect x="81.8" y="235" width="2.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="84.78" y="245.5" ></text>
</g>
<g >
<title>SearchSysCache2 (4 samples, 0.01%)</title><rect x="39.1" y="683" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="42.12" y="693.5" ></text>
</g>
<g >
<title>object_aclcheck (15 samples, 0.05%)</title><rect x="698.9" y="491" width="0.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="701.90" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (8 samples, 0.03%)</title><rect x="1086.8" y="283" width="0.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1089.83" y="293.5" ></text>
</g>
<g >
<title>ReleaseSysCache (10 samples, 0.03%)</title><rect x="779.4" y="635" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="782.41" y="645.5" ></text>
</g>
<g >
<title>its_return_thunk (3 samples, 0.01%)</title><rect x="391.8" y="59" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="394.81" y="69.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (8 samples, 0.03%)</title><rect x="916.1" y="427" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="919.06" y="437.5" ></text>
</g>
<g >
<title>systable_inplace_update_begin (3 samples, 0.01%)</title><rect x="1389.0" y="651" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1392.02" y="661.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (35 samples, 0.12%)</title><rect x="696.1" y="475" width="1.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="699.15" y="485.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (464 samples, 1.57%)</title><rect x="59.8" y="363" width="21.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="62.84" y="373.5" ></text>
</g>
<g >
<title>index_build (4 samples, 0.01%)</title><rect x="22.6" y="443" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="25.65" y="453.5" ></text>
</g>
<g >
<title>TupleDescAttr (5 samples, 0.02%)</title><rect x="719.4" y="475" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="722.39" y="485.5" ></text>
</g>
<g >
<title>tag_hash (67 samples, 0.23%)</title><rect x="1235.7" y="507" width="3.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1238.71" y="517.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="1294.5" y="187" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1297.47" y="197.5" ></text>
</g>
<g >
<title>update_load_avg (11 samples, 0.04%)</title><rect x="195.7" y="299" width="0.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="198.66" y="309.5" ></text>
</g>
<g >
<title>palloc0 (22 samples, 0.07%)</title><rect x="764.1" y="555" width="1.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="767.10" y="565.5" ></text>
</g>
<g >
<title>__mod_memcg_state (11 samples, 0.04%)</title><rect x="261.2" y="395" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="264.18" y="405.5" ></text>
</g>
<g >
<title>ShowTransactionState (7 samples, 0.02%)</title><rect x="860.8" y="603" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="863.85" y="613.5" ></text>
</g>
<g >
<title>table_index_fetch_begin (36 samples, 0.12%)</title><rect x="936.4" y="427" width="1.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="939.36" y="437.5" ></text>
</g>
<g >
<title>IndexNext (126 samples, 0.43%)</title><rect x="899.1" y="475" width="5.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="902.12" y="485.5" ></text>
</g>
<g >
<title>ExecShutdownNode (25 samples, 0.08%)</title><rect x="1095.2" y="555" width="1.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1098.18" y="565.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (8 samples, 0.03%)</title><rect x="1249.9" y="571" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1252.90" y="581.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (5 samples, 0.02%)</title><rect x="12.6" y="315" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="15.61" y="325.5" ></text>
</g>
<g >
<title>BufTableHashCode (83 samples, 0.28%)</title><rect x="61.2" y="235" width="3.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="64.15" y="245.5" ></text>
</g>
<g >
<title>resetStringInfo (4 samples, 0.01%)</title><rect x="1370.9" y="715" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1373.91" y="725.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="689.2" y="443" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="692.20" y="453.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (27 samples, 0.09%)</title><rect x="1287.9" y="395" width="1.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1290.93" y="405.5" ></text>
</g>
<g >
<title>index_create (13 samples, 0.04%)</title><rect x="1299.4" y="443" width="0.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1302.41" y="453.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (26 samples, 0.09%)</title><rect x="1153.8" y="603" width="1.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1156.75" y="613.5" ></text>
</g>
<g >
<title>exec_stmts (20 samples, 0.07%)</title><rect x="1298.1" y="667" width="0.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1301.06" y="677.5" ></text>
</g>
<g >
<title>heap_create (3 samples, 0.01%)</title><rect x="1298.9" y="427" width="0.1" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="1301.85" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (7 samples, 0.02%)</title><rect x="586.4" y="571" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="589.38" y="581.5" ></text>
</g>
<g >
<title>fmgr_info_copy (8 samples, 0.03%)</title><rect x="972.5" y="363" width="0.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="975.49" y="373.5" ></text>
</g>
<g >
<title>__cond_resched (6 samples, 0.02%)</title><rect x="490.0" y="363" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="493.01" y="373.5" ></text>
</g>
<g >
<title>index_getnext_slot (6 samples, 0.02%)</title><rect x="41.2" y="475" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="44.22" y="485.5" ></text>
</g>
<g >
<title>_bt_first (11 samples, 0.04%)</title><rect x="1296.8" y="555" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1299.75" y="565.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (18 samples, 0.06%)</title><rect x="1013.1" y="331" width="0.8" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1016.09" y="341.5" ></text>
</g>
<g >
<title>get_attoptions (3 samples, 0.01%)</title><rect x="22.5" y="267" width="0.1" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="25.46" y="277.5" ></text>
</g>
<g >
<title>_bt_search (6 samples, 0.02%)</title><rect x="12.6" y="427" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="15.57" y="437.5" ></text>
</g>
<g >
<title>ProcessUtility (41 samples, 0.14%)</title><rect x="1386.7" y="523" width="1.9" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1389.73" y="533.5" ></text>
</g>
<g >
<title>AllocSetFree (13 samples, 0.04%)</title><rect x="1221.1" y="571" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1224.15" y="581.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (21 samples, 0.07%)</title><rect x="1290.5" y="363" width="1.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1293.50" y="373.5" ></text>
</g>
<g >
<title>AcquirePlannerLocks (497 samples, 1.68%)</title><rect x="556.4" y="619" width="23.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="559.37" y="629.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (3 samples, 0.01%)</title><rect x="900.8" y="379" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="903.85" y="389.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (4 samples, 0.01%)</title><rect x="320.7" y="443" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="323.69" y="453.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (23 samples, 0.08%)</title><rect x="1330.9" y="715" width="1.0" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1333.87" y="725.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (3 samples, 0.01%)</title><rect x="1201.0" y="459" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1203.98" y="469.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (6 samples, 0.02%)</title><rect x="1090.5" y="331" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1093.52" y="341.5" ></text>
</g>
<g >
<title>pgss_store (325 samples, 1.10%)</title><rect x="1162.8" y="523" width="15.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="1165.81" y="533.5" ></text>
</g>
<g >
<title>int4out (52 samples, 0.18%)</title><rect x="1100.1" y="507" width="2.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1103.13" y="517.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (7 samples, 0.02%)</title><rect x="806.2" y="635" width="0.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="809.20" y="645.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetTupleDesc (5 samples, 0.02%)</title><rect x="1189.8" y="459" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1192.83" y="469.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (8 samples, 0.03%)</title><rect x="959.4" y="251" width="0.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="962.42" y="261.5" ></text>
</g>
<g >
<title>LWLockRelease (24 samples, 0.08%)</title><rect x="862.6" y="587" width="1.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="865.58" y="597.5" ></text>
</g>
<g >
<title>IndexNext (96 samples, 0.32%)</title><rect x="13.0" y="475" width="4.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="15.99" y="485.5" ></text>
</g>
<g >
<title>enlargeStringInfo (3 samples, 0.01%)</title><rect x="869.1" y="635" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="872.06" y="645.5" ></text>
</g>
<g >
<title>systable_getnext (3 samples, 0.01%)</title><rect x="39.8" y="667" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="42.82" y="677.5" ></text>
</g>
<g >
<title>pq_endmessage_reuse (21 samples, 0.07%)</title><rect x="1103.0" y="539" width="1.0" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1106.02" y="549.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (23 samples, 0.08%)</title><rect x="772.8" y="619" width="1.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="775.83" y="629.5" ></text>
</g>
<g >
<title>hash_bytes (22 samples, 0.07%)</title><rect x="1206.6" y="539" width="1.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1209.63" y="549.5" ></text>
</g>
<g >
<title>index_close (3 samples, 0.01%)</title><rect x="1288.9" y="235" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1291.87" y="245.5" ></text>
</g>
<g >
<title>LWLockRelease (13 samples, 0.04%)</title><rect x="52.7" y="235" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="55.70" y="245.5" ></text>
</g>
<g >
<title>SIGetDataEntries (641 samples, 2.17%)</title><rect x="818.4" y="555" width="29.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="821.38" y="565.5" >S..</text>
</g>
<g >
<title>ResolveOpClass (5 samples, 0.02%)</title><rect x="1388.7" y="683" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1391.69" y="693.5" ></text>
</g>
<g >
<title>btgettuple (3 samples, 0.01%)</title><rect x="39.8" y="619" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="42.82" y="629.5" ></text>
</g>
<g >
<title>exec_stmt_fori (54 samples, 0.18%)</title><rect x="1134.2" y="427" width="2.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1137.20" y="437.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (4 samples, 0.01%)</title><rect x="1305.9" y="715" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1308.90" y="725.5" ></text>
</g>
<g >
<title>free@plt (6 samples, 0.02%)</title><rect x="1187.4" y="395" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="1190.36" y="405.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (4 samples, 0.01%)</title><rect x="537.2" y="571" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="540.19" y="581.5" ></text>
</g>
<g >
<title>AllocSetAlloc (11 samples, 0.04%)</title><rect x="665.9" y="459" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="668.86" y="469.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (9 samples, 0.03%)</title><rect x="821.6" y="523" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="824.60" y="533.5" ></text>
</g>
<g >
<title>systable_getnext (4 samples, 0.01%)</title><rect x="1275.8" y="299" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1278.84" y="309.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (3 samples, 0.01%)</title><rect x="79.8" y="219" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="82.77" y="229.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (9 samples, 0.03%)</title><rect x="1018.0" y="267" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1020.99" y="277.5" ></text>
</g>
<g >
<title>pq_writeint32 (8 samples, 0.03%)</title><rect x="877.2" y="635" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="880.23" y="645.5" ></text>
</g>
<g >
<title>_bt_first (96 samples, 0.32%)</title><rect x="13.0" y="411" width="4.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="15.99" y="421.5" ></text>
</g>
<g >
<title>ExecInitInterpreter (7 samples, 0.02%)</title><rect x="1318.7" y="715" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1321.73" y="725.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (8 samples, 0.03%)</title><rect x="653.8" y="459" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="656.77" y="469.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (30 samples, 0.10%)</title><rect x="36.5" y="667" width="1.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="39.46" y="677.5" ></text>
</g>
<g >
<title>InsertPgClassTuple (14 samples, 0.05%)</title><rect x="1289.2" y="411" width="0.6" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1292.19" y="421.5" ></text>
</g>
<g >
<title>palloc0 (45 samples, 0.15%)</title><rect x="655.5" y="459" width="2.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="658.50" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (10 samples, 0.03%)</title><rect x="1283.2" y="747" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1286.17" y="757.5" ></text>
</g>
<g >
<title>PortalRun (96 samples, 0.32%)</title><rect x="13.0" y="667" width="4.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="15.99" y="677.5" ></text>
</g>
<g >
<title>get_hash_value (3 samples, 0.01%)</title><rect x="1287.3" y="155" width="0.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1290.28" y="165.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (21 samples, 0.07%)</title><rect x="554.9" y="587" width="1.0" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="557.92" y="597.5" ></text>
</g>
<g >
<title>ExecutorRun (96 samples, 0.32%)</title><rect x="13.0" y="635" width="4.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="15.99" y="645.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (4 samples, 0.01%)</title><rect x="22.5" y="363" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="25.46" y="373.5" ></text>
</g>
<g >
<title>exec_stmt_fori (10 samples, 0.03%)</title><rect x="28.2" y="635" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="31.20" y="645.5" ></text>
</g>
<g >
<title>ExecScan (148 samples, 0.50%)</title><rect x="898.3" y="523" width="6.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="901.28" y="533.5" ></text>
</g>
<g >
<title>record_object_address_dependencies (3 samples, 0.01%)</title><rect x="1276.3" y="331" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1279.31" y="341.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (7 samples, 0.02%)</title><rect x="12.2" y="411" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="15.24" y="421.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (161 samples, 0.54%)</title><rect x="916.5" y="459" width="7.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="919.48" y="469.5" ></text>
</g>
<g >
<title>btinsert (4 samples, 0.01%)</title><rect x="1287.7" y="331" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1290.74" y="341.5" ></text>
</g>
<g >
<title>RelationFlushRelation (11 samples, 0.04%)</title><rect x="39.3" y="603" width="0.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="42.31" y="613.5" ></text>
</g>
<g >
<title>get_typstorage (70 samples, 0.24%)</title><rect x="677.7" y="523" width="3.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="680.71" y="533.5" ></text>
</g>
<g >
<title>_bt_spools_heapscan (4 samples, 0.01%)</title><rect x="1292.0" y="379" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1295.04" y="389.5" ></text>
</g>
<g >
<title>ProcessUtility (10 samples, 0.03%)</title><rect x="1277.9" y="571" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1280.85" y="581.5" ></text>
</g>
<g >
<title>_bt_binsrch (753 samples, 2.55%)</title><rect x="1031.0" y="363" width="35.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1034.01" y="373.5" >_b..</text>
</g>
<g >
<title>update_load_avg (4 samples, 0.01%)</title><rect x="196.5" y="315" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="199.50" y="325.5" ></text>
</g>
<g >
<title>pgstat_get_transactional_drops (30 samples, 0.10%)</title><rect x="1217.7" y="587" width="1.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1220.69" y="597.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (139 samples, 0.47%)</title><rect x="30.0" y="651" width="6.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="32.97" y="661.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (365 samples, 1.23%)</title><rect x="268.7" y="443" width="17.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="271.74" y="453.5" ></text>
</g>
<g >
<title>pq_getmessage (123 samples, 0.42%)</title><rect x="296.7" y="635" width="5.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="299.70" y="645.5" ></text>
</g>
<g >
<title>int4hashfast (8 samples, 0.03%)</title><rect x="871.3" y="555" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="874.30" y="565.5" ></text>
</g>
<g >
<title>ReadBuffer_common (3 samples, 0.01%)</title><rect x="39.8" y="507" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="42.82" y="517.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (24 samples, 0.08%)</title><rect x="1017.3" y="299" width="1.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1020.29" y="309.5" ></text>
</g>
<g >
<title>deleteObjectsInList (3 samples, 0.01%)</title><rect x="17.5" y="251" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="20.47" y="261.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (11 samples, 0.04%)</title><rect x="37.9" y="683" width="0.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="40.86" y="693.5" ></text>
</g>
<g >
<title>pq_beginmessage (28 samples, 0.09%)</title><rect x="303.9" y="651" width="1.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="306.93" y="661.5" ></text>
</g>
<g >
<title>_bt_binsrch_insert (3 samples, 0.01%)</title><rect x="1388.1" y="299" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1391.13" y="309.5" ></text>
</g>
<g >
<title>ExecScan (11 samples, 0.04%)</title><rect x="1384.8" y="539" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1387.77" y="549.5" ></text>
</g>
<g >
<title>__fget_light (31 samples, 0.10%)</title><rect x="121.7" y="475" width="1.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="124.68" y="485.5" ></text>
</g>
<g >
<title>FetchStatementTargetList (5 samples, 0.02%)</title><rect x="864.7" y="635" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="867.72" y="645.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (4 samples, 0.01%)</title><rect x="990.9" y="299" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="993.87" y="309.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (7 samples, 0.02%)</title><rect x="1088.0" y="299" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1091.04" y="309.5" ></text>
</g>
<g >
<title>ShowTransactionState (11 samples, 0.04%)</title><rect x="1342.7" y="715" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1345.72" y="725.5" ></text>
</g>
<g >
<title>GetCurrentTransactionStopTimestamp (13 samples, 0.04%)</title><rect x="1263.9" y="651" width="0.6" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1266.90" y="661.5" ></text>
</g>
<g >
<title>_bt_getroot (51 samples, 0.17%)</title><rect x="1066.2" y="363" width="2.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1069.15" y="373.5" ></text>
</g>
<g >
<title>afterTriggerMarkEvents (5 samples, 0.02%)</title><rect x="1347.2" y="715" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1350.16" y="725.5" ></text>
</g>
<g >
<title>newNode (46 samples, 0.16%)</title><rect x="667.6" y="507" width="2.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="670.59" y="517.5" ></text>
</g>
<g >
<title>murmurhash32 (6 samples, 0.02%)</title><rect x="675.9" y="427" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="678.94" y="437.5" ></text>
</g>
<g >
<title>__x64_sys_futex (5 samples, 0.02%)</title><rect x="1231.3" y="443" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1234.32" y="453.5" ></text>
</g>
<g >
<title>enable_statement_timeout (10 samples, 0.03%)</title><rect x="864.0" y="635" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="866.98" y="645.5" ></text>
</g>
<g >
<title>index_getnext_tid (11 samples, 0.04%)</title><rect x="1297.3" y="587" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1300.27" y="597.5" ></text>
</g>
<g >
<title>clear_bhb_loop (37 samples, 0.13%)</title><rect x="240.6" y="555" width="1.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="243.65" y="565.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (23 samples, 0.08%)</title><rect x="745.4" y="427" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="748.39" y="437.5" ></text>
</g>
<g >
<title>pg_any_to_server (33 samples, 0.11%)</title><rect x="798.1" y="619" width="1.6" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="801.12" y="629.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (15 samples, 0.05%)</title><rect x="80.8" y="235" width="0.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="83.75" y="245.5" ></text>
</g>
<g >
<title>LWLockRelease (9 samples, 0.03%)</title><rect x="821.6" y="539" width="0.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="824.60" y="549.5" ></text>
</g>
<g >
<title>pg_class_aclmask_ext (135 samples, 0.46%)</title><rect x="622.5" y="523" width="6.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="625.46" y="533.5" ></text>
</g>
<g >
<title>printtup_destroy (13 samples, 0.04%)</title><rect x="1130.9" y="651" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1133.93" y="661.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (4 samples, 0.01%)</title><rect x="884.1" y="587" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="887.14" y="597.5" ></text>
</g>
<g >
<title>RecordTransactionCommit (64 samples, 0.22%)</title><rect x="1217.2" y="603" width="3.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1220.18" y="613.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="660.1" y="427" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="663.07" y="437.5" ></text>
</g>
<g >
<title>int4hashfast (9 samples, 0.03%)</title><rect x="783.6" y="571" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="786.56" y="581.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (49 samples, 0.17%)</title><rect x="1380.8" y="731" width="2.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1383.76" y="741.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (11 samples, 0.04%)</title><rect x="37.9" y="667" width="0.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="40.86" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (3 samples, 0.01%)</title><rect x="1017.1" y="283" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1020.15" y="293.5" ></text>
</g>
<g >
<title>XLogInsertRecord (3 samples, 0.01%)</title><rect x="1281.1" y="715" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1284.07" y="725.5" ></text>
</g>
<g >
<title>ExecInitExprRec (223 samples, 0.75%)</title><rect x="692.6" y="523" width="10.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="695.65" y="533.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (1,081 samples, 3.66%)</title><rect x="244.4" y="523" width="50.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="247.38" y="533.5" >__x6..</text>
</g>
<g >
<title>syscall_return_via_sysret (3 samples, 0.01%)</title><rect x="238.4" y="539" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="241.41" y="549.5" ></text>
</g>
<g >
<title>StmtPlanRequiresRevalidation (3 samples, 0.01%)</title><rect x="1268.6" y="747" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1271.61" y="757.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (13 samples, 0.04%)</title><rect x="22.5" y="507" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="25.46" y="517.5" ></text>
</g>
<g >
<title>dlist_is_empty (4 samples, 0.01%)</title><rect x="1253.4" y="571" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1256.40" y="581.5" ></text>
</g>
<g >
<title>tag_hash (41 samples, 0.14%)</title><rect x="553.0" y="555" width="1.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="555.96" y="565.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (15 samples, 0.05%)</title><rect x="20.9" y="635" width="0.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="23.92" y="645.5" ></text>
</g>
<g >
<title>hash_search (71 samples, 0.24%)</title><rect x="751.3" y="475" width="3.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="754.31" y="485.5" ></text>
</g>
<g >
<title>DefineIndex (8 samples, 0.03%)</title><rect x="28.2" y="491" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="31.20" y="501.5" ></text>
</g>
<g >
<title>__GI___access (4 samples, 0.01%)</title><rect x="1276.1" y="315" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="1279.08" y="325.5" ></text>
</g>
<g >
<title>schedule (46 samples, 0.16%)</title><rect x="1380.9" y="651" width="2.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1383.85" y="661.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (37 samples, 0.13%)</title><rect x="940.1" y="379" width="1.7" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="943.10" y="389.5" ></text>
</g>
<g >
<title>SearchSysCache2 (3 samples, 0.01%)</title><rect x="42.5" y="667" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="45.53" y="677.5" ></text>
</g>
<g >
<title>ReleaseSysCache (3 samples, 0.01%)</title><rect x="669.8" y="523" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="672.83" y="533.5" ></text>
</g>
<g >
<title>__strlen_evex (29 samples, 0.10%)</title><rect x="791.2" y="635" width="1.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="794.17" y="645.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (18 samples, 0.06%)</title><rect x="27.1" y="747" width="0.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="30.08" y="757.5" ></text>
</g>
<g >
<title>exec_stmt_fori (57 samples, 0.19%)</title><rect x="81.5" y="443" width="2.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="84.50" y="453.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (4 samples, 0.01%)</title><rect x="885.2" y="619" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="888.21" y="629.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (7 samples, 0.02%)</title><rect x="1231.3" y="523" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1234.27" y="533.5" ></text>
</g>
<g >
<title>PortalDefineQuery (14 samples, 0.05%)</title><rect x="594.8" y="651" width="0.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="597.83" y="661.5" ></text>
</g>
<g >
<title>sk_reset_timer (10 samples, 0.03%)</title><rect x="376.0" y="155" width="0.5" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="378.99" y="165.5" ></text>
</g>
<g >
<title>ProcessUtility (3 samples, 0.01%)</title><rect x="12.8" y="395" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="15.85" y="405.5" ></text>
</g>
<g >
<title>tas (9 samples, 0.03%)</title><rect x="1177.6" y="507" width="0.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1180.56" y="517.5" ></text>
</g>
<g >
<title>exec_toplevel_block (139 samples, 0.47%)</title><rect x="30.0" y="571" width="6.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="32.97" y="581.5" ></text>
</g>
<g >
<title>systable_getnext (3 samples, 0.01%)</title><rect x="20.9" y="523" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="23.92" y="533.5" ></text>
</g>
<g >
<title>index_beginscan_internal (3 samples, 0.01%)</title><rect x="1294.8" y="251" width="0.2" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text  x="1297.84" y="261.5" ></text>
</g>
<g >
<title>RegisterSnapshot (11 samples, 0.04%)</title><rect x="766.6" y="587" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="769.62" y="597.5" ></text>
</g>
<g >
<title>exec_stmts (4 samples, 0.01%)</title><rect x="1385.3" y="443" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1388.29" y="453.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (20 samples, 0.07%)</title><rect x="1298.1" y="571" width="0.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1301.06" y="581.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (11 samples, 0.04%)</title><rect x="37.9" y="459" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="40.86" y="469.5" ></text>
</g>
<g >
<title>smgr_bulk_finish (12 samples, 0.04%)</title><rect x="1291.5" y="347" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1294.48" y="357.5" ></text>
</g>
<g >
<title>list_last_cell (6 samples, 0.02%)</title><rect x="726.4" y="491" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="729.39" y="501.5" ></text>
</g>
<g >
<title>hash_initial_lookup (8 samples, 0.03%)</title><rect x="1173.5" y="475" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1176.50" y="485.5" ></text>
</g>
<g >
<title>internal_flush (5 samples, 0.02%)</title><rect x="303.7" y="651" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="306.70" y="661.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (6 samples, 0.02%)</title><rect x="1269.0" y="699" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1271.98" y="709.5" ></text>
</g>
<g >
<title>ReleaseSysCache (23 samples, 0.08%)</title><rect x="713.2" y="475" width="1.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="716.23" y="485.5" ></text>
</g>
<g >
<title>LWLockAcquire (37 samples, 0.13%)</title><rect x="15.3" y="315" width="1.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="18.32" y="325.5" ></text>
</g>
<g >
<title>BufferDescriptorGetContentLock (4 samples, 0.01%)</title><rect x="1087.6" y="315" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1090.62" y="325.5" ></text>
</g>
<g >
<title>hash_search (99 samples, 0.33%)</title><rect x="731.2" y="459" width="4.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="734.25" y="469.5" ></text>
</g>
<g >
<title>hash_seq_search (76 samples, 0.26%)</title><rect x="1246.2" y="539" width="3.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1249.16" y="549.5" ></text>
</g>
<g >
<title>Int32GetDatum (7 samples, 0.02%)</title><rect x="1065.8" y="299" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1068.78" y="309.5" ></text>
</g>
<g >
<title>PageGetItem (7 samples, 0.02%)</title><rect x="1030.4" y="363" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1033.36" y="373.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (4,979 samples, 16.84%)</title><rect x="893.8" y="603" width="232.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="896.75" y="613.5" >pgss_ExecutorRun</text>
</g>
<g >
<title>pgss_ProcessUtility (49 samples, 0.17%)</title><rect x="1275.5" y="667" width="2.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1278.52" y="677.5" ></text>
</g>
<g >
<title>skb_network_protocol (7 samples, 0.02%)</title><rect x="453.6" y="315" width="0.4" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="456.65" y="325.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (7 samples, 0.02%)</title><rect x="754.3" y="427" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="757.30" y="437.5" ></text>
</g>
<g >
<title>exec_toplevel_block (3 samples, 0.01%)</title><rect x="12.8" y="523" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="15.85" y="533.5" ></text>
</g>
<g >
<title>ExecProcNode (96 samples, 0.32%)</title><rect x="13.0" y="571" width="4.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="15.99" y="581.5" ></text>
</g>
<g >
<title>AllocSetFree (45 samples, 0.15%)</title><rect x="1185.5" y="411" width="2.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1188.54" y="421.5" ></text>
</g>
<g >
<title>_bt_check_compare (3 samples, 0.01%)</title><rect x="20.2" y="427" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="23.17" y="437.5" ></text>
</g>
<g >
<title>BufferGetBlock (4 samples, 0.01%)</title><rect x="962.1" y="347" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="965.12" y="357.5" ></text>
</g>
<g >
<title>btgettuple (5 samples, 0.02%)</title><rect x="1388.7" y="603" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1391.69" y="613.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (12 samples, 0.04%)</title><rect x="666.5" y="491" width="0.5" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="669.47" y="501.5" ></text>
</g>
<g >
<title>index_getnext_tid (3 samples, 0.01%)</title><rect x="42.5" y="571" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="45.53" y="581.5" ></text>
</g>
<g >
<title>AtEOXact_RelationMap (13 samples, 0.04%)</title><rect x="1155.0" y="603" width="0.6" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1157.97" y="613.5" ></text>
</g>
<g >
<title>AllocSetAlloc (12 samples, 0.04%)</title><rect x="774.7" y="587" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="777.74" y="597.5" ></text>
</g>
<g >
<title>[[vdso]] (7 samples, 0.02%)</title><rect x="790.8" y="603" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="793.84" y="613.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (3 samples, 0.01%)</title><rect x="38.8" y="667" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="41.84" y="677.5" ></text>
</g>
<g >
<title>index_create (4 samples, 0.01%)</title><rect x="1298.2" y="459" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1301.15" y="469.5" ></text>
</g>
<g >
<title>exec_stmt_block (41 samples, 0.14%)</title><rect x="1386.7" y="635" width="1.9" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1389.73" y="645.5" ></text>
</g>
<g >
<title>_bt_doinsert (7 samples, 0.02%)</title><rect x="1292.5" y="315" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1295.51" y="325.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (49 samples, 0.17%)</title><rect x="1275.5" y="379" width="2.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1278.52" y="389.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (464 samples, 1.57%)</title><rect x="59.8" y="379" width="21.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="62.84" y="389.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (7 samples, 0.02%)</title><rect x="397.4" y="123" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="400.41" y="133.5" ></text>
</g>
<g >
<title>UnregisterSnapshotNoOwner (6 samples, 0.02%)</title><rect x="1201.1" y="475" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1204.12" y="485.5" ></text>
</g>
<g >
<title>__switch_to (15 samples, 0.05%)</title><rect x="163.7" y="427" width="0.7" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="166.69" y="437.5" ></text>
</g>
<g >
<title>forbidden_in_wal_sender (10 samples, 0.03%)</title><rect x="1256.5" y="667" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text  x="1259.48" y="677.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (4 samples, 0.01%)</title><rect x="128.8" y="459" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text  x="131.78" y="469.5" ></text>
</g>
<g >
<title>__put_user_nocheck_8 (3 samples, 0.01%)</title><rect x="126.5" y="475" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="129.54" y="485.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1,561 samples, 5.28%)</title><rect x="354.1" y="203" width="72.8" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="357.05" y="213.5" >tcp_v4..</text>
</g>
<g >
<title>index_getnext_slot (11 samples, 0.04%)</title><rect x="1297.3" y="603" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1300.27" y="613.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (46 samples, 0.16%)</title><rect x="1380.9" y="699" width="2.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1383.85" y="709.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (22 samples, 0.07%)</title><rect x="1183.6" y="443" width="1.0" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1186.62" y="453.5" ></text>
</g>
<g >
<title>index_insert (4 samples, 0.01%)</title><rect x="1287.7" y="347" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1290.74" y="357.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (19 samples, 0.06%)</title><rect x="313.5" y="555" width="0.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="316.54" y="565.5" ></text>
</g>
<g >
<title>index_build (14 samples, 0.05%)</title><rect x="1387.3" y="427" width="0.6" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="1390.29" y="437.5" ></text>
</g>
<g >
<title>ProcessUtility (11 samples, 0.04%)</title><rect x="37.9" y="475" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="40.86" y="485.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (3 samples, 0.01%)</title><rect x="1290.3" y="331" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1293.31" y="341.5" ></text>
</g>
<g >
<title>_bt_search (3 samples, 0.01%)</title><rect x="39.8" y="587" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="42.82" y="597.5" ></text>
</g>
<g >
<title>palloc (65 samples, 0.22%)</title><rect x="1258.0" y="635" width="3.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1260.97" y="645.5" ></text>
</g>
<g >
<title>hash_bytes (63 samples, 0.21%)</title><rect x="1235.8" y="491" width="2.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1238.75" y="501.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (21 samples, 0.07%)</title><rect x="64.0" y="171" width="1.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="67.04" y="181.5" ></text>
</g>
<g >
<title>string_compare (4 samples, 0.01%)</title><rect x="1206.3" y="539" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1209.26" y="549.5" ></text>
</g>
<g >
<title>tcp_send_mss (71 samples, 0.24%)</title><rect x="482.8" y="443" width="3.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="485.82" y="453.5" ></text>
</g>
<g >
<title>pfree (23 samples, 0.08%)</title><rect x="685.0" y="523" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="688.04" y="533.5" ></text>
</g>
<g >
<title>index_create (12 samples, 0.04%)</title><rect x="36.6" y="379" width="0.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="39.65" y="389.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (10 samples, 0.03%)</title><rect x="28.2" y="587" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="31.20" y="597.5" ></text>
</g>
<g >
<title>ChooseRelationName (3 samples, 0.01%)</title><rect x="30.0" y="347" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="33.02" y="357.5" ></text>
</g>
<g >
<title>finalize_in_progress_typentries (8 samples, 0.03%)</title><rect x="1156.4" y="587" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1159.37" y="597.5" ></text>
</g>
<g >
<title>ReadyForQuery (4,397 samples, 14.87%)</title><rect x="302.9" y="667" width="205.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="305.86" y="677.5" >ReadyForQuery</text>
</g>
<g >
<title>_bt_search (4 samples, 0.01%)</title><rect x="1296.6" y="491" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1299.57" y="501.5" ></text>
</g>
<g >
<title>do_unlinkat (10 samples, 0.03%)</title><rect x="1135.4" y="171" width="0.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1138.37" y="181.5" ></text>
</g>
<g >
<title>import_single_range (4 samples, 0.01%)</title><rect x="501.9" y="491" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="504.91" y="501.5" ></text>
</g>
<g >
<title>printtup_create_DR (59 samples, 0.20%)</title><rect x="881.7" y="635" width="2.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="884.66" y="645.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (9 samples, 0.03%)</title><rect x="1120.1" y="475" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1123.10" y="485.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (54 samples, 0.18%)</title><rect x="1134.2" y="555" width="2.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1137.20" y="565.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (10 samples, 0.03%)</title><rect x="917.7" y="395" width="0.5" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="920.69" y="405.5" ></text>
</g>
<g >
<title>list_member_oid (3 samples, 0.01%)</title><rect x="103.0" y="443" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="105.97" y="453.5" ></text>
</g>
<g >
<title>exec_stmt_fori (7 samples, 0.02%)</title><rect x="38.5" y="571" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="41.52" y="581.5" ></text>
</g>
<g >
<title>cmpxchg_double_slab.constprop.0.isra.0 (6 samples, 0.02%)</title><rect x="412.8" y="91" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="415.77" y="101.5" ></text>
</g>
<g >
<title>string_hash (24 samples, 0.08%)</title><rect x="546.2" y="619" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="549.20" y="629.5" ></text>
</g>
<g >
<title>palloc0 (42 samples, 0.14%)</title><rect x="667.8" y="491" width="1.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="670.77" y="501.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (3 samples, 0.01%)</title><rect x="21.7" y="667" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="24.71" y="677.5" ></text>
</g>
<g >
<title>btrescan (20 samples, 0.07%)</title><rect x="1092.7" y="427" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1095.71" y="437.5" ></text>
</g>
<g >
<title>SearchCatCache2 (3 samples, 0.01%)</title><rect x="42.5" y="651" width="0.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="45.53" y="661.5" ></text>
</g>
<g >
<title>hash_seq_init (7 samples, 0.02%)</title><rect x="1245.8" y="539" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1248.83" y="549.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (3 samples, 0.01%)</title><rect x="64.9" y="123" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="67.88" y="133.5" ></text>
</g>
<g >
<title>ExecInitFunc (192 samples, 0.65%)</title><rect x="693.3" y="507" width="9.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="696.30" y="517.5" ></text>
</g>
<g >
<title>ProcessUtility (49 samples, 0.17%)</title><rect x="1275.5" y="683" width="2.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1278.52" y="693.5" ></text>
</g>
<g >
<title>CatalogTupleInsert (14 samples, 0.05%)</title><rect x="1289.2" y="395" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1292.19" y="405.5" ></text>
</g>
<g >
<title>LockTagHashCode (41 samples, 0.14%)</title><rect x="568.2" y="555" width="1.9" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="571.23" y="565.5" ></text>
</g>
<g >
<title>DefineSequence (14 samples, 0.05%)</title><rect x="1298.3" y="475" width="0.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1301.34" y="485.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (232 samples, 0.78%)</title><rect x="1287.2" y="731" width="10.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1290.18" y="741.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (7 samples, 0.02%)</title><rect x="821.3" y="507" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="824.27" y="517.5" ></text>
</g>
<g >
<title>index_update_stats (4 samples, 0.01%)</title><rect x="1292.2" y="395" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1295.23" y="405.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (7 samples, 0.02%)</title><rect x="38.5" y="443" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="41.52" y="453.5" ></text>
</g>
<g >
<title>RemoveLocalLock (5 samples, 0.02%)</title><rect x="1339.8" y="715" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1342.83" y="725.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (7 samples, 0.02%)</title><rect x="11.0" y="747" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="14.03" y="757.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (125 samples, 0.42%)</title><rect x="274.7" y="395" width="5.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="277.67" y="405.5" ></text>
</g>
<g >
<title>__put_user_nocheck_8 (4 samples, 0.01%)</title><rect x="227.7" y="459" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="230.72" y="469.5" ></text>
</g>
<g >
<title>tag_hash (32 samples, 0.11%)</title><rect x="47.5" y="203" width="1.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="50.48" y="213.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (28 samples, 0.09%)</title><rect x="1203.1" y="523" width="1.3" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="1206.13" y="533.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (13 samples, 0.04%)</title><rect x="12.2" y="587" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="15.24" y="597.5" ></text>
</g>
<g >
<title>inet_sendmsg (3 samples, 0.01%)</title><rect x="318.2" y="475" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="321.17" y="485.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (5 samples, 0.02%)</title><rect x="566.0" y="507" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="569.03" y="517.5" ></text>
</g>
<g >
<title>InitBufferTag (5 samples, 0.02%)</title><rect x="69.2" y="235" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="72.18" y="245.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (3 samples, 0.01%)</title><rect x="1388.5" y="443" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1391.51" y="453.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (9 samples, 0.03%)</title><rect x="1294.8" y="315" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1297.79" y="325.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (27 samples, 0.09%)</title><rect x="1287.9" y="411" width="1.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1290.93" y="421.5" ></text>
</g>
<g >
<title>exec_stmt_block (11 samples, 0.04%)</title><rect x="1277.8" y="747" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1280.80" y="757.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (11 samples, 0.04%)</title><rect x="37.9" y="715" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="40.86" y="725.5" ></text>
</g>
<g >
<title>raw_local_deliver (15 samples, 0.05%)</title><rect x="353.4" y="203" width="0.7" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="356.35" y="213.5" ></text>
</g>
<g >
<title>_bt_first (5 samples, 0.02%)</title><rect x="19.8" y="475" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="22.85" y="485.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (3 samples, 0.01%)</title><rect x="1388.5" y="427" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1391.51" y="437.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (3 samples, 0.01%)</title><rect x="39.8" y="475" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="42.82" y="485.5" ></text>
</g>
<g >
<title>RelationFlushRelation (27 samples, 0.09%)</title><rect x="1287.9" y="315" width="1.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1290.93" y="325.5" ></text>
</g>
<g >
<title>ExecDropStmt (3 samples, 0.01%)</title><rect x="17.5" y="299" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="20.47" y="309.5" ></text>
</g>
<g >
<title>BackendMain (101 samples, 0.34%)</title><rect x="13.0" y="715" width="4.7" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="15.99" y="725.5" ></text>
</g>
<g >
<title>index_getnext_tid (810 samples, 2.74%)</title><rect x="43.7" y="443" width="37.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="46.70" y="453.5" >in..</text>
</g>
<g >
<title>update_rq_clock (3 samples, 0.01%)</title><rect x="206.0" y="379" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="209.02" y="389.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (11 samples, 0.04%)</title><rect x="39.3" y="699" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="42.31" y="709.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (823 samples, 2.78%)</title><rect x="809.9" y="587" width="38.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="812.89" y="597.5" >Ac..</text>
</g>
<g >
<title>pg_rotate_left32 (8 samples, 0.03%)</title><rect x="48.6" y="171" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="51.60" y="181.5" ></text>
</g>
<g >
<title>_bt_first (6 samples, 0.02%)</title><rect x="21.2" y="475" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="24.15" y="485.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (185 samples, 0.63%)</title><rect x="1287.2" y="699" width="8.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1290.18" y="709.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (4 samples, 0.01%)</title><rect x="1320.8" y="715" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1323.79" y="725.5" ></text>
</g>
<g >
<title>object_aclmask_ext (3 samples, 0.01%)</title><rect x="1362.6" y="715" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1365.60" y="725.5" ></text>
</g>
<g >
<title>AllocSetAlloc (16 samples, 0.05%)</title><rect x="688.8" y="459" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="691.82" y="469.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (14 samples, 0.05%)</title><rect x="1294.0" y="251" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1297.05" y="261.5" ></text>
</g>
<g >
<title>hash_initial_lookup (21 samples, 0.07%)</title><rect x="1234.7" y="491" width="1.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1237.73" y="501.5" ></text>
</g>
<g >
<title>palloc (26 samples, 0.09%)</title><rect x="1089.9" y="363" width="1.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1092.86" y="373.5" ></text>
</g>
<g >
<title>socket_flush (4,295 samples, 14.53%)</title><rect x="307.6" y="651" width="200.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="310.57" y="661.5" >socket_flush</text>
</g>
<g >
<title>RelationCacheInvalidateEntry (22 samples, 0.07%)</title><rect x="19.8" y="635" width="1.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="22.85" y="645.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (6 samples, 0.02%)</title><rect x="1284.1" y="747" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1287.06" y="757.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (4 samples, 0.01%)</title><rect x="1388.1" y="379" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1391.13" y="389.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (24 samples, 0.08%)</title><rect x="654.2" y="475" width="1.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="657.19" y="485.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (15 samples, 0.05%)</title><rect x="50.1" y="203" width="0.7" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="53.14" y="213.5" ></text>
</g>
<g >
<title>stack_is_too_deep (3 samples, 0.01%)</title><rect x="1373.2" y="715" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1376.25" y="725.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (3 samples, 0.01%)</title><rect x="1147.9" y="603" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1150.87" y="613.5" ></text>
</g>
<g >
<title>FastPathTransferRelationLocks (62 samples, 0.21%)</title><rect x="31.3" y="315" width="2.9" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="34.28" y="325.5" ></text>
</g>
<g >
<title>[[vdso]] (5 samples, 0.02%)</title><rect x="1264.2" y="603" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1267.18" y="613.5" ></text>
</g>
<g >
<title>pq_getbytes (4 samples, 0.01%)</title><rect x="296.5" y="635" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="299.51" y="645.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (157 samples, 0.53%)</title><rect x="230.3" y="459" width="7.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="233.33" y="469.5" ></text>
</g>
<g >
<title>read_tsc (5 samples, 0.02%)</title><rect x="465.8" y="395" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="468.78" y="405.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (141 samples, 0.48%)</title><rect x="917.2" y="427" width="6.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="920.23" y="437.5" ></text>
</g>
<g >
<title>check_stack_depth (4 samples, 0.01%)</title><rect x="697.8" y="475" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="700.78" y="485.5" ></text>
</g>
<g >
<title>ProcessUtility (11 samples, 0.04%)</title><rect x="1277.8" y="635" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1280.80" y="645.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (36 samples, 0.12%)</title><rect x="1381.3" y="619" width="1.7" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1384.32" y="629.5" ></text>
</g>
<g >
<title>relation_open (147 samples, 0.50%)</title><rect x="729.1" y="491" width="6.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="732.05" y="501.5" ></text>
</g>
<g >
<title>int4hashfast (15 samples, 0.05%)</title><rect x="679.9" y="443" width="0.7" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="682.91" y="453.5" ></text>
</g>
<g >
<title>cubictcp_cwnd_event (16 samples, 0.05%)</title><rect x="462.8" y="395" width="0.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="465.84" y="405.5" ></text>
</g>
<g >
<title>palloc (30 samples, 0.10%)</title><rect x="930.9" y="379" width="1.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="933.90" y="389.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (9 samples, 0.03%)</title><rect x="887.8" y="651" width="0.4" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="890.78" y="661.5" ></text>
</g>
<g >
<title>pgstat_get_transactional_drops (13 samples, 0.04%)</title><rect x="1367.1" y="715" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1370.13" y="725.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (4 samples, 0.01%)</title><rect x="1356.0" y="715" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1359.02" y="725.5" ></text>
</g>
<g >
<title>palloc (42 samples, 0.14%)</title><rect x="1100.4" y="491" width="1.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1103.36" y="501.5" ></text>
</g>
<g >
<title>pstrdup (3 samples, 0.01%)</title><rect x="1266.2" y="667" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="1269.23" y="677.5" ></text>
</g>
<g >
<title>__sys_recvfrom (1,067 samples, 3.61%)</title><rect x="245.0" y="507" width="49.8" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="248.03" y="517.5" >__sy..</text>
</g>
<g >
<title>FileWrite (5 samples, 0.02%)</title><rect x="1291.8" y="283" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1294.81" y="293.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="706.5" y="459" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="709.51" y="469.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (5 samples, 0.02%)</title><rect x="1328.1" y="715" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1331.11" y="725.5" ></text>
</g>
<g >
<title>exec_toplevel_block (30 samples, 0.10%)</title><rect x="36.5" y="587" width="1.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="39.46" y="597.5" ></text>
</g>
<g >
<title>ReadBufferExtended (6 samples, 0.02%)</title><rect x="1385.0" y="347" width="0.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1388.01" y="357.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (45 samples, 0.15%)</title><rect x="1158.6" y="555" width="2.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1161.61" y="565.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (10 samples, 0.03%)</title><rect x="40.8" y="507" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="43.76" y="517.5" ></text>
</g>
<g >
<title>doDeletion (5 samples, 0.02%)</title><rect x="35.9" y="299" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="38.90" y="309.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (18 samples, 0.06%)</title><rect x="1298.2" y="523" width="0.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1301.15" y="533.5" ></text>
</g>
<g >
<title>dlist_is_empty (6 samples, 0.02%)</title><rect x="1252.9" y="555" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1255.93" y="565.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (11 samples, 0.04%)</title><rect x="39.3" y="667" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="42.31" y="677.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (42 samples, 0.14%)</title><rect x="510.4" y="635" width="2.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="513.40" y="645.5" ></text>
</g>
<g >
<title>CleanupTempFiles (30 samples, 0.10%)</title><rect x="1146.0" y="587" width="1.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1149.01" y="597.5" ></text>
</g>
<g >
<title>pfree (56 samples, 0.19%)</title><rect x="1185.3" y="427" width="2.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1188.30" y="437.5" ></text>
</g>
<g >
<title>list_length (4 samples, 0.01%)</title><rect x="681.0" y="523" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="683.98" y="533.5" ></text>
</g>
<g >
<title>ExecDropStmt (29 samples, 0.10%)</title><rect x="40.8" y="731" width="1.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="43.76" y="741.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (18 samples, 0.06%)</title><rect x="1127.2" y="619" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1130.15" y="629.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (7 samples, 0.02%)</title><rect x="1180.1" y="411" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1183.12" y="421.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (139 samples, 0.47%)</title><rect x="30.0" y="667" width="6.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="32.97" y="677.5" ></text>
</g>
<g >
<title>RelationBuildDesc (3 samples, 0.01%)</title><rect x="42.5" y="731" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="45.53" y="741.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (8 samples, 0.03%)</title><rect x="771.0" y="587" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="773.96" y="597.5" ></text>
</g>
<g >
<title>SIGetDataEntries (63 samples, 0.21%)</title><rect x="738.2" y="459" width="2.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="741.20" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (8 samples, 0.03%)</title><rect x="1168.9" y="459" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1171.88" y="469.5" ></text>
</g>
<g >
<title>LWLockAcquire (8 samples, 0.03%)</title><rect x="1328.4" y="715" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1331.44" y="725.5" ></text>
</g>
<g >
<title>RelationInitIndexAccessInfo (5 samples, 0.02%)</title><rect x="20.5" y="571" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="23.50" y="581.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (11 samples, 0.04%)</title><rect x="705.3" y="523" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="708.30" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (16 samples, 0.05%)</title><rect x="863.0" y="523" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="865.95" y="533.5" ></text>
</g>
<g >
<title>palloc0 (78 samples, 0.26%)</title><rect x="615.1" y="555" width="3.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="618.08" y="565.5" ></text>
</g>
<g >
<title>AllocSetAlloc (39 samples, 0.13%)</title><rect x="1100.5" y="475" width="1.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1103.50" y="485.5" ></text>
</g>
<g >
<title>exec_stmts (30 samples, 0.10%)</title><rect x="36.5" y="555" width="1.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="39.46" y="565.5" ></text>
</g>
<g >
<title>SearchPathMatchesCurrentEnvironment (12 samples, 0.04%)</title><rect x="579.6" y="619" width="0.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="582.57" y="629.5" ></text>
</g>
<g >
<title>InstrEndLoop (16 samples, 0.05%)</title><rect x="1161.6" y="523" width="0.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="1164.59" y="533.5" ></text>
</g>
<g >
<title>InvalidateSystemCachesExtended (3 samples, 0.01%)</title><rect x="25.0" y="747" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="27.98" y="757.5" ></text>
</g>
<g >
<title>pg_server_to_client (4 samples, 0.01%)</title><rect x="878.1" y="619" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="881.07" y="629.5" ></text>
</g>
<g >
<title>set_task_cpu (3 samples, 0.01%)</title><rect x="392.0" y="75" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="394.95" y="85.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (13 samples, 0.04%)</title><rect x="22.5" y="523" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="25.46" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (6 samples, 0.02%)</title><rect x="942.7" y="331" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="945.66" y="341.5" ></text>
</g>
<g >
<title>_bt_binsrch (4 samples, 0.01%)</title><rect x="1297.3" y="539" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1300.27" y="549.5" ></text>
</g>
<g >
<title>ExecutePlan (810 samples, 2.74%)</title><rect x="43.7" y="587" width="37.8" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="46.70" y="597.5" >Ex..</text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (4 samples, 0.01%)</title><rect x="1270.2" y="747" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1273.20" y="757.5" ></text>
</g>
<g >
<title>LockRelationOid (380 samples, 1.29%)</title><rect x="737.5" y="507" width="17.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="740.45" y="517.5" ></text>
</g>
<g >
<title>_bt_search (3 samples, 0.01%)</title><rect x="41.4" y="411" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="44.36" y="421.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (135 samples, 0.46%)</title><rect x="191.9" y="395" width="6.3" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text  x="194.87" y="405.5" ></text>
</g>
<g >
<title>ExecDropStmt (9 samples, 0.03%)</title><rect x="1389.2" y="715" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1392.16" y="725.5" ></text>
</g>
<g >
<title>LWLockRelease (15 samples, 0.05%)</title><rect x="1018.7" y="299" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1021.74" y="309.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (7 samples, 0.02%)</title><rect x="29.5" y="747" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="32.51" y="757.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (10 samples, 0.03%)</title><rect x="430.0" y="251" width="0.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="432.99" y="261.5" ></text>
</g>
<g >
<title>__strncmp_evex (4 samples, 0.01%)</title><rect x="1206.3" y="523" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1209.26" y="533.5" ></text>
</g>
<g >
<title>socket_putmessage (27 samples, 0.09%)</title><rect x="305.8" y="635" width="1.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="308.80" y="645.5" ></text>
</g>
<g >
<title>AllocSetFree (5 samples, 0.02%)</title><rect x="593.3" y="603" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="596.33" y="613.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (5 samples, 0.02%)</title><rect x="17.5" y="555" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="20.47" y="565.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (52 samples, 0.18%)</title><rect x="510.1" y="651" width="2.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="513.12" y="661.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (101 samples, 0.34%)</title><rect x="919.1" y="363" width="4.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="922.09" y="373.5" ></text>
</g>
<g >
<title>pfree (10 samples, 0.03%)</title><rect x="1188.4" y="411" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1191.38" y="421.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (20 samples, 0.07%)</title><rect x="1299.2" y="475" width="0.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1302.18" y="485.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (10 samples, 0.03%)</title><rect x="790.7" y="619" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="793.70" y="629.5" ></text>
</g>
<g >
<title>[[stack]] (1,486 samples, 5.03%)</title><rect x="1305.6" y="731" width="69.4" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1308.62" y="741.5" >[[stac..</text>
</g>
<g >
<title>DefineRelation (4 samples, 0.01%)</title><rect x="40.5" y="731" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="43.48" y="741.5" ></text>
</g>
<g >
<title>generic_perform_write (5 samples, 0.02%)</title><rect x="1291.8" y="123" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="1294.81" y="133.5" ></text>
</g>
<g >
<title>ipv4_dst_check (5 samples, 0.02%)</title><rect x="368.3" y="171" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="371.34" y="181.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_skmem (69 samples, 0.23%)</title><rect x="497.8" y="427" width="3.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="500.80" y="437.5" ></text>
</g>
<g >
<title>its_return_thunk (3 samples, 0.01%)</title><rect x="150.9" y="475" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="153.94" y="485.5" ></text>
</g>
<g >
<title>check_stack_depth (3 samples, 0.01%)</title><rect x="763.5" y="555" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="766.54" y="565.5" ></text>
</g>
<g >
<title>FastPathTransferRelationLocks (3 samples, 0.01%)</title><rect x="1295.2" y="315" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1298.21" y="325.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (22 samples, 0.07%)</title><rect x="814.7" y="491" width="1.0" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="817.69" y="501.5" ></text>
</g>
<g >
<title>ScanPgRelation (5 samples, 0.02%)</title><rect x="1291.2" y="251" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1294.20" y="261.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (5 samples, 0.02%)</title><rect x="1283.8" y="747" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1286.82" y="757.5" ></text>
</g>
<g >
<title>AfterTriggerFireDeferred (18 samples, 0.06%)</title><rect x="1141.5" y="603" width="0.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1144.53" y="613.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (4 samples, 0.01%)</title><rect x="1113.9" y="523" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1116.85" y="533.5" ></text>
</g>
<g >
<title>RegisterSnapshot (30 samples, 0.10%)</title><rect x="599.4" y="619" width="1.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="602.45" y="629.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="1296.2" y="587" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1299.19" y="597.5" ></text>
</g>
<g >
<title>DefineRelation (13 samples, 0.04%)</title><rect x="1298.4" y="459" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1301.39" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (16 samples, 0.05%)</title><rect x="32.1" y="267" width="0.8" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="35.12" y="277.5" ></text>
</g>
<g >
<title>pfree (8 samples, 0.03%)</title><rect x="1131.2" y="635" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1134.17" y="645.5" ></text>
</g>
<g >
<title>ReleaseSysCache (12 samples, 0.04%)</title><rect x="623.0" y="507" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="625.97" y="517.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (20 samples, 0.07%)</title><rect x="1299.2" y="507" width="0.9" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1302.18" y="517.5" ></text>
</g>
<g >
<title>EndImplicitTransactionBlock (6 samples, 0.02%)</title><rect x="89.6" y="667" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="92.62" y="677.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (5 samples, 0.02%)</title><rect x="17.5" y="507" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="20.47" y="517.5" ></text>
</g>
<g >
<title>exec_stmts (11 samples, 0.04%)</title><rect x="1277.8" y="731" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1280.80" y="741.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (64 samples, 0.22%)</title><rect x="775.5" y="619" width="3.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="778.49" y="629.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3 samples, 0.01%)</title><rect x="738.0" y="411" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="741.01" y="421.5" ></text>
</g>
<g >
<title>exec_stmts (30 samples, 0.10%)</title><rect x="36.5" y="523" width="1.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="39.46" y="533.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (13 samples, 0.04%)</title><rect x="319.9" y="443" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="322.94" y="453.5" ></text>
</g>
<g >
<title>pfree (7 samples, 0.02%)</title><rect x="594.5" y="635" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="597.50" y="645.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (9 samples, 0.03%)</title><rect x="943.0" y="347" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="946.04" y="357.5" ></text>
</g>
<g >
<title>pfree (4 samples, 0.01%)</title><rect x="762.9" y="539" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="765.94" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (10 samples, 0.03%)</title><rect x="1168.8" y="475" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1171.78" y="485.5" ></text>
</g>
<g >
<title>finish_spin_delay (12 samples, 0.04%)</title><rect x="1352.2" y="715" width="0.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1355.20" y="725.5" ></text>
</g>
<g >
<title>btgettuple (2,643 samples, 8.94%)</title><rect x="968.9" y="411" width="123.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="971.89" y="421.5" >btgettuple</text>
</g>
<g >
<title>ResourceOwnerForget (7 samples, 0.02%)</title><rect x="713.8" y="411" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="716.84" y="421.5" ></text>
</g>
<g >
<title>evict (3 samples, 0.01%)</title><rect x="1135.5" y="155" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1138.46" y="165.5" ></text>
</g>
<g >
<title>systable_beginscan (3 samples, 0.01%)</title><rect x="1276.6" y="267" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="1279.64" y="277.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (4 samples, 0.01%)</title><rect x="758.6" y="443" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="761.59" y="453.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (11 samples, 0.04%)</title><rect x="1277.8" y="667" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1280.80" y="677.5" ></text>
</g>
<g >
<title>pairingheap_add (9 samples, 0.03%)</title><rect x="600.4" y="587" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="603.38" y="597.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6 samples, 0.02%)</title><rect x="461.4" y="363" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="464.35" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (5 samples, 0.02%)</title><rect x="74.6" y="171" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="77.59" y="181.5" ></text>
</g>
<g >
<title>internal_putbytes (15 samples, 0.05%)</title><rect x="887.1" y="619" width="0.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="890.08" y="629.5" ></text>
</g>
<g >
<title>mod_memcg_state (45 samples, 0.15%)</title><rect x="498.2" y="411" width="2.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="501.22" y="421.5" ></text>
</g>
<g >
<title>exec_stmts (11 samples, 0.04%)</title><rect x="37.9" y="539" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="40.86" y="549.5" ></text>
</g>
<g >
<title>IsSharedRelation (15 samples, 0.05%)</title><rect x="555.2" y="571" width="0.7" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="558.20" y="581.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (21 samples, 0.07%)</title><rect x="80.5" y="251" width="1.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="83.47" y="261.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (19 samples, 0.06%)</title><rect x="1109.4" y="459" width="0.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1112.37" y="469.5" ></text>
</g>
<g >
<title>CacheInvalidateSmgr (9 samples, 0.03%)</title><rect x="1134.6" y="267" width="0.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1137.62" y="277.5" ></text>
</g>
<g >
<title>PrepareToInvalidateCacheTuple (3 samples, 0.01%)</title><rect x="1280.1" y="699" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1283.09" y="709.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (9 samples, 0.03%)</title><rect x="678.1" y="475" width="0.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="681.13" y="485.5" ></text>
</g>
<g >
<title>ProcessUtility (3 samples, 0.01%)</title><rect x="1388.5" y="459" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1391.51" y="469.5" ></text>
</g>
<g >
<title>memset_erms (12 samples, 0.04%)</title><rect x="496.1" y="363" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="499.07" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (8 samples, 0.03%)</title><rect x="958.8" y="219" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="961.76" y="229.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (623 samples, 2.11%)</title><rect x="939.3" y="395" width="29.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="942.30" y="405.5" >h..</text>
</g>
<g >
<title>ip_finish_output2 (2,470 samples, 8.35%)</title><rect x="339.1" y="379" width="115.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="342.12" y="389.5" >ip_finish_o..</text>
</g>
<g >
<title>standard_ProcessUtility (57 samples, 0.19%)</title><rect x="81.5" y="331" width="2.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="84.50" y="341.5" ></text>
</g>
<g >
<title>ProcessCatchupInterrupt (3 samples, 0.01%)</title><rect x="1268.1" y="651" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1271.14" y="661.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (2,538 samples, 8.58%)</title><rect x="1137.9" y="635" width="118.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1140.89" y="645.5" >CommitTransa..</text>
</g>
<g >
<title>__sock_sendmsg (3,948 samples, 13.35%)</title><rect x="317.7" y="491" width="184.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="320.65" y="501.5" >__sock_sendmsg</text>
</g>
<g >
<title>AtCCI_LocalCache (3 samples, 0.01%)</title><rect x="21.7" y="715" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="24.71" y="725.5" ></text>
</g>
<g >
<title>register_seq_scan (31 samples, 0.10%)</title><rect x="1208.8" y="571" width="1.5" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1211.83" y="581.5" ></text>
</g>
<g >
<title>pfree (3 samples, 0.01%)</title><rect x="1195.9" y="395" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1198.85" y="405.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (15 samples, 0.05%)</title><rect x="1335.6" y="715" width="0.7" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1338.58" y="725.5" ></text>
</g>
<g >
<title>ExecScanFetch (3,639 samples, 12.31%)</title><rect x="924.0" y="475" width="169.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="927.04" y="485.5" >ExecScanFetch</text>
</g>
<g >
<title>ShowTransactionState (12 samples, 0.04%)</title><rect x="1253.6" y="603" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1256.58" y="613.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTupleInplace (3 samples, 0.01%)</title><rect x="37.0" y="299" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="40.02" y="309.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (5 samples, 0.02%)</title><rect x="1034.5" y="347" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1037.46" y="357.5" ></text>
</g>
<g >
<title>PageXLogRecPtrGet (4 samples, 0.01%)</title><rect x="1015.4" y="315" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1018.38" y="325.5" ></text>
</g>
<g >
<title>_bt_moveright (162 samples, 0.55%)</title><rect x="1068.6" y="363" width="7.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1071.58" y="373.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (3 samples, 0.01%)</title><rect x="756.1" y="459" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="759.12" y="469.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4 samples, 0.01%)</title><rect x="39.1" y="651" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="42.12" y="661.5" ></text>
</g>
<g >
<title>performMultipleDeletions (3 samples, 0.01%)</title><rect x="17.5" y="267" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="20.47" y="277.5" ></text>
</g>
<g >
<title>ExecScan (3,859 samples, 13.05%)</title><rect x="914.2" y="507" width="180.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="917.19" y="517.5" >ExecScan</text>
</g>
<g >
<title>pairingheap_add (5 samples, 0.02%)</title><rect x="1362.7" y="715" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1365.74" y="725.5" ></text>
</g>
<g >
<title>tcp_skb_entail (33 samples, 0.11%)</title><rect x="486.1" y="443" width="1.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="489.13" y="453.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (185 samples, 0.63%)</title><rect x="1287.2" y="475" width="8.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1290.18" y="485.5" ></text>
</g>
<g >
<title>FreeSnapshot (9 samples, 0.03%)</title><rect x="1203.7" y="491" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1206.69" y="501.5" ></text>
</g>
<g >
<title>LockAcquireExtended (62 samples, 0.21%)</title><rect x="31.3" y="331" width="2.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="34.28" y="341.5" ></text>
</g>
<g >
<title>its_return_thunk (4 samples, 0.01%)</title><rect x="135.8" y="459" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="138.82" y="469.5" ></text>
</g>
<g >
<title>enqueue_entity (22 samples, 0.07%)</title><rect x="195.1" y="315" width="1.1" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="198.14" y="325.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (5 samples, 0.02%)</title><rect x="932.1" y="347" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="935.07" y="357.5" ></text>
</g>
<g >
<title>_bt_first (3 samples, 0.01%)</title><rect x="39.8" y="603" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="42.82" y="613.5" ></text>
</g>
<g >
<title>SendSharedInvalidMessages (3 samples, 0.01%)</title><rect x="1280.0" y="699" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="1282.95" y="709.5" ></text>
</g>
<g >
<title>RelationFlushRelation (10 samples, 0.03%)</title><rect x="1387.3" y="315" width="0.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1390.29" y="325.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (132 samples, 0.45%)</title><rect x="721.9" y="523" width="6.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="724.87" y="533.5" ></text>
</g>
<g >
<title>index_getnext_tid (2,654 samples, 8.98%)</title><rect x="968.4" y="427" width="123.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="971.38" y="437.5" >index_getnex..</text>
</g>
<g >
<title>record_object_address_dependencies (4 samples, 0.01%)</title><rect x="28.4" y="459" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="31.39" y="469.5" ></text>
</g>
<g >
<title>set_next_entity (17 samples, 0.06%)</title><rect x="207.5" y="411" width="0.8" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text  x="210.51" y="421.5" ></text>
</g>
<g >
<title>LockRelation (62 samples, 0.21%)</title><rect x="31.3" y="347" width="2.9" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="34.28" y="357.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitializeWithInfo (10 samples, 0.03%)</title><rect x="972.4" y="379" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="975.39" y="389.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (11 samples, 0.04%)</title><rect x="754.7" y="491" width="0.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="757.67" y="501.5" ></text>
</g>
<g >
<title>LWLockAcquire (6 samples, 0.02%)</title><rect x="35.1" y="299" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="38.06" y="309.5" ></text>
</g>
<g >
<title>reweight_entity (6 samples, 0.02%)</title><rect x="196.2" y="315" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="199.17" y="325.5" ></text>
</g>
<g >
<title>murmurhash32 (13 samples, 0.04%)</title><rect x="1109.7" y="427" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1112.65" y="437.5" ></text>
</g>
<g >
<title>pg_client_to_server (5 samples, 0.02%)</title><rect x="1364.2" y="715" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1367.19" y="725.5" ></text>
</g>
<g >
<title>__cond_resched (3 samples, 0.01%)</title><rect x="153.5" y="459" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="156.51" y="469.5" ></text>
</g>
<g >
<title>hash_initial_lookup (4 samples, 0.01%)</title><rect x="1278.9" y="747" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1281.92" y="757.5" ></text>
</g>
<g >
<title>cubictcp_acked (9 samples, 0.03%)</title><rect x="415.6" y="139" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="418.57" y="149.5" ></text>
</g>
<g >
<title>AllocSetAlloc (5 samples, 0.02%)</title><rect x="10.2" y="747" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="13.19" y="757.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (4 samples, 0.01%)</title><rect x="39.1" y="635" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="42.12" y="645.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4 samples, 0.01%)</title><rect x="558.8" y="491" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="561.85" y="501.5" ></text>
</g>
<g >
<title>hash_seq_init (43 samples, 0.15%)</title><rect x="1208.3" y="587" width="2.0" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1211.27" y="597.5" ></text>
</g>
<g >
<title>ChooseRelationName (3 samples, 0.01%)</title><rect x="1275.5" y="331" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1278.52" y="341.5" ></text>
</g>
<g >
<title>ExecResetTupleTable (46 samples, 0.16%)</title><rect x="1189.0" y="491" width="2.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1191.99" y="501.5" ></text>
</g>
<g >
<title>PostgresMain (15 samples, 0.05%)</title><rect x="1384.8" y="715" width="0.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1387.77" y="725.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (4 samples, 0.01%)</title><rect x="904.8" y="363" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="907.77" y="373.5" ></text>
</g>
<g >
<title>_find_next_and_bit (4 samples, 0.01%)</title><rect x="205.5" y="347" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="208.46" y="357.5" ></text>
</g>
<g >
<title>index_getnext_tid (96 samples, 0.32%)</title><rect x="13.0" y="443" width="4.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="15.99" y="453.5" ></text>
</g>
<g >
<title>_bt_binsrch (6 samples, 0.02%)</title><rect x="1296.9" y="523" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1299.89" y="533.5" ></text>
</g>
<g >
<title>PortalRunUtility (4 samples, 0.01%)</title><rect x="1385.3" y="651" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1388.29" y="661.5" ></text>
</g>
<g >
<title>systable_getnext (11 samples, 0.04%)</title><rect x="1296.8" y="619" width="0.5" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1299.75" y="629.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (3 samples, 0.01%)</title><rect x="1290.8" y="171" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1293.78" y="181.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberTupleDesc (15 samples, 0.05%)</title><rect x="723.6" y="475" width="0.7" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="726.64" y="485.5" ></text>
</g>
<g >
<title>AtEOXact_ComboCid (5 samples, 0.02%)</title><rect x="1308.4" y="715" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="1311.42" y="725.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (15 samples, 0.05%)</title><rect x="1365.0" y="715" width="0.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1368.03" y="725.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (10 samples, 0.03%)</title><rect x="953.7" y="219" width="0.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="956.72" y="229.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (21 samples, 0.07%)</title><rect x="862.7" y="571" width="1.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="865.72" y="581.5" ></text>
</g>
<g >
<title>DecrTupleDescRefCount (8 samples, 0.03%)</title><rect x="1189.7" y="475" width="0.4" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="1192.69" y="485.5" ></text>
</g>
<g >
<title>FastPathGrantRelationLock (30 samples, 0.10%)</title><rect x="564.0" y="555" width="1.4" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text  x="566.98" y="565.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (6 samples, 0.02%)</title><rect x="779.6" y="587" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="782.60" y="597.5" ></text>
</g>
<g >
<title>PageGetItemId (3 samples, 0.01%)</title><rect x="1030.7" y="363" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1033.68" y="373.5" ></text>
</g>
<g >
<title>GetUserId (5 samples, 0.02%)</title><rect x="1323.4" y="715" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1326.35" y="725.5" ></text>
</g>
<g >
<title>deleteObjectsInList (4 samples, 0.01%)</title><rect x="37.5" y="347" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="40.54" y="357.5" ></text>
</g>
<g >
<title>TupleDescAttr (8 samples, 0.03%)</title><rect x="716.8" y="475" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="719.78" y="485.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (15 samples, 0.05%)</title><rect x="596.0" y="635" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="599.04" y="645.5" ></text>
</g>
<g >
<title>clear_buddies (3 samples, 0.01%)</title><rect x="171.0" y="395" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="173.97" y="405.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (6 samples, 0.02%)</title><rect x="715.5" y="427" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="718.52" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (36 samples, 0.12%)</title><rect x="51.0" y="187" width="1.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="54.02" y="197.5" ></text>
</g>
<g >
<title>_bt_first (3 samples, 0.01%)</title><rect x="20.9" y="459" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="23.92" y="469.5" ></text>
</g>
<g >
<title>DefineRelation (12 samples, 0.04%)</title><rect x="34.9" y="379" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="37.92" y="389.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (8 samples, 0.03%)</title><rect x="78.8" y="219" width="0.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="81.84" y="229.5" ></text>
</g>
<g >
<title>dequeue_task_fair (477 samples, 1.61%)</title><rect x="167.2" y="427" width="22.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="170.23" y="437.5" ></text>
</g>
<g >
<title>_bt_binsrch (3 samples, 0.01%)</title><rect x="20.3" y="459" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="23.31" y="469.5" ></text>
</g>
<g >
<title>findDependentObjects (4 samples, 0.01%)</title><rect x="1277.6" y="299" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1280.62" y="309.5" ></text>
</g>
<g >
<title>__tcp_ack_snd_check (3 samples, 0.01%)</title><rect x="374.8" y="155" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="377.78" y="165.5" ></text>
</g>
<g >
<title>tcp_send_delayed_ack (3 samples, 0.01%)</title><rect x="426.7" y="155" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="429.67" y="165.5" ></text>
</g>
<g >
<title>index_insert (8 samples, 0.03%)</title><rect x="1292.5" y="347" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1295.51" y="357.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (3 samples, 0.01%)</title><rect x="1366.3" y="715" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1369.29" y="725.5" ></text>
</g>
<g >
<title>palloc0 (42 samples, 0.14%)</title><rect x="706.9" y="507" width="2.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="709.93" y="517.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (3 samples, 0.01%)</title><rect x="964.8" y="347" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="967.79" y="357.5" ></text>
</g>
<g >
<title>mod_memcg_state (16 samples, 0.05%)</title><rect x="261.0" y="411" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="263.99" y="421.5" ></text>
</g>
<g >
<title>DefineIndex (40 samples, 0.14%)</title><rect x="19.8" y="747" width="1.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="22.80" y="757.5" ></text>
</g>
<g >
<title>futex_wake (4 samples, 0.01%)</title><rect x="1232.1" y="459" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1235.11" y="469.5" ></text>
</g>
<g >
<title>PageGetItem (3 samples, 0.01%)</title><rect x="1074.9" y="331" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1077.88" y="341.5" ></text>
</g>
<g >
<title>reweight_entity (17 samples, 0.06%)</title><rect x="187.6" y="411" width="0.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="190.58" y="421.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (3 samples, 0.01%)</title><rect x="1231.4" y="283" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1234.41" y="293.5" ></text>
</g>
<g >
<title>lappend_int (20 samples, 0.07%)</title><rect x="705.8" y="523" width="0.9" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text  x="708.81" y="533.5" ></text>
</g>
<g >
<title>mdcreate (3 samples, 0.01%)</title><rect x="1298.9" y="379" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1301.85" y="389.5" ></text>
</g>
<g >
<title>resetStringInfo (3 samples, 0.01%)</title><rect x="305.1" y="603" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="308.10" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (6 samples, 0.02%)</title><rect x="1232.5" y="475" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1235.49" y="485.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (10 samples, 0.03%)</title><rect x="1277.9" y="523" width="0.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1280.85" y="533.5" ></text>
</g>
<g >
<title>psi_task_switch (119 samples, 0.40%)</title><rect x="209.0" y="427" width="5.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="212.00" y="437.5" ></text>
</g>
<g >
<title>AtStart_Cache (4 samples, 0.01%)</title><rect x="1135.9" y="315" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1138.93" y="325.5" ></text>
</g>
<g >
<title>IncrTupleDescRefCount (15 samples, 0.05%)</title><rect x="723.6" y="491" width="0.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="726.64" y="501.5" ></text>
</g>
<g >
<title>dequeue_task_fair (8 samples, 0.03%)</title><rect x="201.3" y="363" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="204.35" y="373.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (3 samples, 0.01%)</title><rect x="990.9" y="283" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="993.92" y="293.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (10 samples, 0.03%)</title><rect x="38.5" y="731" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="41.52" y="741.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1,603 samples, 5.42%)</title><rect x="352.8" y="235" width="74.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="355.84" y="245.5" >ip_loca..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,677 samples, 9.05%)</title><rect x="112.8" y="539" width="125.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="115.82" y="549.5" >entry_SYSCALL..</text>
</g>
<g >
<title>hash_initial_lookup (3 samples, 0.01%)</title><rect x="818.1" y="491" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="821.15" y="501.5" ></text>
</g>
<g >
<title>xfd_validate_state (12 samples, 0.04%)</title><rect x="237.1" y="443" width="0.6" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="240.10" y="453.5" ></text>
</g>
<g >
<title>do_syscall_64 (47 samples, 0.16%)</title><rect x="1380.9" y="715" width="2.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1383.85" y="725.5" ></text>
</g>
<g >
<title>netif_skb_features (21 samples, 0.07%)</title><rect x="453.0" y="331" width="1.0" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="456.00" y="341.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (5 samples, 0.02%)</title><rect x="1231.7" y="523" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1234.74" y="533.5" ></text>
</g>
<g >
<title>GetNewOidWithIndex (3 samples, 0.01%)</title><rect x="39.8" y="683" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="42.82" y="693.5" ></text>
</g>
<g >
<title>hash_initial_lookup (10 samples, 0.03%)</title><rect x="752.7" y="443" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="755.67" y="453.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (4 samples, 0.01%)</title><rect x="1287.7" y="363" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1290.74" y="373.5" ></text>
</g>
<g >
<title>exec_toplevel_block (4 samples, 0.01%)</title><rect x="1385.3" y="507" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1388.29" y="517.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (4 samples, 0.01%)</title><rect x="1385.3" y="347" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1388.29" y="357.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (3 samples, 0.01%)</title><rect x="623.3" y="443" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="626.30" y="453.5" ></text>
</g>
<g >
<title>ReleaseCatCache (10 samples, 0.03%)</title><rect x="678.1" y="491" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="681.13" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (9 samples, 0.03%)</title><rect x="901.1" y="363" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="904.13" y="373.5" ></text>
</g>
<g >
<title>postmaster_child_launch (101 samples, 0.34%)</title><rect x="13.0" y="731" width="4.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="15.99" y="741.5" ></text>
</g>
<g >
<title>string_hash (24 samples, 0.08%)</title><rect x="527.4" y="603" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="530.39" y="613.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (185 samples, 0.63%)</title><rect x="1287.2" y="491" width="8.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1290.18" y="501.5" ></text>
</g>
<g >
<title>findDependentObjects (4 samples, 0.01%)</title><rect x="1277.6" y="315" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1280.62" y="325.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (3 samples, 0.01%)</title><rect x="671.4" y="443" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="674.41" y="453.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (3 samples, 0.01%)</title><rect x="1322.5" y="715" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1325.51" y="725.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (30 samples, 0.10%)</title><rect x="745.1" y="459" width="1.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="748.06" y="469.5" ></text>
</g>
<g >
<title>MemoryContextReset (3 samples, 0.01%)</title><rect x="84.2" y="683" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="87.21" y="693.5" ></text>
</g>
<g >
<title>psi_flags_change (6 samples, 0.02%)</title><rect x="209.5" y="411" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="212.47" y="421.5" ></text>
</g>
<g >
<title>DatumGetInt32 (7 samples, 0.02%)</title><rect x="991.1" y="347" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="994.06" y="357.5" ></text>
</g>
<g >
<title>__GI___errno_location (29 samples, 0.10%)</title><rect x="103.9" y="571" width="1.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="106.85" y="581.5" ></text>
</g>
<g >
<title>idle_cpu (8 samples, 0.03%)</title><rect x="205.6" y="347" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="208.64" y="357.5" ></text>
</g>
<g >
<title>smgrGetPendingDeletes (3 samples, 0.01%)</title><rect x="1372.3" y="715" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1375.31" y="725.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="1347.0" y="715" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1350.02" y="725.5" ></text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (150 samples, 0.51%)</title><rect x="1118.8" y="491" width="7.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1121.84" y="501.5" ></text>
</g>
<g >
<title>update_curr (3 samples, 0.01%)</title><rect x="196.3" y="299" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="199.31" y="309.5" ></text>
</g>
<g >
<title>pq_getmsgstring (3 samples, 0.01%)</title><rect x="1369.0" y="715" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text  x="1372.04" y="725.5" ></text>
</g>
<g >
<title>exec_execute_message (13 samples, 0.04%)</title><rect x="12.2" y="715" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="15.24" y="725.5" ></text>
</g>
<g >
<title>tts_virtual_clear (13 samples, 0.04%)</title><rect x="915.8" y="443" width="0.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="918.83" y="453.5" ></text>
</g>
<g >
<title>DefineIndex (9 samples, 0.03%)</title><rect x="37.9" y="411" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="40.86" y="421.5" ></text>
</g>
<g >
<title>rb_first (5 samples, 0.02%)</title><rect x="416.6" y="139" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="419.59" y="149.5" ></text>
</g>
<g >
<title>RelationCloseCleanup (4 samples, 0.01%)</title><rect x="1181.1" y="427" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1184.15" y="437.5" ></text>
</g>
<g >
<title>_bt_mark_scankey_required (12 samples, 0.04%)</title><rect x="1011.1" y="363" width="0.5" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1014.08" y="373.5" ></text>
</g>
<g >
<title>AttrDefaultFetch (5 samples, 0.02%)</title><rect x="40.8" y="491" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="43.76" y="501.5" ></text>
</g>
<g >
<title>BufferGetPage (7 samples, 0.02%)</title><rect x="1030.0" y="363" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1032.98" y="373.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (39 samples, 0.13%)</title><rect x="1233.9" y="507" width="1.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1236.89" y="517.5" ></text>
</g>
<g >
<title>__switch_to_asm (20 samples, 0.07%)</title><rect x="1377.9" y="731" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1380.87" y="741.5" ></text>
</g>
<g >
<title>CStringGetDatum (4 samples, 0.01%)</title><rect x="1314.8" y="715" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1317.77" y="725.5" ></text>
</g>
<g >
<title>exec_toplevel_block (7 samples, 0.02%)</title><rect x="38.5" y="619" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="41.52" y="629.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (4 samples, 0.01%)</title><rect x="1385.3" y="539" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1388.29" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (6 samples, 0.02%)</title><rect x="771.1" y="571" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="774.06" y="581.5" ></text>
</g>
<g >
<title>exprCollation (10 samples, 0.03%)</title><rect x="719.6" y="491" width="0.5" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="722.62" y="501.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (3 samples, 0.01%)</title><rect x="786.9" y="587" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="789.88" y="597.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (6 samples, 0.02%)</title><rect x="680.6" y="459" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="683.61" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (3 samples, 0.01%)</title><rect x="1283.0" y="747" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1286.03" y="757.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (5 samples, 0.02%)</title><rect x="17.5" y="331" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="20.47" y="341.5" ></text>
</g>
<g >
<title>index_getnext_slot (5 samples, 0.02%)</title><rect x="1388.7" y="635" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1391.69" y="645.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (10 samples, 0.03%)</title><rect x="52.8" y="203" width="0.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="55.84" y="213.5" ></text>
</g>
<g >
<title>findDependentObjects (11 samples, 0.04%)</title><rect x="1297.3" y="635" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1300.27" y="645.5" ></text>
</g>
<g >
<title>pgstat_report_wait_start (3 samples, 0.01%)</title><rect x="238.5" y="571" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="241.55" y="581.5" ></text>
</g>
<g >
<title>pq_writeint32 (4 samples, 0.01%)</title><rect x="1369.3" y="715" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1372.32" y="725.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (9 samples, 0.03%)</title><rect x="33.7" y="267" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="36.71" y="277.5" ></text>
</g>
<g >
<title>ExecScanReScan (3 samples, 0.01%)</title><rect x="1320.4" y="715" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1323.37" y="725.5" ></text>
</g>
<g >
<title>pg_pwritev (5 samples, 0.02%)</title><rect x="1291.8" y="251" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1294.81" y="261.5" ></text>
</g>
<g >
<title>DefineIndex (4 samples, 0.01%)</title><rect x="81.5" y="299" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="84.50" y="309.5" ></text>
</g>
<g >
<title>ReadBuffer_common (5 samples, 0.02%)</title><rect x="12.6" y="347" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="15.61" y="357.5" ></text>
</g>
<g >
<title>command_tag_display_rowcount (4 samples, 0.01%)</title><rect x="885.4" y="619" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="888.40" y="629.5" ></text>
</g>
<g >
<title>__switch_to (19 samples, 0.06%)</title><rect x="1377.0" y="731" width="0.9" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="1379.98" y="741.5" ></text>
</g>
<g >
<title>systable_getnext (6 samples, 0.02%)</title><rect x="21.2" y="539" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="24.15" y="549.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (8 samples, 0.03%)</title><rect x="1027.8" y="347" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1030.84" y="357.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (28 samples, 0.09%)</title><rect x="591.4" y="619" width="1.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="594.42" y="629.5" ></text>
</g>
<g >
<title>smgrGetPendingDeletes (8 samples, 0.03%)</title><rect x="1219.1" y="587" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1222.09" y="597.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (4 samples, 0.01%)</title><rect x="474.9" y="395" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="477.93" y="405.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTupleCommon (3 samples, 0.01%)</title><rect x="1280.5" y="715" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="1283.51" y="725.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (4 samples, 0.01%)</title><rect x="547.1" y="587" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="550.13" y="597.5" ></text>
</g>
<g >
<title>__build_skb_around (3 samples, 0.01%)</title><rect x="488.4" y="411" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="491.42" y="421.5" ></text>
</g>
<g >
<title>apparmor_socket_sock_rcv_skb (3 samples, 0.01%)</title><rect x="367.4" y="155" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="370.45" y="165.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (21 samples, 0.07%)</title><rect x="1290.5" y="379" width="1.0" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1293.50" y="389.5" ></text>
</g>
<g >
<title>try_to_wake_up (293 samples, 0.99%)</title><rect x="383.7" y="91" width="13.7" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="386.74" y="101.5" ></text>
</g>
<g >
<title>RelationGetIndexAttOptions (3 samples, 0.01%)</title><rect x="22.5" y="283" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="25.46" y="293.5" ></text>
</g>
<g >
<title>__libc_recv (1,212 samples, 4.10%)</title><rect x="239.7" y="571" width="56.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="242.71" y="581.5" >__li..</text>
</g>
<g >
<title>deleteObjectsInList (27 samples, 0.09%)</title><rect x="1296.0" y="651" width="1.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1299.01" y="661.5" ></text>
</g>
<g >
<title>standard_ExecutorEnd (504 samples, 1.70%)</title><rect x="1178.0" y="523" width="23.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1180.98" y="533.5" ></text>
</g>
<g >
<title>scanner_isspace (5 samples, 0.02%)</title><rect x="1371.1" y="715" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1374.10" y="725.5" ></text>
</g>
<g >
<title>save_fpregs_to_fpstate (13 samples, 0.04%)</title><rect x="237.8" y="539" width="0.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="240.80" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (14 samples, 0.05%)</title><rect x="1243.0" y="475" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1245.99" y="485.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (5 samples, 0.02%)</title><rect x="35.5" y="235" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="38.53" y="245.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (4 samples, 0.01%)</title><rect x="660.4" y="411" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="663.40" y="421.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (5 samples, 0.02%)</title><rect x="1336.4" y="715" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1339.38" y="725.5" ></text>
</g>
<g >
<title>GetDefaultOpClass (18 samples, 0.06%)</title><rect x="30.2" y="331" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="33.16" y="341.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (12 samples, 0.04%)</title><rect x="1018.9" y="283" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1021.88" y="293.5" ></text>
</g>
<g >
<title>_bt_check_compare (5 samples, 0.02%)</title><rect x="1384.8" y="363" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1387.77" y="373.5" ></text>
</g>
<g >
<title>__virt_addr_valid (17 samples, 0.06%)</title><rect x="284.9" y="379" width="0.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="287.94" y="389.5" ></text>
</g>
<g >
<title>ScanQueryForLocks (486 samples, 1.64%)</title><rect x="556.9" y="603" width="22.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="559.88" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (10 samples, 0.03%)</title><rect x="599.9" y="571" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="602.92" y="581.5" ></text>
</g>
<g >
<title>internal_flush (4,270 samples, 14.44%)</title><rect x="308.1" y="635" width="199.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="311.13" y="645.5" >internal_flush</text>
</g>
<g >
<title>RelationBuildDesc (13 samples, 0.04%)</title><rect x="20.9" y="571" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="23.92" y="581.5" ></text>
</g>
<g >
<title>dlist_is_empty (15 samples, 0.05%)</title><rect x="1150.0" y="587" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1152.97" y="597.5" ></text>
</g>
<g >
<title>tag_hash (48 samples, 0.16%)</title><rect x="576.4" y="539" width="2.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="579.39" y="549.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (14 samples, 0.05%)</title><rect x="577.9" y="507" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="580.93" y="517.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (3 samples, 0.01%)</title><rect x="644.3" y="427" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="647.30" y="437.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (185 samples, 0.63%)</title><rect x="1287.2" y="667" width="8.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1290.18" y="677.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (14 samples, 0.05%)</title><rect x="476.5" y="427" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="479.52" y="437.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (13 samples, 0.04%)</title><rect x="22.5" y="571" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="25.46" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (7 samples, 0.02%)</title><rect x="956.2" y="219" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="959.24" y="229.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (139 samples, 0.47%)</title><rect x="30.0" y="587" width="6.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="32.97" y="597.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (12 samples, 0.04%)</title><rect x="1193.8" y="443" width="0.6" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1196.80" y="453.5" ></text>
</g>
<g >
<title>SearchSysCache1 (118 samples, 0.40%)</title><rect x="779.9" y="635" width="5.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="782.88" y="645.5" ></text>
</g>
<g >
<title>exec_toplevel_block (10 samples, 0.03%)</title><rect x="28.2" y="683" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="31.20" y="693.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="566.0" y="491" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="569.03" y="501.5" ></text>
</g>
<g >
<title>PortalRun (54 samples, 0.18%)</title><rect x="1134.2" y="651" width="2.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1137.20" y="661.5" ></text>
</g>
<g >
<title>ComputeIndexAttrs (10 samples, 0.03%)</title><rect x="1287.3" y="427" width="0.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1290.28" y="437.5" ></text>
</g>
<g >
<title>pq_getbyte (3 samples, 0.01%)</title><rect x="302.5" y="651" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="305.53" y="661.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (185 samples, 0.63%)</title><rect x="1287.2" y="523" width="8.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1290.18" y="533.5" ></text>
</g>
<g >
<title>sock_recvmsg (57 samples, 0.19%)</title><rect x="289.5" y="491" width="2.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="292.46" y="501.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (10 samples, 0.03%)</title><rect x="28.2" y="571" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="31.20" y="581.5" ></text>
</g>
<g >
<title>ExecScan (4 samples, 0.01%)</title><rect x="1320.1" y="715" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1323.13" y="725.5" ></text>
</g>
<g >
<title>__get_user_8 (84 samples, 0.28%)</title><rect x="223.8" y="459" width="3.9" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="226.75" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (4 samples, 0.01%)</title><rect x="943.3" y="299" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="946.27" y="309.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (4 samples, 0.01%)</title><rect x="1202.1" y="523" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1205.10" y="533.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (18 samples, 0.06%)</title><rect x="654.5" y="459" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="657.47" y="469.5" ></text>
</g>
<g >
<title>SearchCatCache (3 samples, 0.01%)</title><rect x="1290.3" y="363" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1293.31" y="373.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (4 samples, 0.01%)</title><rect x="1135.9" y="299" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1138.93" y="309.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (21 samples, 0.07%)</title><rect x="1290.5" y="331" width="1.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1293.50" y="341.5" ></text>
</g>
<g >
<title>AtEOXact_HashTables (5 samples, 0.02%)</title><rect x="1147.5" y="603" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1150.55" y="613.5" ></text>
</g>
<g >
<title>TupleDescInitEntryCollation (8 samples, 0.03%)</title><rect x="719.3" y="491" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="722.25" y="501.5" ></text>
</g>
<g >
<title>ReadBuffer (15 samples, 0.05%)</title><rect x="1077.0" y="331" width="0.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1080.03" y="341.5" ></text>
</g>
<g >
<title>PinBufferForBlock (463 samples, 1.57%)</title><rect x="59.8" y="267" width="21.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="62.84" y="277.5" ></text>
</g>
<g >
<title>ChoosePortalStrategy (5 samples, 0.02%)</title><rect x="598.4" y="635" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="601.42" y="645.5" ></text>
</g>
<g >
<title>pq_getmsgint (3 samples, 0.01%)</title><rect x="1264.9" y="667" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1267.92" y="677.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (5 samples, 0.02%)</title><rect x="1298.6" y="363" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1301.57" y="373.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (3 samples, 0.01%)</title><rect x="734.6" y="427" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="737.61" y="437.5" ></text>
</g>
<g >
<title>pgstat_report_stat (29 samples, 0.10%)</title><rect x="1263.3" y="667" width="1.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1266.29" y="677.5" ></text>
</g>
<g >
<title>index_getnext_tid (8 samples, 0.03%)</title><rect x="40.1" y="619" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="43.06" y="629.5" ></text>
</g>
<g >
<title>heapam_index_fetch_begin (28 samples, 0.09%)</title><rect x="936.7" y="411" width="1.3" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="939.74" y="421.5" ></text>
</g>
<g >
<title>ProcessUtility (5 samples, 0.02%)</title><rect x="17.5" y="619" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="20.47" y="629.5" ></text>
</g>
<g >
<title>s_lock (527 samples, 1.78%)</title><rect x="822.0" y="539" width="24.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="825.02" y="549.5" ></text>
</g>
<g >
<title>_bt_search_insert (6 samples, 0.02%)</title><rect x="1292.6" y="299" width="0.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="1295.55" y="309.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (65 samples, 0.22%)</title><rect x="802.8" y="619" width="3.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="805.79" y="629.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (23 samples, 0.08%)</title><rect x="772.8" y="635" width="1.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="775.83" y="645.5" ></text>
</g>
<g >
<title>ExecOpenIndices (3 samples, 0.01%)</title><rect x="1289.7" y="363" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1292.66" y="373.5" ></text>
</g>
<g >
<title>ExecDoInitialPruning (6 samples, 0.02%)</title><rect x="1317.9" y="715" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="1320.94" y="725.5" ></text>
</g>
<g >
<title>index_getnext_tid (13 samples, 0.04%)</title><rect x="12.2" y="475" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="15.24" y="485.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (39 samples, 0.13%)</title><rect x="613.0" y="571" width="1.8" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="615.98" y="581.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (4 samples, 0.01%)</title><rect x="1313.5" y="715" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1316.51" y="725.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (8 samples, 0.03%)</title><rect x="1136.2" y="299" width="0.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1139.21" y="309.5" ></text>
</g>
<g >
<title>ExecInitResultSlot (67 samples, 0.23%)</title><rect x="657.7" y="507" width="3.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="660.69" y="517.5" ></text>
</g>
<g >
<title>AtEOXact_ApplyLauncher (31 samples, 0.10%)</title><rect x="1144.3" y="603" width="1.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1147.28" y="613.5" ></text>
</g>
<g >
<title>ProcessUtility (18 samples, 0.06%)</title><rect x="1298.2" y="539" width="0.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1301.15" y="549.5" ></text>
</g>
<g >
<title>skb_release_data (107 samples, 0.36%)</title><rect x="408.5" y="123" width="5.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="411.52" y="133.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (10 samples, 0.03%)</title><rect x="744.3" y="443" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="747.27" y="453.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="689.3" y="443" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="692.34" y="453.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (45 samples, 0.15%)</title><rect x="966.3" y="379" width="2.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="969.28" y="389.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (8 samples, 0.03%)</title><rect x="956.2" y="235" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="959.20" y="245.5" ></text>
</g>
<g >
<title>index_getnext_tid (3 samples, 0.01%)</title><rect x="1296.2" y="571" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1299.19" y="581.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (31 samples, 0.10%)</title><rect x="1203.0" y="539" width="1.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1205.99" y="549.5" ></text>
</g>
<g >
<title>ttwu_do_activate (3 samples, 0.01%)</title><rect x="990.9" y="267" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="993.92" y="277.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (96 samples, 0.32%)</title><rect x="13.0" y="619" width="4.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="15.99" y="629.5" ></text>
</g>
<g >
<title>__flush_smp_call_function_queue (28 samples, 0.09%)</title><rect x="192.1" y="363" width="1.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="195.06" y="373.5" ></text>
</g>
<g >
<title>gettimeofday@plt (3 samples, 0.01%)</title><rect x="512.4" y="635" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="515.41" y="645.5" ></text>
</g>
<g >
<title>RelationFlushRelation (5 samples, 0.02%)</title><rect x="35.5" y="203" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="38.53" y="213.5" ></text>
</g>
<g >
<title>_bt_doinsert (7 samples, 0.02%)</title><rect x="1289.8" y="331" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1292.85" y="341.5" ></text>
</g>
<g >
<title>ip_rcv_core (23 samples, 0.08%)</title><rect x="428.1" y="219" width="1.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="431.12" y="229.5" ></text>
</g>
<g >
<title>skb_release_data (304 samples, 1.03%)</title><rect x="433.3" y="267" width="14.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="436.35" y="277.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (3 samples, 0.01%)</title><rect x="594.7" y="619" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="597.69" y="629.5" ></text>
</g>
<g >
<title>__strncmp_evex (3 samples, 0.01%)</title><rect x="866.0" y="587" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="868.98" y="597.5" ></text>
</g>
<g >
<title>pgss_ExecutorEnd (3 samples, 0.01%)</title><rect x="1366.2" y="715" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1369.15" y="725.5" ></text>
</g>
<g >
<title>_bt_compare (3 samples, 0.01%)</title><rect x="40.1" y="555" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="43.06" y="565.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (11 samples, 0.04%)</title><rect x="788.9" y="619" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="791.93" y="629.5" ></text>
</g>
<g >
<title>SearchCatCache3 (123 samples, 0.42%)</title><rect x="671.9" y="491" width="5.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="674.88" y="501.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (185 samples, 0.63%)</title><rect x="1287.2" y="651" width="8.6" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1290.18" y="661.5" ></text>
</g>
<g >
<title>_bt_lockbuf (37 samples, 0.13%)</title><rect x="15.3" y="347" width="1.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="18.32" y="357.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (6 samples, 0.02%)</title><rect x="1386.8" y="283" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1389.78" y="293.5" ></text>
</g>
<g >
<title>_bt_first (7 samples, 0.02%)</title><rect x="20.2" y="491" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="23.17" y="501.5" ></text>
</g>
<g >
<title>__tcp_select_window (3 samples, 0.01%)</title><rect x="263.5" y="427" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="266.51" y="437.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (7 samples, 0.02%)</title><rect x="701.7" y="459" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="704.66" y="469.5" ></text>
</g>
<g >
<title>LWLockRelease (6 samples, 0.02%)</title><rect x="1298.5" y="379" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1301.53" y="389.5" ></text>
</g>
<g >
<title>ProcReleaseLocks (4 samples, 0.01%)</title><rect x="1336.6" y="715" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1339.61" y="725.5" ></text>
</g>
<g >
<title>RelationBuildDesc (22 samples, 0.07%)</title><rect x="19.8" y="587" width="1.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="22.85" y="597.5" ></text>
</g>
<g >
<title>MemoryContextReset (5 samples, 0.02%)</title><rect x="913.6" y="475" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="916.59" y="485.5" ></text>
</g>
<g >
<title>exec_stmt_block (30 samples, 0.10%)</title><rect x="36.5" y="571" width="1.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="39.46" y="581.5" ></text>
</g>
<g >
<title>AllocSetAlloc (64 samples, 0.22%)</title><rect x="857.6" y="555" width="3.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="860.58" y="565.5" ></text>
</g>
<g >
<title>_bt_checkpage (67 samples, 0.23%)</title><rect x="1081.8" y="347" width="3.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1084.83" y="357.5" ></text>
</g>
<g >
<title>aa_sk_perm (7 samples, 0.02%)</title><rect x="318.5" y="459" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="321.49" y="469.5" ></text>
</g>
<g >
<title>AllocSetAlloc (29 samples, 0.10%)</title><rect x="643.1" y="459" width="1.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="646.09" y="469.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.04%)</title><rect x="1135.4" y="219" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1138.37" y="229.5" ></text>
</g>
<g >
<title>psi_group_change (103 samples, 0.35%)</title><rect x="209.7" y="411" width="4.9" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="212.75" y="421.5" ></text>
</g>
<g >
<title>update_curr (4 samples, 0.01%)</title><rect x="195.5" y="299" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="198.47" y="309.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVacuumHorizon (3 samples, 0.01%)</title><rect x="1281.3" y="699" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1284.30" y="709.5" ></text>
</g>
<g >
<title>_bt_binsrch (726 samples, 2.46%)</title><rect x="972.9" y="379" width="33.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="975.86" y="389.5" >_b..</text>
</g>
<g >
<title>ExecIndexScan (96 samples, 0.32%)</title><rect x="13.0" y="539" width="4.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="15.99" y="549.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="1102.2" y="459" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1105.18" y="469.5" ></text>
</g>
<g >
<title>uint32_hash (14 samples, 0.05%)</title><rect x="735.2" y="443" width="0.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="738.21" y="453.5" ></text>
</g>
<g >
<title>AtEOXact_Namespace (7 samples, 0.02%)</title><rect x="1310.3" y="715" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1313.29" y="725.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (11 samples, 0.04%)</title><rect x="37.9" y="651" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="40.86" y="661.5" ></text>
</g>
<g >
<title>tcp_poll (186 samples, 0.63%)</title><rect x="142.3" y="443" width="8.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="145.26" y="453.5" ></text>
</g>
<g >
<title>RelationInitIndexAccessInfo (4 samples, 0.01%)</title><rect x="1288.5" y="267" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1291.54" y="277.5" ></text>
</g>
<g >
<title>AllocSetReset (44 samples, 0.15%)</title><rect x="1197.6" y="427" width="2.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1200.62" y="437.5" ></text>
</g>
<g >
<title>_bt_getroot (37 samples, 0.13%)</title><rect x="15.3" y="379" width="1.7" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="18.32" y="389.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (14 samples, 0.05%)</title><rect x="1279.3" y="651" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1282.30" y="661.5" ></text>
</g>
<g >
<title>smgrextend (5 samples, 0.02%)</title><rect x="1291.8" y="315" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1294.81" y="325.5" ></text>
</g>
<g >
<title>kmalloc_slab (4 samples, 0.01%)</title><rect x="496.6" y="379" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="499.63" y="389.5" ></text>
</g>
<g >
<title>select_task_rq_fair (56 samples, 0.19%)</title><rect x="389.3" y="75" width="2.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="392.34" y="85.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="42.5" y="587" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="45.53" y="597.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (3 samples, 0.01%)</title><rect x="1281.6" y="699" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1284.58" y="709.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="805.5" y="587" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="808.50" y="597.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (44 samples, 0.15%)</title><rect x="1168.7" y="491" width="2.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1171.69" y="501.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (14 samples, 0.05%)</title><rect x="1294.0" y="283" width="0.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1297.05" y="293.5" ></text>
</g>
<g >
<title>StoreAttrDefault (3 samples, 0.01%)</title><rect x="37.2" y="363" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="40.21" y="373.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (5 samples, 0.02%)</title><rect x="913.2" y="427" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="916.17" y="437.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (10 samples, 0.03%)</title><rect x="1338.1" y="715" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1341.06" y="725.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1232.2" y="443" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1235.16" y="453.5" ></text>
</g>
<g >
<title>_bt_getroot (327 samples, 1.11%)</title><rect x="44.6" y="379" width="15.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="47.58" y="389.5" ></text>
</g>
<g >
<title>DefineSequence (3 samples, 0.01%)</title><rect x="1295.4" y="379" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1298.45" y="389.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (4 samples, 0.01%)</title><rect x="26.3" y="747" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="29.33" y="757.5" ></text>
</g>
<g >
<title>update_cfs_group (8 samples, 0.03%)</title><rect x="188.5" y="411" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="191.47" y="421.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (25 samples, 0.08%)</title><rect x="288.1" y="427" width="1.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="291.06" y="437.5" ></text>
</g>
<g >
<title>RelationBuildDesc (3 samples, 0.01%)</title><rect x="21.7" y="603" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="24.71" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (12 samples, 0.04%)</title><rect x="32.3" y="251" width="0.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="35.31" y="261.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3 samples, 0.01%)</title><rect x="190.8" y="347" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="193.85" y="357.5" ></text>
</g>
<g >
<title>generic_file_write_iter (5 samples, 0.02%)</title><rect x="1291.8" y="155" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1294.81" y="165.5" ></text>
</g>
<g >
<title>exec_stmts (3 samples, 0.01%)</title><rect x="12.8" y="459" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="15.85" y="469.5" ></text>
</g>
<g >
<title>ExecScanFetch (127 samples, 0.43%)</title><rect x="899.1" y="491" width="5.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="902.07" y="501.5" ></text>
</g>
<g >
<title>ExecBuildProjectionInfo (263 samples, 0.89%)</title><rect x="645.3" y="491" width="12.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="648.33" y="501.5" ></text>
</g>
<g >
<title>RangeVarGetRelidExtended (5 samples, 0.02%)</title><rect x="1295.6" y="379" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1298.59" y="389.5" ></text>
</g>
<g >
<title>index_getnext_slot (7 samples, 0.02%)</title><rect x="1356.9" y="715" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1359.91" y="725.5" ></text>
</g>
<g >
<title>LWLockAcquire (26 samples, 0.09%)</title><rect x="861.4" y="587" width="1.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="864.36" y="597.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (3 samples, 0.01%)</title><rect x="40.3" y="555" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="43.29" y="565.5" ></text>
</g>
<g >
<title>palloc0 (82 samples, 0.28%)</title><rect x="759.1" y="523" width="3.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="762.11" y="533.5" ></text>
</g>
<g >
<title>SearchSysCache3 (130 samples, 0.44%)</title><rect x="671.6" y="507" width="6.0" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="674.55" y="517.5" ></text>
</g>
<g >
<title>deleteObjectsInList (14 samples, 0.05%)</title><rect x="1294.0" y="395" width="0.7" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1297.05" y="405.5" ></text>
</g>
<g >
<title>stmt_requires_parse_analysis (4 samples, 0.01%)</title><rect x="1373.6" y="715" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1376.62" y="725.5" ></text>
</g>
<g >
<title>RangeVarGetRelidExtended (3 samples, 0.01%)</title><rect x="1136.3" y="283" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1139.25" y="293.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (57 samples, 0.19%)</title><rect x="81.5" y="587" width="2.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="84.50" y="597.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (62 samples, 0.21%)</title><rect x="1008.8" y="379" width="2.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1011.84" y="389.5" ></text>
</g>
<g >
<title>index_getnext_slot (810 samples, 2.74%)</title><rect x="43.7" y="459" width="37.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="46.70" y="469.5" >in..</text>
</g>
<g >
<title>DeleteAttributeTuples (4 samples, 0.01%)</title><rect x="1277.2" y="251" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="1280.24" y="261.5" ></text>
</g>
<g >
<title>performMultipleDeletions (19 samples, 0.06%)</title><rect x="35.5" y="347" width="0.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="38.48" y="357.5" ></text>
</g>
<g >
<title>PortalDrop (1,077 samples, 3.64%)</title><rect x="1158.0" y="587" width="50.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1160.95" y="597.5" >Port..</text>
</g>
<g >
<title>AllocSetAlloc (13 samples, 0.04%)</title><rect x="708.2" y="491" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="711.24" y="501.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (3 samples, 0.01%)</title><rect x="671.4" y="475" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="674.41" y="485.5" ></text>
</g>
<g >
<title>__list_add_valid (17 samples, 0.06%)</title><rect x="123.1" y="475" width="0.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="126.13" y="485.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (41 samples, 0.14%)</title><rect x="1386.7" y="539" width="1.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1389.73" y="549.5" ></text>
</g>
<g >
<title>palloc0 (26 samples, 0.09%)</title><rect x="659.4" y="459" width="1.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="662.37" y="469.5" ></text>
</g>
<g >
<title>namestrcpy (33 samples, 0.11%)</title><rect x="717.2" y="475" width="1.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="720.15" y="485.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (19 samples, 0.06%)</title><rect x="318.3" y="475" width="0.9" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="321.31" y="485.5" ></text>
</g>
<g >
<title>int4hashfast (8 samples, 0.03%)</title><rect x="676.2" y="443" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="679.22" y="453.5" ></text>
</g>
<g >
<title>list_nth_cell (6 samples, 0.02%)</title><rect x="1360.0" y="715" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1362.99" y="725.5" ></text>
</g>
<g >
<title>_bt_readpage (5 samples, 0.02%)</title><rect x="1388.7" y="555" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1391.69" y="565.5" ></text>
</g>
<g >
<title>internal_putbytes (3 samples, 0.01%)</title><rect x="886.9" y="635" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="889.89" y="645.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (3 samples, 0.01%)</title><rect x="22.6" y="395" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="25.65" y="405.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (5 samples, 0.02%)</title><rect x="35.5" y="187" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="38.53" y="197.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (24 samples, 0.08%)</title><rect x="1073.7" y="331" width="1.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1076.67" y="341.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (3 samples, 0.01%)</title><rect x="901.0" y="379" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="903.99" y="389.5" ></text>
</g>
<g >
<title>btgettuple (5 samples, 0.02%)</title><rect x="39.6" y="491" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="42.59" y="501.5" ></text>
</g>
<g >
<title>initStringInfo (25 samples, 0.08%)</title><rect x="304.1" y="635" width="1.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="307.07" y="645.5" ></text>
</g>
<g >
<title>StartTransactionCommand (25 samples, 0.08%)</title><rect x="102.7" y="555" width="1.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="105.69" y="565.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64 (7 samples, 0.02%)</title><rect x="1231.3" y="507" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1234.27" y="517.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (29 samples, 0.10%)</title><rect x="242.4" y="555" width="1.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="245.37" y="565.5" ></text>
</g>
<g >
<title>hash_initial_lookup (6 samples, 0.02%)</title><rect x="552.7" y="539" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="555.68" y="549.5" ></text>
</g>
<g >
<title>exec_simple_query (57 samples, 0.19%)</title><rect x="81.5" y="683" width="2.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="84.50" y="693.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (94 samples, 0.32%)</title><rect x="624.3" y="475" width="4.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="627.28" y="485.5" ></text>
</g>
<g >
<title>heap_drop_with_catalog (6 samples, 0.02%)</title><rect x="82.7" y="203" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="85.67" y="213.5" ></text>
</g>
<g >
<title>_bt_compare (4 samples, 0.01%)</title><rect x="1270.6" y="747" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1273.62" y="757.5" ></text>
</g>
<g >
<title>init_spin_delay (6 samples, 0.02%)</title><rect x="1014.7" y="315" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1017.72" y="325.5" ></text>
</g>
<g >
<title>ExecScanExtended (11 samples, 0.04%)</title><rect x="1384.8" y="523" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1387.77" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (12 samples, 0.04%)</title><rect x="50.3" y="187" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="53.28" y="197.5" ></text>
</g>
<g >
<title>standard_ExecutorFinish (13 samples, 0.04%)</title><rect x="1202.3" y="523" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1205.29" y="533.5" ></text>
</g>
<g >
<title>ExecAssignExprContext (276 samples, 0.93%)</title><rect x="631.7" y="539" width="12.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="634.65" y="549.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (19 samples, 0.06%)</title><rect x="102.8" y="475" width="0.9" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="105.83" y="485.5" ></text>
</g>
<g >
<title>ProcessUtility (10 samples, 0.03%)</title><rect x="28.2" y="555" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="31.20" y="565.5" ></text>
</g>
<g >
<title>IsSharedRelation (9 samples, 0.03%)</title><rect x="579.1" y="555" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="582.15" y="565.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (24 samples, 0.08%)</title><rect x="1205.3" y="555" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1208.32" y="565.5" ></text>
</g>
<g >
<title>murmurhash32 (8 samples, 0.03%)</title><rect x="716.1" y="395" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="719.12" y="405.5" ></text>
</g>
<g >
<title>InsertPgAttributeTuples (4 samples, 0.01%)</title><rect x="1388.1" y="411" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1391.13" y="421.5" ></text>
</g>
<g >
<title>__strlen_evex (4 samples, 0.01%)</title><rect x="1265.8" y="651" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1268.81" y="661.5" ></text>
</g>
<g >
<title>RemoveLocalLock (170 samples, 0.57%)</title><rect x="1232.9" y="539" width="7.9" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1235.86" y="549.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (18 samples, 0.06%)</title><rect x="593.7" y="635" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="596.66" y="645.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (9 samples, 0.03%)</title><rect x="1343.9" y="715" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1346.94" y="725.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (30 samples, 0.10%)</title><rect x="36.5" y="651" width="1.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="39.46" y="661.5" ></text>
</g>
<g >
<title>DefineIndex (26 samples, 0.09%)</title><rect x="1386.7" y="459" width="1.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1389.73" y="469.5" ></text>
</g>
<g >
<title>exec_simple_query (3 samples, 0.01%)</title><rect x="12.8" y="715" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="15.85" y="725.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (11 samples, 0.04%)</title><rect x="39.3" y="587" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="42.31" y="597.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (5 samples, 0.02%)</title><rect x="670.6" y="475" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="673.57" y="485.5" ></text>
</g>
<g >
<title>PortalRunMulti (5 samples, 0.02%)</title><rect x="17.5" y="651" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="20.47" y="661.5" ></text>
</g>
<g >
<title>update_rq_clock (90 samples, 0.30%)</title><rect x="216.1" y="427" width="4.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="219.05" y="437.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (2,254 samples, 7.62%)</title><rect x="342.4" y="347" width="105.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="345.43" y="357.5" >__local_bh..</text>
</g>
<g >
<title>RelationGetIndexScan (52 samples, 0.18%)</title><rect x="929.9" y="395" width="2.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="932.88" y="405.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (5 samples, 0.02%)</title><rect x="751.0" y="443" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="754.03" y="453.5" ></text>
</g>
<g >
<title>RelationGetIndexAttOptions (4 samples, 0.01%)</title><rect x="20.5" y="555" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="23.50" y="565.5" ></text>
</g>
<g >
<title>performMultipleDeletions (6 samples, 0.02%)</title><rect x="37.5" y="363" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="40.54" y="373.5" ></text>
</g>
<g >
<title>LWLockAcquire (60 samples, 0.20%)</title><rect x="49.9" y="235" width="2.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="52.90" y="245.5" ></text>
</g>
<g >
<title>BufferAlloc (3 samples, 0.01%)</title><rect x="39.8" y="443" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="42.82" y="453.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (5 samples, 0.02%)</title><rect x="35.5" y="219" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="38.53" y="229.5" ></text>
</g>
<g >
<title>ip_local_out (143 samples, 0.48%)</title><rect x="454.4" y="379" width="6.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="457.40" y="389.5" ></text>
</g>
<g >
<title>btbeginscan (5 samples, 0.02%)</title><rect x="1347.4" y="715" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1350.44" y="725.5" ></text>
</g>
<g >
<title>should_output_to_client (9 samples, 0.03%)</title><rect x="778.7" y="635" width="0.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="781.66" y="645.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (4 samples, 0.01%)</title><rect x="1299.6" y="363" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1302.55" y="373.5" ></text>
</g>
<g >
<title>string_compare (7 samples, 0.02%)</title><rect x="889.2" y="603" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="892.18" y="613.5" ></text>
</g>
<g >
<title>PortalRun (4 samples, 0.01%)</title><rect x="1385.3" y="683" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1388.29" y="693.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (37 samples, 0.13%)</title><rect x="751.4" y="459" width="1.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="754.41" y="469.5" ></text>
</g>
<g >
<title>LWLockAcquire (11 samples, 0.04%)</title><rect x="821.1" y="539" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="824.09" y="549.5" ></text>
</g>
<g >
<title>list_member_oid (12 samples, 0.04%)</title><rect x="812.3" y="523" width="0.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="815.31" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_write_u32 (7 samples, 0.02%)</title><rect x="1015.7" y="315" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1018.70" y="325.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (10 samples, 0.03%)</title><rect x="1260.5" y="603" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1263.49" y="613.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (47 samples, 0.16%)</title><rect x="392.8" y="59" width="2.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="395.84" y="69.5" ></text>
</g>
<g >
<title>pfree (22 samples, 0.07%)</title><rect x="1196.0" y="475" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1198.99" y="485.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (3 samples, 0.01%)</title><rect x="39.8" y="555" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="42.82" y="565.5" ></text>
</g>
<g >
<title>SerializationNeededForRead (4 samples, 0.01%)</title><rect x="966.0" y="347" width="0.1" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text  x="968.95" y="357.5" ></text>
</g>
<g >
<title>BufMappingPartitionLock (10 samples, 0.03%)</title><rect x="60.7" y="235" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="63.68" y="245.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (6 samples, 0.02%)</title><rect x="1027.9" y="331" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1030.93" y="341.5" ></text>
</g>
<g >
<title>CommitTransaction (2,491 samples, 8.42%)</title><rect x="1139.5" y="619" width="116.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1142.52" y="629.5" >CommitTransa..</text>
</g>
<g >
<title>ProcessInvalidationMessages (3 samples, 0.01%)</title><rect x="1281.6" y="683" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1284.58" y="693.5" ></text>
</g>
<g >
<title>LockReleaseAll (7 samples, 0.02%)</title><rect x="1329.6" y="715" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1332.61" y="725.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (3 samples, 0.01%)</title><rect x="923.8" y="443" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="926.81" y="453.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (27 samples, 0.09%)</title><rect x="1287.9" y="347" width="1.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1290.93" y="357.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (23 samples, 0.08%)</title><rect x="1080.2" y="283" width="1.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1083.25" y="293.5" ></text>
</g>
<g >
<title>pq_sendcountedtext (31 samples, 0.10%)</title><rect x="1104.0" y="539" width="1.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1107.00" y="549.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (22 samples, 0.07%)</title><rect x="19.8" y="603" width="1.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="22.85" y="613.5" ></text>
</g>
<g >
<title>hash_search (56 samples, 0.19%)</title><rect x="756.3" y="491" width="2.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="759.26" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (5 samples, 0.02%)</title><rect x="1230.9" y="491" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1233.95" y="501.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (3,187 samples, 10.78%)</title><rect x="327.5" y="443" width="148.8" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="330.55" y="453.5" >__tcp_push_pendi..</text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (6 samples, 0.02%)</title><rect x="1200.8" y="475" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1203.84" y="485.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (96 samples, 0.32%)</title><rect x="13.0" y="603" width="4.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="15.99" y="613.5" ></text>
</g>
<g >
<title>inet_recvmsg (910 samples, 3.08%)</title><rect x="246.9" y="491" width="42.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="249.85" y="501.5" >ine..</text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (5 samples, 0.02%)</title><rect x="1015.0" y="299" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1018.05" y="309.5" ></text>
</g>
<g >
<title>mdextend (5 samples, 0.02%)</title><rect x="1291.8" y="299" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1294.81" y="309.5" ></text>
</g>
<g >
<title>perform_spin_delay (56 samples, 0.19%)</title><rect x="840.1" y="523" width="2.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="843.08" y="533.5" ></text>
</g>
<g >
<title>pq_getmsgstring (22 samples, 0.07%)</title><rect x="1265.1" y="667" width="1.0" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text  x="1268.06" y="677.5" ></text>
</g>
<g >
<title>systable_inplace_update_begin (8 samples, 0.03%)</title><rect x="40.1" y="667" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="43.06" y="677.5" ></text>
</g>
<g >
<title>ep_done_scan (41 samples, 0.14%)</title><rect x="129.0" y="475" width="1.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="131.96" y="485.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (13 samples, 0.04%)</title><rect x="506.3" y="491" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="509.29" y="501.5" ></text>
</g>
<g >
<title>palloc0 (24 samples, 0.08%)</title><rect x="936.9" y="395" width="1.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="939.92" y="405.5" ></text>
</g>
<g >
<title>_bt_doinsert (4 samples, 0.01%)</title><rect x="1388.1" y="331" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1391.13" y="341.5" ></text>
</g>
<g >
<title>StoreRelNotNull (3 samples, 0.01%)</title><rect x="1293.2" y="411" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1296.16" y="421.5" ></text>
</g>
<g >
<title>CreateConstraintEntry (3 samples, 0.01%)</title><rect x="1278.4" y="523" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1281.36" y="533.5" ></text>
</g>
<g >
<title>DefineIndex (20 samples, 0.07%)</title><rect x="1275.5" y="363" width="1.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1278.52" y="373.5" ></text>
</g>
<g >
<title>AllocSetDelete (34 samples, 0.11%)</title><rect x="1158.8" y="539" width="1.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1161.84" y="549.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (57 samples, 0.19%)</title><rect x="81.5" y="379" width="2.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="84.50" y="389.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (3 samples, 0.01%)</title><rect x="12.8" y="571" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="15.85" y="581.5" ></text>
</g>
<g >
<title>AllocSetAlloc (8 samples, 0.03%)</title><rect x="649.5" y="411" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="652.53" y="421.5" ></text>
</g>
<g >
<title>pg_class_aclmask (4 samples, 0.01%)</title><rect x="1364.0" y="715" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="1367.00" y="725.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (33 samples, 0.11%)</title><rect x="56.0" y="235" width="1.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="58.97" y="245.5" ></text>
</g>
<g >
<title>_bt_saveitem (8 samples, 0.03%)</title><rect x="1025.4" y="347" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1028.36" y="357.5" ></text>
</g>
<g >
<title>enqueue_task_fair (7 samples, 0.02%)</title><rect x="200.7" y="363" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="203.74" y="373.5" ></text>
</g>
<g >
<title>heapam_index_build_range_scan (4 samples, 0.01%)</title><rect x="1292.0" y="347" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1295.04" y="357.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (5 samples, 0.02%)</title><rect x="708.5" y="475" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="711.47" y="485.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (4 samples, 0.01%)</title><rect x="786.7" y="603" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="789.69" y="613.5" ></text>
</g>
<g >
<title>_copy_to_iter (130 samples, 0.44%)</title><rect x="274.4" y="411" width="6.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="277.44" y="421.5" ></text>
</g>
<g >
<title>heap_form_tuple (6 samples, 0.02%)</title><rect x="1280.7" y="699" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1283.65" y="709.5" ></text>
</g>
<g >
<title>exec_stmts (57 samples, 0.19%)</title><rect x="81.5" y="459" width="2.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="84.50" y="469.5" ></text>
</g>
<g >
<title>ProcessUtility (4 samples, 0.01%)</title><rect x="1278.3" y="635" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1281.32" y="645.5" ></text>
</g>
<g >
<title>AllocSetAlloc (11 samples, 0.04%)</title><rect x="304.5" y="587" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="307.54" y="597.5" ></text>
</g>
<g >
<title>SearchCatCache1 (101 samples, 0.34%)</title><rect x="780.6" y="619" width="4.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="783.62" y="629.5" ></text>
</g>
<g >
<title>hash_seq_term (4 samples, 0.01%)</title><rect x="1215.3" y="587" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1218.27" y="597.5" ></text>
</g>
<g >
<title>exec_simple_query (4 samples, 0.01%)</title><rect x="1385.3" y="699" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="1388.29" y="709.5" ></text>
</g>
<g >
<title>list_nth (3 samples, 0.01%)</title><rect x="736.1" y="523" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="739.15" y="533.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.03%)</title><rect x="684.3" y="491" width="0.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="687.34" y="501.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesMVCC (5 samples, 0.02%)</title><rect x="964.4" y="347" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="967.41" y="357.5" ></text>
</g>
<g >
<title>ExecProcNode (3 samples, 0.01%)</title><rect x="905.4" y="475" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="908.37" y="485.5" ></text>
</g>
<g >
<title>ProcessUtility (30 samples, 0.10%)</title><rect x="36.5" y="715" width="1.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="39.46" y="725.5" ></text>
</g>
<g >
<title>ExecDropStmt (27 samples, 0.09%)</title><rect x="1276.5" y="363" width="1.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1279.54" y="373.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (4 samples, 0.01%)</title><rect x="57.7" y="251" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="60.65" y="261.5" ></text>
</g>
<g >
<title>SearchSysCache2 (4 samples, 0.01%)</title><rect x="20.5" y="523" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="23.50" y="533.5" ></text>
</g>
<g >
<title>_bt_parallel_done (5 samples, 0.02%)</title><rect x="903.4" y="363" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="906.41" y="373.5" ></text>
</g>
<g >
<title>BufferGetPage (4 samples, 0.01%)</title><rect x="1314.5" y="715" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1317.49" y="725.5" ></text>
</g>
<g >
<title>table_close (26 samples, 0.09%)</title><rect x="1179.2" y="475" width="1.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1182.24" y="485.5" ></text>
</g>
<g >
<title>exec_stmts (5 samples, 0.02%)</title><rect x="17.5" y="459" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="20.47" y="469.5" ></text>
</g>
<g >
<title>tag_hash (45 samples, 0.15%)</title><rect x="746.6" y="443" width="2.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="749.60" y="453.5" ></text>
</g>
<g >
<title>ReadBuffer (464 samples, 1.57%)</title><rect x="59.8" y="347" width="21.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="62.84" y="357.5" ></text>
</g>
<g >
<title>pq_beginmessage (3 samples, 0.01%)</title><rect x="1385.5" y="747" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1388.47" y="757.5" ></text>
</g>
<g >
<title>BackgroundWorkerMain (3 samples, 0.01%)</title><rect x="1268.3" y="667" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="1271.33" y="677.5" ></text>
</g>
<g >
<title>_bt_search (3 samples, 0.01%)</title><rect x="1290.0" y="299" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1293.03" y="309.5" ></text>
</g>
<g >
<title>IsSharedRelation (10 samples, 0.03%)</title><rect x="754.7" y="475" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="757.72" y="485.5" ></text>
</g>
<g >
<title>SearchSysCache (3 samples, 0.01%)</title><rect x="1290.3" y="379" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1293.31" y="389.5" ></text>
</g>
<g >
<title>pq_endmessage_reuse (32 samples, 0.11%)</title><rect x="874.9" y="635" width="1.5" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="877.94" y="645.5" ></text>
</g>
<g >
<title>pgstat_report_activity (37 samples, 0.13%)</title><rect x="1261.6" y="667" width="1.7" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1264.56" y="677.5" ></text>
</g>
<g >
<title>printtup_shutdown (67 samples, 0.23%)</title><rect x="1112.4" y="571" width="3.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1115.40" y="581.5" ></text>
</g>
<g >
<title>ReleaseBuffer (43 samples, 0.15%)</title><rect x="1016.4" y="331" width="2.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1019.40" y="341.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (6 samples, 0.02%)</title><rect x="25.2" y="747" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="28.17" y="757.5" ></text>
</g>
<g >
<title>index_getnext_tid (7 samples, 0.02%)</title><rect x="20.2" y="523" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="23.17" y="533.5" ></text>
</g>
<g >
<title>update_load_avg (3 samples, 0.01%)</title><rect x="200.9" y="331" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="203.93" y="341.5" ></text>
</g>
<g >
<title>LockAcquireExtended (9 samples, 0.03%)</title><rect x="1298.4" y="411" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1301.39" y="421.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (3 samples, 0.01%)</title><rect x="1281.6" y="667" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1284.58" y="677.5" ></text>
</g>
<g >
<title>hash_initial_lookup (5 samples, 0.02%)</title><rect x="539.9" y="603" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="542.90" y="613.5" ></text>
</g>
<g >
<title>MemoryContextCreate (5 samples, 0.02%)</title><rect x="614.6" y="555" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="617.57" y="565.5" ></text>
</g>
<g >
<title>LockAcquireExtended (9 samples, 0.03%)</title><rect x="35.0" y="331" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="38.02" y="341.5" ></text>
</g>
<g >
<title>hash_initial_lookup (4 samples, 0.01%)</title><rect x="952.4" y="219" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="955.37" y="229.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (3 samples, 0.01%)</title><rect x="12.8" y="619" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="15.85" y="629.5" ></text>
</g>
<g >
<title>BlockNumberIsValid (7 samples, 0.02%)</title><rect x="1313.7" y="715" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="1316.69" y="725.5" ></text>
</g>
<g >
<title>PageIsNew (3 samples, 0.01%)</title><rect x="1068.0" y="315" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1070.97" y="325.5" ></text>
</g>
<g >
<title>LWLockAcquire (5 samples, 0.02%)</title><rect x="1299.5" y="379" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1302.51" y="389.5" ></text>
</g>
<g >
<title>_int_free (21 samples, 0.07%)</title><rect x="1198.7" y="395" width="0.9" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1201.65" y="405.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (3 samples, 0.01%)</title><rect x="1297.8" y="667" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1300.83" y="677.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (5 samples, 0.02%)</title><rect x="1068.2" y="283" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1071.21" y="293.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (3 samples, 0.01%)</title><rect x="1281.3" y="747" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1284.30" y="757.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (10 samples, 0.03%)</title><rect x="28.2" y="747" width="0.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="31.20" y="757.5" ></text>
</g>
<g >
<title>_bt_first (6 samples, 0.02%)</title><rect x="39.3" y="475" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="42.31" y="485.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (49 samples, 0.17%)</title><rect x="1275.5" y="603" width="2.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1278.52" y="613.5" ></text>
</g>
<g >
<title>ExecScan (96 samples, 0.32%)</title><rect x="13.0" y="523" width="4.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="15.99" y="533.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (96 samples, 0.32%)</title><rect x="13.0" y="555" width="4.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="15.99" y="565.5" ></text>
</g>
<g >
<title>AfterTriggerBeginXact (7 samples, 0.02%)</title><rect x="1306.1" y="715" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1309.13" y="725.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (7 samples, 0.02%)</title><rect x="150.6" y="427" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="153.62" y="437.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (21 samples, 0.07%)</title><rect x="1290.5" y="347" width="1.0" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1293.50" y="357.5" ></text>
</g>
<g >
<title>XLogInsert (3 samples, 0.01%)</title><rect x="1281.1" y="731" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1284.07" y="741.5" ></text>
</g>
<g >
<title>DatumGetInt32 (4 samples, 0.01%)</title><rect x="994.1" y="315" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="997.09" y="325.5" ></text>
</g>
<g >
<title>get_timeout_active (14 samples, 0.05%)</title><rect x="1354.1" y="715" width="0.7" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1357.11" y="725.5" ></text>
</g>
<g >
<title>pq_getmsgend (3 samples, 0.01%)</title><rect x="1264.8" y="667" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1267.78" y="677.5" ></text>
</g>
<g >
<title>__libc_open64 (3 samples, 0.01%)</title><rect x="34.3" y="235" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="37.27" y="245.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (6 samples, 0.02%)</title><rect x="1171.0" y="475" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1173.98" y="485.5" ></text>
</g>
<g >
<title>btgettuple (7 samples, 0.02%)</title><rect x="20.2" y="507" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="23.17" y="517.5" ></text>
</g>
<g >
<title>secure_raw_write (8 samples, 0.03%)</title><rect x="1386.0" y="747" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1389.03" y="757.5" ></text>
</g>
<g >
<title>IndexNext (3,638 samples, 12.30%)</title><rect x="924.1" y="459" width="169.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="927.09" y="469.5" >IndexNext</text>
</g>
<g >
<title>ExecScan (3 samples, 0.01%)</title><rect x="905.4" y="427" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="908.37" y="437.5" ></text>
</g>
<g >
<title>ExecAssignScanProjectionInfo (360 samples, 1.22%)</title><rect x="644.5" y="539" width="16.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="647.53" y="549.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (3 samples, 0.01%)</title><rect x="304.9" y="571" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="307.91" y="581.5" ></text>
</g>
<g >
<title>_bt_checkkeys (4 samples, 0.01%)</title><rect x="21.2" y="427" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="24.20" y="437.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1,254 samples, 4.24%)</title><rect x="368.3" y="187" width="58.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="371.29" y="197.5" >tcp_v..</text>
</g>
<g >
<title>performMultipleDeletions (49 samples, 0.17%)</title><rect x="81.8" y="267" width="2.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="84.78" y="277.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (6 samples, 0.02%)</title><rect x="565.8" y="539" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="568.75" y="549.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="566.0" y="475" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="569.03" y="485.5" ></text>
</g>
<g >
<title>__GI___fstatat64 (3 samples, 0.01%)</title><rect x="1298.9" y="347" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="1301.85" y="357.5" ></text>
</g>
<g >
<title>exec_simple_query (49 samples, 0.17%)</title><rect x="1275.5" y="747" width="2.3" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="1278.52" y="757.5" ></text>
</g>
<g >
<title>LWLockRelease (31 samples, 0.10%)</title><rect x="745.0" y="475" width="1.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="748.01" y="485.5" ></text>
</g>
<g >
<title>_bt_binsrch (3 samples, 0.01%)</title><rect x="40.1" y="571" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="43.06" y="581.5" ></text>
</g>
<g >
<title>string_hash (34 samples, 0.11%)</title><rect x="866.1" y="619" width="1.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="869.12" y="629.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (13 samples, 0.04%)</title><rect x="670.2" y="491" width="0.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="673.20" y="501.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3 samples, 0.01%)</title><rect x="559.5" y="507" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="562.55" y="517.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (3 samples, 0.01%)</title><rect x="744.8" y="459" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="747.83" y="469.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (6 samples, 0.02%)</title><rect x="338.4" y="379" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="341.37" y="389.5" ></text>
</g>
<g >
<title>socket_set_nonblocking (5 samples, 0.02%)</title><rect x="1373.0" y="715" width="0.2" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="1376.01" y="725.5" ></text>
</g>
<g >
<title>string_hash (27 samples, 0.09%)</title><rect x="540.3" y="619" width="1.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="543.27" y="629.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (34 samples, 0.11%)</title><rect x="1220.2" y="603" width="1.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1223.17" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (152 samples, 0.51%)</title><rect x="530.3" y="635" width="7.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="533.33" y="645.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (72 samples, 0.24%)</title><rect x="178.4" y="379" width="3.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="181.39" y="389.5" ></text>
</g>
<g >
<title>StartBackgroundWorker (3 samples, 0.01%)</title><rect x="1268.3" y="699" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1271.33" y="709.5" ></text>
</g>
<g >
<title>tag_hash (32 samples, 0.11%)</title><rect x="753.1" y="459" width="1.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="756.13" y="469.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (79 samples, 0.27%)</title><rect x="755.2" y="507" width="3.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="758.19" y="517.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (28 samples, 0.09%)</title><rect x="729.8" y="459" width="1.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="732.80" y="469.5" ></text>
</g>
<g >
<title>_bt_search_insert (3 samples, 0.01%)</title><rect x="1290.0" y="315" width="0.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="1293.03" y="325.5" ></text>
</g>
<g >
<title>_bt_checkkeys (5 samples, 0.02%)</title><rect x="1384.8" y="379" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1387.77" y="389.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (4 samples, 0.01%)</title><rect x="1330.4" y="715" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1333.45" y="725.5" ></text>
</g>
<g >
<title>__skb_clone (15 samples, 0.05%)</title><rect x="461.8" y="395" width="0.7" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text  x="464.77" y="405.5" ></text>
</g>
<g >
<title>Int32GetDatum (17 samples, 0.06%)</title><rect x="1326.5" y="715" width="0.8" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1329.53" y="725.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (11 samples, 0.04%)</title><rect x="37.9" y="507" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="40.86" y="517.5" ></text>
</g>
<g >
<title>index_getnext_tid (11 samples, 0.04%)</title><rect x="1384.8" y="459" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1387.77" y="469.5" ></text>
</g>
<g >
<title>__x64_sys_unlink (12 samples, 0.04%)</title><rect x="1135.4" y="187" width="0.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1138.37" y="197.5" ></text>
</g>
<g >
<title>exec_stmt_fori (5 samples, 0.02%)</title><rect x="17.5" y="443" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="20.47" y="453.5" ></text>
</g>
<g >
<title>index_insert (9 samples, 0.03%)</title><rect x="1289.8" y="363" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1292.85" y="373.5" ></text>
</g>
<g >
<title>RelationInitIndexAccessInfo (3 samples, 0.01%)</title><rect x="1387.1" y="283" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1390.06" y="293.5" ></text>
</g>
<g >
<title>get_timeout_active (5 samples, 0.02%)</title><rect x="1134.0" y="619" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1136.97" y="629.5" ></text>
</g>
<g >
<title>heap_beginscan (3 samples, 0.01%)</title><rect x="1387.8" y="331" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1390.81" y="341.5" ></text>
</g>
<g >
<title>list_free_private (4 samples, 0.01%)</title><rect x="1195.8" y="411" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1198.80" y="421.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (14 samples, 0.05%)</title><rect x="1279.3" y="699" width="0.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1282.30" y="709.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (7 samples, 0.02%)</title><rect x="38.5" y="699" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="41.52" y="709.5" ></text>
</g>
<g >
<title>memset@plt (3 samples, 0.01%)</title><rect x="1153.6" y="571" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1156.61" y="581.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (10 samples, 0.03%)</title><rect x="623.0" y="475" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="625.97" y="485.5" ></text>
</g>
<g >
<title>resetStringInfo (58 samples, 0.20%)</title><rect x="872.2" y="619" width="2.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="875.24" y="629.5" ></text>
</g>
<g >
<title>LWLockRelease (41 samples, 0.14%)</title><rect x="566.3" y="555" width="1.9" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="569.31" y="565.5" ></text>
</g>
<g >
<title>RelationFlushRelation (4 samples, 0.01%)</title><rect x="22.5" y="347" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="25.46" y="357.5" ></text>
</g>
<g >
<title>exec_toplevel_block (5 samples, 0.02%)</title><rect x="17.5" y="491" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="20.47" y="501.5" ></text>
</g>
<g >
<title>deleteOneObject (4 samples, 0.01%)</title><rect x="37.5" y="331" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="40.54" y="341.5" ></text>
</g>
<g >
<title>palloc (86 samples, 0.29%)</title><rect x="932.3" y="395" width="4.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="935.35" y="405.5" ></text>
</g>
<g >
<title>jit_compile_expr (4 samples, 0.01%)</title><rect x="705.1" y="507" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="708.11" y="517.5" ></text>
</g>
<g >
<title>__update_load_avg_se (7 samples, 0.02%)</title><rect x="208.0" y="379" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="210.98" y="389.5" ></text>
</g>
<g >
<title>__sk_mem_reduce_allocated (26 samples, 0.09%)</title><rect x="260.8" y="443" width="1.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="263.76" y="453.5" ></text>
</g>
<g >
<title>native_sched_clock (4 samples, 0.01%)</title><rect x="220.0" y="395" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="223.02" y="405.5" ></text>
</g>
<g >
<title>exec_stmt_block (139 samples, 0.47%)</title><rect x="30.0" y="555" width="6.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="32.97" y="565.5" ></text>
</g>
<g >
<title>_bt_readpage (4 samples, 0.01%)</title><rect x="21.2" y="443" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="24.20" y="453.5" ></text>
</g>
<g >
<title>newNode (82 samples, 0.28%)</title><rect x="614.9" y="571" width="3.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="617.90" y="581.5" ></text>
</g>
<g >
<title>pfree (8 samples, 0.03%)</title><rect x="305.4" y="635" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="308.42" y="645.5" ></text>
</g>
<g >
<title>ReleaseCatCache (20 samples, 0.07%)</title><rect x="713.3" y="459" width="1.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="716.32" y="469.5" ></text>
</g>
<g >
<title>performMultipleDeletions (25 samples, 0.08%)</title><rect x="1294.0" y="411" width="1.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1297.05" y="421.5" ></text>
</g>
<g >
<title>_bt_fix_scankey_strategy (18 samples, 0.06%)</title><rect x="1010.2" y="363" width="0.9" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="1013.24" y="373.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (49 samples, 0.17%)</title><rect x="1115.7" y="555" width="2.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="1118.72" y="565.5" ></text>
</g>
<g >
<title>MemoryContextCreate (11 samples, 0.04%)</title><rect x="637.4" y="475" width="0.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="640.39" y="485.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (53 samples, 0.18%)</title><rect x="524.9" y="603" width="2.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="527.92" y="613.5" ></text>
</g>
<g >
<title>LockRelation (7 samples, 0.02%)</title><rect x="1299.5" y="427" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1302.51" y="437.5" ></text>
</g>
<g >
<title>exec_stmt_block (54 samples, 0.18%)</title><rect x="1134.2" y="459" width="2.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1137.20" y="469.5" ></text>
</g>
<g >
<title>resetStringInfo (4 samples, 0.01%)</title><rect x="1385.8" y="747" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1388.85" y="757.5" ></text>
</g>
<g >
<title>ProcessCatchupInterrupt (25 samples, 0.08%)</title><rect x="102.7" y="571" width="1.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="105.69" y="581.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (3 samples, 0.01%)</title><rect x="572.2" y="555" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="575.19" y="565.5" ></text>
</g>
<g >
<title>maybe_start_bgworkers (3 samples, 0.01%)</title><rect x="1268.3" y="715" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="1271.33" y="725.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (9 samples, 0.03%)</title><rect x="1346.6" y="715" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1349.60" y="725.5" ></text>
</g>
<g >
<title>_raw_spin_lock (61 samples, 0.21%)</title><rect x="164.4" y="427" width="2.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="167.39" y="437.5" ></text>
</g>
<g >
<title>socket_putmessage (40 samples, 0.14%)</title><rect x="800.6" y="635" width="1.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="803.60" y="645.5" ></text>
</g>
<g >
<title>smgrcreate (3 samples, 0.01%)</title><rect x="1298.9" y="395" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1301.85" y="405.5" ></text>
</g>
<g >
<title>exec_toplevel_block (57 samples, 0.19%)</title><rect x="81.5" y="491" width="2.7" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="84.50" y="501.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (810 samples, 2.74%)</title><rect x="43.7" y="619" width="37.8" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="46.70" y="629.5" >pg..</text>
</g>
<g >
<title>get_timeout_active (11 samples, 0.04%)</title><rect x="1256.9" y="667" width="0.6" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1259.94" y="677.5" ></text>
</g>
<g >
<title>list_delete_nth_cell (11 samples, 0.04%)</title><rect x="1195.5" y="443" width="0.5" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1198.48" y="453.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (10 samples, 0.03%)</title><rect x="667.1" y="507" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="670.12" y="517.5" ></text>
</g>
<g >
<title>AllocSetAlloc (75 samples, 0.25%)</title><rect x="932.9" y="379" width="3.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="935.86" y="389.5" ></text>
</g>
<g >
<title>ttwu_do_activate (3 samples, 0.01%)</title><rect x="64.9" y="91" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="67.88" y="101.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (3 samples, 0.01%)</title><rect x="42.5" y="619" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="45.53" y="629.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="537.2" y="587" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="540.19" y="597.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (30 samples, 0.10%)</title><rect x="36.5" y="683" width="1.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="39.46" y="693.5" ></text>
</g>
<g >
<title>_bt_compare (89 samples, 0.30%)</title><rect x="1072.0" y="347" width="4.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1074.99" y="357.5" ></text>
</g>
<g >
<title>AddRelationNewConstraints (3 samples, 0.01%)</title><rect x="37.2" y="379" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="40.21" y="389.5" ></text>
</g>
<g >
<title>_bt_first (5 samples, 0.02%)</title><rect x="40.8" y="411" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="43.76" y="421.5" ></text>
</g>
<g >
<title>btbeginscan (167 samples, 0.56%)</title><rect x="928.6" y="411" width="7.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="931.57" y="421.5" ></text>
</g>
<g >
<title>TransactionBlockStatusCode (6 samples, 0.02%)</title><rect x="303.4" y="651" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="306.42" y="661.5" ></text>
</g>
<g >
<title>ExecReScanIndexScan (164 samples, 0.55%)</title><rect x="905.8" y="491" width="7.7" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="908.84" y="501.5" ></text>
</g>
<g >
<title>PageGetItem (9 samples, 0.03%)</title><rect x="28.7" y="747" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="31.67" y="757.5" ></text>
</g>
<g >
<title>pg_ulltoa_n (28 samples, 0.09%)</title><rect x="885.6" y="619" width="1.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="888.59" y="629.5" ></text>
</g>
<g >
<title>GetDatabaseEncoding@plt (3 samples, 0.01%)</title><rect x="1167.9" y="507" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1170.90" y="517.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (46 samples, 0.16%)</title><rect x="1380.9" y="667" width="2.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1383.85" y="677.5" ></text>
</g>
<g >
<title>exec_toplevel_block (20 samples, 0.07%)</title><rect x="1298.1" y="731" width="0.9" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1301.06" y="741.5" ></text>
</g>
<g >
<title>deregister_seq_scan (4 samples, 0.01%)</title><rect x="1215.3" y="571" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1218.27" y="581.5" ></text>
</g>
<g >
<title>palloc0 (8 samples, 0.03%)</title><rect x="1363.0" y="715" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1366.02" y="725.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (16 samples, 0.05%)</title><rect x="49.1" y="219" width="0.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="52.06" y="229.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (15 samples, 0.05%)</title><rect x="55.1" y="203" width="0.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="58.13" y="213.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (13 samples, 0.04%)</title><rect x="22.5" y="747" width="0.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="25.46" y="757.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (6 samples, 0.02%)</title><rect x="904.5" y="363" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="907.49" y="373.5" ></text>
</g>
<g >
<title>relation_open (467 samples, 1.58%)</title><rect x="737.1" y="523" width="21.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="740.13" y="533.5" ></text>
</g>
<g >
<title>exec_toplevel_block (54 samples, 0.18%)</title><rect x="1134.2" y="475" width="2.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1137.20" y="485.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (6 samples, 0.02%)</title><rect x="1269.0" y="715" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1271.98" y="725.5" ></text>
</g>
<g >
<title>int4eqfast (6 samples, 0.02%)</title><rect x="1358.3" y="715" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1361.26" y="725.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (5 samples, 0.02%)</title><rect x="1220.8" y="539" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1223.77" y="549.5" ></text>
</g>
<g >
<title>AtEOXact_Files (34 samples, 0.11%)</title><rect x="1145.8" y="603" width="1.6" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1148.82" y="613.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (5 samples, 0.02%)</title><rect x="863.7" y="603" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="866.74" y="613.5" ></text>
</g>
<g >
<title>btinsert (10 samples, 0.03%)</title><rect x="1289.2" y="347" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1292.19" y="357.5" ></text>
</g>
<g >
<title>_copy_from_iter (19 samples, 0.06%)</title><rect x="476.3" y="443" width="0.9" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="479.28" y="453.5" ></text>
</g>
<g >
<title>PortalRunUtility (5 samples, 0.02%)</title><rect x="17.5" y="635" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="20.47" y="645.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (3 samples, 0.01%)</title><rect x="22.5" y="203" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="25.46" y="213.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (24 samples, 0.08%)</title><rect x="102.7" y="491" width="1.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="105.73" y="501.5" ></text>
</g>
<g >
<title>tcp_recvmsg_locked (829 samples, 2.80%)</title><rect x="250.6" y="459" width="38.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="253.63" y="469.5" >tc..</text>
</g>
<g >
<title>hash_initial_lookup (15 samples, 0.05%)</title><rect x="813.9" y="491" width="0.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="816.90" y="501.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (6 samples, 0.02%)</title><rect x="1287.3" y="315" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1290.28" y="325.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (42 samples, 0.14%)</title><rect x="768.9" y="555" width="1.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="771.86" y="565.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (3 samples, 0.01%)</title><rect x="35.2" y="267" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="38.20" y="277.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (8 samples, 0.03%)</title><rect x="660.2" y="427" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="663.21" y="437.5" ></text>
</g>
<g >
<title>AtStart_Cache (3 samples, 0.01%)</title><rect x="1268.1" y="603" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1271.14" y="613.5" ></text>
</g>
<g >
<title>LWLockRelease (24 samples, 0.08%)</title><rect x="33.0" y="299" width="1.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="36.01" y="309.5" ></text>
</g>
<g >
<title>LWLockAcquire (64 samples, 0.22%)</title><rect x="583.0" y="619" width="3.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="585.97" y="629.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (3 samples, 0.01%)</title><rect x="19.0" y="747" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="21.96" y="757.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (5 samples, 0.02%)</title><rect x="17.5" y="411" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="20.47" y="421.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (30 samples, 0.10%)</title><rect x="798.3" y="603" width="1.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="801.26" y="613.5" ></text>
</g>
<g >
<title>ReleaseCatCache (8 samples, 0.03%)</title><rect x="869.5" y="603" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="872.48" y="613.5" ></text>
</g>
<g >
<title>_bt_first (2,633 samples, 8.90%)</title><rect x="969.2" y="395" width="122.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="972.17" y="405.5" >_bt_first</text>
</g>
<g >
<title>list_head (5 samples, 0.02%)</title><rect x="1359.6" y="715" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1362.62" y="725.5" ></text>
</g>
<g >
<title>exec_stmts (139 samples, 0.47%)</title><rect x="30.0" y="507" width="6.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="32.97" y="517.5" ></text>
</g>
<g >
<title>dlist_is_empty (19 samples, 0.06%)</title><rect x="1349.1" y="715" width="0.9" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1352.07" y="725.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (13 samples, 0.04%)</title><rect x="22.5" y="731" width="0.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="25.46" y="741.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (38 samples, 0.13%)</title><rect x="1028.2" y="363" width="1.8" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1031.21" y="373.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (95 samples, 0.32%)</title><rect x="633.5" y="491" width="4.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="636.52" y="501.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (3 samples, 0.01%)</title><rect x="772.7" y="587" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="775.69" y="597.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (39 samples, 0.13%)</title><rect x="528.5" y="635" width="1.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="531.51" y="645.5" ></text>
</g>
<g >
<title>AllocSetReset (84 samples, 0.28%)</title><rect x="91.3" y="635" width="3.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="94.30" y="645.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (3 samples, 0.01%)</title><rect x="708.6" y="459" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="711.56" y="469.5" ></text>
</g>
<g >
<title>ip_skb_dst_mtu (10 samples, 0.03%)</title><rect x="334.1" y="363" width="0.5" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text  x="337.13" y="373.5" ></text>
</g>
<g >
<title>_raw_write_unlock_irq (12 samples, 0.04%)</title><rect x="128.0" y="475" width="0.6" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="131.03" y="485.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (675 samples, 2.28%)</title><rect x="1222.1" y="587" width="31.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1225.08" y="597.5" >R..</text>
</g>
<g >
<title>exec_stmt_block (7 samples, 0.02%)</title><rect x="38.5" y="603" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="41.52" y="613.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (57 samples, 0.19%)</title><rect x="81.5" y="507" width="2.7" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="84.50" y="517.5" ></text>
</g>
<g >
<title>AllocSetFree (5 samples, 0.02%)</title><rect x="1203.8" y="459" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1206.83" y="469.5" ></text>
</g>
<g >
<title>tcp_recvmsg (903 samples, 3.05%)</title><rect x="247.2" y="475" width="42.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="250.18" y="485.5" >tcp..</text>
</g>
<g >
<title>PinBufferForBlock (3 samples, 0.01%)</title><rect x="39.8" y="459" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="42.82" y="469.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (10 samples, 0.03%)</title><rect x="687.7" y="491" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="690.70" y="501.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,128 samples, 13.96%)</title><rect x="314.4" y="555" width="192.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="317.43" y="565.5" >entry_SYSCALL_64_afte..</text>
</g>
<g >
<title>systable_getnext (3 samples, 0.01%)</title><rect x="42.5" y="603" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="45.53" y="613.5" ></text>
</g>
<g >
<title>ChooseRelationName (3 samples, 0.01%)</title><rect x="36.5" y="363" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="39.46" y="373.5" ></text>
</g>
<g >
<title>ReleaseCatCache (10 samples, 0.03%)</title><rect x="1107.8" y="491" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1110.78" y="501.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (5 samples, 0.02%)</title><rect x="1384.8" y="347" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1387.77" y="357.5" ></text>
</g>
<g >
<title>index_rescan (35 samples, 0.12%)</title><rect x="1092.2" y="443" width="1.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1095.24" y="453.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (13 samples, 0.04%)</title><rect x="22.5" y="555" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="25.46" y="565.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (5 samples, 0.02%)</title><rect x="17.5" y="379" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="20.47" y="389.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (3 samples, 0.01%)</title><rect x="679.5" y="459" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="682.53" y="469.5" ></text>
</g>
<g >
<title>new_list (16 samples, 0.05%)</title><rect x="706.0" y="507" width="0.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="709.00" y="517.5" ></text>
</g>
<g >
<title>LWLockRelease (10 samples, 0.03%)</title><rect x="1170.8" y="507" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1173.79" y="517.5" ></text>
</g>
<g >
<title>index_getnext_tid (6 samples, 0.02%)</title><rect x="21.2" y="507" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="24.15" y="517.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (3 samples, 0.01%)</title><rect x="1133.2" y="587" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1136.22" y="597.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (20 samples, 0.07%)</title><rect x="1298.1" y="619" width="0.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1301.06" y="629.5" ></text>
</g>
<g >
<title>pq_sendint16 (3 samples, 0.01%)</title><rect x="876.4" y="635" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="879.44" y="645.5" ></text>
</g>
<g >
<title>_bt_first (11 samples, 0.04%)</title><rect x="1297.3" y="555" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1300.27" y="565.5" ></text>
</g>
<g >
<title>fetch_att (5 samples, 0.02%)</title><rect x="920.8" y="299" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="923.82" y="309.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (5 samples, 0.02%)</title><rect x="941.9" y="379" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="944.87" y="389.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (3 samples, 0.01%)</title><rect x="928.2" y="379" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="931.24" y="389.5" ></text>
</g>
<g >
<title>tcp_stream_alloc_skb (302 samples, 1.02%)</title><rect x="487.7" y="443" width="14.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="490.67" y="453.5" ></text>
</g>
<g >
<title>PortalRunUtility (11 samples, 0.04%)</title><rect x="37.9" y="747" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="40.86" y="757.5" ></text>
</g>
<g >
<title>DefineIndex (121 samples, 0.41%)</title><rect x="1287.2" y="443" width="5.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1290.23" y="453.5" ></text>
</g>
<g >
<title>index_getnext_slot (6 samples, 0.02%)</title><rect x="39.3" y="523" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="42.31" y="533.5" ></text>
</g>
<g >
<title>PortalRunSelect (13 samples, 0.04%)</title><rect x="12.2" y="683" width="0.6" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="15.24" y="693.5" ></text>
</g>
<g >
<title>_bt_first (3 samples, 0.01%)</title><rect x="20.7" y="491" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="23.73" y="501.5" ></text>
</g>
<g >
<title>enlargeStringInfo (3 samples, 0.01%)</title><rect x="1104.5" y="507" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1107.52" y="517.5" ></text>
</g>
<g >
<title>LWLockWakeup (3 samples, 0.01%)</title><rect x="745.2" y="443" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="748.15" y="453.5" ></text>
</g>
<g >
<title>AllocSetFree (9 samples, 0.03%)</title><rect x="1182.8" y="411" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1185.83" y="421.5" ></text>
</g>
<g >
<title>findDependentObjects (12 samples, 0.04%)</title><rect x="1297.3" y="651" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1300.27" y="661.5" ></text>
</g>
<g >
<title>_raw_spin_rq_lock_irqsave (4 samples, 0.01%)</title><rect x="194.1" y="347" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="197.07" y="357.5" ></text>
</g>
<g >
<title>RelationFlushRelation (16 samples, 0.05%)</title><rect x="40.8" y="555" width="0.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="43.76" y="565.5" ></text>
</g>
<g >
<title>RelationInitIndexAccessInfo (3 samples, 0.01%)</title><rect x="42.5" y="715" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="45.53" y="725.5" ></text>
</g>
<g >
<title>systable_getnext (5 samples, 0.02%)</title><rect x="19.8" y="539" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="22.85" y="549.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="1269.5" y="747" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1272.45" y="757.5" ></text>
</g>
<g >
<title>ExecShutdownNode_walker (24 samples, 0.08%)</title><rect x="1095.2" y="539" width="1.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1098.23" y="549.5" ></text>
</g>
<g >
<title>getTypeInputInfo (10 samples, 0.03%)</title><rect x="1353.6" y="715" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1356.55" y="725.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (3 samples, 0.01%)</title><rect x="1297.8" y="683" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1300.83" y="693.5" ></text>
</g>
<g >
<title>index_getnext_slot (6 samples, 0.02%)</title><rect x="21.2" y="523" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="24.15" y="533.5" ></text>
</g>
<g >
<title>performMultipleDeletions (29 samples, 0.10%)</title><rect x="40.8" y="699" width="1.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="43.76" y="709.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (16 samples, 0.05%)</title><rect x="875.7" y="587" width="0.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="878.69" y="597.5" ></text>
</g>
<g >
<title>FetchPreparedStatement (17 samples, 0.06%)</title><rect x="1321.0" y="715" width="0.8" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="1323.97" y="725.5" ></text>
</g>
<g >
<title>get_hash_value (46 samples, 0.16%)</title><rect x="746.6" y="459" width="2.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="749.55" y="469.5" ></text>
</g>
<g >
<title>LockRelationOid (104 samples, 0.35%)</title><rect x="551.1" y="603" width="4.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="554.05" y="613.5" ></text>
</g>
<g >
<title>__napi_poll (1,698 samples, 5.74%)</title><rect x="351.3" y="283" width="79.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="354.35" y="293.5" >__napi_..</text>
</g>
<g >
<title>_bt_metaversion (13 samples, 0.04%)</title><rect x="1008.2" y="379" width="0.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1011.24" y="389.5" ></text>
</g>
<g >
<title>RelationClose (23 samples, 0.08%)</title><rect x="1179.4" y="443" width="1.0" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="1182.38" y="453.5" ></text>
</g>
<g >
<title>hash_search (88 samples, 0.30%)</title><rect x="537.4" y="635" width="4.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="540.42" y="645.5" ></text>
</g>
<g >
<title>hash_search (56 samples, 0.19%)</title><rect x="865.1" y="635" width="2.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="868.10" y="645.5" ></text>
</g>
<g >
<title>pfree (9 samples, 0.03%)</title><rect x="772.4" y="619" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="775.41" y="629.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (8 samples, 0.03%)</title><rect x="74.5" y="219" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="77.45" y="229.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4 samples, 0.01%)</title><rect x="1279.1" y="747" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1282.11" y="757.5" ></text>
</g>
<g >
<title>mutex_lock (55 samples, 0.19%)</title><rect x="151.1" y="475" width="2.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="154.08" y="485.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberLock (3 samples, 0.01%)</title><rect x="743.9" y="459" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="746.89" y="469.5" ></text>
</g>
<g >
<title>exec_stmts (13 samples, 0.04%)</title><rect x="22.5" y="635" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="25.46" y="645.5" ></text>
</g>
<g >
<title>copyObjectImpl (3 samples, 0.01%)</title><rect x="1136.6" y="267" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1139.58" y="277.5" ></text>
</g>
<g >
<title>internal_putbytes (26 samples, 0.09%)</title><rect x="305.8" y="619" width="1.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="308.84" y="629.5" ></text>
</g>
<g >
<title>findDependentObjects (5 samples, 0.02%)</title><rect x="36.1" y="331" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="39.14" y="341.5" ></text>
</g>
<g >
<title>BackendMain (15 samples, 0.05%)</title><rect x="1384.8" y="731" width="0.7" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1387.77" y="741.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (7 samples, 0.02%)</title><rect x="23.3" y="747" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="26.30" y="757.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (99 samples, 0.33%)</title><rect x="919.1" y="347" width="4.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="922.14" y="357.5" ></text>
</g>
<g >
<title>LWLockAcquire (21 samples, 0.07%)</title><rect x="744.0" y="475" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="747.03" y="485.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (4 samples, 0.01%)</title><rect x="1080.0" y="299" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1083.01" y="309.5" ></text>
</g>
<g >
<title>PortalRun (11 samples, 0.04%)</title><rect x="1384.8" y="683" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1387.77" y="693.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (3 samples, 0.01%)</title><rect x="1338.8" y="715" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1341.80" y="725.5" ></text>
</g>
<g >
<title>CreateExecutorState (161 samples, 0.54%)</title><rect x="611.2" y="587" width="7.5" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="614.21" y="597.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (5 samples, 0.02%)</title><rect x="1240.6" y="507" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1243.56" y="517.5" ></text>
</g>
<g >
<title>LockErrorCleanup (3 samples, 0.01%)</title><rect x="1223.3" y="555" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1226.29" y="565.5" ></text>
</g>
<g >
<title>AddRelationNewConstraints (6 samples, 0.02%)</title><rect x="1292.9" y="427" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1295.88" y="437.5" ></text>
</g>
<g >
<title>ProcessUtility (12 samples, 0.04%)</title><rect x="1136.2" y="347" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1139.16" y="357.5" ></text>
</g>
<g >
<title>finish_xact_command (2,566 samples, 8.68%)</title><rect x="1136.7" y="667" width="119.8" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1139.72" y="677.5" >finish_xact_..</text>
</g>
<g >
<title>GetMemoryChunkMethodID (9 samples, 0.03%)</title><rect x="1196.6" y="459" width="0.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1199.60" y="469.5" ></text>
</g>
<g >
<title>ProcessUtility (7 samples, 0.02%)</title><rect x="38.5" y="491" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="41.52" y="501.5" ></text>
</g>
<g >
<title>update_load_avg (9 samples, 0.03%)</title><rect x="207.9" y="395" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="210.88" y="405.5" ></text>
</g>
<g >
<title>_bt_drop_lock_and_maybe_pin (157 samples, 0.53%)</title><rect x="1012.2" y="363" width="7.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1015.16" y="373.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (3 samples, 0.01%)</title><rect x="1291.9" y="91" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1294.85" y="101.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (3 samples, 0.01%)</title><rect x="785.0" y="587" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="788.01" y="597.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (24 samples, 0.08%)</title><rect x="651.9" y="411" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="654.86" y="421.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (11 samples, 0.04%)</title><rect x="821.1" y="523" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="824.09" y="533.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (10 samples, 0.03%)</title><rect x="28.2" y="539" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="31.20" y="549.5" ></text>
</g>
<g >
<title>table_index_fetch_end (18 samples, 0.06%)</title><rect x="1188.0" y="443" width="0.9" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1191.01" y="453.5" ></text>
</g>
<g >
<title>_bt_doinsert (9 samples, 0.03%)</title><rect x="1289.2" y="331" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1292.19" y="341.5" ></text>
</g>
<g >
<title>PostgresMain (25,339 samples, 85.69%)</title><rect x="84.3" y="683" width="1182.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="87.35" y="693.5" >PostgresMain</text>
</g>
<g >
<title>btint4cmp (70 samples, 0.24%)</title><rect x="1052.8" y="315" width="3.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1055.76" y="325.5" ></text>
</g>
<g >
<title>AllocSetAlloc (6 samples, 0.02%)</title><rect x="530.0" y="619" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="533.05" y="629.5" ></text>
</g>
<g >
<title>clear_bhb_loop (39 samples, 0.13%)</title><rect x="311.7" y="555" width="1.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="314.72" y="565.5" ></text>
</g>
<g >
<title>index_fetch_heap (630 samples, 2.13%)</title><rect x="939.0" y="427" width="29.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="941.98" y="437.5" >i..</text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.03%)</title><rect x="788.4" y="635" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="791.37" y="645.5" ></text>
</g>
<g >
<title>new_list (28 samples, 0.09%)</title><rect x="726.7" y="491" width="1.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="729.67" y="501.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (94 samples, 0.32%)</title><rect x="447.6" y="347" width="4.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="450.63" y="357.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (49 samples, 0.17%)</title><rect x="1275.5" y="411" width="2.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1278.52" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (6 samples, 0.02%)</title><rect x="74.5" y="187" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="77.55" y="197.5" ></text>
</g>
<g >
<title>table_index_build_scan (4 samples, 0.01%)</title><rect x="1292.0" y="363" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1295.04" y="373.5" ></text>
</g>
<g >
<title>pq_writeint8 (4 samples, 0.01%)</title><rect x="307.4" y="619" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="310.38" y="629.5" ></text>
</g>
<g >
<title>exec_stmt_fori (11 samples, 0.04%)</title><rect x="37.9" y="555" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="40.86" y="565.5" ></text>
</g>
<g >
<title>pfree (9 samples, 0.03%)</title><rect x="1203.7" y="475" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1206.69" y="485.5" ></text>
</g>
<g >
<title>PortalRunMulti (139 samples, 0.47%)</title><rect x="30.0" y="731" width="6.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="32.97" y="741.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (3 samples, 0.01%)</title><rect x="40.3" y="539" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="43.29" y="549.5" ></text>
</g>
<g >
<title>StartReadBuffer (5 samples, 0.02%)</title><rect x="17.2" y="299" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="20.23" y="309.5" ></text>
</g>
<g >
<title>hash_initial_lookup (7 samples, 0.02%)</title><rect x="1205.9" y="539" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1208.93" y="549.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (10 samples, 0.03%)</title><rect x="790.7" y="635" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="793.70" y="645.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (185 samples, 0.63%)</title><rect x="1287.2" y="555" width="8.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1290.18" y="565.5" ></text>
</g>
<g >
<title>ExecutorRun (4,981 samples, 16.85%)</title><rect x="893.7" y="619" width="232.4" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="896.66" y="629.5" >ExecutorRun</text>
</g>
<g >
<title>AllocSetFree (5 samples, 0.02%)</title><rect x="1188.5" y="395" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1191.52" y="405.5" ></text>
</g>
<g >
<title>RelationBuildDesc (3 samples, 0.01%)</title><rect x="1281.6" y="603" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1284.58" y="613.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (30 samples, 0.10%)</title><rect x="36.5" y="475" width="1.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="39.46" y="485.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (110 samples, 0.37%)</title><rect x="1076.7" y="347" width="5.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1079.65" y="357.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="20.9" y="507" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="23.92" y="517.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (20 samples, 0.07%)</title><rect x="1298.1" y="651" width="0.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1301.06" y="661.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (4 samples, 0.01%)</title><rect x="1278.3" y="715" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1281.32" y="725.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1291.8" y="219" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1294.81" y="229.5" ></text>
</g>
<g >
<title>ktime_get (9 samples, 0.03%)</title><rect x="425.8" y="139" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="428.83" y="149.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (5 samples, 0.02%)</title><rect x="975.0" y="363" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="977.96" y="373.5" ></text>
</g>
<g >
<title>pq_getbyte (4,245 samples, 14.36%)</title><rect x="98.4" y="635" width="198.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="101.39" y="645.5" >pq_getbyte</text>
</g>
<g >
<title>socket_putmessage (31 samples, 0.10%)</title><rect x="875.0" y="619" width="1.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="877.99" y="629.5" ></text>
</g>
<g >
<title>HeapTupleHeaderIsHeapOnly (37 samples, 0.13%)</title><rect x="962.6" y="347" width="1.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="965.64" y="357.5" ></text>
</g>
<g >
<title>___slab_alloc (3 samples, 0.01%)</title><rect x="489.9" y="363" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="492.87" y="373.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (8 samples, 0.03%)</title><rect x="1230.9" y="523" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1233.85" y="533.5" ></text>
</g>
<g >
<title>LockReleaseAll (566 samples, 1.91%)</title><rect x="1223.4" y="555" width="26.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1226.43" y="565.5" >L..</text>
</g>
<g >
<title>ipv4_mtu (9 samples, 0.03%)</title><rect x="485.5" y="411" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="488.48" y="421.5" ></text>
</g>
<g >
<title>AllocSetAlloc (5 samples, 0.02%)</title><rect x="1306.6" y="715" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1309.55" y="725.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (139 samples, 0.47%)</title><rect x="30.0" y="475" width="6.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="32.97" y="485.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (17 samples, 0.06%)</title><rect x="758.0" y="459" width="0.8" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="760.99" y="469.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (59 samples, 0.20%)</title><rect x="768.1" y="587" width="2.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="771.07" y="597.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (20 samples, 0.07%)</title><rect x="1298.1" y="747" width="0.9" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1301.06" y="757.5" ></text>
</g>
<g >
<title>RemoveRelations (49 samples, 0.17%)</title><rect x="81.8" y="283" width="2.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="84.78" y="293.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (3 samples, 0.01%)</title><rect x="1303.9" y="715" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1306.94" y="725.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="34.3" y="219" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="37.27" y="229.5" ></text>
</g>
<g >
<title>systable_getnext (5 samples, 0.02%)</title><rect x="40.8" y="475" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="43.76" y="485.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (70 samples, 0.24%)</title><rect x="573.1" y="539" width="3.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="576.13" y="549.5" ></text>
</g>
<g >
<title>ComputeIndexAttrs (8 samples, 0.03%)</title><rect x="1275.7" y="347" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1278.66" y="357.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="669.5" y="459" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="672.55" y="469.5" ></text>
</g>
<g >
<title>PreCommit_Portals (1,243 samples, 4.20%)</title><rect x="1157.5" y="603" width="58.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text  x="1160.53" y="613.5" >PreCo..</text>
</g>
<g >
<title>ProcessInvalidationMessages (15 samples, 0.05%)</title><rect x="20.9" y="651" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="23.92" y="661.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (4 samples, 0.01%)</title><rect x="609.9" y="555" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="612.95" y="565.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (57 samples, 0.19%)</title><rect x="50.0" y="219" width="2.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="53.04" y="229.5" ></text>
</g>
<g >
<title>ProcessUtility (3 samples, 0.01%)</title><rect x="38.8" y="683" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="41.84" y="693.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.03%)</title><rect x="10.4" y="747" width="0.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="13.42" y="757.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (4 samples, 0.01%)</title><rect x="990.9" y="315" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text  x="993.87" y="325.5" ></text>
</g>
<g >
<title>RelationFlushRelation (3 samples, 0.01%)</title><rect x="22.6" y="331" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="25.65" y="341.5" ></text>
</g>
<g >
<title>GETSTRUCT (5 samples, 0.02%)</title><rect x="712.9" y="475" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="715.90" y="485.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessagesMulti (3 samples, 0.01%)</title><rect x="1280.0" y="715" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1282.95" y="725.5" ></text>
</g>
<g >
<title>ReScanExprContext (11 samples, 0.04%)</title><rect x="913.5" y="491" width="0.5" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="916.49" y="501.5" ></text>
</g>
<g >
<title>update_min_vruntime (7 samples, 0.02%)</title><rect x="187.3" y="395" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="190.25" y="405.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (9 samples, 0.03%)</title><rect x="821.6" y="507" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="824.60" y="517.5" ></text>
</g>
<g >
<title>_copyPlannedStmt (3 samples, 0.01%)</title><rect x="1136.6" y="283" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="1139.58" y="293.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="726.0" y="459" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="729.02" y="469.5" ></text>
</g>
<g >
<title>btgettuple (5 samples, 0.02%)</title><rect x="19.8" y="491" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="22.85" y="501.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (50 samples, 0.17%)</title><rect x="953.6" y="235" width="2.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="956.63" y="245.5" ></text>
</g>
<g >
<title>ExecJustAssignScanVar (121 samples, 0.41%)</title><rect x="918.2" y="411" width="5.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="921.16" y="421.5" ></text>
</g>
<g >
<title>ExecutePlan (13 samples, 0.04%)</title><rect x="12.2" y="619" width="0.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="15.24" y="629.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (13 samples, 0.04%)</title><rect x="22.5" y="683" width="0.6" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="25.46" y="693.5" ></text>
</g>
<g >
<title>do_futex (3 samples, 0.01%)</title><rect x="1232.2" y="395" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1235.16" y="405.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (9 samples, 0.03%)</title><rect x="17.0" y="379" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="20.05" y="389.5" ></text>
</g>
<g >
<title>ProcessUtility (4 samples, 0.01%)</title><rect x="1385.3" y="379" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1388.29" y="389.5" ></text>
</g>
<g >
<title>LWLockAcquire (3 samples, 0.01%)</title><rect x="25.5" y="747" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="28.49" y="757.5" ></text>
</g>
<g >
<title>spin_delay (3 samples, 0.01%)</title><rect x="1386.6" y="747" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1389.59" y="757.5" ></text>
</g>
<g >
<title>mutex_unlock (15 samples, 0.05%)</title><rect x="153.7" y="475" width="0.7" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="156.65" y="485.5" ></text>
</g>
<g >
<title>ScanPgRelation (3 samples, 0.01%)</title><rect x="1291.1" y="251" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1294.06" y="261.5" ></text>
</g>
<g >
<title>btgettuple (3 samples, 0.01%)</title><rect x="20.9" y="475" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="23.92" y="485.5" ></text>
</g>
<g >
<title>AllocSetFree (12 samples, 0.04%)</title><rect x="1007.3" y="347" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1010.35" y="357.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (15 samples, 0.05%)</title><rect x="20.9" y="699" width="0.7" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="23.92" y="709.5" ></text>
</g>
<g >
<title>tcp_write_xmit (3,179 samples, 10.75%)</title><rect x="327.9" y="427" width="148.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="330.92" y="437.5" >tcp_write_xmit</text>
</g>
<g >
<title>AllocSetAlloc (15 samples, 0.05%)</title><rect x="727.2" y="459" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="730.19" y="469.5" ></text>
</g>
<g >
<title>SearchCatCache2 (4 samples, 0.01%)</title><rect x="39.1" y="667" width="0.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="42.12" y="677.5" ></text>
</g>
<g >
<title>UpdateIndexRelation (10 samples, 0.03%)</title><rect x="1289.8" y="411" width="0.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1292.85" y="421.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (3 samples, 0.01%)</title><rect x="12.8" y="603" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="15.85" y="613.5" ></text>
</g>
<g >
<title>findDependentObjects (4 samples, 0.01%)</title><rect x="83.9" y="251" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="86.88" y="261.5" ></text>
</g>
<g >
<title>ExecScanFetch (810 samples, 2.74%)</title><rect x="43.7" y="491" width="37.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="46.70" y="501.5" >Ex..</text>
</g>
<g >
<title>UnpinBufferNoOwner (62 samples, 0.21%)</title><rect x="1078.8" y="315" width="2.9" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1081.85" y="325.5" ></text>
</g>
<g >
<title>OutputFunctionCall (70 samples, 0.24%)</title><rect x="1099.3" y="539" width="3.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="1102.29" y="549.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (11 samples, 0.04%)</title><rect x="39.3" y="619" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="42.31" y="629.5" ></text>
</g>
<g >
<title>lookup_one_qstr_excl (3 samples, 0.01%)</title><rect x="1135.6" y="155" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1138.65" y="165.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (24 samples, 0.08%)</title><rect x="1299.0" y="619" width="1.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1301.99" y="629.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (16 samples, 0.05%)</title><rect x="744.1" y="459" width="0.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="747.08" y="469.5" ></text>
</g>
<g >
<title>newNode (9 samples, 0.03%)</title><rect x="1361.9" y="715" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1364.90" y="725.5" ></text>
</g>
<g >
<title>ip_finish_output (3 samples, 0.01%)</title><rect x="339.0" y="379" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="341.98" y="389.5" ></text>
</g>
<g >
<title>_SPI_commit (41 samples, 0.14%)</title><rect x="1134.2" y="363" width="1.9" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1137.20" y="373.5" ></text>
</g>
<g >
<title>errstart (3 samples, 0.01%)</title><rect x="1350.1" y="715" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1353.05" y="725.5" ></text>
</g>
<g >
<title>_bt_num_array_keys (19 samples, 0.06%)</title><rect x="43.7" y="363" width="0.9" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="46.70" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (24 samples, 0.08%)</title><rect x="1080.2" y="299" width="1.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1083.20" y="309.5" ></text>
</g>
<g >
<title>newidle_balance (174 samples, 0.59%)</title><rect x="199.2" y="411" width="8.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="202.20" y="421.5" ></text>
</g>
<g >
<title>_bt_spools_heapscan (4 samples, 0.01%)</title><rect x="1387.8" y="395" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1390.76" y="405.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (5 samples, 0.02%)</title><rect x="17.5" y="315" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="20.47" y="325.5" ></text>
</g>
<g >
<title>_bt_search (6 samples, 0.02%)</title><rect x="1385.0" y="411" width="0.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1388.01" y="421.5" ></text>
</g>
<g >
<title>ip_send_check (137 samples, 0.46%)</title><rect x="454.6" y="347" width="6.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="457.58" y="357.5" ></text>
</g>
<g >
<title>btbeginscan (3 samples, 0.01%)</title><rect x="1294.8" y="235" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1297.84" y="245.5" ></text>
</g>
<g >
<title>CheckExprStillValid (19 samples, 0.06%)</title><rect x="917.3" y="411" width="0.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="920.27" y="421.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (5 samples, 0.02%)</title><rect x="103.1" y="459" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="106.11" y="469.5" ></text>
</g>
<g >
<title>AllocSetReset (16 samples, 0.05%)</title><rect x="1142.6" y="555" width="0.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1145.65" y="565.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (11 samples, 0.04%)</title><rect x="502.1" y="491" width="0.5" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="505.09" y="501.5" ></text>
</g>
<g >
<title>IndexNext (13 samples, 0.04%)</title><rect x="12.2" y="507" width="0.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="15.24" y="517.5" ></text>
</g>
<g >
<title>__GI___libc_free (26 samples, 0.09%)</title><rect x="1186.1" y="395" width="1.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1189.14" y="405.5" ></text>
</g>
<g >
<title>index_getattr (61 samples, 0.21%)</title><rect x="1003.8" y="347" width="2.9" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1006.85" y="357.5" ></text>
</g>
<g >
<title>PinBuffer (57 samples, 0.19%)</title><rect x="53.3" y="235" width="2.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="56.31" y="245.5" ></text>
</g>
<g >
<title>btgettuple (4 samples, 0.01%)</title><rect x="1296.6" y="523" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1299.57" y="533.5" ></text>
</g>
<g >
<title>performMultipleDeletions (39 samples, 0.13%)</title><rect x="1296.0" y="667" width="1.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1299.01" y="677.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (13 samples, 0.04%)</title><rect x="569.4" y="491" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="572.44" y="501.5" ></text>
</g>
<g >
<title>AtStart_Cache (25 samples, 0.08%)</title><rect x="102.7" y="523" width="1.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="105.69" y="533.5" ></text>
</g>
<g >
<title>pstrdup (78 samples, 0.26%)</title><rect x="802.5" y="651" width="3.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="805.47" y="661.5" ></text>
</g>
<g >
<title>lcons (28 samples, 0.09%)</title><rect x="638.2" y="491" width="1.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="641.23" y="501.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (5 samples, 0.02%)</title><rect x="1210.0" y="555" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1213.04" y="565.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (3 samples, 0.01%)</title><rect x="890.6" y="587" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="893.58" y="597.5" ></text>
</g>
<g >
<title>ExecCloseRangeTableRelations (38 samples, 0.13%)</title><rect x="1178.7" y="491" width="1.7" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1181.68" y="501.5" ></text>
</g>
<g >
<title>murmurhash32 (7 samples, 0.02%)</title><rect x="676.3" y="427" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="679.27" y="437.5" ></text>
</g>
<g >
<title>AssertCouldGetRelation (7 samples, 0.02%)</title><rect x="1307.4" y="715" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1310.39" y="725.5" ></text>
</g>
<g >
<title>AllocSetAlloc (23 samples, 0.08%)</title><rect x="683.9" y="507" width="1.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="686.92" y="517.5" ></text>
</g>
<g >
<title>find_busiest_group (3 samples, 0.01%)</title><rect x="1231.4" y="299" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="1234.41" y="309.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (7 samples, 0.02%)</title><rect x="1315.7" y="715" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1318.65" y="725.5" ></text>
</g>
<g >
<title>stmt_requires_parse_analysis (3 samples, 0.01%)</title><rect x="581.8" y="603" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="584.81" y="613.5" ></text>
</g>
<g >
<title>OidInputFunctionCall (103 samples, 0.35%)</title><rect x="588.1" y="651" width="4.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="591.06" y="661.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (3 samples, 0.01%)</title><rect x="39.4" y="427" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="42.45" y="437.5" ></text>
</g>
<g >
<title>initStringInfoInternal (82 samples, 0.28%)</title><rect x="1257.5" y="651" width="3.9" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1260.55" y="661.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (6 samples, 0.02%)</title><rect x="821.3" y="491" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="824.32" y="501.5" ></text>
</g>
<g >
<title>ProcessUtility (139 samples, 0.47%)</title><rect x="30.0" y="699" width="6.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="32.97" y="709.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (7 samples, 0.02%)</title><rect x="1231.3" y="491" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1234.27" y="501.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (27 samples, 0.09%)</title><rect x="1287.9" y="379" width="1.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1290.93" y="389.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (4 samples, 0.01%)</title><rect x="1330.2" y="715" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1333.22" y="725.5" ></text>
</g>
<g >
<title>relation_close (25 samples, 0.08%)</title><rect x="1179.3" y="459" width="1.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1182.28" y="469.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (3 samples, 0.01%)</title><rect x="12.8" y="379" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="15.85" y="389.5" ></text>
</g>
<g >
<title>__x64_sys_openat (3 samples, 0.01%)</title><rect x="34.3" y="187" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="37.27" y="197.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (8 samples, 0.03%)</title><rect x="586.3" y="587" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="589.33" y="597.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (5 samples, 0.02%)</title><rect x="197.8" y="347" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="200.76" y="357.5" ></text>
</g>
<g >
<title>is_log_level_output (3 samples, 0.01%)</title><rect x="779.1" y="619" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="782.08" y="629.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (8 samples, 0.03%)</title><rect x="1292.5" y="363" width="0.4" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1295.51" y="373.5" ></text>
</g>
<g >
<title>slot_getattr (113 samples, 0.38%)</title><rect x="918.5" y="379" width="5.3" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="921.53" y="389.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (52 samples, 0.18%)</title><rect x="647.5" y="459" width="2.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="650.47" y="469.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (13 samples, 0.04%)</title><rect x="1136.1" y="363" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1139.11" y="373.5" ></text>
</g>
<g >
<title>btinsert (8 samples, 0.03%)</title><rect x="1292.5" y="331" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1295.51" y="341.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (20 samples, 0.07%)</title><rect x="1298.1" y="555" width="0.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1301.06" y="565.5" ></text>
</g>
<g >
<title>PageGetItemId (7 samples, 0.02%)</title><rect x="1075.0" y="331" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1078.02" y="341.5" ></text>
</g>
<g >
<title>RelationCreateStorage (3 samples, 0.01%)</title><rect x="1298.9" y="411" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="1301.85" y="421.5" ></text>
</g>
<g >
<title>index_getnext_tid (4 samples, 0.01%)</title><rect x="39.1" y="587" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="42.12" y="597.5" ></text>
</g>
<g >
<title>__sys_sendto (3,988 samples, 13.49%)</title><rect x="316.5" y="507" width="186.1" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="319.49" y="517.5" >__sys_sendto</text>
</g>
<g >
<title>HeapTupleHasNulls (3 samples, 0.01%)</title><rect x="1323.8" y="715" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1326.77" y="725.5" ></text>
</g>
<g >
<title>StartReadBuffer (464 samples, 1.57%)</title><rect x="59.8" y="299" width="21.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="62.84" y="309.5" ></text>
</g>
<g >
<title>get_hash_value (40 samples, 0.14%)</title><rect x="47.1" y="219" width="1.9" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="50.10" y="229.5" ></text>
</g>
<g >
<title>systable_getnext (14 samples, 0.05%)</title><rect x="30.3" y="315" width="0.7" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="33.35" y="325.5" ></text>
</g>
<g >
<title>tcp_update_skb_after_send (16 samples, 0.05%)</title><rect x="464.7" y="395" width="0.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="467.66" y="405.5" ></text>
</g>
<g >
<title>pfree (12 samples, 0.04%)</title><rect x="1207.7" y="571" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1210.66" y="581.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (5 samples, 0.02%)</title><rect x="1181.4" y="395" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1184.43" y="405.5" ></text>
</g>
<g >
<title>index_getnext_tid (5 samples, 0.02%)</title><rect x="19.8" y="507" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="22.85" y="517.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (10 samples, 0.03%)</title><rect x="1387.3" y="331" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1390.29" y="341.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (3 samples, 0.01%)</title><rect x="1290.8" y="187" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1293.78" y="197.5" ></text>
</g>
<g >
<title>s_lock (46 samples, 0.16%)</title><rect x="738.9" y="443" width="2.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="741.85" y="453.5" ></text>
</g>
<g >
<title>StartChildProcess (4 samples, 0.01%)</title><rect x="1268.1" y="715" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1271.14" y="725.5" ></text>
</g>
<g >
<title>flush_ps_display (3 samples, 0.01%)</title><rect x="1266.7" y="635" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="1269.74" y="645.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (73 samples, 0.25%)</title><rect x="558.5" y="571" width="3.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="561.47" y="581.5" ></text>
</g>
<g >
<title>DatumGetInt32 (7 samples, 0.02%)</title><rect x="1316.0" y="715" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1318.98" y="725.5" ></text>
</g>
<g >
<title>ExecutorRun (13 samples, 0.04%)</title><rect x="12.2" y="667" width="0.6" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="15.24" y="677.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (68 samples, 0.23%)</title><rect x="1099.4" y="523" width="3.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1102.38" y="533.5" ></text>
</g>
<g >
<title>_GLOBAL_OFFSET_TABLE_ (4 samples, 0.01%)</title><rect x="910.3" y="411" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="913.32" y="421.5" ></text>
</g>
<g >
<title>ExecReScan (183 samples, 0.62%)</title><rect x="905.6" y="507" width="8.5" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="908.61" y="517.5" ></text>
</g>
<g >
<title>kmem_cache_free (6 samples, 0.02%)</title><rect x="432.7" y="283" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="435.74" y="293.5" ></text>
</g>
<g >
<title>exec_execute_message (96 samples, 0.32%)</title><rect x="13.0" y="683" width="4.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="15.99" y="693.5" ></text>
</g>
<g >
<title>ReadBuffer (6 samples, 0.02%)</title><rect x="1385.0" y="363" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1388.01" y="373.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (3 samples, 0.01%)</title><rect x="1292.7" y="267" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="1295.69" y="277.5" ></text>
</g>
<g >
<title>LockRelationOid (5 samples, 0.02%)</title><rect x="1295.6" y="363" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1298.59" y="373.5" ></text>
</g>
<g >
<title>futex_wake (3 samples, 0.01%)</title><rect x="1232.2" y="379" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1235.16" y="389.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (5 samples, 0.02%)</title><rect x="319.4" y="459" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="322.43" y="469.5" ></text>
</g>
<g >
<title>__check_object_size (15 samples, 0.05%)</title><rect x="326.8" y="443" width="0.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="329.85" y="453.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (3 samples, 0.01%)</title><rect x="685.7" y="491" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="688.70" y="501.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (3 samples, 0.01%)</title><rect x="1030.9" y="363" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1033.87" y="373.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (4 samples, 0.01%)</title><rect x="80.1" y="251" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="83.10" y="261.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (3 samples, 0.01%)</title><rect x="55.8" y="219" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="58.83" y="229.5" ></text>
</g>
<g >
<title>HistoricSnapshotActive (3 samples, 0.01%)</title><rect x="1324.0" y="715" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1327.01" y="725.5" ></text>
</g>
<g >
<title>hash_search (111 samples, 0.38%)</title><rect x="1233.7" y="523" width="5.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1236.65" y="533.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (27 samples, 0.09%)</title><rect x="696.5" y="459" width="1.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="699.52" y="469.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (6 samples, 0.02%)</title><rect x="1338.5" y="715" width="0.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1341.52" y="725.5" ></text>
</g>
<g >
<title>LockRelease (3 samples, 0.01%)</title><rect x="1288.9" y="203" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1291.87" y="213.5" ></text>
</g>
<g >
<title>CStringGetDatum (6 samples, 0.02%)</title><rect x="589.2" y="619" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="592.23" y="629.5" ></text>
</g>
<g >
<title>TupleDescInitEntry (164 samples, 0.55%)</title><rect x="711.6" y="491" width="7.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="714.60" y="501.5" ></text>
</g>
<g >
<title>hash_search (108 samples, 0.37%)</title><rect x="523.5" y="619" width="5.0" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="526.47" y="629.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3 samples, 0.01%)</title><rect x="22.5" y="219" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="25.46" y="229.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (124 samples, 0.42%)</title><rect x="490.3" y="363" width="5.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="493.29" y="373.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (6 samples, 0.02%)</title><rect x="928.1" y="411" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="931.10" y="421.5" ></text>
</g>
<g >
<title>pgstat_tracks_backend_bktype (6 samples, 0.02%)</title><rect x="81.2" y="219" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="84.17" y="229.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (4 samples, 0.01%)</title><rect x="1383.7" y="731" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1386.70" y="741.5" ></text>
</g>
<g >
<title>IndexInfoFindDataOffset (10 samples, 0.03%)</title><rect x="1325.0" y="715" width="0.5" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1328.03" y="725.5" ></text>
</g>
<g >
<title>BlockIdSet (4 samples, 0.01%)</title><rect x="965.3" y="347" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="968.30" y="357.5" ></text>
</g>
<g >
<title>ExecJustAssignVarImpl (119 samples, 0.40%)</title><rect x="918.3" y="395" width="5.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="921.25" y="405.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (3 samples, 0.01%)</title><rect x="64.9" y="139" width="0.1" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text  x="67.88" y="149.5" ></text>
</g>
<g >
<title>exec_stmts (54 samples, 0.18%)</title><rect x="1134.2" y="443" width="2.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1137.20" y="453.5" ></text>
</g>
<g >
<title>ExecInitQual (485 samples, 1.64%)</title><rect x="686.3" y="539" width="22.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="689.30" y="549.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (4 samples, 0.01%)</title><rect x="1278.3" y="587" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1281.32" y="597.5" ></text>
</g>
<g >
<title>enlargeStringInfo (3 samples, 0.01%)</title><rect x="1105.1" y="507" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1108.08" y="517.5" ></text>
</g>
<g >
<title>LWLockRelease (13 samples, 0.04%)</title><rect x="74.3" y="235" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="77.27" y="245.5" ></text>
</g>
<g >
<title>AttrDefaultFetch (4 samples, 0.01%)</title><rect x="1294.0" y="203" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1297.05" y="213.5" ></text>
</g>
<g >
<title>fetch_att (11 samples, 0.04%)</title><rect x="1351.6" y="715" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1354.64" y="725.5" ></text>
</g>
<g >
<title>_bt_compare (6 samples, 0.02%)</title><rect x="1296.9" y="507" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1299.89" y="517.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (19 samples, 0.06%)</title><rect x="627.5" y="459" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="630.54" y="469.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (10 samples, 0.03%)</title><rect x="1277.9" y="555" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1280.85" y="565.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (3 samples, 0.01%)</title><rect x="220.3" y="507" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="223.30" y="517.5" ></text>
</g>
<g >
<title>RelationFlushRelation (9 samples, 0.03%)</title><rect x="1386.8" y="331" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1389.78" y="341.5" ></text>
</g>
<g >
<title>btgettuple (11 samples, 0.04%)</title><rect x="1296.8" y="571" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1299.75" y="581.5" ></text>
</g>
<g >
<title>PortalRun (5,080 samples, 17.18%)</title><rect x="891.0" y="651" width="237.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="894.00" y="661.5" >PortalRun</text>
</g>
<g >
<title>InputFunctionCall (66 samples, 0.22%)</title><rect x="588.2" y="635" width="3.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="591.25" y="645.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (14 samples, 0.05%)</title><rect x="1294.0" y="347" width="0.7" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1297.05" y="357.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (25 samples, 0.08%)</title><rect x="745.3" y="443" width="1.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="748.29" y="453.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (10 samples, 0.03%)</title><rect x="1387.3" y="411" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1390.29" y="421.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (6 samples, 0.02%)</title><rect x="1269.0" y="619" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1271.98" y="629.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (14 samples, 0.05%)</title><rect x="1294.0" y="299" width="0.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1297.05" y="309.5" ></text>
</g>
<g >
<title>ExecInitRangeTable (30 samples, 0.10%)</title><rect x="763.7" y="571" width="1.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="766.73" y="581.5" ></text>
</g>
<g >
<title>__schedule (3 samples, 0.01%)</title><rect x="566.0" y="379" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="569.03" y="389.5" ></text>
</g>
<g >
<title>cache_from_obj (4 samples, 0.01%)</title><rect x="416.4" y="123" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="419.36" y="133.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (7 samples, 0.02%)</title><rect x="1279.3" y="619" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1282.30" y="629.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (5 samples, 0.02%)</title><rect x="885.0" y="619" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="887.98" y="629.5" ></text>
</g>
<g >
<title>hash_search (13 samples, 0.04%)</title><rect x="817.8" y="523" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="820.77" y="533.5" ></text>
</g>
<g >
<title>StartReadBuffer (6 samples, 0.02%)</title><rect x="1287.3" y="235" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1290.28" y="245.5" ></text>
</g>
<g >
<title>index_getnext_tid (4 samples, 0.01%)</title><rect x="1296.6" y="539" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1299.57" y="549.5" ></text>
</g>
<g >
<title>socket_putmessage (16 samples, 0.05%)</title><rect x="887.0" y="635" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="890.03" y="645.5" ></text>
</g>
<g >
<title>PortalRun (57 samples, 0.19%)</title><rect x="81.5" y="667" width="2.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="84.50" y="677.5" ></text>
</g>
<g >
<title>tcp_wfree (8 samples, 0.03%)</title><rect x="451.6" y="315" width="0.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="454.64" y="325.5" ></text>
</g>
<g >
<title>__slab_free (48 samples, 0.16%)</title><rect x="410.8" y="107" width="2.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="413.81" y="117.5" ></text>
</g>
<g >
<title>s_lock (42 samples, 0.14%)</title><rect x="559.8" y="523" width="1.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="562.78" y="533.5" ></text>
</g>
<g >
<title>DefineRelation (11 samples, 0.04%)</title><rect x="1387.9" y="459" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1390.95" y="469.5" ></text>
</g>
<g >
<title>AllocSetDelete (21 samples, 0.07%)</title><rect x="1192.8" y="443" width="1.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1195.82" y="453.5" ></text>
</g>
<g >
<title>get_attoptions (3 samples, 0.01%)</title><rect x="42.5" y="683" width="0.2" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="45.53" y="693.5" ></text>
</g>
<g >
<title>IndexTupleHasNulls (3 samples, 0.01%)</title><rect x="1005.6" y="331" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1008.58" y="341.5" ></text>
</g>
<g >
<title>ReleaseCatCache (3 samples, 0.01%)</title><rect x="671.4" y="491" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="674.41" y="501.5" ></text>
</g>
<g >
<title>CatalogTupleInsert (3 samples, 0.01%)</title><rect x="1278.4" y="507" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1281.36" y="517.5" ></text>
</g>
<g >
<title>index_update_stats (8 samples, 0.03%)</title><rect x="40.1" y="683" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="43.06" y="693.5" ></text>
</g>
<g >
<title>PortalRunMulti (30 samples, 0.10%)</title><rect x="36.5" y="747" width="1.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="39.46" y="757.5" ></text>
</g>
<g >
<title>ExecEvalParamExtern (8 samples, 0.03%)</title><rect x="911.4" y="411" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="914.39" y="421.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (16 samples, 0.05%)</title><rect x="713.4" y="443" width="0.8" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="716.42" y="453.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (3 samples, 0.01%)</title><rect x="1298.9" y="299" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1301.85" y="309.5" ></text>
</g>
<g >
<title>RelationFlushRelation (15 samples, 0.05%)</title><rect x="20.9" y="603" width="0.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="23.92" y="613.5" ></text>
</g>
<g >
<title>PortalRunMulti (49 samples, 0.17%)</title><rect x="1275.5" y="715" width="2.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1278.52" y="725.5" ></text>
</g>
<g >
<title>deleteOneObject (27 samples, 0.09%)</title><rect x="1296.0" y="635" width="1.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1299.01" y="645.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (48 samples, 0.16%)</title><rect x="690.4" y="459" width="2.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="693.36" y="469.5" ></text>
</g>
<g >
<title>index_getnext_slot (5 samples, 0.02%)</title><rect x="39.6" y="523" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="42.59" y="533.5" ></text>
</g>
<g >
<title>_bt_first (6 samples, 0.02%)</title><rect x="41.2" y="427" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="44.22" y="437.5" ></text>
</g>
<g >
<title>CreateExprContextInternal (268 samples, 0.91%)</title><rect x="632.0" y="507" width="12.5" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="634.98" y="517.5" ></text>
</g>
<g >
<title>ExecTypeFromTLInternal (260 samples, 0.88%)</title><rect x="709.3" y="507" width="12.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="712.31" y="517.5" ></text>
</g>
<g >
<title>systable_getnext (3 samples, 0.01%)</title><rect x="1296.2" y="603" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1299.19" y="613.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (61 samples, 0.21%)</title><rect x="1386.7" y="747" width="2.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1389.73" y="757.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (8 samples, 0.03%)</title><rect x="821.6" y="491" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="824.65" y="501.5" ></text>
</g>
<g >
<title>DefineIndex (10 samples, 0.03%)</title><rect x="1388.7" y="715" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1391.69" y="725.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (9 samples, 0.03%)</title><rect x="1386.8" y="427" width="0.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1389.78" y="437.5" ></text>
</g>
<g >
<title>ProcessUtility (3 samples, 0.01%)</title><rect x="1297.8" y="699" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1300.83" y="709.5" ></text>
</g>
<g >
<title>errstart (12 samples, 0.04%)</title><rect x="778.7" y="651" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="781.66" y="661.5" ></text>
</g>
<g >
<title>_bt_leafbuild (12 samples, 0.04%)</title><rect x="1291.5" y="379" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1294.48" y="389.5" ></text>
</g>
<g >
<title>systable_beginscan (3 samples, 0.01%)</title><rect x="1279.7" y="603" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="1282.72" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (3 samples, 0.01%)</title><rect x="678.4" y="443" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="681.41" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (3 samples, 0.01%)</title><rect x="869.7" y="555" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="872.72" y="565.5" ></text>
</g>
<g >
<title>LockBuffer (20 samples, 0.07%)</title><rect x="1018.5" y="315" width="1.0" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1021.55" y="325.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (4 samples, 0.01%)</title><rect x="1232.1" y="491" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1235.11" y="501.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (4 samples, 0.01%)</title><rect x="756.1" y="491" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="759.07" y="501.5" ></text>
</g>
<g >
<title>kmem_cache_free (5 samples, 0.02%)</title><rect x="416.3" y="139" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="419.31" y="149.5" ></text>
</g>
<g >
<title>HeapTupleHasNulls (5 samples, 0.02%)</title><rect x="920.6" y="299" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="923.59" y="309.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (5 samples, 0.02%)</title><rect x="1306.8" y="715" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1309.79" y="725.5" ></text>
</g>
<g >
<title>LockBuffer (47 samples, 0.16%)</title><rect x="1085.1" y="331" width="2.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1088.05" y="341.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (18 samples, 0.06%)</title><rect x="647.9" y="443" width="0.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="650.94" y="453.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (4 samples, 0.01%)</title><rect x="1385.3" y="331" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1388.29" y="341.5" ></text>
</g>
<g >
<title>CreateConstraintEntry (3 samples, 0.01%)</title><rect x="1293.2" y="395" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1296.16" y="405.5" ></text>
</g>
<g >
<title>heap_create_with_catalog (13 samples, 0.04%)</title><rect x="1298.4" y="443" width="0.6" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="1301.39" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (17 samples, 0.06%)</title><rect x="1220.2" y="587" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1223.21" y="597.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (21 samples, 0.07%)</title><rect x="1290.5" y="315" width="1.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1293.50" y="325.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (139 samples, 0.47%)</title><rect x="30.0" y="395" width="6.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="32.97" y="405.5" ></text>
</g>
<g >
<title>ExecIndexEvalRuntimeKeys (125 samples, 0.42%)</title><rect x="906.2" y="475" width="5.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="909.17" y="485.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (9 samples, 0.03%)</title><rect x="766.7" y="571" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="769.72" y="581.5" ></text>
</g>
<g >
<title>exec_stmt_block (49 samples, 0.17%)</title><rect x="1275.5" y="539" width="2.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1278.52" y="549.5" ></text>
</g>
<g >
<title>DefineRelation (7 samples, 0.02%)</title><rect x="37.2" y="395" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="40.21" y="405.5" ></text>
</g>
<g >
<title>hash_search (8 samples, 0.03%)</title><rect x="1354.9" y="715" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1357.86" y="725.5" ></text>
</g>
<g >
<title>ExecInitNode (3 samples, 0.01%)</title><rect x="1319.1" y="715" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1322.06" y="725.5" ></text>
</g>
<g >
<title>ReadCommand (4,437 samples, 15.01%)</title><rect x="95.8" y="667" width="207.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="98.78" y="677.5" >ReadCommand</text>
</g>
<g >
<title>socket_putmessage (18 samples, 0.06%)</title><rect x="1103.2" y="523" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1106.16" y="533.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (6 samples, 0.02%)</title><rect x="698.6" y="459" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="701.58" y="469.5" ></text>
</g>
<g >
<title>index_beginscan_internal (213 samples, 0.72%)</title><rect x="926.4" y="427" width="10.0" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text  x="929.42" y="437.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (30 samples, 0.10%)</title><rect x="36.5" y="635" width="1.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="39.46" y="645.5" ></text>
</g>
<g >
<title>bsearch@plt (7 samples, 0.02%)</title><rect x="910.0" y="395" width="0.3" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text  x="912.99" y="405.5" ></text>
</g>
<g >
<title>palloc (6 samples, 0.02%)</title><rect x="681.2" y="523" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="684.17" y="533.5" ></text>
</g>
<g >
<title>tag_hash (55 samples, 0.19%)</title><rect x="1173.9" y="491" width="2.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1176.87" y="501.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (5 samples, 0.02%)</title><rect x="727.7" y="443" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="730.65" y="453.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (6 samples, 0.02%)</title><rect x="507.1" y="555" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="510.13" y="565.5" ></text>
</g>
<g >
<title>__GI_bsearch (4 samples, 0.01%)</title><rect x="910.3" y="395" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="913.32" y="405.5" ></text>
</g>
<g >
<title>exec_execute_message (5,466 samples, 18.49%)</title><rect x="879.1" y="667" width="255.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="882.10" y="677.5" >exec_execute_message</text>
</g>
<g >
<title>list_delete_cell (14 samples, 0.05%)</title><rect x="1195.3" y="459" width="0.7" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1198.34" y="469.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (4 samples, 0.01%)</title><rect x="1322.2" y="715" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1325.23" y="725.5" ></text>
</g>
<g >
<title>newNode (105 samples, 0.36%)</title><rect x="639.5" y="491" width="4.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="642.54" y="501.5" ></text>
</g>
<g >
<title>btgettuple (810 samples, 2.74%)</title><rect x="43.7" y="427" width="37.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="46.70" y="437.5" >bt..</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (4 samples, 0.01%)</title><rect x="583.3" y="571" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="586.35" y="581.5" ></text>
</g>
<g >
<title>deleteOneObject (24 samples, 0.08%)</title><rect x="40.8" y="667" width="1.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="43.76" y="677.5" ></text>
</g>
<g >
<title>RelationBuildDesc (14 samples, 0.05%)</title><rect x="1294.0" y="235" width="0.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1297.05" y="245.5" ></text>
</g>
<g >
<title>[[heap]] (111 samples, 0.38%)</title><rect x="1300.4" y="731" width="5.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="1303.44" y="741.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (5 samples, 0.02%)</title><rect x="17.5" y="587" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="20.47" y="597.5" ></text>
</g>
<g >
<title>HeapTupleIsHeapOnly (37 samples, 0.13%)</title><rect x="962.6" y="363" width="1.8" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="965.64" y="373.5" ></text>
</g>
<g >
<title>index_beginscan (3 samples, 0.01%)</title><rect x="1294.8" y="267" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1297.84" y="277.5" ></text>
</g>
<g >
<title>RelationFlushRelation (21 samples, 0.07%)</title><rect x="1290.5" y="299" width="1.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1293.50" y="309.5" ></text>
</g>
<g >
<title>socket_putmessage (10 samples, 0.03%)</title><rect x="1372.5" y="715" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1375.55" y="725.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberRelationRef (5 samples, 0.02%)</title><rect x="730.9" y="443" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="733.87" y="453.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (3 samples, 0.01%)</title><rect x="708.7" y="475" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="711.70" y="485.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (9 samples, 0.03%)</title><rect x="1386.8" y="395" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1389.78" y="405.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (7 samples, 0.02%)</title><rect x="38.5" y="635" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="41.52" y="645.5" ></text>
</g>
<g >
<title>send_call_function_single_ipi (45 samples, 0.15%)</title><rect x="395.3" y="59" width="2.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="398.26" y="69.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (2,761 samples, 9.34%)</title><rect x="332.9" y="395" width="128.9" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="335.91" y="405.5" >__ip_queue_xmit</text>
</g>
<g >
<title>SendRowDescriptionMessage (225 samples, 0.76%)</title><rect x="867.8" y="651" width="10.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="870.80" y="661.5" ></text>
</g>
<g >
<title>PortalRun (3 samples, 0.01%)</title><rect x="12.8" y="699" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="15.85" y="709.5" ></text>
</g>
<g >
<title>systable_getnext (8 samples, 0.03%)</title><rect x="40.1" y="651" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="43.06" y="661.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (4 samples, 0.01%)</title><rect x="1334.0" y="715" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1337.00" y="725.5" ></text>
</g>
<g >
<title>tts_heap_materialize (6 samples, 0.02%)</title><rect x="1280.7" y="715" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1283.65" y="725.5" ></text>
</g>
<g >
<title>resetStringInfo (49 samples, 0.17%)</title><rect x="300.2" y="619" width="2.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="303.15" y="629.5" ></text>
</g>
<g >
<title>LockRelationOid (9 samples, 0.03%)</title><rect x="35.0" y="347" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="38.02" y="357.5" ></text>
</g>
<g >
<title>MemoryContextDelete (22 samples, 0.07%)</title><rect x="1113.0" y="555" width="1.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1116.01" y="565.5" ></text>
</g>
<g >
<title>exec_stmt_block (10 samples, 0.03%)</title><rect x="28.2" y="667" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="31.20" y="677.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (3 samples, 0.01%)</title><rect x="22.6" y="379" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="25.65" y="389.5" ></text>
</g>
<g >
<title>index_fetch_heap (13 samples, 0.04%)</title><rect x="30.3" y="283" width="0.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="33.35" y="293.5" ></text>
</g>
<g >
<title>ExecEndNode (180 samples, 0.61%)</title><rect x="1180.6" y="491" width="8.4" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="1183.59" y="501.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="596.6" y="603" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="599.60" y="613.5" ></text>
</g>
<g >
<title>BlockIdSet (4 samples, 0.01%)</title><rect x="913.2" y="411" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="916.21" y="421.5" ></text>
</g>
<g >
<title>start_xact_command (5 samples, 0.02%)</title><rect x="1373.4" y="715" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1376.39" y="725.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (7 samples, 0.02%)</title><rect x="1190.3" y="459" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="1193.34" y="469.5" ></text>
</g>
<g >
<title>exec_stmts (20 samples, 0.07%)</title><rect x="1298.1" y="699" width="0.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1301.06" y="709.5" ></text>
</g>
<g >
<title>index_endscan (154 samples, 0.52%)</title><rect x="1181.7" y="459" width="7.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1184.66" y="469.5" ></text>
</g>
<g >
<title>TupleDescInitEntryCollation (5 samples, 0.02%)</title><rect x="1344.4" y="715" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1347.36" y="725.5" ></text>
</g>
<g >
<title>native_apic_msr_eoi_write (8 samples, 0.03%)</title><rect x="193.4" y="363" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="196.37" y="373.5" ></text>
</g>
<g >
<title>hash_bytes (21 samples, 0.07%)</title><rect x="540.6" y="603" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="543.55" y="613.5" ></text>
</g>
<g >
<title>MemoryContextReset (21 samples, 0.07%)</title><rect x="1142.5" y="587" width="0.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1145.46" y="597.5" ></text>
</g>
<g >
<title>DatumGetInt32 (6 samples, 0.02%)</title><rect x="19.5" y="747" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="22.47" y="757.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (9 samples, 0.03%)</title><rect x="1180.0" y="427" width="0.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1183.03" y="437.5" ></text>
</g>
<g >
<title>BufferGetPage (4 samples, 0.01%)</title><rect x="18.4" y="747" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="21.45" y="757.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (6 samples, 0.02%)</title><rect x="1269.0" y="651" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1271.98" y="661.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (9 samples, 0.03%)</title><rect x="737.8" y="459" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="740.78" y="469.5" ></text>
</g>
<g >
<title>ExecEndIndexScan (175 samples, 0.59%)</title><rect x="1180.7" y="475" width="8.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1183.68" y="485.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (42 samples, 0.14%)</title><rect x="592.9" y="651" width="1.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="595.87" y="661.5" ></text>
</g>
<g >
<title>[[vdso]] (23 samples, 0.08%)</title><rect x="511.3" y="619" width="1.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="514.29" y="629.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (57 samples, 0.19%)</title><rect x="81.5" y="395" width="2.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="84.50" y="405.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (4 samples, 0.01%)</title><rect x="1219.3" y="571" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1222.28" y="581.5" ></text>
</g>
<g >
<title>LWLockAcquire (104 samples, 0.35%)</title><rect x="69.4" y="235" width="4.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="72.41" y="245.5" ></text>
</g>
<g >
<title>ExecutorRun (11 samples, 0.04%)</title><rect x="1384.8" y="651" width="0.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="1387.77" y="661.5" ></text>
</g>
<g >
<title>deleteObjectsInList (14 samples, 0.05%)</title><rect x="35.5" y="331" width="0.6" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="38.48" y="341.5" ></text>
</g>
<g >
<title>RelationBuildDesc (8 samples, 0.03%)</title><rect x="1279.3" y="635" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1282.30" y="645.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (5 samples, 0.02%)</title><rect x="1291.8" y="139" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="1294.81" y="149.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (4 samples, 0.01%)</title><rect x="586.1" y="603" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="589.05" y="613.5" ></text>
</g>
<g >
<title>newidle_balance (3 samples, 0.01%)</title><rect x="1231.4" y="331" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1234.41" y="341.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (335 samples, 1.13%)</title><rect x="944.2" y="299" width="15.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="947.20" y="309.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (3 samples, 0.01%)</title><rect x="1204.9" y="523" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1207.90" y="533.5" ></text>
</g>
<g >
<title>InputFunctionCall (11 samples, 0.04%)</title><rect x="1326.0" y="715" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1328.97" y="725.5" ></text>
</g>
<g >
<title>_bt_search (6 samples, 0.02%)</title><rect x="1297.5" y="539" width="0.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1300.50" y="549.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (5 samples, 0.02%)</title><rect x="1384.5" y="731" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1387.54" y="741.5" ></text>
</g>
<g >
<title>deleteOneObject (23 samples, 0.08%)</title><rect x="1276.5" y="299" width="1.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1279.54" y="309.5" ></text>
</g>
<g >
<title>PreCommit_Notify (3 samples, 0.01%)</title><rect x="1255.8" y="619" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1258.82" y="629.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (4 samples, 0.01%)</title><rect x="1293.3" y="315" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1296.30" y="325.5" ></text>
</g>
<g >
<title>llist_add_batch (45 samples, 0.15%)</title><rect x="392.9" y="43" width="2.1" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text  x="395.93" y="53.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="775.1" y="571" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="778.12" y="581.5" ></text>
</g>
<g >
<title>ExecReadyExpr (10 samples, 0.03%)</title><rect x="653.7" y="475" width="0.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="656.73" y="485.5" ></text>
</g>
<g >
<title>RelationGetIndexAttOptions (3 samples, 0.01%)</title><rect x="42.5" y="699" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="45.53" y="709.5" ></text>
</g>
<g >
<title>index_getnext_slot (5 samples, 0.02%)</title><rect x="40.8" y="459" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="43.76" y="469.5" ></text>
</g>
<g >
<title>tlist_matches_tupdesc (11 samples, 0.04%)</title><rect x="660.8" y="507" width="0.5" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text  x="663.82" y="517.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (4 samples, 0.01%)</title><rect x="1385.3" y="395" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1388.29" y="405.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (6 samples, 0.02%)</title><rect x="465.1" y="379" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="468.13" y="389.5" ></text>
</g>
<g >
<title>initStringInfo (172 samples, 0.58%)</title><rect x="1118.0" y="555" width="8.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1121.00" y="565.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (24 samples, 0.08%)</title><rect x="1299.0" y="555" width="1.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1301.99" y="565.5" ></text>
</g>
<g >
<title>AtEOXact_Aio (18 samples, 0.06%)</title><rect x="1143.4" y="603" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1146.44" y="613.5" ></text>
</g>
<g >
<title>PortalRun (13 samples, 0.04%)</title><rect x="12.2" y="699" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="15.24" y="709.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (5 samples, 0.02%)</title><rect x="11.9" y="747" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="14.91" y="757.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (11 samples, 0.04%)</title><rect x="1241.8" y="475" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1244.82" y="485.5" ></text>
</g>
<g >
<title>AllocSetDelete (54 samples, 0.18%)</title><rect x="1197.3" y="459" width="2.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1200.34" y="469.5" ></text>
</g>
<g >
<title>printtup_create_DR (3 samples, 0.01%)</title><rect x="1369.5" y="715" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1372.51" y="725.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseAll (6 samples, 0.02%)</title><rect x="1250.3" y="571" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1253.27" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (31 samples, 0.10%)</title><rect x="1169.3" y="459" width="1.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1172.30" y="469.5" ></text>
</g>
<g >
<title>new_list (18 samples, 0.06%)</title><rect x="638.7" y="475" width="0.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="641.70" y="485.5" ></text>
</g>
<g >
<title>_bt_first (11 samples, 0.04%)</title><rect x="1384.8" y="427" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1387.77" y="437.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (3 samples, 0.01%)</title><rect x="1270.1" y="747" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1273.06" y="757.5" ></text>
</g>
<g >
<title>AfterTriggerEndXact (4 samples, 0.01%)</title><rect x="1141.3" y="603" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1144.34" y="613.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (3 samples, 0.01%)</title><rect x="1297.8" y="651" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1300.83" y="661.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (175 samples, 0.59%)</title><rect x="488.7" y="395" width="8.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="491.65" y="405.5" ></text>
</g>
<g >
<title>btgettuple (4 samples, 0.01%)</title><rect x="39.1" y="571" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="42.12" y="581.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (3 samples, 0.01%)</title><rect x="22.6" y="427" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="25.65" y="437.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (9 samples, 0.03%)</title><rect x="772.0" y="619" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="774.99" y="629.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (3 samples, 0.01%)</title><rect x="937.9" y="347" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="940.86" y="357.5" ></text>
</g>
<g >
<title>SearchSysCache1 (25 samples, 0.08%)</title><rect x="1341.4" y="715" width="1.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1344.37" y="725.5" ></text>
</g>
<g >
<title>index_close (14 samples, 0.05%)</title><rect x="1181.0" y="459" width="0.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1184.01" y="469.5" ></text>
</g>
<g >
<title>palloc (166 samples, 0.56%)</title><rect x="1118.2" y="523" width="7.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1121.24" y="533.5" ></text>
</g>
<g >
<title>set_ps_display (9 samples, 0.03%)</title><rect x="806.1" y="651" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="809.11" y="661.5" ></text>
</g>
<g >
<title>performMultipleDeletions (9 samples, 0.03%)</title><rect x="1389.2" y="683" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1392.16" y="693.5" ></text>
</g>
<g >
<title>StartReadBuffer (5 samples, 0.02%)</title><rect x="12.6" y="331" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="15.61" y="341.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (139 samples, 0.47%)</title><rect x="30.0" y="619" width="6.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="32.97" y="629.5" ></text>
</g>
<g >
<title>AllocSetAlloc (20 samples, 0.07%)</title><rect x="1090.1" y="347" width="1.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1093.14" y="357.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (42 samples, 0.14%)</title><rect x="505.1" y="523" width="2.0" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="508.13" y="533.5" ></text>
</g>
<g >
<title>index_getnext_slot (14 samples, 0.05%)</title><rect x="30.3" y="299" width="0.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="33.35" y="309.5" ></text>
</g>
<g >
<title>aa_sk_perm (47 samples, 0.16%)</title><rect x="289.8" y="459" width="2.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="292.79" y="469.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (5 samples, 0.02%)</title><rect x="12.6" y="395" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="15.61" y="405.5" ></text>
</g>
<g >
<title>exprTypmod (18 samples, 0.06%)</title><rect x="720.5" y="491" width="0.9" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="723.51" y="501.5" ></text>
</g>
<g >
<title>hash_initial_lookup (10 samples, 0.03%)</title><rect x="734.7" y="427" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="737.75" y="437.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (7 samples, 0.02%)</title><rect x="38.5" y="475" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="41.52" y="485.5" ></text>
</g>
<g >
<title>hash_bytes (44 samples, 0.15%)</title><rect x="746.6" y="427" width="2.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="749.60" y="437.5" ></text>
</g>
<g >
<title>CreatePortal (463 samples, 1.57%)</title><rect x="519.9" y="651" width="21.6" height="15.0" fill="rgb(219,66,16)" rx="2" ry="2" />
<text  x="522.92" y="661.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (41 samples, 0.14%)</title><rect x="1386.7" y="683" width="1.9" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1389.73" y="693.5" ></text>
</g>
<g >
<title>LWLockAcquire (14 samples, 0.05%)</title><rect x="565.6" y="555" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="568.61" y="565.5" ></text>
</g>
<g >
<title>AttrDefaultFetch (3 samples, 0.01%)</title><rect x="1386.8" y="267" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1389.78" y="277.5" ></text>
</g>
<g >
<title>enlargeStringInfo (5 samples, 0.02%)</title><rect x="307.2" y="619" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="310.15" y="629.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (5 samples, 0.02%)</title><rect x="566.0" y="539" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="569.03" y="549.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (3 samples, 0.01%)</title><rect x="500.1" y="379" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="503.13" y="389.5" ></text>
</g>
<g >
<title>should_output_to_server (3 samples, 0.01%)</title><rect x="1254.0" y="571" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1257.00" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (31 samples, 0.10%)</title><rect x="566.7" y="507" width="1.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="569.73" y="517.5" ></text>
</g>
<g >
<title>stmt_requires_parse_analysis (11 samples, 0.04%)</title><rect x="580.1" y="603" width="0.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="583.13" y="613.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (185 samples, 0.63%)</title><rect x="1287.2" y="683" width="8.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1290.18" y="693.5" ></text>
</g>
<g >
<title>futex_wait_queue (5 samples, 0.02%)</title><rect x="1231.3" y="395" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1234.32" y="405.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (168 samples, 0.57%)</title><rect x="810.5" y="555" width="7.9" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="813.54" y="565.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (12 samples, 0.04%)</title><rect x="1136.2" y="331" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1139.16" y="341.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (36 samples, 0.12%)</title><rect x="566.5" y="539" width="1.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="569.50" y="549.5" ></text>
</g>
<g >
<title>ReadBuffer_common (9 samples, 0.03%)</title><rect x="17.0" y="315" width="0.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="20.05" y="325.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (5 samples, 0.02%)</title><rect x="583.3" y="587" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="586.30" y="597.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (30 samples, 0.10%)</title><rect x="36.5" y="411" width="1.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="39.46" y="421.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (10 samples, 0.03%)</title><rect x="783.5" y="587" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="786.52" y="597.5" ></text>
</g>
<g >
<title>read_tsc (16 samples, 0.05%)</title><rect x="288.5" y="395" width="0.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="291.48" y="405.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (4 samples, 0.01%)</title><rect x="128.8" y="443" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="131.78" y="453.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (64 samples, 0.22%)</title><rect x="812.9" y="539" width="3.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="815.87" y="549.5" ></text>
</g>
<g >
<title>LockAcquireExtended (7 samples, 0.02%)</title><rect x="1299.5" y="411" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1302.51" y="421.5" ></text>
</g>
<g >
<title>calc_bucket (4 samples, 0.01%)</title><rect x="814.4" y="475" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="817.41" y="485.5" ></text>
</g>
<g >
<title>pfree (10 samples, 0.03%)</title><rect x="593.2" y="619" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="596.19" y="629.5" ></text>
</g>
<g >
<title>SIGetDataEntries (59 samples, 0.20%)</title><rect x="559.1" y="539" width="2.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="562.13" y="549.5" ></text>
</g>
<g >
<title>secure_raw_write (4,222 samples, 14.28%)</title><rect x="310.4" y="587" width="197.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="313.37" y="597.5" >secure_raw_write</text>
</g>
<g >
<title>ip_protocol_deliver_rcu (1,582 samples, 5.35%)</title><rect x="353.1" y="219" width="73.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="356.07" y="229.5" >ip_pro..</text>
</g>
<g >
<title>LWLockRelease (25 samples, 0.08%)</title><rect x="1231.6" y="539" width="1.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1234.60" y="549.5" ></text>
</g>
<g >
<title>FileWriteV (5 samples, 0.02%)</title><rect x="1291.8" y="267" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1294.81" y="277.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (16 samples, 0.05%)</title><rect x="69.8" y="187" width="0.8" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="72.83" y="197.5" ></text>
</g>
<g >
<title>_bt_first (3 samples, 0.01%)</title><rect x="41.1" y="427" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="44.08" y="437.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (57 samples, 0.19%)</title><rect x="81.5" y="411" width="2.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="84.50" y="421.5" ></text>
</g>
<g >
<title>hash_bytes (74 samples, 0.25%)</title><rect x="61.6" y="187" width="3.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="64.57" y="197.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (6 samples, 0.02%)</title><rect x="1079.6" y="299" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1082.64" y="309.5" ></text>
</g>
<g >
<title>index_create (84 samples, 0.28%)</title><rect x="31.0" y="363" width="3.9" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="34.00" y="373.5" ></text>
</g>
<g >
<title>simple_heap_delete (3 samples, 0.01%)</title><rect x="82.9" y="171" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="85.95" y="181.5" ></text>
</g>
<g >
<title>ProcessUtility (5 samples, 0.02%)</title><rect x="17.5" y="363" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="20.47" y="373.5" ></text>
</g>
<g >
<title>fmgr_info (15 samples, 0.05%)</title><rect x="1352.8" y="715" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1355.76" y="725.5" ></text>
</g>
<g >
<title>exec_stmts (7 samples, 0.02%)</title><rect x="38.5" y="587" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="41.52" y="597.5" ></text>
</g>
<g >
<title>__check_object_size (110 samples, 0.37%)</title><rect x="280.6" y="395" width="5.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="283.64" y="405.5" ></text>
</g>
<g >
<title>systable_getnext (4 samples, 0.01%)</title><rect x="20.5" y="459" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="23.50" y="469.5" ></text>
</g>
<g >
<title>SetCurrentStatementStartTimestamp (82 samples, 0.28%)</title><rect x="508.8" y="667" width="3.8" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="511.77" y="677.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTuple (4 samples, 0.01%)</title><rect x="1280.1" y="731" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1283.09" y="741.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (3 samples, 0.01%)</title><rect x="738.0" y="443" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="741.01" y="453.5" ></text>
</g>
<g >
<title>string_hash (26 samples, 0.09%)</title><rect x="1206.4" y="555" width="1.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1209.44" y="565.5" ></text>
</g>
<g >
<title>AllocSetAlloc (12 samples, 0.04%)</title><rect x="725.6" y="475" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="728.65" y="485.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (41 samples, 0.14%)</title><rect x="1386.7" y="507" width="1.9" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1389.73" y="517.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (682 samples, 2.31%)</title><rect x="1221.8" y="603" width="31.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1224.75" y="613.5" >R..</text>
</g>
<g >
<title>btbuild (4 samples, 0.01%)</title><rect x="1387.8" y="411" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1390.76" y="421.5" ></text>
</g>
<g >
<title>_bt_compare (3 samples, 0.01%)</title><rect x="1388.1" y="283" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1391.13" y="293.5" ></text>
</g>
<g >
<title>ScanPgRelation (6 samples, 0.02%)</title><rect x="41.2" y="507" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="44.22" y="517.5" ></text>
</g>
<g >
<title>makeParamList (30 samples, 0.10%)</title><rect x="785.6" y="651" width="1.4" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="788.62" y="661.5" ></text>
</g>
<g >
<title>ProcessUtility (185 samples, 0.63%)</title><rect x="1287.2" y="507" width="8.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1290.18" y="517.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (5 samples, 0.02%)</title><rect x="12.6" y="411" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="15.61" y="421.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (76 samples, 0.26%)</title><rect x="650.1" y="443" width="3.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="653.09" y="453.5" ></text>
</g>
<g >
<title>fetch_input_tuple (3 samples, 0.01%)</title><rect x="905.4" y="491" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="908.37" y="501.5" ></text>
</g>
<g >
<title>AddNewAttributeTuples (5 samples, 0.02%)</title><rect x="1293.5" y="411" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1296.49" y="421.5" ></text>
</g>
<g >
<title>update_rq_clock (4 samples, 0.01%)</title><rect x="198.0" y="347" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="200.99" y="357.5" ></text>
</g>
<g >
<title>lock_sock_nested (17 samples, 0.06%)</title><rect x="319.8" y="459" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="322.80" y="469.5" ></text>
</g>
<g >
<title>validate_xmit_skb (41 samples, 0.14%)</title><rect x="452.1" y="347" width="1.9" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="455.11" y="357.5" ></text>
</g>
<g >
<title>CatalogTupleDelete (3 samples, 0.01%)</title><rect x="82.9" y="187" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="85.95" y="197.5" ></text>
</g>
<g >
<title>initStringInfoInternal (25 samples, 0.08%)</title><rect x="304.1" y="619" width="1.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="307.07" y="629.5" ></text>
</g>
<g >
<title>index_getnext_tid (3 samples, 0.01%)</title><rect x="39.8" y="635" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="42.82" y="645.5" ></text>
</g>
<g >
<title>LockBuffer (54 samples, 0.18%)</title><rect x="1087.3" y="331" width="2.6" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1090.34" y="341.5" ></text>
</g>
<g >
<title>AllocSetAlloc (7 samples, 0.02%)</title><rect x="601.0" y="603" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="604.04" y="613.5" ></text>
</g>
<g >
<title>_bt_check_compare (50 samples, 0.17%)</title><rect x="13.0" y="347" width="2.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="15.99" y="357.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (6 samples, 0.02%)</title><rect x="1365.7" y="715" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="1368.73" y="725.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (20 samples, 0.07%)</title><rect x="267.7" y="427" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="270.71" y="437.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (41 samples, 0.14%)</title><rect x="1386.7" y="475" width="1.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1389.73" y="485.5" ></text>
</g>
<g >
<title>ReadBufferExtended (12 samples, 0.04%)</title><rect x="1077.2" y="315" width="0.5" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1080.17" y="325.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (75 samples, 0.25%)</title><rect x="737.6" y="475" width="3.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="740.64" y="485.5" ></text>
</g>
<g >
<title>newNode (84 samples, 0.28%)</title><rect x="759.0" y="539" width="3.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="762.01" y="549.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (12 samples, 0.04%)</title><rect x="1263.9" y="635" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1266.94" y="645.5" ></text>
</g>
<g >
<title>pgss_ExecutorStart (14 samples, 0.05%)</title><rect x="1366.4" y="715" width="0.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1369.43" y="725.5" ></text>
</g>
<g >
<title>exec_describe_portal_message (4 samples, 0.01%)</title><rect x="1350.2" y="715" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1353.19" y="725.5" ></text>
</g>
<g >
<title>AlterSequence (5 samples, 0.02%)</title><rect x="1295.2" y="379" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1298.21" y="389.5" ></text>
</g>
<g >
<title>__strncmp_evex (5 samples, 0.02%)</title><rect x="889.3" y="587" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="892.27" y="597.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (5 samples, 0.02%)</title><rect x="24.2" y="747" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="27.23" y="757.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (3 samples, 0.01%)</title><rect x="12.8" y="363" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="15.85" y="373.5" ></text>
</g>
<g >
<title>DecrTupleDescRefCount (5 samples, 0.02%)</title><rect x="1316.4" y="715" width="0.2" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="1319.35" y="725.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (5 samples, 0.02%)</title><rect x="35.5" y="283" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="38.53" y="293.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (13 samples, 0.04%)</title><rect x="1295.2" y="427" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1298.21" y="437.5" ></text>
</g>
<g >
<title>GetSnapshotData (83 samples, 0.28%)</title><rect x="767.5" y="619" width="3.8" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="770.46" y="629.5" ></text>
</g>
<g >
<title>enable_statement_timeout (4 samples, 0.01%)</title><rect x="878.9" y="635" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="881.91" y="645.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1298.9" y="315" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1301.85" y="325.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (98 samples, 0.33%)</title><rect x="780.7" y="603" width="4.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="783.72" y="613.5" ></text>
</g>
<g >
<title>__strncpy_evex (21 samples, 0.07%)</title><rect x="717.2" y="459" width="1.0" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="720.24" y="469.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (185 samples, 0.63%)</title><rect x="1287.2" y="715" width="8.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1290.18" y="725.5" ></text>
</g>
<g >
<title>SendSharedInvalidMessages (9 samples, 0.03%)</title><rect x="1134.6" y="251" width="0.4" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="1137.62" y="261.5" ></text>
</g>
<g >
<title>_bt_search (5 samples, 0.02%)</title><rect x="40.2" y="571" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="43.20" y="581.5" ></text>
</g>
<g >
<title>ExecProcNode (4,230 samples, 14.31%)</title><rect x="897.5" y="555" width="197.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="900.49" y="565.5" >ExecProcNode</text>
</g>
<g >
<title>PinBufferForBlock (3 samples, 0.01%)</title><rect x="40.3" y="443" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="43.29" y="453.5" ></text>
</g>
<g >
<title>exec_simple_query (54 samples, 0.18%)</title><rect x="1134.2" y="667" width="2.5" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="1137.20" y="677.5" ></text>
</g>
<g >
<title>systable_getnext (7 samples, 0.02%)</title><rect x="20.2" y="555" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="23.17" y="565.5" ></text>
</g>
<g >
<title>ExecDropStmt (39 samples, 0.13%)</title><rect x="1296.0" y="699" width="1.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1299.01" y="709.5" ></text>
</g>
<g >
<title>update_load_avg (3 samples, 0.01%)</title><rect x="206.9" y="379" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="209.95" y="389.5" ></text>
</g>
<g >
<title>BufferGetPage (4 samples, 0.01%)</title><rect x="962.1" y="363" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="965.12" y="373.5" ></text>
</g>
<g >
<title>index_create (8 samples, 0.03%)</title><rect x="1276.1" y="347" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1279.08" y="357.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (3 samples, 0.01%)</title><rect x="22.6" y="411" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="25.65" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (22 samples, 0.07%)</title><rect x="745.4" y="411" width="1.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="748.43" y="421.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (3 samples, 0.01%)</title><rect x="12.8" y="347" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="15.85" y="357.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (93 samples, 0.31%)</title><rect x="774.1" y="651" width="4.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="777.14" y="661.5" ></text>
</g>
<g >
<title>ExecClearTuple (49 samples, 0.17%)</title><rect x="899.4" y="459" width="2.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="902.35" y="469.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (57 samples, 0.19%)</title><rect x="81.5" y="571" width="2.7" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="84.50" y="581.5" ></text>
</g>
<g >
<title>ExecScanExtended (146 samples, 0.49%)</title><rect x="898.3" y="507" width="6.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="901.33" y="517.5" ></text>
</g>
<g >
<title>FreeExprContext (117 samples, 0.40%)</title><rect x="1191.6" y="491" width="5.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1194.56" y="501.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (3 samples, 0.01%)</title><rect x="38.8" y="635" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="41.84" y="645.5" ></text>
</g>
<g >
<title>AllocSetFree (3 samples, 0.01%)</title><rect x="1195.9" y="379" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1198.85" y="389.5" ></text>
</g>
<g >
<title>AtCommit_Notify (3 samples, 0.01%)</title><rect x="1139.2" y="619" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1142.19" y="629.5" ></text>
</g>
<g >
<title>perform_spin_delay (7 samples, 0.02%)</title><rect x="561.2" y="507" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="564.18" y="517.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (4 samples, 0.01%)</title><rect x="1110.3" y="459" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1113.26" y="469.5" ></text>
</g>
<g >
<title>GetDefaultOpClass (5 samples, 0.02%)</title><rect x="1388.7" y="667" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1391.69" y="677.5" ></text>
</g>
<g >
<title>_bt_search_insert (3 samples, 0.01%)</title><rect x="1289.5" y="315" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="1292.47" y="325.5" ></text>
</g>
<g >
<title>index_build (16 samples, 0.05%)</title><rect x="20.9" y="715" width="0.8" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="23.92" y="725.5" ></text>
</g>
<g >
<title>palloc (14 samples, 0.05%)</title><rect x="649.2" y="427" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="652.25" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (3 samples, 0.01%)</title><rect x="1299.6" y="347" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1302.60" y="357.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (19 samples, 0.06%)</title><rect x="870.8" y="571" width="0.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="873.79" y="581.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (4 samples, 0.01%)</title><rect x="1242.7" y="507" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1245.71" y="517.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="1279.5" y="587" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1282.48" y="597.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (32 samples, 0.11%)</title><rect x="691.1" y="443" width="1.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="694.11" y="453.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple_internal (58 samples, 0.20%)</title><rect x="921.1" y="299" width="2.7" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="924.05" y="309.5" ></text>
</g>
<g >
<title>exec_stmts (24 samples, 0.08%)</title><rect x="1299.0" y="651" width="1.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1301.99" y="661.5" ></text>
</g>
<g >
<title>__switch_to (3 samples, 0.01%)</title><rect x="110.8" y="539" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="113.81" y="549.5" ></text>
</g>
<g >
<title>IndexInfoFindDataOffset (7 samples, 0.02%)</title><rect x="1063.8" y="315" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1066.82" y="325.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (9 samples, 0.03%)</title><rect x="901.1" y="379" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="904.13" y="389.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (5 samples, 0.02%)</title><rect x="35.5" y="267" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="38.53" y="277.5" ></text>
</g>
<g >
<title>LWLockAcquire (5 samples, 0.02%)</title><rect x="559.5" y="523" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="562.50" y="533.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (21 samples, 0.07%)</title><rect x="13.0" y="331" width="1.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="15.99" y="341.5" ></text>
</g>
<g >
<title>MemoryContextReset (111 samples, 0.38%)</title><rect x="90.1" y="667" width="5.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="93.13" y="677.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (4 samples, 0.01%)</title><rect x="775.3" y="603" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="778.30" y="613.5" ></text>
</g>
<g >
<title>pfree (11 samples, 0.04%)</title><rect x="1126.6" y="603" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1129.64" y="613.5" ></text>
</g>
<g >
<title>ExecInitExpr (106 samples, 0.36%)</title><rect x="664.8" y="523" width="4.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="667.79" y="533.5" ></text>
</g>
<g >
<title>DropRelationsAllBuffers (6 samples, 0.02%)</title><rect x="1135.0" y="267" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1138.04" y="277.5" ></text>
</g>
<g >
<title>mdunlinkfork (13 samples, 0.04%)</title><rect x="1135.3" y="251" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1138.32" y="261.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (49 samples, 0.17%)</title><rect x="1275.5" y="571" width="2.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1278.52" y="581.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (3 samples, 0.01%)</title><rect x="12.8" y="427" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="15.85" y="437.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (49 samples, 0.17%)</title><rect x="1275.5" y="619" width="2.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1278.52" y="629.5" ></text>
</g>
<g >
<title>performMultipleDeletions (3 samples, 0.01%)</title><rect x="42.9" y="731" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="45.95" y="741.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1,247 samples, 4.22%)</title><rect x="368.6" y="171" width="58.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="371.62" y="181.5" >tcp_r..</text>
</g>
<g >
<title>ReportChangedGUCOptions (15 samples, 0.05%)</title><rect x="508.1" y="667" width="0.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="511.07" y="677.5" ></text>
</g>
<g >
<title>index_getnext_slot (5 samples, 0.02%)</title><rect x="19.8" y="523" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="22.85" y="533.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (14 samples, 0.05%)</title><rect x="676.7" y="459" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="679.69" y="469.5" ></text>
</g>
<g >
<title>_bt_insertonpg (3 samples, 0.01%)</title><rect x="1289.9" y="315" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1292.89" y="325.5" ></text>
</g>
<g >
<title>deregister_seq_scan (5 samples, 0.02%)</title><rect x="1249.5" y="507" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1252.48" y="517.5" ></text>
</g>
<g >
<title>fetch_att (4 samples, 0.01%)</title><rect x="1076.0" y="315" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1078.95" y="325.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (11 samples, 0.04%)</title><rect x="1277.8" y="683" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1280.80" y="693.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (4 samples, 0.01%)</title><rect x="1293.3" y="427" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1296.30" y="437.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (65 samples, 0.22%)</title><rect x="1197.1" y="475" width="3.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1200.06" y="485.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (4 samples, 0.01%)</title><rect x="206.2" y="395" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="209.16" y="405.5" ></text>
</g>
<g >
<title>__sigsetjmp@plt (5 samples, 0.02%)</title><rect x="894.4" y="587" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="897.41" y="597.5" ></text>
</g>
<g >
<title>systable_inplace_update_begin (3 samples, 0.01%)</title><rect x="37.0" y="331" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="40.02" y="341.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (13 samples, 0.04%)</title><rect x="1339.1" y="715" width="0.6" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="1342.13" y="725.5" ></text>
</g>
<g >
<title>AllocSetAlloc (19 samples, 0.06%)</title><rect x="701.4" y="475" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="704.38" y="485.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (3 samples, 0.01%)</title><rect x="12.8" y="587" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="15.85" y="597.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (7 samples, 0.02%)</title><rect x="1181.3" y="427" width="0.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1184.34" y="437.5" ></text>
</g>
<g >
<title>ProcessUtility (49 samples, 0.17%)</title><rect x="1275.5" y="427" width="2.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1278.52" y="437.5" ></text>
</g>
<g >
<title>ReadBuffer (5 samples, 0.02%)</title><rect x="12.6" y="379" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="15.61" y="389.5" ></text>
</g>
<g >
<title>fetch_att (7 samples, 0.02%)</title><rect x="14.9" y="315" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="17.95" y="325.5" ></text>
</g>
<g >
<title>__strlen_evex (4 samples, 0.01%)</title><rect x="805.9" y="619" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="808.92" y="629.5" ></text>
</g>
<g >
<title>__errno_location@plt (8 samples, 0.03%)</title><rect x="105.2" y="571" width="0.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="108.21" y="581.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (16 samples, 0.05%)</title><rect x="40.8" y="571" width="0.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="43.76" y="581.5" ></text>
</g>
<g >
<title>pq_beginmessage_reuse (58 samples, 0.20%)</title><rect x="872.2" y="635" width="2.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="875.24" y="645.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (4 samples, 0.01%)</title><rect x="22.5" y="379" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="25.46" y="389.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (79 samples, 0.27%)</title><rect x="70.6" y="203" width="3.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="73.58" y="213.5" ></text>
</g>
<g >
<title>sock_def_readable (461 samples, 1.56%)</title><rect x="376.5" y="155" width="21.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="379.46" y="165.5" ></text>
</g>
<g >
<title>_bt_doinsert (4 samples, 0.01%)</title><rect x="1287.7" y="315" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1290.74" y="325.5" ></text>
</g>
<g >
<title>GETSTRUCT (3 samples, 0.01%)</title><rect x="622.7" y="507" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="625.69" y="517.5" ></text>
</g>
<g >
<title>ScanPgRelation (5 samples, 0.02%)</title><rect x="1279.7" y="619" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1282.72" y="629.5" ></text>
</g>
<g >
<title>tcp_v4_send_check (6 samples, 0.02%)</title><rect x="465.4" y="395" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="468.41" y="405.5" ></text>
</g>
<g >
<title>AtEOXact_ApplyLauncher (12 samples, 0.04%)</title><rect x="1307.8" y="715" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1310.81" y="725.5" ></text>
</g>
<g >
<title>native_sched_clock (10 samples, 0.03%)</title><rect x="214.0" y="379" width="0.5" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="217.00" y="389.5" ></text>
</g>
<g >
<title>ExecScan (810 samples, 2.74%)</title><rect x="43.7" y="523" width="37.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="46.70" y="533.5" >Ex..</text>
</g>
<g >
<title>TupleDescAttr (3 samples, 0.01%)</title><rect x="655.3" y="475" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="658.31" y="485.5" ></text>
</g>
<g >
<title>do_filp_open (3 samples, 0.01%)</title><rect x="34.3" y="155" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="37.27" y="165.5" ></text>
</g>
<g >
<title>PostgresMain (867 samples, 2.93%)</title><rect x="43.7" y="699" width="40.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="46.70" y="709.5" >Po..</text>
</g>
<g >
<title>GetPrivateRefCountEntry (13 samples, 0.04%)</title><rect x="958.1" y="235" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="961.06" y="245.5" ></text>
</g>
<g >
<title>hash_bytes (19 samples, 0.06%)</title><rect x="889.8" y="603" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="892.83" y="613.5" ></text>
</g>
<g >
<title>ExecInterpExpr (26 samples, 0.09%)</title><rect x="910.6" y="427" width="1.2" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="913.55" y="437.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,412 samples, 4.78%)</title><rect x="154.4" y="475" width="65.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="157.40" y="485.5" >sched..</text>
</g>
<g >
<title>pg_strtoint32_safe (17 samples, 0.06%)</title><rect x="590.1" y="603" width="0.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="593.11" y="613.5" ></text>
</g>
<g >
<title>CheckNNConstraintFetch (3 samples, 0.01%)</title><rect x="1387.4" y="251" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1390.43" y="261.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (22 samples, 0.07%)</title><rect x="798.6" y="587" width="1.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="801.64" y="597.5" ></text>
</g>
<g >
<title>EndCommand (72 samples, 0.24%)</title><rect x="884.4" y="651" width="3.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="887.42" y="661.5" ></text>
</g>
<g >
<title>_bt_checkkeys (50 samples, 0.17%)</title><rect x="13.0" y="363" width="2.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="15.99" y="373.5" ></text>
</g>
<g >
<title>PortalRunMulti (3 samples, 0.01%)</title><rect x="12.8" y="683" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="15.85" y="693.5" ></text>
</g>
<g >
<title>ReadBufferExtended (346 samples, 1.17%)</title><rect x="943.7" y="347" width="16.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="946.74" y="357.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.03%)</title><rect x="669.3" y="475" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="672.31" y="485.5" ></text>
</g>
<g >
<title>__strlen_evex (3 samples, 0.01%)</title><rect x="1304.2" y="715" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1307.22" y="725.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (49 samples, 0.17%)</title><rect x="1275.5" y="395" width="2.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1278.52" y="405.5" ></text>
</g>
<g >
<title>PageGetItem (60 samples, 0.20%)</title><rect x="1056.3" y="331" width="2.8" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1059.31" y="341.5" ></text>
</g>
<g >
<title>exec_rt_fetch (6 samples, 0.02%)</title><rect x="728.6" y="507" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="731.63" y="517.5" ></text>
</g>
<g >
<title>string_compare (4 samples, 0.01%)</title><rect x="865.9" y="603" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="868.94" y="613.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (41 samples, 0.14%)</title><rect x="1386.7" y="491" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1389.73" y="501.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (1,675 samples, 5.66%)</title><rect x="351.7" y="251" width="78.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="354.72" y="261.5" >__netif..</text>
</g>
<g >
<title>__dev_queue_xmit (2,437 samples, 8.24%)</title><rect x="340.4" y="363" width="113.8" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="343.43" y="373.5" >__dev_queue..</text>
</g>
<g >
<title>PageValidateSpecialPointer (6 samples, 0.02%)</title><rect x="1059.7" y="331" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1062.71" y="341.5" ></text>
</g>
<g >
<title>HeapCheckForSerializableConflictOut (3 samples, 0.01%)</title><rect x="962.3" y="363" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="965.31" y="373.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (11 samples, 0.04%)</title><rect x="1384.8" y="635" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1387.77" y="645.5" ></text>
</g>
<g >
<title>index_getnext_tid (3 samples, 0.01%)</title><rect x="41.1" y="459" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="44.08" y="469.5" ></text>
</g>
<g >
<title>DeleteSecurityLabel (4 samples, 0.01%)</title><rect x="82.2" y="219" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="85.15" y="229.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (15 samples, 0.05%)</title><rect x="429.2" y="219" width="0.7" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="432.19" y="229.5" ></text>
</g>
<g >
<title>ReadBuffer (327 samples, 1.11%)</title><rect x="44.6" y="347" width="15.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="47.58" y="357.5" ></text>
</g>
<g >
<title>LockTagHashCode (48 samples, 0.16%)</title><rect x="746.5" y="475" width="2.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="749.46" y="485.5" ></text>
</g>
<g >
<title>CatCacheInvalidate (4 samples, 0.01%)</title><rect x="103.4" y="443" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="106.39" y="453.5" ></text>
</g>
<g >
<title>tcp_ack (468 samples, 1.58%)</title><rect x="398.0" y="155" width="21.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="400.97" y="165.5" ></text>
</g>
<g >
<title>__x64_sys_pwrite64 (5 samples, 0.02%)</title><rect x="1291.8" y="187" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1294.81" y="197.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (8 samples, 0.03%)</title><rect x="644.1" y="443" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="647.07" y="453.5" ></text>
</g>
<g >
<title>list_nth (4 samples, 0.01%)</title><rect x="728.7" y="491" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="731.73" y="501.5" ></text>
</g>
<g >
<title>exec_stmts (3 samples, 0.01%)</title><rect x="12.8" y="491" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="15.85" y="501.5" ></text>
</g>
<g >
<title>GetPortalByName (54 samples, 0.18%)</title><rect x="888.2" y="651" width="2.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="891.20" y="661.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (54 samples, 0.18%)</title><rect x="1134.2" y="491" width="2.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1137.20" y="501.5" ></text>
</g>
<g >
<title>systable_getnext (5 samples, 0.02%)</title><rect x="1388.7" y="651" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1391.69" y="661.5" ></text>
</g>
<g >
<title>pq_writeint16 (14 samples, 0.05%)</title><rect x="876.6" y="635" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="879.58" y="645.5" ></text>
</g>
<g >
<title>hash_initial_lookup (7 samples, 0.02%)</title><rect x="888.9" y="603" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="891.85" y="613.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1231.3" y="459" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1234.32" y="469.5" ></text>
</g>
<g >
<title>BufferGetBlock (3 samples, 0.01%)</title><rect x="1082.2" y="315" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1085.21" y="325.5" ></text>
</g>
<g >
<title>smgrDoPendingDeletes (28 samples, 0.09%)</title><rect x="1134.6" y="299" width="1.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1137.62" y="309.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (14 samples, 0.05%)</title><rect x="1114.9" y="539" width="0.6" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1117.88" y="549.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (3 samples, 0.01%)</title><rect x="214.9" y="427" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="217.93" y="437.5" ></text>
</g>
<g >
<title>PortalRunUtility (57 samples, 0.19%)</title><rect x="81.5" y="635" width="2.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="84.50" y="645.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (11 samples, 0.04%)</title><rect x="1277.8" y="603" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1280.80" y="613.5" ></text>
</g>
<g >
<title>RemoveRelations (29 samples, 0.10%)</title><rect x="40.8" y="715" width="1.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="43.76" y="725.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (9 samples, 0.03%)</title><rect x="1386.8" y="347" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1389.78" y="357.5" ></text>
</g>
<g >
<title>RelationFlushRelation (14 samples, 0.05%)</title><rect x="1294.0" y="267" width="0.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1297.05" y="277.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (11 samples, 0.04%)</title><rect x="1136.2" y="315" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1139.21" y="325.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5 samples, 0.02%)</title><rect x="190.8" y="411" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="193.80" y="421.5" ></text>
</g>
<g >
<title>fmgr_info (14 samples, 0.05%)</title><rect x="670.2" y="507" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="673.15" y="517.5" ></text>
</g>
<g >
<title>ExecInitNode (3 samples, 0.01%)</title><rect x="618.7" y="587" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="621.72" y="597.5" ></text>
</g>
<g >
<title>populate_compact_attribute (12 samples, 0.04%)</title><rect x="718.7" y="475" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="721.69" y="485.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (3 samples, 0.01%)</title><rect x="727.7" y="427" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="730.75" y="437.5" ></text>
</g>
<g >
<title>LockAcquireExtended (81 samples, 0.27%)</title><rect x="551.1" y="587" width="3.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="554.14" y="597.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (5 samples, 0.02%)</title><rect x="911.8" y="459" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="914.77" y="469.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (11 samples, 0.04%)</title><rect x="37.9" y="491" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="40.86" y="501.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4 samples, 0.01%)</title><rect x="20.5" y="491" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="23.50" y="501.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (6 samples, 0.02%)</title><rect x="1355.7" y="715" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1358.74" y="725.5" ></text>
</g>
<g >
<title>do_softirq.part.0 (2,249 samples, 7.61%)</title><rect x="342.7" y="331" width="104.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="345.67" y="341.5" >do_softirq..</text>
</g>
<g >
<title>ProcessUtilitySlow (13 samples, 0.04%)</title><rect x="1295.2" y="395" width="0.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1298.21" y="405.5" ></text>
</g>
<g >
<title>hash_search (5 samples, 0.02%)</title><rect x="558.8" y="507" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="561.80" y="517.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (14 samples, 0.05%)</title><rect x="1294.0" y="331" width="0.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1297.05" y="341.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (4 samples, 0.01%)</title><rect x="1293.3" y="395" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1296.30" y="405.5" ></text>
</g>
<g >
<title>AllocSetFree (8 samples, 0.03%)</title><rect x="1204.5" y="523" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1207.53" y="533.5" ></text>
</g>
<g >
<title>uint32_hash (19 samples, 0.06%)</title><rect x="758.0" y="475" width="0.9" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="760.99" y="485.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (10 samples, 0.03%)</title><rect x="1387.3" y="395" width="0.5" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1390.29" y="405.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (12 samples, 0.04%)</title><rect x="768.3" y="571" width="0.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="771.26" y="581.5" ></text>
</g>
<g >
<title>FreeExecutorState (201 samples, 0.68%)</title><rect x="1191.1" y="507" width="9.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1194.14" y="517.5" ></text>
</g>
<g >
<title>GrantLockLocal (9 samples, 0.03%)</title><rect x="743.6" y="475" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="746.61" y="485.5" ></text>
</g>
<g >
<title>LWLockAcquire (19 samples, 0.06%)</title><rect x="1230.7" y="539" width="0.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1233.71" y="549.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (5 samples, 0.02%)</title><rect x="667.4" y="491" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="670.35" y="501.5" ></text>
</g>
<g >
<title>RelationClose (13 samples, 0.04%)</title><rect x="1181.1" y="443" width="0.6" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="1184.06" y="453.5" ></text>
</g>
<g >
<title>GetCachedPlan (740 samples, 2.50%)</title><rect x="547.4" y="651" width="34.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text  x="550.41" y="661.5" >Ge..</text>
</g>
<g >
<title>LWLockAttemptLock (31 samples, 0.10%)</title><rect x="1085.8" y="299" width="1.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1088.76" y="309.5" ></text>
</g>
<g >
<title>BackendMain (25,369 samples, 85.80%)</title><rect x="84.2" y="699" width="1183.9" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="87.16" y="709.5" >BackendMain</text>
</g>
<g >
<title>CommitTransactionCommand (2,549 samples, 8.62%)</title><rect x="1137.4" y="651" width="118.9" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="1140.37" y="661.5" >CommitTransa..</text>
</g>
<g >
<title>ExecIndexScan (11 samples, 0.04%)</title><rect x="1384.8" y="555" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1387.77" y="565.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (9 samples, 0.03%)</title><rect x="702.5" y="491" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="705.45" y="501.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (3 samples, 0.01%)</title><rect x="38.8" y="651" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="41.84" y="661.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (25 samples, 0.08%)</title><rect x="102.7" y="507" width="1.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="105.69" y="517.5" ></text>
</g>
<g >
<title>RelationInitIndexAccessInfo (4 samples, 0.01%)</title><rect x="22.5" y="299" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="25.46" y="309.5" ></text>
</g>
<g >
<title>exec_stmts (11 samples, 0.04%)</title><rect x="37.9" y="571" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="40.86" y="581.5" ></text>
</g>
<g >
<title>exec_stmts (5 samples, 0.02%)</title><rect x="17.5" y="427" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="20.47" y="437.5" ></text>
</g>
<g >
<title>_bt_search (4 samples, 0.01%)</title><rect x="20.3" y="475" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="23.31" y="485.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (10 samples, 0.03%)</title><rect x="28.2" y="523" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="31.20" y="533.5" ></text>
</g>
<g >
<title>_int_malloc (45 samples, 0.15%)</title><rect x="934.2" y="331" width="2.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="937.17" y="341.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (9 samples, 0.03%)</title><rect x="227.9" y="475" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="230.90" y="485.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (11 samples, 0.04%)</title><rect x="37.9" y="699" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="40.86" y="709.5" ></text>
</g>
<g >
<title>strlcpy (3 samples, 0.01%)</title><rect x="540.1" y="603" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="543.13" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetLock (11 samples, 0.04%)</title><rect x="1240.8" y="539" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1243.79" y="549.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (41 samples, 0.14%)</title><rect x="1386.7" y="715" width="1.9" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1389.73" y="725.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (6 samples, 0.02%)</title><rect x="702.0" y="459" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="704.98" y="469.5" ></text>
</g>
<g >
<title>AllocSetAlloc (15 samples, 0.05%)</title><rect x="765.6" y="539" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="768.60" y="549.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (14 samples, 0.05%)</title><rect x="1279.3" y="683" width="0.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1282.30" y="693.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (3 samples, 0.01%)</title><rect x="1256.3" y="651" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1259.34" y="661.5" ></text>
</g>
<g >
<title>ReadBufferExtended (5 samples, 0.02%)</title><rect x="12.6" y="363" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="15.61" y="373.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (6 samples, 0.02%)</title><rect x="1287.3" y="299" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1290.28" y="309.5" ></text>
</g>
<g >
<title>SIInsertDataEntries (3 samples, 0.01%)</title><rect x="1280.0" y="683" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1282.95" y="693.5" ></text>
</g>
<g >
<title>psi_task_change (23 samples, 0.08%)</title><rect x="196.7" y="331" width="1.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="199.68" y="341.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (4 samples, 0.01%)</title><rect x="623.3" y="459" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="626.25" y="469.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (5 samples, 0.02%)</title><rect x="1345.2" y="715" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1348.20" y="725.5" ></text>
</g>
<g >
<title>GetDefaultOpClass (6 samples, 0.02%)</title><rect x="1287.3" y="395" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1290.28" y="405.5" ></text>
</g>
<g >
<title>palloc (11 samples, 0.04%)</title><rect x="600.9" y="619" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="603.90" y="629.5" ></text>
</g>
<g >
<title>ReadBuffer (9 samples, 0.03%)</title><rect x="17.0" y="347" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="20.05" y="357.5" ></text>
</g>
<g >
<title>hash_search (50 samples, 0.17%)</title><rect x="888.4" y="635" width="2.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="891.39" y="645.5" ></text>
</g>
<g >
<title>btgettuple (13 samples, 0.04%)</title><rect x="12.2" y="459" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="15.24" y="469.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (24 samples, 0.08%)</title><rect x="648.8" y="443" width="1.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="651.78" y="453.5" ></text>
</g>
<g >
<title>_bt_readpage (50 samples, 0.17%)</title><rect x="13.0" y="379" width="2.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="15.99" y="389.5" ></text>
</g>
<g >
<title>ProcessUtility (139 samples, 0.47%)</title><rect x="30.0" y="443" width="6.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="32.97" y="453.5" ></text>
</g>
<g >
<title>_bt_search (3 samples, 0.01%)</title><rect x="39.2" y="539" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="42.17" y="549.5" ></text>
</g>
<g >
<title>update_cfs_group (3 samples, 0.01%)</title><rect x="171.2" y="395" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="174.15" y="405.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (3 samples, 0.01%)</title><rect x="42.5" y="747" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="45.53" y="757.5" ></text>
</g>
<g >
<title>postmaster_child_launch (25,369 samples, 85.80%)</title><rect x="84.2" y="715" width="1183.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="87.16" y="725.5" >postmaster_child_launch</text>
</g>
<g >
<title>do_epoll_wait (2,257 samples, 7.63%)</title><rect x="115.0" y="491" width="105.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="117.96" y="501.5" >do_epoll_w..</text>
</g>
<g >
<title>ExecAssignProjectionInfo (268 samples, 0.91%)</title><rect x="645.2" y="507" width="12.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="648.19" y="517.5" ></text>
</g>
<g >
<title>exec_stmt_fori (3 samples, 0.01%)</title><rect x="12.8" y="475" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="15.85" y="485.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (9 samples, 0.03%)</title><rect x="817.9" y="507" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="820.87" y="517.5" ></text>
</g>
<g >
<title>AllocSetAlloc (15 samples, 0.05%)</title><rect x="883.7" y="603" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="886.67" y="613.5" ></text>
</g>
<g >
<title>tcp_rate_check_app_limited (44 samples, 0.15%)</title><rect x="480.8" y="443" width="2.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="483.77" y="453.5" ></text>
</g>
<g >
<title>exec_stmts (57 samples, 0.19%)</title><rect x="81.5" y="427" width="2.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="84.50" y="437.5" ></text>
</g>
<g >
<title>AtEOXact_Files (16 samples, 0.05%)</title><rect x="1308.8" y="715" width="0.7" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1311.79" y="725.5" ></text>
</g>
<g >
<title>AtStart_Cache (824 samples, 2.79%)</title><rect x="809.8" y="603" width="38.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="812.84" y="613.5" >At..</text>
</g>
<g >
<title>newNode (46 samples, 0.16%)</title><rect x="706.7" y="523" width="2.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="709.74" y="533.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (8 samples, 0.03%)</title><rect x="228.3" y="475" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="231.32" y="485.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (13 samples, 0.04%)</title><rect x="1136.1" y="379" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1139.11" y="389.5" ></text>
</g>
<g >
<title>DefineRelation (5 samples, 0.02%)</title><rect x="21.7" y="747" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="24.67" y="757.5" ></text>
</g>
<g >
<title>RemoveRelations (3 samples, 0.01%)</title><rect x="12.8" y="315" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="15.85" y="325.5" ></text>
</g>
<g >
<title>start_xact_command (1,241 samples, 4.20%)</title><rect x="806.5" y="651" width="57.9" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="809.53" y="661.5" >start..</text>
</g>
<g >
<title>GETSTRUCT (5 samples, 0.02%)</title><rect x="1107.5" y="507" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1110.46" y="517.5" ></text>
</g>
<g >
<title>RelationFlushRelation (3 samples, 0.01%)</title><rect x="21.7" y="635" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="24.71" y="645.5" ></text>
</g>
<g >
<title>__strlen_evex (3 samples, 0.01%)</title><rect x="889.7" y="603" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="892.69" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (3 samples, 0.01%)</title><rect x="1189.9" y="443" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1192.92" y="453.5" ></text>
</g>
<g >
<title>UnpinBuffer (86 samples, 0.29%)</title><rect x="1077.7" y="331" width="4.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1080.73" y="341.5" ></text>
</g>
<g >
<title>ExecInitResultTypeTL (271 samples, 0.92%)</title><rect x="708.9" y="539" width="12.7" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="711.94" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (3 samples, 0.01%)</title><rect x="32.9" y="267" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="35.87" y="277.5" ></text>
</g>
<g >
<title>SearchCatCache1 (47 samples, 0.16%)</title><rect x="678.8" y="491" width="2.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="681.79" y="501.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (10 samples, 0.03%)</title><rect x="28.2" y="715" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="31.20" y="725.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (4 samples, 0.01%)</title><rect x="54.9" y="219" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="57.85" y="229.5" ></text>
</g>
<g >
<title>btgettuple (11 samples, 0.04%)</title><rect x="1297.3" y="571" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1300.27" y="581.5" ></text>
</g>
<g >
<title>heap_create_with_catalog (12 samples, 0.04%)</title><rect x="34.9" y="363" width="0.6" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="37.92" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (8 samples, 0.03%)</title><rect x="1232.4" y="491" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1235.39" y="501.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (9 samples, 0.03%)</title><rect x="1386.8" y="315" width="0.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1389.78" y="325.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="1307.2" y="715" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1310.21" y="725.5" ></text>
</g>
<g >
<title>RelationReloadIndexInfo (5 samples, 0.02%)</title><rect x="1291.2" y="267" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="1294.20" y="277.5" ></text>
</g>
<g >
<title>_bt_first (4 samples, 0.01%)</title><rect x="1296.6" y="507" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1299.57" y="517.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (49 samples, 0.17%)</title><rect x="1275.5" y="587" width="2.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1278.52" y="597.5" ></text>
</g>
<g >
<title>table_beginscan_strat (3 samples, 0.01%)</title><rect x="1387.8" y="347" width="0.1" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text  x="1390.81" y="357.5" ></text>
</g>
<g >
<title>exec_stmts (139 samples, 0.47%)</title><rect x="30.0" y="539" width="6.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="32.97" y="549.5" ></text>
</g>
<g >
<title>tcp_rcv_space_adjust (47 samples, 0.16%)</title><rect x="287.0" y="443" width="2.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="290.04" y="453.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (6 samples, 0.02%)</title><rect x="298.1" y="619" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="301.05" y="629.5" ></text>
</g>
<g >
<title>pfree (11 samples, 0.04%)</title><rect x="1220.5" y="571" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1223.49" y="581.5" ></text>
</g>
<g >
<title>tcp_check_space (57 samples, 0.19%)</title><rect x="466.0" y="411" width="2.7" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="469.02" y="421.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1276.1" y="283" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1279.08" y="293.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (4 samples, 0.01%)</title><rect x="1114.7" y="523" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1117.69" y="533.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (3 samples, 0.01%)</title><rect x="1125.8" y="491" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1128.84" y="501.5" ></text>
</g>
<g >
<title>x64_sys_call (3 samples, 0.01%)</title><rect x="295.8" y="523" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="298.81" y="533.5" ></text>
</g>
<g >
<title>ServerLoop (26,243 samples, 88.75%)</title><rect x="43.7" y="747" width="1224.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="46.70" y="757.5" >ServerLoop</text>
</g>
<g >
<title>__ip_finish_output (14 samples, 0.05%)</title><rect x="333.9" y="379" width="0.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="336.94" y="389.5" ></text>
</g>
<g >
<title>pgss_ExecutorStart (3,546 samples, 11.99%)</title><rect x="601.7" y="619" width="165.5" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="604.74" y="629.5" >pgss_ExecutorStart</text>
</g>
<g >
<title>GetDefaultOpClass (6 samples, 0.02%)</title><rect x="1275.8" y="315" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1278.75" y="325.5" ></text>
</g>
<g >
<title>secure_read (4,210 samples, 14.24%)</title><rect x="100.0" y="603" width="196.5" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="102.98" y="613.5" >secure_read</text>
</g>
<g >
<title>mem_cgroup_uncharge_skmem (17 samples, 0.06%)</title><rect x="260.9" y="427" width="0.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="263.95" y="437.5" ></text>
</g>
<g >
<title>dlist_is_empty (46 samples, 0.16%)</title><rect x="1243.7" y="539" width="2.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1246.69" y="549.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (11 samples, 0.04%)</title><rect x="100.6" y="587" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="103.59" y="597.5" ></text>
</g>
<g >
<title>BufferDescriptorGetContentLock (3 samples, 0.01%)</title><rect x="942.2" y="363" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="945.20" y="373.5" ></text>
</g>
<g >
<title>PageGetItemId (9 samples, 0.03%)</title><rect x="1333.5" y="715" width="0.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1336.53" y="725.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (24 samples, 0.08%)</title><rect x="1299.0" y="571" width="1.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1301.99" y="581.5" ></text>
</g>
<g >
<title>tcp_sendmsg (3,915 samples, 13.24%)</title><rect x="319.2" y="475" width="182.7" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="322.19" y="485.5" >tcp_sendmsg</text>
</g>
<g >
<title>StartReadBuffer (338 samples, 1.14%)</title><rect x="944.1" y="315" width="15.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="947.06" y="325.5" ></text>
</g>
<g >
<title>BufTableHashPartition (4 samples, 0.01%)</title><rect x="61.0" y="219" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="63.96" y="229.5" ></text>
</g>
<g >
<title>__GI___errno_location (4 samples, 0.01%)</title><rect x="310.2" y="571" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="313.18" y="581.5" ></text>
</g>
<g >
<title>ktime_get_with_offset (16 samples, 0.05%)</title><rect x="426.9" y="219" width="0.8" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text  x="429.91" y="229.5" ></text>
</g>
<g >
<title>__schedule (5 samples, 0.02%)</title><rect x="1231.3" y="363" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1234.32" y="373.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (18 samples, 0.06%)</title><rect x="1142.6" y="571" width="0.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1145.60" y="581.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (6 samples, 0.02%)</title><rect x="1287.3" y="331" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1290.28" y="341.5" ></text>
</g>
<g >
<title>DatumGetInt32 (3 samples, 0.01%)</title><rect x="675.5" y="427" width="0.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="678.47" y="437.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (8 samples, 0.03%)</title><rect x="1183.2" y="411" width="0.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1186.25" y="421.5" ></text>
</g>
<g >
<title>btgettuple (6 samples, 0.02%)</title><rect x="39.3" y="491" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="42.31" y="501.5" ></text>
</g>
<g >
<title>PreCommit_Portals (6 samples, 0.02%)</title><rect x="1335.3" y="715" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text  x="1338.30" y="725.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (10 samples, 0.03%)</title><rect x="28.2" y="507" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="31.20" y="517.5" ></text>
</g>
<g >
<title>RangeVarGetRelidExtended (3 samples, 0.01%)</title><rect x="1295.2" y="363" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1298.21" y="373.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (49 samples, 0.17%)</title><rect x="1275.5" y="651" width="2.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1278.52" y="661.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (8 samples, 0.03%)</title><rect x="554.5" y="523" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="557.50" y="533.5" ></text>
</g>
<g >
<title>_raw_write_lock_irq (27 samples, 0.09%)</title><rect x="129.6" y="459" width="1.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="132.57" y="469.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (48 samples, 0.16%)</title><rect x="899.4" y="443" width="2.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="902.40" y="453.5" ></text>
</g>
<g >
<title>IndexTupleHasNulls (10 samples, 0.03%)</title><rect x="1064.1" y="315" width="0.5" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1067.15" y="325.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (4 samples, 0.01%)</title><rect x="1260.3" y="587" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1263.30" y="597.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (7 samples, 0.02%)</title><rect x="626.9" y="459" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="629.94" y="469.5" ></text>
</g>
<g >
<title>ObjectIdGetDatum (30 samples, 0.10%)</title><rect x="1332.0" y="715" width="1.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1334.99" y="725.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (13 samples, 0.04%)</title><rect x="1078.2" y="299" width="0.6" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1081.24" y="309.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (19 samples, 0.06%)</title><rect x="862.8" y="555" width="0.9" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="865.81" y="565.5" ></text>
</g>
<g >
<title>heap_form_tuple (3 samples, 0.01%)</title><rect x="31.1" y="331" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="34.14" y="341.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Database (9 samples, 0.03%)</title><rect x="1310.9" y="715" width="0.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="1313.94" y="725.5" ></text>
</g>
<g >
<title>check_stack_depth (3 samples, 0.01%)</title><rect x="651.6" y="427" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="654.58" y="437.5" ></text>
</g>
<g >
<title>AttrDefaultFetch (3 samples, 0.01%)</title><rect x="1387.3" y="251" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1390.29" y="261.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3 samples, 0.01%)</title><rect x="103.2" y="427" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="106.15" y="437.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (11 samples, 0.04%)</title><rect x="52.8" y="219" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="55.80" y="229.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (22 samples, 0.07%)</title><rect x="1126.1" y="619" width="1.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1129.12" y="629.5" ></text>
</g>
<g >
<title>AllocSetAlloc (51 samples, 0.17%)</title><rect x="803.4" y="603" width="2.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="806.35" y="613.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (4 samples, 0.01%)</title><rect x="173.3" y="363" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="176.30" y="373.5" ></text>
</g>
<g >
<title>SearchSysCache1 (51 samples, 0.17%)</title><rect x="678.6" y="507" width="2.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="681.60" y="517.5" ></text>
</g>
<g >
<title>pick_next_task_idle (14 samples, 0.05%)</title><rect x="208.3" y="427" width="0.7" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="211.35" y="437.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (13 samples, 0.04%)</title><rect x="22.5" y="491" width="0.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="25.46" y="501.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (6 samples, 0.02%)</title><rect x="684.5" y="475" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="687.53" y="485.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (82 samples, 0.28%)</title><rect x="919.9" y="315" width="3.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="922.93" y="325.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="39.8" y="651" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="42.82" y="661.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="683.7" y="491" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="686.69" y="501.5" ></text>
</g>
<g >
<title>InsertPgAttributeTuples (5 samples, 0.02%)</title><rect x="1293.5" y="395" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1296.49" y="405.5" ></text>
</g>
<g >
<title>tcp_ack_update_rtt (30 samples, 0.10%)</title><rect x="417.0" y="139" width="1.4" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="419.97" y="149.5" ></text>
</g>
<g >
<title>ReadBuffer (3 samples, 0.01%)</title><rect x="40.3" y="523" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="43.29" y="533.5" ></text>
</g>
<g >
<title>index_getnext_slot (13 samples, 0.04%)</title><rect x="12.2" y="491" width="0.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="15.24" y="501.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (6 samples, 0.02%)</title><rect x="1077.8" y="315" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1080.77" y="325.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (14 samples, 0.05%)</title><rect x="19.8" y="571" width="0.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="22.85" y="581.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (9 samples, 0.03%)</title><rect x="1129.7" y="619" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1132.72" y="629.5" ></text>
</g>
<g >
<title>UnpinBuffer (25 samples, 0.08%)</title><rect x="900.4" y="411" width="1.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="903.43" y="421.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (6 samples, 0.02%)</title><rect x="869.6" y="571" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="872.58" y="581.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (5 samples, 0.02%)</title><rect x="17.5" y="603" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="20.47" y="613.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (3 samples, 0.01%)</title><rect x="12.8" y="443" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="15.85" y="453.5" ></text>
</g>
<g >
<title>palloc (19 samples, 0.06%)</title><rect x="304.2" y="603" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="307.21" y="613.5" ></text>
</g>
<g >
<title>LWLockRelease (16 samples, 0.05%)</title><rect x="586.0" y="619" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="588.96" y="629.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (8 samples, 0.03%)</title><rect x="941.4" y="331" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="944.36" y="341.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (42 samples, 0.14%)</title><rect x="1108.5" y="475" width="2.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1111.53" y="485.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (13 samples, 0.04%)</title><rect x="30.3" y="267" width="0.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="33.35" y="277.5" ></text>
</g>
<g >
<title>PortalRunUtility (3 samples, 0.01%)</title><rect x="12.8" y="667" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="15.85" y="677.5" ></text>
</g>
<g >
<title>llist_reverse_order (16 samples, 0.05%)</title><rect x="192.6" y="347" width="0.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="195.62" y="357.5" ></text>
</g>
<g >
<title>btgettuple (3 samples, 0.01%)</title><rect x="41.1" y="443" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="44.08" y="453.5" ></text>
</g>
<g >
<title>RelationReloadIndexInfo (3 samples, 0.01%)</title><rect x="1387.6" y="283" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="1390.62" y="293.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (7 samples, 0.02%)</title><rect x="1312.9" y="715" width="0.3" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1315.85" y="725.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3 samples, 0.01%)</title><rect x="1379.3" y="731" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1382.27" y="741.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (9 samples, 0.03%)</title><rect x="558.7" y="539" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="561.71" y="549.5" ></text>
</g>
<g >
<title>index_getnext_slot (71 samples, 0.24%)</title><rect x="901.6" y="459" width="3.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="904.64" y="469.5" ></text>
</g>
<g >
<title>ExecScanFetch (96 samples, 0.32%)</title><rect x="13.0" y="491" width="4.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="15.99" y="501.5" ></text>
</g>
<g >
<title>AllocSetAlloc (22 samples, 0.07%)</title><rect x="931.3" y="363" width="1.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="934.28" y="373.5" ></text>
</g>
<g >
<title>GetNewRelFileNumber (4 samples, 0.01%)</title><rect x="1276.1" y="331" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1279.08" y="341.5" ></text>
</g>
<g >
<title>fetch_att (24 samples, 0.08%)</title><rect x="1065.0" y="315" width="1.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1067.99" y="325.5" ></text>
</g>
<g >
<title>_bt_check_compare (36 samples, 0.12%)</title><rect x="1023.6" y="331" width="1.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1026.64" y="341.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (13 samples, 0.04%)</title><rect x="702.3" y="507" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="705.26" y="517.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (67 samples, 0.23%)</title><rect x="39.0" y="747" width="3.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="41.98" y="757.5" ></text>
</g>
<g >
<title>table_index_fetch_reset (23 samples, 0.08%)</title><rect x="903.9" y="427" width="1.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="906.88" y="437.5" ></text>
</g>
<g >
<title>WaitEventSetWait (2,852 samples, 9.65%)</title><rect x="105.6" y="587" width="133.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="108.58" y="597.5" >WaitEventSetWait</text>
</g>
<g >
<title>superuser_arg (7 samples, 0.02%)</title><rect x="1373.8" y="715" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1376.81" y="725.5" ></text>
</g>
<g >
<title>palloc (18 samples, 0.06%)</title><rect x="765.5" y="555" width="0.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="768.50" y="565.5" ></text>
</g>
<g >
<title>get_attoptions (4 samples, 0.01%)</title><rect x="20.5" y="539" width="0.2" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="23.50" y="549.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (62 samples, 0.21%)</title><rect x="732.3" y="443" width="2.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="735.32" y="453.5" ></text>
</g>
<g >
<title>AtStart_GUC (3 samples, 0.01%)</title><rect x="807.5" y="619" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="810.46" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (6 samples, 0.02%)</title><rect x="1015.0" y="315" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1018.00" y="325.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (11 samples, 0.04%)</title><rect x="768.3" y="555" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="771.30" y="565.5" ></text>
</g>
<g >
<title>AllocSetAlloc (53 samples, 0.18%)</title><rect x="748.8" y="459" width="2.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="751.84" y="469.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (363 samples, 1.23%)</title><rect x="268.8" y="427" width="17.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="271.83" y="437.5" ></text>
</g>
<g >
<title>calc_bucket (5 samples, 0.02%)</title><rect x="752.9" y="427" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="755.90" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (12 samples, 0.04%)</title><rect x="1086.3" y="267" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1089.27" y="277.5" ></text>
</g>
<g >
<title>ResourceOwnerNewParent (3 samples, 0.01%)</title><rect x="1220.4" y="571" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1223.35" y="581.5" ></text>
</g>
<g >
<title>CopySnapshot (9 samples, 0.03%)</title><rect x="773.3" y="603" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="776.34" y="613.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (186 samples, 0.63%)</title><rect x="189.6" y="427" width="8.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="192.59" y="437.5" ></text>
</g>
<g >
<title>PortalReleaseCachedPlan (4 samples, 0.01%)</title><rect x="1205.0" y="571" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1208.04" y="581.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (8 samples, 0.03%)</title><rect x="1093.3" y="411" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1096.27" y="421.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (20 samples, 0.07%)</title><rect x="1299.2" y="491" width="0.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1302.18" y="501.5" ></text>
</g>
<g >
<title>MemoryContextDelete (55 samples, 0.19%)</title><rect x="1192.0" y="475" width="2.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1194.98" y="485.5" ></text>
</g>
<g >
<title>ExecIndexScan (4,043 samples, 13.67%)</title><rect x="905.6" y="523" width="188.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="908.61" y="533.5" >ExecIndexScan</text>
</g>
<g >
<title>ExecPushExprSetupSteps (42 samples, 0.14%)</title><rect x="687.6" y="507" width="2.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="690.61" y="517.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (48 samples, 0.16%)</title><rect x="1197.6" y="443" width="2.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1200.62" y="453.5" ></text>
</g>
<g >
<title>smgr_bulk_flush (12 samples, 0.04%)</title><rect x="1291.5" y="331" width="0.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1294.48" y="341.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (185 samples, 0.63%)</title><rect x="1287.2" y="459" width="8.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1290.18" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (32 samples, 0.11%)</title><rect x="15.4" y="267" width="1.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="18.41" y="277.5" ></text>
</g>
<g >
<title>ReadBuffer_common (6 samples, 0.02%)</title><rect x="1385.0" y="331" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1388.01" y="341.5" ></text>
</g>
<g >
<title>hash_bytes (30 samples, 0.10%)</title><rect x="866.3" y="603" width="1.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="869.26" y="613.5" ></text>
</g>
<g >
<title>_bt_lockbuf (49 samples, 0.17%)</title><rect x="1085.0" y="347" width="2.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1087.96" y="357.5" ></text>
</g>
<g >
<title>enqueue_entity (7 samples, 0.02%)</title><rect x="200.7" y="347" width="0.4" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="203.74" y="357.5" ></text>
</g>
<g >
<title>StartTransactionCommand (1,230 samples, 4.16%)</title><rect x="806.6" y="635" width="57.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="809.57" y="645.5" >Star..</text>
</g>
<g >
<title>sock_put (11 samples, 0.04%)</title><rect x="367.6" y="187" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="370.64" y="197.5" ></text>
</g>
<g >
<title>LWLockAcquire (31 samples, 0.10%)</title><rect x="31.6" y="299" width="1.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="34.56" y="309.5" ></text>
</g>
<g >
<title>smgrdounlinkall (28 samples, 0.09%)</title><rect x="1134.6" y="283" width="1.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1137.62" y="293.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (11 samples, 0.04%)</title><rect x="37.9" y="427" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="40.86" y="437.5" ></text>
</g>
<g >
<title>AutoVacLauncherMain (4 samples, 0.01%)</title><rect x="1268.1" y="683" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1271.14" y="693.5" ></text>
</g>
<g >
<title>AllocSetAlloc (13 samples, 0.04%)</title><rect x="762.3" y="507" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="765.28" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (5 samples, 0.02%)</title><rect x="943.2" y="315" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="946.22" y="325.5" ></text>
</g>
<g >
<title>kfree_skbmem (8 samples, 0.03%)</title><rect x="432.4" y="283" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="435.37" y="293.5" ></text>
</g>
<g >
<title>btendscan (69 samples, 0.23%)</title><rect x="1184.7" y="443" width="3.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1187.70" y="453.5" ></text>
</g>
<g >
<title>_bt_first (4 samples, 0.01%)</title><rect x="20.5" y="395" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="23.50" y="405.5" ></text>
</g>
<g >
<title>deleteOneObject (7 samples, 0.02%)</title><rect x="1389.2" y="651" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1392.16" y="661.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (99 samples, 0.33%)</title><rect x="907.1" y="443" width="4.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="910.15" y="453.5" ></text>
</g>
<g >
<title>AllocSetAlloc (162 samples, 0.55%)</title><rect x="1118.4" y="507" width="7.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1121.42" y="517.5" ></text>
</g>
<g >
<title>exec_stmt_fori (4 samples, 0.01%)</title><rect x="1385.3" y="459" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1388.29" y="469.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (6 samples, 0.02%)</title><rect x="25.6" y="747" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="28.63" y="757.5" ></text>
</g>
<g >
<title>ResourceOwnerSort (3 samples, 0.01%)</title><rect x="1252.7" y="555" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1255.74" y="565.5" ></text>
</g>
<g >
<title>systable_getnext (6 samples, 0.02%)</title><rect x="41.2" y="491" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="44.22" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (30 samples, 0.10%)</title><rect x="566.8" y="491" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="569.78" y="501.5" ></text>
</g>
<g >
<title>SysCacheInvalidate (5 samples, 0.02%)</title><rect x="103.3" y="459" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="106.34" y="469.5" ></text>
</g>
<g >
<title>systable_getnext (6 samples, 0.02%)</title><rect x="1290.7" y="235" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1293.69" y="245.5" ></text>
</g>
<g >
<title>import_single_range (12 samples, 0.04%)</title><rect x="246.3" y="491" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="249.29" y="501.5" ></text>
</g>
<g >
<title>systable_getnext (3 samples, 0.01%)</title><rect x="1279.5" y="603" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1282.48" y="613.5" ></text>
</g>
<g >
<title>_bt_search (8 samples, 0.03%)</title><rect x="1296.9" y="539" width="0.4" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1299.89" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (12 samples, 0.04%)</title><rect x="79.2" y="219" width="0.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="82.21" y="229.5" ></text>
</g>
<g >
<title>systable_getnext (4 samples, 0.01%)</title><rect x="1296.6" y="571" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1299.57" y="581.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3 samples, 0.01%)</title><rect x="311.5" y="555" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="314.54" y="565.5" ></text>
</g>
<g >
<title>PointerGetDatum (6 samples, 0.02%)</title><rect x="589.2" y="603" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="592.23" y="613.5" ></text>
</g>
<g >
<title>choose_custom_plan (28 samples, 0.09%)</title><rect x="580.6" y="635" width="1.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="583.64" y="645.5" ></text>
</g>
<g >
<title>palloc0 (38 samples, 0.13%)</title><rect x="724.4" y="491" width="1.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="727.43" y="501.5" ></text>
</g>
<g >
<title>RelationCreateStorage (5 samples, 0.02%)</title><rect x="34.3" y="331" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="37.27" y="341.5" ></text>
</g>
<g >
<title>ExecScanFetch (11 samples, 0.04%)</title><rect x="1384.8" y="507" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1387.77" y="517.5" ></text>
</g>
<g >
<title>RemoveRelations (25 samples, 0.08%)</title><rect x="1294.0" y="427" width="1.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1297.05" y="437.5" ></text>
</g>
<g >
<title>__GI_bsearch (43 samples, 0.15%)</title><rect x="908.0" y="395" width="2.0" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="910.99" y="405.5" ></text>
</g>
<g >
<title>murmurhash32 (7 samples, 0.02%)</title><rect x="783.7" y="555" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="786.66" y="565.5" ></text>
</g>
<g >
<title>exec_stmt_fori (24 samples, 0.08%)</title><rect x="1299.0" y="667" width="1.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1301.99" y="677.5" ></text>
</g>
<g >
<title>try_charge_memcg (15 samples, 0.05%)</title><rect x="500.3" y="411" width="0.7" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="503.32" y="421.5" ></text>
</g>
<g >
<title>expr_setup_walker (27 samples, 0.09%)</title><rect x="651.7" y="427" width="1.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="654.72" y="437.5" ></text>
</g>
<g >
<title>btinsert (9 samples, 0.03%)</title><rect x="1289.8" y="347" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1292.85" y="357.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (4 samples, 0.01%)</title><rect x="1278.3" y="651" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1281.32" y="661.5" ></text>
</g>
<g >
<title>exec_stmt_fori (30 samples, 0.10%)</title><rect x="36.5" y="539" width="1.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="39.46" y="549.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (54 samples, 0.18%)</title><rect x="1134.2" y="507" width="2.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1137.20" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (6 samples, 0.02%)</title><rect x="1171.0" y="443" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1173.98" y="453.5" ></text>
</g>
<g >
<title>ExecTypeFromTL (264 samples, 0.89%)</title><rect x="709.2" y="523" width="12.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="712.17" y="533.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (9 samples, 0.03%)</title><rect x="1383.0" y="731" width="0.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1386.05" y="741.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="1271.1" y="747" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1274.08" y="757.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (3 samples, 0.01%)</title><rect x="43.1" y="747" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="46.09" y="757.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (11 samples, 0.04%)</title><rect x="450.7" y="267" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="453.66" y="277.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (30 samples, 0.10%)</title><rect x="36.5" y="427" width="1.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="39.46" y="437.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (4 samples, 0.01%)</title><rect x="28.4" y="411" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="31.39" y="421.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3 samples, 0.01%)</title><rect x="1290.3" y="347" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1293.31" y="357.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (3 samples, 0.01%)</title><rect x="767.0" y="539" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="770.00" y="549.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (6 samples, 0.02%)</title><rect x="1090.8" y="331" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1093.80" y="341.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (232 samples, 0.78%)</title><rect x="1287.2" y="747" width="10.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1290.18" y="757.5" ></text>
</g>
<g >
<title>ComputeIndexAttrs (6 samples, 0.02%)</title><rect x="1388.7" y="699" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1391.69" y="709.5" ></text>
</g>
<g >
<title>LWLockAcquire (3 samples, 0.01%)</title><rect x="738.6" y="443" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="741.62" y="453.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (7 samples, 0.02%)</title><rect x="1170.9" y="491" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1173.93" y="501.5" ></text>
</g>
<g >
<title>heap_page_prune_and_freeze (3 samples, 0.01%)</title><rect x="1281.3" y="731" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1284.30" y="741.5" ></text>
</g>
<g >
<title>find_busiest_group (92 samples, 0.31%)</title><rect x="201.7" y="379" width="4.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="204.72" y="389.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (96 samples, 0.32%)</title><rect x="101.1" y="587" width="4.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="104.10" y="597.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (215 samples, 0.73%)</title><rect x="850.6" y="587" width="10.0" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="853.58" y="597.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (10 samples, 0.03%)</title><rect x="951.9" y="219" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="954.86" y="229.5" ></text>
</g>
<g >
<title>PortalRunMulti (4 samples, 0.01%)</title><rect x="1385.3" y="667" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1388.29" y="677.5" ></text>
</g>
<g >
<title>tcp_rate_gen (3 samples, 0.01%)</title><rect x="418.7" y="139" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="421.74" y="149.5" ></text>
</g>
<g >
<title>ExecInitExprRec (52 samples, 0.18%)</title><rect x="695.5" y="491" width="2.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="698.54" y="501.5" ></text>
</g>
<g >
<title>LWLockAcquire (24 samples, 0.08%)</title><rect x="1241.5" y="523" width="1.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1244.49" y="533.5" ></text>
</g>
<g >
<title>initStringInfo (85 samples, 0.29%)</title><rect x="1257.5" y="667" width="3.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1260.46" y="677.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (185 samples, 0.63%)</title><rect x="1287.2" y="539" width="8.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1290.18" y="549.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (3 samples, 0.01%)</title><rect x="773.8" y="603" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="776.76" y="613.5" ></text>
</g>
<g >
<title>btinsert (4 samples, 0.01%)</title><rect x="1293.5" y="331" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1296.53" y="341.5" ></text>
</g>
<g >
<title>ExecOpenScanRelation (170 samples, 0.57%)</title><rect x="728.1" y="539" width="7.9" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="731.07" y="549.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64 (3 samples, 0.01%)</title><rect x="744.8" y="443" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="747.83" y="453.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (16 samples, 0.05%)</title><rect x="112.1" y="539" width="0.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="115.07" y="549.5" ></text>
</g>
<g >
<title>DefineIndex (105 samples, 0.36%)</title><rect x="30.0" y="379" width="4.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="33.02" y="389.5" ></text>
</g>
<g >
<title>PageGetItemId (13 samples, 0.04%)</title><rect x="1059.1" y="331" width="0.6" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1062.11" y="341.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (10 samples, 0.03%)</title><rect x="79.3" y="203" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="82.31" y="213.5" ></text>
</g>
<g >
<title>ShutdownExprContext (3 samples, 0.01%)</title><rect x="914.0" y="491" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="917.01" y="501.5" ></text>
</g>
<g >
<title>ProcessUtility (4 samples, 0.01%)</title><rect x="1278.3" y="699" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1281.32" y="709.5" ></text>
</g>
<g >
<title>systable_getnext (6 samples, 0.02%)</title><rect x="39.3" y="539" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="42.31" y="549.5" ></text>
</g>
<g >
<title>DeleteAttributeTuples (4 samples, 0.01%)</title><rect x="1296.6" y="587" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="1299.57" y="597.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (10 samples, 0.03%)</title><rect x="1127.5" y="587" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1130.53" y="597.5" ></text>
</g>
<g >
<title>ReadBuffer (348 samples, 1.18%)</title><rect x="943.7" y="363" width="16.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="946.69" y="373.5" ></text>
</g>
<g >
<title>FreeQueryDesc (46 samples, 0.16%)</title><rect x="1202.9" y="555" width="2.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1205.90" y="565.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (22 samples, 0.07%)</title><rect x="19.8" y="683" width="1.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="22.85" y="693.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (83 samples, 0.28%)</title><rect x="65.2" y="219" width="3.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="68.16" y="229.5" ></text>
</g>
<g >
<title>CatalogTuplesMultiInsertWithInfo (4 samples, 0.01%)</title><rect x="1388.1" y="395" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1391.13" y="405.5" ></text>
</g>
<g >
<title>eth_type_trans (7 samples, 0.02%)</title><rect x="451.2" y="315" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="454.22" y="325.5" ></text>
</g>
<g >
<title>deleteObjectsInList (24 samples, 0.08%)</title><rect x="40.8" y="683" width="1.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="43.76" y="693.5" ></text>
</g>
<g >
<title>index_getattr (128 samples, 0.43%)</title><rect x="1060.1" y="331" width="6.0" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1063.13" y="341.5" ></text>
</g>
<g >
<title>ChooseIndexName (3 samples, 0.01%)</title><rect x="30.0" y="363" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="33.02" y="373.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (73 samples, 0.25%)</title><rect x="558.5" y="555" width="3.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="561.47" y="565.5" ></text>
</g>
<g >
<title>finish_spin_delay (14 samples, 0.05%)</title><rect x="1014.1" y="315" width="0.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1017.07" y="325.5" ></text>
</g>
<g >
<title>initStringInfoInternal (171 samples, 0.58%)</title><rect x="1118.1" y="539" width="7.9" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1121.05" y="549.5" ></text>
</g>
<g >
<title>index_drop (4 samples, 0.01%)</title><rect x="1296.6" y="603" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1299.57" y="613.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (110 samples, 0.37%)</title><rect x="687.5" y="523" width="5.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="690.52" y="533.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (23 samples, 0.08%)</title><rect x="1018.4" y="331" width="1.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="1021.41" y="341.5" ></text>
</g>
<g >
<title>RelationBuildDesc (4 samples, 0.01%)</title><rect x="35.5" y="171" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="38.53" y="181.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (27 samples, 0.09%)</title><rect x="1379.4" y="731" width="1.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1382.41" y="741.5" ></text>
</g>
<g >
<title>DeleteInheritsTuple (3 samples, 0.01%)</title><rect x="83.5" y="187" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="86.51" y="197.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (4 samples, 0.01%)</title><rect x="1278.3" y="731" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1281.32" y="741.5" ></text>
</g>
<g >
<title>DefineIndex (16 samples, 0.05%)</title><rect x="1299.3" y="459" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1302.27" y="469.5" ></text>
</g>
<g >
<title>index_getattr (3 samples, 0.01%)</title><rect x="21.2" y="395" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="24.25" y="405.5" ></text>
</g>
<g >
<title>PathNameOpenFilePerm (3 samples, 0.01%)</title><rect x="34.3" y="267" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="37.27" y="277.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1291.8" y="203" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1294.81" y="213.5" ></text>
</g>
<g >
<title>hash_seq_term (6 samples, 0.02%)</title><rect x="1249.4" y="523" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1252.43" y="533.5" ></text>
</g>
<g >
<title>RelationFlushRelation (4 samples, 0.01%)</title><rect x="1293.3" y="331" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1296.30" y="341.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (53 samples, 0.18%)</title><rect x="75.5" y="219" width="2.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="78.48" y="229.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1298.9" y="331" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1301.85" y="341.5" ></text>
</g>
<g >
<title>InsertPgAttributeTuples (4 samples, 0.01%)</title><rect x="1287.7" y="395" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1290.74" y="405.5" ></text>
</g>
<g >
<title>_bt_first (5 samples, 0.02%)</title><rect x="39.6" y="475" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="42.59" y="485.5" ></text>
</g>
<g >
<title>tcp_current_mss (66 samples, 0.22%)</title><rect x="483.1" y="427" width="3.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="486.05" y="437.5" ></text>
</g>
<g >
<title>RelationBuildDesc (11 samples, 0.04%)</title><rect x="39.3" y="571" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="42.31" y="581.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (13 samples, 0.04%)</title><rect x="12.2" y="635" width="0.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="15.24" y="645.5" ></text>
</g>
<g >
<title>getTypeOutputInfo (71 samples, 0.24%)</title><rect x="1107.2" y="523" width="3.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1110.22" y="533.5" ></text>
</g>
<g >
<title>fput (15 samples, 0.05%)</title><rect x="135.1" y="459" width="0.7" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="138.12" y="469.5" ></text>
</g>
<g >
<title>DefineIndex (3 samples, 0.01%)</title><rect x="38.5" y="427" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="41.52" y="437.5" ></text>
</g>
<g >
<title>DefineIndex (16 samples, 0.05%)</title><rect x="36.5" y="395" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="39.46" y="405.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe.part.0 (19 samples, 0.06%)</title><rect x="475.1" y="411" width="0.9" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="478.12" y="421.5" ></text>
</g>
<g >
<title>check_stack_depth (3 samples, 0.01%)</title><rect x="652.4" y="395" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="655.37" y="405.5" ></text>
</g>
<g >
<title>ttwu_do_activate (3 samples, 0.01%)</title><rect x="128.8" y="411" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="131.82" y="421.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (623 samples, 2.11%)</title><rect x="939.3" y="411" width="29.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="942.30" y="421.5" >t..</text>
</g>
<g >
<title>RelationFlushRelation (3 samples, 0.01%)</title><rect x="1281.6" y="635" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1284.58" y="645.5" ></text>
</g>
<g >
<title>BackendStartup (26,236 samples, 88.73%)</title><rect x="43.7" y="731" width="1224.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="46.70" y="741.5" >BackendStartup</text>
</g>
<g >
<title>AtEOXact_GUC (3 samples, 0.01%)</title><rect x="1147.4" y="603" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1150.41" y="613.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4 samples, 0.01%)</title><rect x="190.8" y="363" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="193.85" y="373.5" ></text>
</g>
<g >
<title>ScanPgRelation (3 samples, 0.01%)</title><rect x="1387.6" y="267" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1390.62" y="277.5" ></text>
</g>
<g >
<title>__list_add_valid (3 samples, 0.01%)</title><rect x="450.5" y="267" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="453.48" y="277.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (17 samples, 0.06%)</title><rect x="698.1" y="475" width="0.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="701.06" y="485.5" ></text>
</g>
<g >
<title>kmalloc_slab (3 samples, 0.01%)</title><rect x="496.9" y="379" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="499.87" y="389.5" ></text>
</g>
<g >
<title>__wake_up_common (433 samples, 1.46%)</title><rect x="377.2" y="123" width="20.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="380.20" y="133.5" ></text>
</g>
<g >
<title>GetTopTransactionIdIfAny (6 samples, 0.02%)</title><rect x="1323.1" y="715" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1326.07" y="725.5" ></text>
</g>
<g >
<title>__x64_sys_futex (3 samples, 0.01%)</title><rect x="566.0" y="459" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="569.03" y="469.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (8 samples, 0.03%)</title><rect x="128.6" y="475" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="131.59" y="485.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (3 samples, 0.01%)</title><rect x="1090.7" y="315" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1093.66" y="325.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3 samples, 0.01%)</title><rect x="352.9" y="219" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="355.93" y="229.5" ></text>
</g>
<g >
<title>ScanPgRelation (3 samples, 0.01%)</title><rect x="20.7" y="571" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="23.73" y="581.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (6 samples, 0.02%)</title><rect x="795.6" y="619" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="798.60" y="629.5" ></text>
</g>
<g >
<title>ExecTargetListLength (11 samples, 0.04%)</title><rect x="711.0" y="491" width="0.5" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="713.99" y="501.5" ></text>
</g>
<g >
<title>CleanQuerytext (20 samples, 0.07%)</title><rect x="1166.9" y="507" width="0.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1169.87" y="517.5" ></text>
</g>
<g >
<title>DefineIndex (7 samples, 0.02%)</title><rect x="1277.9" y="507" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1280.90" y="517.5" ></text>
</g>
<g >
<title>PinBuffer (56 samples, 0.19%)</title><rect x="956.6" y="251" width="2.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="959.57" y="261.5" ></text>
</g>
<g >
<title>mdcreate (4 samples, 0.01%)</title><rect x="34.3" y="299" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="37.27" y="309.5" ></text>
</g>
<g >
<title>printtup_prepare_info (140 samples, 0.47%)</title><rect x="1105.6" y="539" width="6.6" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text  x="1108.64" y="549.5" ></text>
</g>
<g >
<title>PortalDefineQuery (3 samples, 0.01%)</title><rect x="1334.8" y="715" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="1337.79" y="725.5" ></text>
</g>
<g >
<title>strlen@plt (8 samples, 0.03%)</title><rect x="799.7" y="635" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="802.66" y="645.5" ></text>
</g>
<g >
<title>ttwu_do_activate (75 samples, 0.25%)</title><rect x="194.3" y="347" width="3.5" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="197.26" y="357.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (3 samples, 0.01%)</title><rect x="1160.4" y="539" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1163.43" y="549.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (75 samples, 0.25%)</title><rect x="385.8" y="75" width="3.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="388.79" y="85.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (51 samples, 0.17%)</title><rect x="583.6" y="571" width="2.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="586.58" y="581.5" ></text>
</g>
<g >
<title>ProcessUtility (11 samples, 0.04%)</title><rect x="37.9" y="731" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="40.86" y="741.5" ></text>
</g>
<g >
<title>sk_reset_timer (11 samples, 0.04%)</title><rect x="475.5" y="395" width="0.5" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="478.49" y="405.5" ></text>
</g>
<g >
<title>index_getnext_slot (3,304 samples, 11.17%)</title><rect x="938.0" y="443" width="154.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="941.04" y="453.5" >index_getnext_slot</text>
</g>
<g >
<title>makeParamList (7 samples, 0.02%)</title><rect x="1360.3" y="715" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1363.27" y="725.5" ></text>
</g>
<g >
<title>ExecScanExtended (3 samples, 0.01%)</title><rect x="905.4" y="411" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="908.37" y="421.5" ></text>
</g>
<g >
<title>MemoryContextDelete (66 samples, 0.22%)</title><rect x="1197.0" y="491" width="3.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1200.02" y="501.5" ></text>
</g>
<g >
<title>index_getnext_slot (4 samples, 0.01%)</title><rect x="20.5" y="443" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="23.50" y="453.5" ></text>
</g>
<g >
<title>StartReadBuffer (327 samples, 1.11%)</title><rect x="44.6" y="299" width="15.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="47.58" y="309.5" ></text>
</g>
<g >
<title>initStringInfo (3 samples, 0.01%)</title><rect x="1267.9" y="683" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1270.91" y="693.5" ></text>
</g>
<g >
<title>btint4cmp (8 samples, 0.03%)</title><rect x="1074.4" y="315" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1077.41" y="325.5" ></text>
</g>
<g >
<title>CatalogOpenIndexes (3 samples, 0.01%)</title><rect x="1289.7" y="379" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1292.66" y="389.5" ></text>
</g>
<g >
<title>secure_raw_read (1,238 samples, 4.19%)</title><rect x="238.7" y="587" width="57.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="241.69" y="597.5" >secu..</text>
</g>
<g >
<title>__rcu_read_unlock (5 samples, 0.02%)</title><rect x="389.6" y="59" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="392.57" y="69.5" ></text>
</g>
<g >
<title>RelationBuildDesc (4 samples, 0.01%)</title><rect x="1293.3" y="299" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1296.30" y="309.5" ></text>
</g>
<g >
<title>get_hash_entry (14 samples, 0.05%)</title><rect x="752.0" y="443" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="755.01" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (37 samples, 0.13%)</title><rect x="954.2" y="203" width="1.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="957.24" y="213.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (3 samples, 0.01%)</title><rect x="671.4" y="459" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="674.41" y="469.5" ></text>
</g>
<g >
<title>ExecInitScanTupleSlot (139 samples, 0.47%)</title><rect x="721.6" y="539" width="6.5" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="724.59" y="549.5" ></text>
</g>
<g >
<title>pgstat_report_activity (41 samples, 0.14%)</title><rect x="1128.9" y="651" width="1.9" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1131.93" y="661.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (7 samples, 0.02%)</title><rect x="12.2" y="427" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="15.24" y="437.5" ></text>
</g>
<g >
<title>LockBuffer (6 samples, 0.02%)</title><rect x="30.5" y="235" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="33.54" y="245.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (3,876 samples, 13.11%)</title><rect x="321.0" y="459" width="180.9" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="324.01" y="469.5" >tcp_sendmsg_locked</text>
</g>
<g >
<title>RelationCacheInvalidateEntry (5 samples, 0.02%)</title><rect x="558.8" y="523" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="561.80" y="533.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (3 samples, 0.01%)</title><rect x="206.8" y="363" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="209.81" y="373.5" ></text>
</g>
<g >
<title>superuser_arg (4 samples, 0.01%)</title><rect x="699.3" y="443" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="702.28" y="453.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="1288.3" y="235" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1291.30" y="245.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (820 samples, 2.77%)</title><rect x="810.0" y="571" width="38.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="813.03" y="581.5" >Re..</text>
</g>
<g >
<title>__fget_light (6 samples, 0.02%)</title><rect x="502.3" y="475" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="505.28" y="485.5" ></text>
</g>
<g >
<title>resetStringInfo (3 samples, 0.01%)</title><rect x="1102.9" y="523" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1105.88" y="533.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (10 samples, 0.03%)</title><rect x="586.2" y="603" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="589.24" y="613.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (15 samples, 0.05%)</title><rect x="20.9" y="587" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="23.92" y="597.5" ></text>
</g>
<g >
<title>ExecClearTuple (18 samples, 0.06%)</title><rect x="1190.1" y="475" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1193.06" y="485.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (7 samples, 0.02%)</title><rect x="1215.5" y="603" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1218.55" y="613.5" ></text>
</g>
<g >
<title>__strlen_evex (10 samples, 0.03%)</title><rect x="796.5" y="635" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="799.49" y="645.5" ></text>
</g>
<g >
<title>btgettuple (5 samples, 0.02%)</title><rect x="40.8" y="427" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="43.76" y="437.5" ></text>
</g>
<g >
<title>exec_toplevel_block (24 samples, 0.08%)</title><rect x="1299.0" y="715" width="1.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1301.99" y="725.5" ></text>
</g>
<g >
<title>_bt_getbuf (37 samples, 0.13%)</title><rect x="15.3" y="363" width="1.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="18.32" y="373.5" ></text>
</g>
<g >
<title>ExecProcNode (810 samples, 2.74%)</title><rect x="43.7" y="571" width="37.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="46.70" y="581.5" >Ex..</text>
</g>
<g >
<title>CommandEndInvalidationMessages (16 samples, 0.05%)</title><rect x="40.8" y="619" width="0.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="43.76" y="629.5" ></text>
</g>
<g >
<title>index_constraint_create (3 samples, 0.01%)</title><rect x="1278.4" y="539" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1281.36" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (13 samples, 0.04%)</title><rect x="1086.2" y="283" width="0.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1089.22" y="293.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (13 samples, 0.04%)</title><rect x="1184.0" y="427" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1187.04" y="437.5" ></text>
</g>
<g >
<title>index_getnext_slot (4 samples, 0.01%)</title><rect x="1296.6" y="555" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1299.57" y="565.5" ></text>
</g>
<g >
<title>DeleteComments (4 samples, 0.01%)</title><rect x="81.9" y="219" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="84.87" y="229.5" ></text>
</g>
<g >
<title>ResolveOpClass (6 samples, 0.02%)</title><rect x="1275.8" y="331" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1278.75" y="341.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (56 samples, 0.19%)</title><rect x="289.5" y="475" width="2.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="292.51" y="485.5" ></text>
</g>
<g >
<title>pfree (32 samples, 0.11%)</title><rect x="1114.0" y="555" width="1.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1117.04" y="565.5" ></text>
</g>
<g >
<title>MemoryContextDelete (49 samples, 0.17%)</title><rect x="1158.4" y="571" width="2.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1161.42" y="581.5" ></text>
</g>
<g >
<title>hash_seq_init (8 samples, 0.03%)</title><rect x="1355.3" y="715" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1358.28" y="725.5" ></text>
</g>
<g >
<title>_bt_search (3 samples, 0.01%)</title><rect x="42.5" y="523" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="45.53" y="533.5" ></text>
</g>
<g >
<title>VirtualXactLockTableCleanup (51 samples, 0.17%)</title><rect x="1241.3" y="539" width="2.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1244.31" y="549.5" ></text>
</g>
<g >
<title>LockRelationOid (456 samples, 1.54%)</title><rect x="558.3" y="587" width="21.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="561.29" y="597.5" ></text>
</g>
<g >
<title>get_leftop (3 samples, 0.01%)</title><rect x="670.9" y="523" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="673.90" y="533.5" ></text>
</g>
<g >
<title>btgettuple (6 samples, 0.02%)</title><rect x="41.2" y="443" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="44.22" y="453.5" ></text>
</g>
<g >
<title>ktime_get (6 samples, 0.02%)</title><rect x="465.7" y="411" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="468.74" y="421.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (3 samples, 0.01%)</title><rect x="1113.7" y="523" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1116.71" y="533.5" ></text>
</g>
<g >
<title>LockRelationOid (3 samples, 0.01%)</title><rect x="1329.5" y="715" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1332.47" y="725.5" ></text>
</g>
<g >
<title>AddRelationNotNullConstraints (3 samples, 0.01%)</title><rect x="1293.2" y="427" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1296.16" y="437.5" ></text>
</g>
<g >
<title>_bt_first (3 samples, 0.01%)</title><rect x="1279.5" y="539" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1282.48" y="549.5" ></text>
</g>
<g >
<title>pq_getmsgstring (89 samples, 0.30%)</title><rect x="795.9" y="651" width="4.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text  x="798.88" y="661.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (8 samples, 0.03%)</title><rect x="958.8" y="235" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="961.76" y="245.5" ></text>
</g>
<g >
<title>BufferAlloc (240 samples, 0.81%)</title><rect x="46.4" y="251" width="11.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="49.45" y="261.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (9 samples, 0.03%)</title><rect x="1386.8" y="379" width="0.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1389.78" y="389.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (3 samples, 0.01%)</title><rect x="12.8" y="635" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="15.85" y="645.5" ></text>
</g>
<g >
<title>tcp_rate_skb_sent (8 samples, 0.03%)</title><rect x="464.3" y="395" width="0.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="467.29" y="405.5" ></text>
</g>
<g >
<title>_bt_compare (673 samples, 2.28%)</title><rect x="975.3" y="363" width="31.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="978.29" y="373.5" >_..</text>
</g>
<g >
<title>getTypeInputInfo (134 samples, 0.45%)</title><rect x="779.3" y="651" width="6.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="782.27" y="661.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (8 samples, 0.03%)</title><rect x="1064.6" y="315" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1067.61" y="325.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (11 samples, 0.04%)</title><rect x="1184.1" y="411" width="0.5" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1187.14" y="421.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="1376.6" y="715" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1379.61" y="725.5" ></text>
</g>
<g >
<title>murmurhash32 (8 samples, 0.03%)</title><rect x="871.3" y="539" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="874.30" y="549.5" ></text>
</g>
<g >
<title>AllocSetAlloc (11 samples, 0.04%)</title><rect x="706.2" y="475" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="709.18" y="485.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (30 samples, 0.10%)</title><rect x="956.7" y="235" width="1.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="959.66" y="245.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (13 samples, 0.04%)</title><rect x="12.2" y="651" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="15.24" y="661.5" ></text>
</g>
<g >
<title>ProcessUtility (30 samples, 0.10%)</title><rect x="36.5" y="459" width="1.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="39.46" y="469.5" ></text>
</g>
<g >
<title>StartTransaction (4 samples, 0.01%)</title><rect x="1135.9" y="331" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1138.93" y="341.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3 samples, 0.01%)</title><rect x="692.4" y="411" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="695.42" y="421.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (16 samples, 0.05%)</title><rect x="33.4" y="283" width="0.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="36.38" y="293.5" ></text>
</g>
<g >
<title>PointerGetDatum (3 samples, 0.01%)</title><rect x="1375.3" y="715" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1378.25" y="725.5" ></text>
</g>
<g >
<title>TransactionBlockStatusCode (5 samples, 0.02%)</title><rect x="512.6" y="667" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="515.64" y="677.5" ></text>
</g>
<g >
<title>ResolveOpClass (6 samples, 0.02%)</title><rect x="1287.3" y="411" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1290.28" y="421.5" ></text>
</g>
<g >
<title>heap_multi_insert (18 samples, 0.06%)</title><rect x="1280.5" y="747" width="0.8" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1283.46" y="757.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3 samples, 0.01%)</title><rect x="42.5" y="635" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="45.53" y="645.5" ></text>
</g>
<g >
<title>shdepDropDependency (4 samples, 0.01%)</title><rect x="82.3" y="203" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="85.34" y="213.5" ></text>
</g>
<g >
<title>InvalidateCatalogSnapshot (3 samples, 0.01%)</title><rect x="1327.3" y="715" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1330.32" y="725.5" ></text>
</g>
<g >
<title>LWLockRelease (13 samples, 0.04%)</title><rect x="956.0" y="251" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="958.96" y="261.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (3 samples, 0.01%)</title><rect x="565.8" y="523" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="568.80" y="533.5" ></text>
</g>
<g >
<title>string_hash (26 samples, 0.09%)</title><rect x="889.5" y="619" width="1.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="892.51" y="629.5" ></text>
</g>
<g >
<title>resetStringInfo (8 samples, 0.03%)</title><rect x="1261.0" y="635" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1264.00" y="645.5" ></text>
</g>
<g >
<title>_bt_check_unique (3 samples, 0.01%)</title><rect x="1388.1" y="315" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1391.13" y="325.5" ></text>
</g>
<g >
<title>all (29,569 samples, 100%)</title><rect x="10.0" y="763" width="1380.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="13.00" y="773.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (11 samples, 0.04%)</title><rect x="20.9" y="555" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="23.92" y="565.5" ></text>
</g>
<g >
<title>expr_setup_walker (51 samples, 0.17%)</title><rect x="690.2" y="475" width="2.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="693.22" y="485.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,119 samples, 3.78%)</title><rect x="243.7" y="555" width="52.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="246.73" y="565.5" >entr..</text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (9 samples, 0.03%)</title><rect x="52.9" y="171" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="55.89" y="181.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (2,902 samples, 9.81%)</title><rect x="330.3" y="411" width="135.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="333.25" y="421.5" >__tcp_transmit..</text>
</g>
<g >
<title>index_getnext_tid (11 samples, 0.04%)</title><rect x="1296.8" y="587" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1299.75" y="597.5" ></text>
</g>
<g >
<title>SearchSysCache1 (49 samples, 0.17%)</title><rect x="1108.3" y="507" width="2.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1111.25" y="517.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (6 samples, 0.02%)</title><rect x="39.3" y="555" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="42.31" y="565.5" ></text>
</g>
<g >
<title>charhashfast (8 samples, 0.03%)</title><rect x="675.8" y="443" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="678.85" y="453.5" ></text>
</g>
<g >
<title>ReleaseSysCache (12 samples, 0.04%)</title><rect x="1107.7" y="507" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1110.69" y="517.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberSnapshot (3 samples, 0.01%)</title><rect x="767.0" y="555" width="0.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="770.00" y="565.5" ></text>
</g>
<g >
<title>calc_bucket (5 samples, 0.02%)</title><rect x="1235.5" y="475" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1238.47" y="485.5" ></text>
</g>
<g >
<title>palloc0 (55 samples, 0.19%)</title><rect x="699.7" y="491" width="2.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="702.70" y="501.5" ></text>
</g>
<g >
<title>pq_sendint32 (12 samples, 0.04%)</title><rect x="1104.9" y="523" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1107.89" y="533.5" ></text>
</g>
<g >
<title>__tcp_select_window (3 samples, 0.01%)</title><rect x="462.5" y="395" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="465.47" y="405.5" ></text>
</g>
<g >
<title>palloc0 (97 samples, 0.33%)</title><rect x="639.9" y="475" width="4.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="642.91" y="485.5" ></text>
</g>
<g >
<title>do_futex (3 samples, 0.01%)</title><rect x="566.0" y="443" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="569.03" y="453.5" ></text>
</g>
<g >
<title>RelationBuildDesc (15 samples, 0.05%)</title><rect x="1290.5" y="267" width="0.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1293.50" y="277.5" ></text>
</g>
<g >
<title>PageGetItem (197 samples, 0.67%)</title><rect x="994.3" y="347" width="9.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="997.33" y="357.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (4 samples, 0.01%)</title><rect x="1293.3" y="379" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1296.30" y="389.5" ></text>
</g>
<g >
<title>stmt_requires_parse_analysis (4 samples, 0.01%)</title><rect x="812.1" y="507" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="815.13" y="517.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4 samples, 0.01%)</title><rect x="1287.6" y="363" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1290.56" y="373.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (5 samples, 0.02%)</title><rect x="783.3" y="587" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="786.28" y="597.5" ></text>
</g>
<g >
<title>SearchPathMatchesCurrentEnvironment (4 samples, 0.01%)</title><rect x="1341.2" y="715" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1344.18" y="725.5" ></text>
</g>
<g >
<title>its_return_thunk (3 samples, 0.01%)</title><rect x="289.3" y="491" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="292.32" y="501.5" ></text>
</g>
<g >
<title>__fget_light (55 samples, 0.19%)</title><rect x="292.3" y="475" width="2.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="295.26" y="485.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (3 samples, 0.01%)</title><rect x="1268.1" y="587" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1271.14" y="597.5" ></text>
</g>
<g >
<title>spin_delay (5 samples, 0.02%)</title><rect x="740.6" y="411" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="743.63" y="421.5" ></text>
</g>
<g >
<title>ProcessUtility (4 samples, 0.01%)</title><rect x="1385.3" y="635" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1388.29" y="645.5" ></text>
</g>
<g >
<title>SIInsertDataEntries (9 samples, 0.03%)</title><rect x="1134.6" y="235" width="0.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1137.62" y="245.5" ></text>
</g>
<g >
<title>exec_stmt_fori (139 samples, 0.47%)</title><rect x="30.0" y="523" width="6.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="32.97" y="533.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTupleCommon (3 samples, 0.01%)</title><rect x="37.0" y="283" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="40.02" y="293.5" ></text>
</g>
<g >
<title>IncrBufferRefCount (21 samples, 0.07%)</title><rect x="940.7" y="347" width="1.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="943.75" y="357.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (24 samples, 0.08%)</title><rect x="1299.0" y="603" width="1.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1301.99" y="613.5" ></text>
</g>
<g >
<title>ExecIndexScan (13 samples, 0.04%)</title><rect x="12.2" y="571" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="15.24" y="581.5" ></text>
</g>
<g >
<title>PostgresMain (16 samples, 0.05%)</title><rect x="12.2" y="731" width="0.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="15.24" y="741.5" ></text>
</g>
<g >
<title>exec_rt_fetch (5 samples, 0.02%)</title><rect x="736.1" y="539" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="739.05" y="549.5" ></text>
</g>
<g >
<title>AllocSetFree (31 samples, 0.10%)</title><rect x="1239.1" y="507" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1242.11" y="517.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (102 samples, 0.34%)</title><rect x="947.8" y="235" width="4.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="950.80" y="245.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (37 samples, 0.13%)</title><rect x="505.2" y="507" width="1.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="508.17" y="517.5" ></text>
</g>
<g >
<title>DefineIndex (4 samples, 0.01%)</title><rect x="1269.0" y="603" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1271.98" y="613.5" ></text>
</g>
<g >
<title>exec_stmts (7 samples, 0.02%)</title><rect x="38.5" y="555" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="41.52" y="565.5" ></text>
</g>
<g >
<title>index_getnext_slot (11 samples, 0.04%)</title><rect x="1296.8" y="603" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1299.75" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (7 samples, 0.02%)</title><rect x="586.4" y="555" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="589.38" y="565.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (5 samples, 0.02%)</title><rect x="397.7" y="123" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="400.74" y="133.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (4,960 samples, 16.77%)</title><rect x="894.6" y="587" width="231.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="897.64" y="597.5" >standard_ExecutorRun</text>
</g>
<g >
<title>appendBinaryStringInfoNT (12 samples, 0.04%)</title><rect x="1104.1" y="523" width="0.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="1107.10" y="533.5" ></text>
</g>
<g >
<title>enqueue_task_fair (51 samples, 0.17%)</title><rect x="194.3" y="331" width="2.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="197.30" y="341.5" ></text>
</g>
<g >
<title>__update_idle_core (12 samples, 0.04%)</title><rect x="208.4" y="411" width="0.6" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="211.40" y="421.5" ></text>
</g>
<g >
<title>is_vmalloc_addr (3 samples, 0.01%)</title><rect x="327.4" y="427" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="330.41" y="437.5" ></text>
</g>
<g >
<title>SearchSysCache2 (3 samples, 0.01%)</title><rect x="22.5" y="251" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="25.46" y="261.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (3 samples, 0.01%)</title><rect x="766.2" y="523" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="769.16" y="533.5" ></text>
</g>
<g >
<title>index_getnext_tid (3 samples, 0.01%)</title><rect x="1389.0" y="603" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1392.02" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (3 samples, 0.01%)</title><rect x="57.5" y="235" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="60.51" y="245.5" ></text>
</g>
<g >
<title>_raw_write_lock_irq (29 samples, 0.10%)</title><rect x="126.7" y="475" width="1.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="129.68" y="485.5" ></text>
</g>
<g >
<title>RemoveRelations (3 samples, 0.01%)</title><rect x="17.5" y="283" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="20.47" y="293.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (4 samples, 0.01%)</title><rect x="1278.3" y="683" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1281.32" y="693.5" ></text>
</g>
<g >
<title>DefineRelation (3 samples, 0.01%)</title><rect x="22.9" y="475" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="25.88" y="485.5" ></text>
</g>
<g >
<title>BufTableLookup (86 samples, 0.29%)</title><rect x="65.0" y="235" width="4.0" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="68.02" y="245.5" ></text>
</g>
<g >
<title>exec_stmt_block (4 samples, 0.01%)</title><rect x="1385.3" y="491" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1388.29" y="501.5" ></text>
</g>
<g >
<title>pfree (9 samples, 0.03%)</title><rect x="1363.4" y="715" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1366.40" y="725.5" ></text>
</g>
<g >
<title>index_build (43 samples, 0.15%)</title><rect x="1290.5" y="411" width="2.0" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="1293.50" y="421.5" ></text>
</g>
<g >
<title>PortalRunMulti (54 samples, 0.18%)</title><rect x="1134.2" y="635" width="2.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1137.20" y="645.5" ></text>
</g>
<g >
<title>ResolveOpClass (18 samples, 0.06%)</title><rect x="30.2" y="347" width="0.8" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="33.16" y="357.5" ></text>
</g>
<g >
<title>__libc_pwrite64 (5 samples, 0.02%)</title><rect x="1291.8" y="235" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1294.81" y="245.5" ></text>
</g>
<g >
<title>ExecAgg (5 samples, 0.02%)</title><rect x="905.4" y="523" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="908.37" y="533.5" ></text>
</g>
<g >
<title>AllocSetAlloc (18 samples, 0.06%)</title><rect x="683.0" y="507" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="686.04" y="517.5" ></text>
</g>
<g >
<title>PostgresMain (101 samples, 0.34%)</title><rect x="13.0" y="699" width="4.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="15.99" y="709.5" ></text>
</g>
<g >
<title>AtEOXact_Enum (3 samples, 0.01%)</title><rect x="1308.7" y="715" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1311.65" y="725.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (16 samples, 0.05%)</title><rect x="552.2" y="555" width="0.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="555.22" y="565.5" ></text>
</g>
<g >
<title>memset_erms (7 samples, 0.02%)</title><rect x="497.4" y="395" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="500.43" y="405.5" ></text>
</g>
<g >
<title>__rcu_read_lock (81 samples, 0.27%)</title><rect x="334.6" y="379" width="3.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="337.59" y="389.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (11 samples, 0.04%)</title><rect x="579.6" y="603" width="0.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="582.61" y="613.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (139 samples, 0.47%)</title><rect x="30.0" y="603" width="6.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="32.97" y="613.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (4 samples, 0.01%)</title><rect x="295.6" y="507" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="298.62" y="517.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (4 samples, 0.01%)</title><rect x="1221.9" y="587" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1224.89" y="597.5" ></text>
</g>
<g >
<title>AllocSetAlloc (7 samples, 0.02%)</title><rect x="618.3" y="539" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="621.35" y="549.5" ></text>
</g>
<g >
<title>ExecutePlan (4,637 samples, 15.68%)</title><rect x="895.9" y="571" width="216.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="898.85" y="581.5" >ExecutePlan</text>
</g>
<g >
<title>RemoveRelations (3 samples, 0.01%)</title><rect x="42.9" y="747" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="45.95" y="757.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (8 samples, 0.03%)</title><rect x="74.5" y="203" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="77.45" y="213.5" ></text>
</g>
<g >
<title>_bt_first (8 samples, 0.03%)</title><rect x="40.1" y="587" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="43.06" y="597.5" ></text>
</g>
<g >
<title>sk_filter_trim_cap (19 samples, 0.06%)</title><rect x="366.7" y="187" width="0.9" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="369.75" y="197.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (22 samples, 0.07%)</title><rect x="1350.6" y="715" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1353.61" y="725.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (93 samples, 0.31%)</title><rect x="774.1" y="635" width="4.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="777.14" y="645.5" ></text>
</g>
<g >
<title>RelationBuildDesc (7 samples, 0.02%)</title><rect x="1387.3" y="283" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1390.29" y="293.5" ></text>
</g>
<g >
<title>ktime_get (22 samples, 0.07%)</title><rect x="288.2" y="411" width="1.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="291.20" y="421.5" ></text>
</g>
<g >
<title>process_backlog (1,696 samples, 5.74%)</title><rect x="351.4" y="267" width="79.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="354.44" y="277.5" >process..</text>
</g>
<g >
<title>CatalogCacheComputeHashValue (23 samples, 0.08%)</title><rect x="675.6" y="459" width="1.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="678.61" y="469.5" ></text>
</g>
<g >
<title>__ip_local_out (138 samples, 0.47%)</title><rect x="454.5" y="363" width="6.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="457.54" y="373.5" ></text>
</g>
<g >
<title>object_aclmask_ext (3 samples, 0.01%)</title><rect x="699.5" y="475" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="702.46" y="485.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (4 samples, 0.01%)</title><rect x="1385.3" y="603" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1388.29" y="613.5" ></text>
</g>
<g >
<title>AttrDefaultFetch (3 samples, 0.01%)</title><rect x="20.9" y="539" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="23.92" y="549.5" ></text>
</g>
<g >
<title>__update_load_avg_se (5 samples, 0.02%)</title><rect x="189.3" y="395" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="192.26" y="405.5" ></text>
</g>
<g >
<title>refill_stock (5 samples, 0.02%)</title><rect x="261.7" y="427" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="264.74" y="437.5" ></text>
</g>
<g >
<title>deleteOneObject (14 samples, 0.05%)</title><rect x="35.5" y="315" width="0.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="38.48" y="325.5" ></text>
</g>
<g >
<title>PageGetItem (6 samples, 0.02%)</title><rect x="1022.6" y="347" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1025.56" y="357.5" ></text>
</g>
<g >
<title>DeleteAttributeTuples (9 samples, 0.03%)</title><rect x="83.1" y="187" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="86.09" y="197.5" ></text>
</g>
<g >
<title>_bt_getbuf (35 samples, 0.12%)</title><rect x="1066.9" y="347" width="1.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1069.85" y="357.5" ></text>
</g>
<g >
<title>FastPathGrantRelationLock (34 samples, 0.11%)</title><rect x="742.0" y="475" width="1.6" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text  x="745.03" y="485.5" ></text>
</g>
<g >
<title>expr_setup_walker (3 samples, 0.01%)</title><rect x="665.2" y="491" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="668.21" y="501.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (4 samples, 0.01%)</title><rect x="990.9" y="331" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="993.87" y="341.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (47 samples, 0.16%)</title><rect x="1295.8" y="715" width="2.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1298.82" y="725.5" ></text>
</g>
<g >
<title>palloc0 (35 samples, 0.12%)</title><rect x="1110.5" y="523" width="1.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1113.54" y="533.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (20 samples, 0.07%)</title><rect x="900.7" y="395" width="0.9" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="903.66" y="405.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (6 samples, 0.02%)</title><rect x="1153.3" y="571" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1156.33" y="581.5" ></text>
</g>
<g >
<title>AllocSetAlloc (13 samples, 0.04%)</title><rect x="1111.5" y="507" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1114.52" y="517.5" ></text>
</g>
<g >
<title>GetNewRelFileNumber (3 samples, 0.01%)</title><rect x="39.8" y="699" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="42.82" y="709.5" ></text>
</g>
<g >
<title>smgrDoPendingSyncs (17 samples, 0.06%)</title><rect x="1254.9" y="603" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1257.94" y="613.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (4 samples, 0.01%)</title><rect x="19.2" y="747" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="22.24" y="757.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (3 samples, 0.01%)</title><rect x="25.9" y="747" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="28.91" y="757.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (3 samples, 0.01%)</title><rect x="22.6" y="347" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="25.65" y="357.5" ></text>
</g>
<g >
<title>__schedule (1,380 samples, 4.67%)</title><rect x="155.8" y="443" width="64.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="158.85" y="453.5" >__sch..</text>
</g>
<g >
<title>index_create (8 samples, 0.03%)</title><rect x="28.2" y="475" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="31.20" y="485.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3 samples, 0.01%)</title><rect x="1375.6" y="715" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1378.63" y="725.5" ></text>
</g>
<g >
<title>TupleDescAttr (3 samples, 0.01%)</title><rect x="868.9" y="635" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="871.92" y="645.5" ></text>
</g>
<g >
<title>newNode (46 samples, 0.16%)</title><rect x="655.5" y="475" width="2.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="658.45" y="485.5" ></text>
</g>
<g >
<title>expr_setup_walker (80 samples, 0.27%)</title><rect x="649.9" y="459" width="3.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="652.90" y="469.5" ></text>
</g>
<g >
<title>validate_xmit_xfrm (3 samples, 0.01%)</title><rect x="454.0" y="347" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="457.02" y="357.5" ></text>
</g>
<g >
<title>object_aclcheck (6 samples, 0.02%)</title><rect x="1362.3" y="715" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1365.32" y="725.5" ></text>
</g>
<g >
<title>StartTransaction (1,206 samples, 4.08%)</title><rect x="807.7" y="619" width="56.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="810.69" y="629.5" >Star..</text>
</g>
<g >
<title>mdunlink (13 samples, 0.04%)</title><rect x="1135.3" y="267" width="0.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1138.32" y="277.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (16 samples, 0.05%)</title><rect x="40.8" y="539" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="43.76" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (5 samples, 0.02%)</title><rect x="1298.6" y="347" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1301.57" y="357.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (40 samples, 0.14%)</title><rect x="703.2" y="507" width="1.9" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="706.24" y="517.5" ></text>
</g>
<g >
<title>AtStart_GUC (5 samples, 0.02%)</title><rect x="1313.2" y="715" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1316.23" y="725.5" ></text>
</g>
<g >
<title>exec_toplevel_block (49 samples, 0.17%)</title><rect x="1275.5" y="555" width="2.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1278.52" y="565.5" ></text>
</g>
<g >
<title>ReadBuffer (3 samples, 0.01%)</title><rect x="39.8" y="539" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="42.82" y="549.5" ></text>
</g>
<g >
<title>sched_clock_cpu (13 samples, 0.04%)</title><rect x="214.0" y="395" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="216.95" y="405.5" ></text>
</g>
<g >
<title>SearchCatCache1 (9 samples, 0.03%)</title><rect x="1294.8" y="331" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1297.79" y="341.5" ></text>
</g>
<g >
<title>exec_stmts (11 samples, 0.04%)</title><rect x="1277.8" y="699" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1280.80" y="709.5" ></text>
</g>
<g >
<title>RelationGetSmgr (3 samples, 0.01%)</title><rect x="1067.5" y="299" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1070.46" y="309.5" ></text>
</g>
<g >
<title>DefineIndex (4 samples, 0.01%)</title><rect x="1298.2" y="475" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1301.15" y="485.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (3 samples, 0.01%)</title><rect x="21.7" y="699" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="24.71" y="709.5" ></text>
</g>
<g >
<title>palloc (15 samples, 0.05%)</title><rect x="665.7" y="475" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="668.67" y="485.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (4 samples, 0.01%)</title><rect x="767.2" y="619" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="770.23" y="629.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (810 samples, 2.74%)</title><rect x="43.7" y="555" width="37.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="46.70" y="565.5" >Ex..</text>
</g>
<g >
<title>doDeletion (11 samples, 0.04%)</title><rect x="1277.0" y="283" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1280.01" y="293.5" ></text>
</g>
<g >
<title>index_getnext_tid (5 samples, 0.02%)</title><rect x="40.8" y="443" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="43.76" y="453.5" ></text>
</g>
<g >
<title>message_level_is_interesting (11 samples, 0.04%)</title><rect x="1253.6" y="587" width="0.5" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1256.63" y="597.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (6 samples, 0.02%)</title><rect x="1230.9" y="507" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1233.90" y="517.5" ></text>
</g>
<g >
<title>smgrreleaserellocator (14 samples, 0.05%)</title><rect x="817.7" y="539" width="0.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="820.73" y="549.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (12 samples, 0.04%)</title><rect x="1073.1" y="331" width="0.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1076.06" y="341.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (16 samples, 0.05%)</title><rect x="1127.2" y="603" width="0.8" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1130.25" y="613.5" ></text>
</g>
<g >
<title>sched_clock_cpu (6 samples, 0.02%)</title><rect x="220.0" y="411" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="222.97" y="421.5" ></text>
</g>
<g >
<title>ExecProcNode (13 samples, 0.04%)</title><rect x="12.2" y="603" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="15.24" y="613.5" ></text>
</g>
<g >
<title>ExecEvalExpr (103 samples, 0.35%)</title><rect x="907.0" y="459" width="4.8" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="909.96" y="469.5" ></text>
</g>
<g >
<title>copyObjectImpl (3 samples, 0.01%)</title><rect x="1136.6" y="299" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1139.58" y="309.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (4 samples, 0.01%)</title><rect x="1327.7" y="715" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1330.69" y="725.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (76 samples, 0.26%)</title><rect x="737.6" y="491" width="3.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="740.59" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (18 samples, 0.06%)</title><rect x="69.7" y="203" width="0.9" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="72.74" y="213.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberRelationRef (4 samples, 0.01%)</title><rect x="928.4" y="411" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="931.38" y="421.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (3 samples, 0.01%)</title><rect x="1281.6" y="731" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1284.58" y="741.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (52 samples, 0.18%)</title><rect x="502.7" y="523" width="2.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="505.70" y="533.5" ></text>
</g>
<g >
<title>heap_delete (3 samples, 0.01%)</title><rect x="82.9" y="155" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="85.95" y="165.5" ></text>
</g>
<g >
<title>index_create (4 samples, 0.01%)</title><rect x="1389.0" y="699" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1391.97" y="709.5" ></text>
</g>
<g >
<title>sock_rfree (18 samples, 0.06%)</title><rect x="285.8" y="443" width="0.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="288.78" y="453.5" ></text>
</g>
<g >
<title>AtEOXact_SMgr (14 samples, 0.05%)</title><rect x="1312.2" y="715" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1315.20" y="725.5" ></text>
</g>
<g >
<title>index_insert (4 samples, 0.01%)</title><rect x="1293.5" y="347" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1296.53" y="357.5" ></text>
</g>
<g >
<title>do_faccessat (3 samples, 0.01%)</title><rect x="1276.1" y="267" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="1279.12" y="277.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (6 samples, 0.02%)</title><rect x="815.4" y="475" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="818.44" y="485.5" ></text>
</g>
<g >
<title>FreeSnapshot (11 samples, 0.04%)</title><rect x="593.1" y="635" width="0.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="596.15" y="645.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (56 samples, 0.19%)</title><rect x="748.7" y="475" width="2.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="751.70" y="485.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (6 samples, 0.02%)</title><rect x="1269.0" y="635" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1271.98" y="645.5" ></text>
</g>
<g >
<title>exec_stmts (10 samples, 0.03%)</title><rect x="28.2" y="651" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="31.20" y="661.5" ></text>
</g>
<g >
<title>__tcp_cleanup_rbuf (36 samples, 0.12%)</title><rect x="262.0" y="443" width="1.7" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text  x="264.97" y="453.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (6 samples, 0.02%)</title><rect x="1287.3" y="219" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1290.28" y="229.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (13 samples, 0.04%)</title><rect x="1175.8" y="459" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1178.78" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (9 samples, 0.03%)</title><rect x="1081.3" y="299" width="0.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1084.32" y="309.5" ></text>
</g>
<g >
<title>pq_getbytes (31 samples, 0.10%)</title><rect x="298.7" y="619" width="1.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="301.70" y="629.5" ></text>
</g>
<g >
<title>IndexScanEnd (26 samples, 0.09%)</title><rect x="1182.4" y="443" width="1.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1185.41" y="453.5" ></text>
</g>
<g >
<title>ReleaseSysCache (3 samples, 0.01%)</title><rect x="671.4" y="507" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="674.41" y="517.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (41 samples, 0.14%)</title><rect x="1386.7" y="731" width="1.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1389.73" y="741.5" ></text>
</g>
<g >
<title>BTreeTupleGetHeapTID (9 samples, 0.03%)</title><rect x="978.5" y="347" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="981.51" y="357.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (22 samples, 0.07%)</title><rect x="1241.5" y="507" width="1.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1244.54" y="517.5" ></text>
</g>
<g >
<title>__mod_memcg_state (43 samples, 0.15%)</title><rect x="498.3" y="395" width="2.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="501.31" y="405.5" ></text>
</g>
<g >
<title>exec_execute_message (810 samples, 2.74%)</title><rect x="43.7" y="683" width="37.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="46.70" y="693.5" >ex..</text>
</g>
<g >
<title>futex_wait (3 samples, 0.01%)</title><rect x="566.0" y="427" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="569.03" y="437.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (16 samples, 0.05%)</title><rect x="40.8" y="587" width="0.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="43.76" y="597.5" ></text>
</g>
<g >
<title>SearchSysCache1 (46 samples, 0.16%)</title><rect x="869.9" y="619" width="2.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="872.86" y="629.5" ></text>
</g>
<g >
<title>DatumGetInt32 (7 samples, 0.02%)</title><rect x="1055.0" y="299" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1057.95" y="309.5" ></text>
</g>
<g >
<title>expr_setup_walker (3 samples, 0.01%)</title><rect x="1350.5" y="715" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1353.47" y="725.5" ></text>
</g>
<g >
<title>ExecClearTuple (7 samples, 0.02%)</title><rect x="898.7" y="491" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="901.75" y="501.5" ></text>
</g>
<g >
<title>StartTransactionCommand (3 samples, 0.01%)</title><rect x="1268.1" y="635" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1271.14" y="645.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (15 samples, 0.05%)</title><rect x="715.8" y="427" width="0.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="718.80" y="437.5" ></text>
</g>
<g >
<title>index_getnext_slot (7 samples, 0.02%)</title><rect x="20.2" y="539" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="23.17" y="549.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (12 samples, 0.04%)</title><rect x="1288.0" y="267" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1290.98" y="277.5" ></text>
</g>
<g >
<title>_GLOBAL_OFFSET_TABLE_ (3 samples, 0.01%)</title><rect x="1376.6" y="731" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1379.61" y="741.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (4 samples, 0.01%)</title><rect x="1385.3" y="619" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1388.29" y="629.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (101 samples, 0.34%)</title><rect x="69.6" y="219" width="4.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="72.55" y="229.5" ></text>
</g>
<g >
<title>SearchSysCache1 (9 samples, 0.03%)</title><rect x="1294.8" y="347" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1297.79" y="357.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (9 samples, 0.03%)</title><rect x="590.9" y="619" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="593.91" y="629.5" ></text>
</g>
<g >
<title>MemoryContextCreate (6 samples, 0.02%)</title><rect x="523.0" y="619" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="526.00" y="629.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (6 samples, 0.02%)</title><rect x="972.6" y="347" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="975.58" y="357.5" ></text>
</g>
<g >
<title>deleteObjectsInList (23 samples, 0.08%)</title><rect x="1276.5" y="315" width="1.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1279.54" y="325.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (11 samples, 0.04%)</title><rect x="39.3" y="683" width="0.5" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="42.31" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (13 samples, 0.04%)</title><rect x="1243.0" y="459" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1246.03" y="469.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (5 samples, 0.02%)</title><rect x="1181.4" y="411" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1184.43" y="421.5" ></text>
</g>
<g >
<title>performMultipleDeletions (3 samples, 0.01%)</title><rect x="12.8" y="299" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="15.85" y="309.5" ></text>
</g>
<g >
<title>index_create (4 samples, 0.01%)</title><rect x="1281.6" y="747" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1284.58" y="757.5" ></text>
</g>
<g >
<title>__put_user_nocheck_4 (48 samples, 0.16%)</title><rect x="124.3" y="475" width="2.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="127.30" y="485.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (6 samples, 0.02%)</title><rect x="1269.0" y="747" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1271.98" y="757.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (30 samples, 0.10%)</title><rect x="36.5" y="699" width="1.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="39.46" y="709.5" ></text>
</g>
<g >
<title>printtup_startup (227 samples, 0.77%)</title><rect x="1115.5" y="571" width="10.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1118.53" y="581.5" ></text>
</g>
<g >
<title>exec_stmt_block (13 samples, 0.04%)</title><rect x="22.5" y="651" width="0.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="25.46" y="661.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (8 samples, 0.03%)</title><rect x="922.8" y="283" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="925.83" y="293.5" ></text>
</g>
<g >
<title>ReadyForQuery (3 samples, 0.01%)</title><rect x="1267.8" y="683" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1270.77" y="693.5" ></text>
</g>
<g >
<title>LWLockRelease (22 samples, 0.07%)</title><rect x="1242.6" y="523" width="1.0" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1245.61" y="533.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (27 samples, 0.09%)</title><rect x="1287.9" y="363" width="1.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1290.93" y="373.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (15 samples, 0.05%)</title><rect x="927.4" y="411" width="0.7" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="930.40" y="421.5" ></text>
</g>
<g >
<title>pq_sendint16 (3 samples, 0.01%)</title><rect x="1105.4" y="539" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1108.45" y="549.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (8 samples, 0.03%)</title><rect x="123.9" y="475" width="0.4" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="126.92" y="485.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (8 samples, 0.03%)</title><rect x="718.9" y="459" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="721.88" y="469.5" ></text>
</g>
<g >
<title>get_timeout_active (10 samples, 0.03%)</title><rect x="864.0" y="619" width="0.4" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="866.98" y="629.5" ></text>
</g>
<g >
<title>hash_bytes (21 samples, 0.07%)</title><rect x="527.5" y="587" width="1.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="530.48" y="597.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (6 samples, 0.02%)</title><rect x="943.2" y="331" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="946.18" y="341.5" ></text>
</g>
<g >
<title>AllocSetAlloc (18 samples, 0.06%)</title><rect x="786.2" y="619" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="789.18" y="629.5" ></text>
</g>
<g >
<title>AllocSetAllocLarge (66 samples, 0.22%)</title><rect x="933.2" y="363" width="3.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="936.24" y="373.5" ></text>
</g>
<g >
<title>get_hash_value (41 samples, 0.14%)</title><rect x="568.2" y="539" width="1.9" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="571.23" y="549.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (57 samples, 0.19%)</title><rect x="81.5" y="523" width="2.7" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="84.50" y="533.5" ></text>
</g>
<g >
<title>__calc_delta (4 samples, 0.01%)</title><rect x="173.0" y="379" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="176.02" y="389.5" ></text>
</g>
<g >
<title>palloc0 (3 samples, 0.01%)</title><rect x="1282.6" y="747" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1285.61" y="757.5" ></text>
</g>
<g >
<title>pfree (13 samples, 0.04%)</title><rect x="1204.4" y="539" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1207.44" y="549.5" ></text>
</g>
<g >
<title>hash_bytes (46 samples, 0.16%)</title><rect x="576.4" y="523" width="2.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="579.44" y="533.5" ></text>
</g>
<g >
<title>LWLockAcquire (50 samples, 0.17%)</title><rect x="1168.4" y="507" width="2.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1171.41" y="517.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (5 samples, 0.02%)</title><rect x="1384.8" y="411" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1387.77" y="421.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (5 samples, 0.02%)</title><rect x="35.5" y="251" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="38.53" y="261.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (11 samples, 0.04%)</title><rect x="748.1" y="411" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="751.14" y="421.5" ></text>
</g>
<g >
<title>ExecScanExtended (96 samples, 0.32%)</title><rect x="13.0" y="507" width="4.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="15.99" y="517.5" ></text>
</g>
<g >
<title>ProcessUtility (20 samples, 0.07%)</title><rect x="1298.1" y="603" width="0.9" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1301.06" y="613.5" ></text>
</g>
<g >
<title>index_getnext_slot (4 samples, 0.01%)</title><rect x="39.1" y="603" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="42.12" y="613.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (3 samples, 0.01%)</title><rect x="786.9" y="603" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="789.88" y="613.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (7 samples, 0.02%)</title><rect x="38.5" y="523" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="41.52" y="533.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (53 samples, 0.18%)</title><rect x="1171.4" y="491" width="2.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1174.40" y="501.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (20 samples, 0.07%)</title><rect x="1298.1" y="587" width="0.9" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1301.06" y="597.5" ></text>
</g>
<g >
<title>btgettuple (96 samples, 0.32%)</title><rect x="13.0" y="427" width="4.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="15.99" y="437.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (3 samples, 0.01%)</title><rect x="806.3" y="619" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="809.29" y="629.5" ></text>
</g>
<g >
<title>heapam_index_build_range_scan (4 samples, 0.01%)</title><rect x="1387.8" y="363" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1390.76" y="373.5" ></text>
</g>
<g >
<title>s_lock (8 samples, 0.03%)</title><rect x="1134.7" y="219" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1137.67" y="229.5" ></text>
</g>
<g >
<title>deleteOneObject (14 samples, 0.05%)</title><rect x="1294.0" y="379" width="0.7" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1297.05" y="389.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (52 samples, 0.18%)</title><rect x="907.9" y="411" width="2.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="910.89" y="421.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (57 samples, 0.19%)</title><rect x="81.5" y="315" width="2.7" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="84.50" y="325.5" ></text>
</g>
<g >
<title>GetPortalByName (108 samples, 0.37%)</title><rect x="523.5" y="635" width="5.0" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="526.47" y="645.5" ></text>
</g>
<g >
<title>__rdgsbase_inactive (4 samples, 0.01%)</title><rect x="1376.8" y="731" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="1379.79" y="741.5" ></text>
</g>
<g >
<title>int4eqfast (3 samples, 0.01%)</title><rect x="715.7" y="411" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="718.66" y="421.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (27 samples, 0.09%)</title><rect x="1287.9" y="331" width="1.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1290.93" y="341.5" ></text>
</g>
<g >
<title>__sk_dst_check (7 samples, 0.02%)</title><rect x="338.7" y="379" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="341.65" y="389.5" ></text>
</g>
<g >
<title>DefineIndex (4 samples, 0.01%)</title><rect x="1278.3" y="571" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1281.32" y="581.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (63 samples, 0.21%)</title><rect x="991.4" y="347" width="2.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="994.39" y="357.5" ></text>
</g>
<g >
<title>alloc_perturb (3 samples, 0.01%)</title><rect x="936.0" y="315" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="939.04" y="325.5" ></text>
</g>
<g >
<title>pg_checksum_page (7 samples, 0.02%)</title><rect x="1291.5" y="299" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1294.48" y="309.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (446 samples, 1.51%)</title><rect x="377.2" y="139" width="20.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="380.16" y="149.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (148 samples, 0.50%)</title><rect x="916.9" y="443" width="6.9" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="919.90" y="453.5" ></text>
</g>
<g >
<title>hash_initial_lookup (10 samples, 0.03%)</title><rect x="865.5" y="603" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="868.47" y="613.5" ></text>
</g>
<g >
<title>ReadCommand (18 samples, 0.06%)</title><rect x="1266.9" y="683" width="0.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1269.93" y="693.5" ></text>
</g>
<g >
<title>exec_stmts (54 samples, 0.18%)</title><rect x="1134.2" y="411" width="2.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1137.20" y="421.5" ></text>
</g>
<g >
<title>SocketBackend (4,423 samples, 14.96%)</title><rect x="96.1" y="651" width="206.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="99.11" y="661.5" >SocketBackend</text>
</g>
<g >
<title>list_length (8 samples, 0.03%)</title><rect x="711.1" y="475" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="714.13" y="485.5" ></text>
</g>
<g >
<title>enlargeStringInfo (3 samples, 0.01%)</title><rect x="1272.5" y="747" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1275.53" y="757.5" ></text>
</g>
<g >
<title>ReadBufferExtended (3 samples, 0.01%)</title><rect x="40.3" y="507" width="0.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="43.29" y="517.5" ></text>
</g>
<g >
<title>tcp_established_options (5 samples, 0.02%)</title><rect x="485.9" y="411" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="488.90" y="421.5" ></text>
</g>
<g >
<title>LockBuffer (3 samples, 0.01%)</title><rect x="39.4" y="411" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="42.45" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (6 samples, 0.02%)</title><rect x="33.8" y="251" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="36.85" y="261.5" ></text>
</g>
<g >
<title>__schedule (46 samples, 0.16%)</title><rect x="1380.9" y="635" width="2.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1383.85" y="645.5" ></text>
</g>
<g >
<title>AtEOXact_LogicalRepWorkers (16 samples, 0.05%)</title><rect x="1148.0" y="603" width="0.8" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="1151.01" y="613.5" ></text>
</g>
<g >
<title>hash_bytes (3 samples, 0.01%)</title><rect x="1278.8" y="747" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1281.78" y="757.5" ></text>
</g>
<g >
<title>relation_open (13 samples, 0.04%)</title><rect x="1370.3" y="715" width="0.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1373.31" y="725.5" ></text>
</g>
<g >
<title>object_aclmask_ext (7 samples, 0.02%)</title><rect x="699.1" y="459" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="702.14" y="469.5" ></text>
</g>
<g >
<title>ExecIndexScan (810 samples, 2.74%)</title><rect x="43.7" y="539" width="37.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="46.70" y="549.5" >Ex..</text>
</g>
<g >
<title>_raw_spin_lock (46 samples, 0.16%)</title><rect x="364.6" y="187" width="2.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="367.60" y="197.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (9 samples, 0.03%)</title><rect x="1386.8" y="411" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1389.78" y="421.5" ></text>
</g>
<g >
<title>LockRelationOid (9 samples, 0.03%)</title><rect x="1298.4" y="427" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1301.39" y="437.5" ></text>
</g>
<g >
<title>_bt_first (13 samples, 0.04%)</title><rect x="12.2" y="443" width="0.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="15.24" y="453.5" ></text>
</g>
<g >
<title>StartTransactionCommand (4 samples, 0.01%)</title><rect x="1135.9" y="347" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1138.93" y="357.5" ></text>
</g>
<g >
<title>disable_statement_timeout (5 samples, 0.02%)</title><rect x="1128.6" y="651" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1131.60" y="661.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (19 samples, 0.06%)</title><rect x="43.7" y="395" width="0.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="46.70" y="405.5" ></text>
</g>
<g >
<title>PortalRun (141 samples, 0.48%)</title><rect x="29.9" y="747" width="6.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="32.88" y="757.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (6 samples, 0.02%)</title><rect x="638.0" y="491" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="640.95" y="501.5" ></text>
</g>
<g >
<title>_bt_checkkeys (45 samples, 0.15%)</title><rect x="1023.3" y="347" width="2.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1026.26" y="357.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (12 samples, 0.04%)</title><rect x="1290.5" y="251" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1293.50" y="261.5" ></text>
</g>
<g >
<title>ScanPgRelation (5 samples, 0.02%)</title><rect x="39.6" y="555" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="42.59" y="565.5" ></text>
</g>
<g >
<title>__wrgsbase_inactive (10 samples, 0.03%)</title><rect x="1378.8" y="731" width="0.5" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1381.80" y="741.5" ></text>
</g>
<g >
<title>__strlen_evex (3 samples, 0.01%)</title><rect x="1102.6" y="539" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1105.56" y="549.5" ></text>
</g>
<g >
<title>ExecDropStmt (6 samples, 0.02%)</title><rect x="37.5" y="395" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="40.54" y="405.5" ></text>
</g>
<g >
<title>tcp_rate_skb_delivered (7 samples, 0.02%)</title><rect x="418.9" y="139" width="0.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="421.88" y="149.5" ></text>
</g>
<g >
<title>ExecutorStart (3,557 samples, 12.03%)</title><rect x="601.4" y="635" width="166.0" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="604.41" y="645.5" >ExecutorStart</text>
</g>
<g >
<title>GetPortalByName (57 samples, 0.19%)</title><rect x="865.1" y="651" width="2.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="868.05" y="661.5" ></text>
</g>
<g >
<title>CatalogTuplesMultiInsertWithInfo (8 samples, 0.03%)</title><rect x="1292.5" y="379" width="0.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1295.51" y="389.5" ></text>
</g>
<g >
<title>index_update_stats (3 samples, 0.01%)</title><rect x="1389.0" y="667" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1392.02" y="677.5" ></text>
</g>
<g >
<title>exec_stmt_fori (41 samples, 0.14%)</title><rect x="1386.7" y="603" width="1.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1389.73" y="613.5" ></text>
</g>
<g >
<title>BufferIsValid (3 samples, 0.01%)</title><rect x="1185.2" y="427" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1188.16" y="437.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (7 samples, 0.02%)</title><rect x="643.7" y="443" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="646.74" y="453.5" ></text>
</g>
<g >
<title>btint4cmp (9 samples, 0.03%)</title><rect x="1271.3" y="747" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1274.27" y="757.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (4,065 samples, 13.75%)</title><rect x="905.2" y="539" width="189.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="908.19" y="549.5" >ExecProcNodeFirst</text>
</g>
<g >
<title>fmgr_info (18 samples, 0.06%)</title><rect x="698.0" y="491" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="701.02" y="501.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (327 samples, 1.11%)</title><rect x="44.6" y="283" width="15.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="47.58" y="293.5" ></text>
</g>
<g >
<title>sk_reset_timer (65 samples, 0.22%)</title><rect x="471.5" y="395" width="3.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="474.52" y="405.5" ></text>
</g>
<g >
<title>LockErrorCleanup (5 samples, 0.02%)</title><rect x="1329.2" y="715" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1332.24" y="725.5" ></text>
</g>
<g >
<title>tas (3 samples, 0.01%)</title><rect x="741.0" y="443" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="744.00" y="453.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Database (33 samples, 0.11%)</title><rect x="1150.7" y="587" width="1.6" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="1153.72" y="597.5" ></text>
</g>
<g >
<title>exec_stmt_fori (11 samples, 0.04%)</title><rect x="1277.8" y="715" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1280.80" y="725.5" ></text>
</g>
<g >
<title>ExecProcNode (7 samples, 0.02%)</title><rect x="895.4" y="571" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="898.43" y="581.5" ></text>
</g>
<g >
<title>ExecScanFetch (6 samples, 0.02%)</title><rect x="1094.0" y="491" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1097.02" y="501.5" ></text>
</g>
<g >
<title>IndexNext (810 samples, 2.74%)</title><rect x="43.7" y="475" width="37.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="46.70" y="485.5" >In..</text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (4 samples, 0.01%)</title><rect x="887.6" y="603" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="890.59" y="613.5" ></text>
</g>
<g >
<title>table_open (151 samples, 0.51%)</title><rect x="728.9" y="507" width="7.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="731.91" y="517.5" ></text>
</g>
<g >
<title>check_log_duration (7 samples, 0.02%)</title><rect x="1128.3" y="651" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1131.27" y="661.5" ></text>
</g>
<g >
<title>Int32GetDatum (4 samples, 0.01%)</title><rect x="589.9" y="603" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="592.93" y="613.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (15 samples, 0.05%)</title><rect x="1259.8" y="603" width="0.7" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1262.79" y="613.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (20 samples, 0.07%)</title><rect x="1298.1" y="635" width="0.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1301.06" y="645.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (30 samples, 0.10%)</title><rect x="36.5" y="603" width="1.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="39.46" y="613.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (99 samples, 0.33%)</title><rect x="90.7" y="651" width="4.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="93.69" y="661.5" ></text>
</g>
<g >
<title>tas (3 samples, 0.01%)</title><rect x="561.7" y="523" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="564.74" y="533.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3 samples, 0.01%)</title><rect x="1075.8" y="315" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1078.81" y="325.5" ></text>
</g>
<g >
<title>set_ps_display (11 samples, 0.04%)</title><rect x="1266.4" y="667" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1269.37" y="677.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (41 samples, 0.14%)</title><rect x="1386.7" y="571" width="1.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1389.73" y="581.5" ></text>
</g>
<g >
<title>_bt_search (4 samples, 0.01%)</title><rect x="39.6" y="459" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="42.64" y="469.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (6 samples, 0.02%)</title><rect x="1269.8" y="731" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1272.78" y="741.5" ></text>
</g>
<g >
<title>list_head (4 samples, 0.01%)</title><rect x="872.0" y="635" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="875.00" y="645.5" ></text>
</g>
<g >
<title>pick_next_task_fair (215 samples, 0.73%)</title><rect x="198.3" y="427" width="10.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="201.32" y="437.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (13 samples, 0.04%)</title><rect x="22.5" y="699" width="0.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="25.46" y="709.5" ></text>
</g>
<g >
<title>AtStart_Memory (14 samples, 0.05%)</title><rect x="849.7" y="603" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="852.70" y="613.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTuple (3 samples, 0.01%)</title><rect x="1280.5" y="731" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1283.51" y="741.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (19 samples, 0.06%)</title><rect x="1113.2" y="539" width="0.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1116.15" y="549.5" ></text>
</g>
<g >
<title>exec_stmts (185 samples, 0.63%)</title><rect x="1287.2" y="571" width="8.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1290.18" y="581.5" ></text>
</g>
<g >
<title>PortalRun (810 samples, 2.74%)</title><rect x="43.7" y="667" width="37.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="46.70" y="677.5" >Po..</text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (8 samples, 0.03%)</title><rect x="869.5" y="587" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="872.48" y="597.5" ></text>
</g>
<g >
<title>_bt_first (810 samples, 2.74%)</title><rect x="43.7" y="411" width="37.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="46.70" y="421.5" >_b..</text>
</g>
<g >
<title>start_xact_command (14 samples, 0.05%)</title><rect x="878.4" y="651" width="0.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="881.44" y="661.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (49 samples, 0.17%)</title><rect x="658.3" y="475" width="2.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="661.30" y="485.5" ></text>
</g>
<g >
<title>futex_wait_queue (3 samples, 0.01%)</title><rect x="566.0" y="411" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="569.03" y="421.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="788.7" y="619" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="791.65" y="629.5" ></text>
</g>
<g >
<title>ExecClearTuple (19 samples, 0.06%)</title><rect x="915.5" y="459" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="918.55" y="469.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (300 samples, 1.01%)</title><rect x="1011.7" y="379" width="14.0" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1014.74" y="389.5" ></text>
</g>
<g >
<title>GetBufferDescriptor (3 samples, 0.01%)</title><rect x="942.3" y="363" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="945.34" y="373.5" ></text>
</g>
<g >
<title>index_getnext_tid (4 samples, 0.01%)</title><rect x="20.5" y="427" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="23.50" y="437.5" ></text>
</g>
<g >
<title>pg_any_to_server (13 samples, 0.04%)</title><rect x="788.8" y="635" width="0.6" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="791.84" y="645.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (15 samples, 0.05%)</title><rect x="674.9" y="459" width="0.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="677.91" y="469.5" ></text>
</g>
<g >
<title>net_rx_action (2,212 samples, 7.48%)</title><rect x="344.3" y="299" width="103.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="347.35" y="309.5" >net_rx_act..</text>
</g>
<g >
<title>index_insert (4 samples, 0.01%)</title><rect x="1388.1" y="363" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1391.13" y="373.5" ></text>
</g>
<g >
<title>schedule (3 samples, 0.01%)</title><rect x="566.0" y="395" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="569.03" y="405.5" ></text>
</g>
<g >
<title>index_getnext_tid (5 samples, 0.02%)</title><rect x="39.6" y="507" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="42.59" y="517.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (86 samples, 0.29%)</title><rect x="767.4" y="635" width="4.0" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="770.42" y="645.5" ></text>
</g>
<g >
<title>DefineRelation (25 samples, 0.08%)</title><rect x="1292.9" y="443" width="1.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1295.88" y="453.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (3 samples, 0.01%)</title><rect x="38.8" y="699" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="41.84" y="709.5" ></text>
</g>
<g >
<title>index_getnext_slot (8 samples, 0.03%)</title><rect x="40.1" y="635" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="43.06" y="645.5" ></text>
</g>
<g >
<title>pq_writeint16 (3 samples, 0.01%)</title><rect x="878.3" y="651" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="881.30" y="661.5" ></text>
</g>
<g >
<title>index_getnext_slot (11 samples, 0.04%)</title><rect x="1384.8" y="475" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1387.77" y="485.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (3 samples, 0.01%)</title><rect x="1281.6" y="619" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1284.58" y="629.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (4 samples, 0.01%)</title><rect x="764.8" y="523" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="767.85" y="533.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (4 samples, 0.01%)</title><rect x="1278.3" y="667" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1281.32" y="677.5" ></text>
</g>
<g >
<title>ep_item_poll.isra.0 (430 samples, 1.45%)</title><rect x="130.9" y="475" width="20.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="133.88" y="485.5" ></text>
</g>
<g >
<title>handle_softirqs (2,234 samples, 7.56%)</title><rect x="343.4" y="315" width="104.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="346.37" y="325.5" >handle_sof..</text>
</g>
<g >
<title>btbuild (16 samples, 0.05%)</title><rect x="1291.5" y="395" width="0.7" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1294.48" y="405.5" ></text>
</g>
<g >
<title>ExecScan (11 samples, 0.04%)</title><rect x="1094.3" y="523" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1097.30" y="533.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (13 samples, 0.04%)</title><rect x="1136.1" y="395" width="0.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1139.11" y="405.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (10 samples, 0.03%)</title><rect x="1387.3" y="299" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1390.29" y="309.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (22 samples, 0.07%)</title><rect x="19.8" y="651" width="1.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="22.85" y="661.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (4 samples, 0.01%)</title><rect x="1199.7" y="427" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1202.68" y="437.5" ></text>
</g>
<g >
<title>__libc_recv (6 samples, 0.02%)</title><rect x="1269.8" y="747" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1272.78" y="757.5" ></text>
</g>
<g >
<title>PortalRunSelect (96 samples, 0.32%)</title><rect x="13.0" y="651" width="4.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="15.99" y="661.5" ></text>
</g>
<g >
<title>_bt_lockbuf (7 samples, 0.02%)</title><rect x="1068.1" y="331" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1071.11" y="341.5" ></text>
</g>
<g >
<title>smgrDoPendingDeletes (8 samples, 0.03%)</title><rect x="1254.6" y="603" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1257.56" y="613.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (19 samples, 0.06%)</title><rect x="352.0" y="235" width="0.8" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="354.95" y="245.5" ></text>
</g>
<g >
<title>exec_toplevel_block (13 samples, 0.04%)</title><rect x="22.5" y="667" width="0.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="25.46" y="677.5" ></text>
</g>
<g >
<title>hash_bytes (38 samples, 0.13%)</title><rect x="568.3" y="507" width="1.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="571.27" y="517.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (3 samples, 0.01%)</title><rect x="1294.5" y="155" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1297.47" y="165.5" ></text>
</g>
<g >
<title>PortalRunSelect (5,047 samples, 17.07%)</title><rect x="892.5" y="635" width="235.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="895.49" y="645.5" >PortalRunSelect</text>
</g>
<g >
<title>AllocSetFree (5 samples, 0.02%)</title><rect x="305.5" y="619" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="308.47" y="629.5" ></text>
</g>
<g >
<title>FastPathTransferRelationLocks (9 samples, 0.03%)</title><rect x="35.0" y="315" width="0.4" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="38.02" y="325.5" ></text>
</g>
<g >
<title>ReadBufferExtended (327 samples, 1.11%)</title><rect x="44.6" y="331" width="15.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="47.58" y="341.5" ></text>
</g>
<g >
<title>pgstat_report_activity (66 samples, 0.22%)</title><rect x="789.4" y="651" width="3.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="792.44" y="661.5" ></text>
</g>
<g >
<title>apparmor_socket_recvmsg (3 samples, 0.01%)</title><rect x="292.0" y="459" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="294.98" y="469.5" ></text>
</g>
<g >
<title>InstrEndLoop@plt (8 samples, 0.03%)</title><rect x="1162.3" y="523" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1165.34" y="533.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (139 samples, 0.47%)</title><rect x="30.0" y="491" width="6.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="32.97" y="501.5" ></text>
</g>
<g >
<title>lock_sock_nested (22 samples, 0.07%)</title><rect x="248.7" y="459" width="1.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="251.67" y="469.5" ></text>
</g>
<g >
<title>CreateDestReceiver (64 samples, 0.22%)</title><rect x="881.4" y="651" width="3.0" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="884.43" y="661.5" ></text>
</g>
<g >
<title>pg_client_to_server (14 samples, 0.05%)</title><rect x="788.8" y="651" width="0.6" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="791.79" y="661.5" ></text>
</g>
<g >
<title>RemoveRelations (39 samples, 0.13%)</title><rect x="1296.0" y="683" width="1.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1299.01" y="693.5" ></text>
</g>
<g >
<title>heap_prune_satisfies_vacuum (3 samples, 0.01%)</title><rect x="1281.3" y="715" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1284.30" y="725.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (4 samples, 0.01%)</title><rect x="22.5" y="331" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="25.46" y="341.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5 samples, 0.02%)</title><rect x="190.8" y="395" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="193.80" y="405.5" ></text>
</g>
<g >
<title>_bt_compare (3 samples, 0.01%)</title><rect x="20.3" y="443" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="23.31" y="453.5" ></text>
</g>
<g >
<title>ExecConditionalAssignProjectionInfo (355 samples, 1.20%)</title><rect x="644.8" y="523" width="16.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="647.77" y="533.5" ></text>
</g>
<g >
<title>tcp_chrono_stop (4 samples, 0.01%)</title><rect x="418.4" y="139" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="421.37" y="149.5" ></text>
</g>
<g >
<title>__netif_rx (52 samples, 0.18%)</title><rect x="448.8" y="315" width="2.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="451.80" y="325.5" ></text>
</g>
<g >
<title>PortalRunMulti (57 samples, 0.19%)</title><rect x="81.5" y="651" width="2.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="84.50" y="661.5" ></text>
</g>
<g >
<title>get_hash_entry (7 samples, 0.02%)</title><rect x="575.9" y="523" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="578.93" y="533.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (18 samples, 0.06%)</title><rect x="1298.2" y="507" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1301.15" y="517.5" ></text>
</g>
<g >
<title>namestrcpy (23 samples, 0.08%)</title><rect x="1360.8" y="715" width="1.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1363.83" y="725.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (3 samples, 0.01%)</title><rect x="785.2" y="587" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="788.15" y="597.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (4 samples, 0.01%)</title><rect x="937.8" y="363" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="940.81" y="373.5" ></text>
</g>
<g >
<title>PageGetLSN (6 samples, 0.02%)</title><rect x="1015.3" y="331" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="1018.28" y="341.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (41 samples, 0.14%)</title><rect x="1386.7" y="667" width="1.9" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1389.73" y="677.5" ></text>
</g>
<g >
<title>ReadBuffer_common (327 samples, 1.11%)</title><rect x="44.6" y="315" width="15.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="47.58" y="325.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (5 samples, 0.02%)</title><rect x="1293.5" y="363" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1296.49" y="373.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (41 samples, 0.14%)</title><rect x="1386.7" y="555" width="1.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1389.73" y="565.5" ></text>
</g>
<g >
<title>PinBufferForBlock (328 samples, 1.11%)</title><rect x="944.5" y="283" width="15.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="947.48" y="293.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (9 samples, 0.03%)</title><rect x="1386.8" y="363" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1389.78" y="373.5" ></text>
</g>
<g >
<title>hash_search (52 samples, 0.18%)</title><rect x="1205.2" y="571" width="2.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1208.23" y="581.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (3 samples, 0.01%)</title><rect x="1270.4" y="747" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1273.43" y="757.5" ></text>
</g>
<g >
<title>epoll_wait (60 samples, 0.20%)</title><rect x="1272.7" y="747" width="2.8" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1275.67" y="757.5" ></text>
</g>
<g >
<title>ip_output (13 samples, 0.04%)</title><rect x="461.1" y="379" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="464.07" y="389.5" ></text>
</g>
<g >
<title>_bt_search (46 samples, 0.16%)</title><rect x="15.3" y="395" width="2.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="18.32" y="405.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (27 samples, 0.09%)</title><rect x="1287.9" y="299" width="1.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1290.93" y="309.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="190.8" y="379" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="193.85" y="389.5" ></text>
</g>
<g >
<title>GetPortalByName (7 samples, 0.02%)</title><rect x="1322.7" y="715" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="1325.65" y="725.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (3 samples, 0.01%)</title><rect x="22.6" y="363" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="25.65" y="373.5" ></text>
</g>
<g >
<title>__mod_timer (10 samples, 0.03%)</title><rect x="376.0" y="139" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="378.99" y="149.5" ></text>
</g>
<g >
<title>ExecEndPlan (272 samples, 0.92%)</title><rect x="1178.4" y="507" width="12.7" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1181.44" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (25 samples, 0.08%)</title><rect x="1088.7" y="267" width="1.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1091.70" y="277.5" ></text>
</g>
<g >
<title>expr_setup_walker (19 samples, 0.06%)</title><rect x="691.7" y="427" width="0.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="694.67" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (6 samples, 0.02%)</title><rect x="771.1" y="555" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="774.06" y="565.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (76 samples, 0.26%)</title><rect x="802.6" y="635" width="3.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="805.56" y="645.5" ></text>
</g>
<g >
<title>BufferGetPage (7 samples, 0.02%)</title><rect x="1012.8" y="331" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1015.76" y="341.5" ></text>
</g>
<g >
<title>pfree (20 samples, 0.07%)</title><rect x="1007.3" y="363" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1010.26" y="373.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (14 samples, 0.05%)</title><rect x="1279.3" y="731" width="0.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1282.30" y="741.5" ></text>
</g>
<g >
<title>DeleteSecurityLabel (3 samples, 0.01%)</title><rect x="1296.2" y="619" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="1299.19" y="629.5" ></text>
</g>
<g >
<title>AtInplace_Inval (3 samples, 0.01%)</title><rect x="1280.0" y="731" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1282.95" y="741.5" ></text>
</g>
<g >
<title>loopback_xmit (88 samples, 0.30%)</title><rect x="447.9" y="331" width="4.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="450.91" y="341.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (17 samples, 0.06%)</title><rect x="78.0" y="219" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="80.95" y="229.5" ></text>
</g>
<g >
<title>PortalRunSelect (11 samples, 0.04%)</title><rect x="1384.8" y="667" width="0.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="1387.77" y="677.5" ></text>
</g>
<g >
<title>__x64_sys_futex (3 samples, 0.01%)</title><rect x="1232.2" y="411" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1235.16" y="421.5" ></text>
</g>
<g >
<title>ExecInitIndexScan (2,856 samples, 9.66%)</title><rect x="630.1" y="555" width="133.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="633.06" y="565.5" >ExecInitIndexS..</text>
</g>
<g >
<title>exec_stmt_execsql (13 samples, 0.04%)</title><rect x="22.5" y="587" width="0.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="25.46" y="597.5" ></text>
</g>
<g >
<title>load_balance (3 samples, 0.01%)</title><rect x="1231.4" y="315" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1234.41" y="325.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (10 samples, 0.03%)</title><rect x="1289.2" y="379" width="0.5" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1292.19" y="389.5" ></text>
</g>
<g >
<title>skb_page_frag_refill (74 samples, 0.25%)</title><rect x="477.3" y="427" width="3.4" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text  x="480.27" y="437.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64 (5 samples, 0.02%)</title><rect x="566.0" y="523" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="569.03" y="533.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="41.1" y="475" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="44.08" y="485.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (3 samples, 0.01%)</title><rect x="1242.4" y="475" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1245.43" y="485.5" ></text>
</g>
<g >
<title>int4in (14 samples, 0.05%)</title><rect x="1358.5" y="715" width="0.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1361.54" y="725.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (6 samples, 0.02%)</title><rect x="627.3" y="459" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="630.26" y="469.5" ></text>
</g>
<g >
<title>tag_hash (29 samples, 0.10%)</title><rect x="946.4" y="219" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="949.40" y="229.5" ></text>
</g>
<g >
<title>AllocSetAlloc (11 samples, 0.04%)</title><rect x="596.2" y="619" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="599.23" y="629.5" ></text>
</g>
<g >
<title>__kmem_cache_free (5 samples, 0.02%)</title><rect x="447.2" y="251" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="450.21" y="261.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (22 samples, 0.07%)</title><rect x="784.0" y="587" width="1.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="786.98" y="597.5" ></text>
</g>
<g >
<title>DeleteAttributeTuples (3 samples, 0.01%)</title><rect x="82.7" y="187" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="85.67" y="197.5" ></text>
</g>
<g >
<title>ProcessUtility (20 samples, 0.07%)</title><rect x="1299.2" y="523" width="0.9" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1302.18" y="533.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (3 samples, 0.01%)</title><rect x="1281.6" y="715" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1284.58" y="725.5" ></text>
</g>
<g >
<title>dequeue_entity (387 samples, 1.31%)</title><rect x="169.5" y="411" width="18.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="172.52" y="421.5" ></text>
</g>
<g >
<title>_bt_first (4 samples, 0.01%)</title><rect x="39.1" y="555" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="42.12" y="565.5" ></text>
</g>
<g >
<title>ExecReadyExpr (14 samples, 0.05%)</title><rect x="666.5" y="507" width="0.6" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="669.47" y="517.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetTupleDesc (4 samples, 0.01%)</title><rect x="1340.5" y="715" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1343.53" y="725.5" ></text>
</g>
<g >
<title>heap_create (6 samples, 0.02%)</title><rect x="34.2" y="347" width="0.3" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="37.22" y="357.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (15 samples, 0.05%)</title><rect x="20.9" y="683" width="0.7" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="23.92" y="693.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (5 samples, 0.02%)</title><rect x="665.1" y="507" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="668.11" y="517.5" ></text>
</g>
<g >
<title>BTreeTupleGetDownLink (10 samples, 0.03%)</title><rect x="1027.7" y="363" width="0.5" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="1030.74" y="373.5" ></text>
</g>
<g >
<title>pfree (42 samples, 0.14%)</title><rect x="1238.8" y="523" width="2.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1241.83" y="533.5" ></text>
</g>
<g >
<title>_bt_returnitem (3 samples, 0.01%)</title><rect x="1025.8" y="379" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1028.83" y="389.5" ></text>
</g>
<g >
<title>smgrDoPendingSyncs (10 samples, 0.03%)</title><rect x="1371.8" y="715" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1374.85" y="725.5" ></text>
</g>
<g >
<title>ExecProject (5 samples, 0.02%)</title><rect x="1319.8" y="715" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1322.76" y="725.5" ></text>
</g>
<g >
<title>DatumGetInt32 (7 samples, 0.02%)</title><rect x="1048.0" y="331" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1050.95" y="341.5" ></text>
</g>
<g >
<title>ApplyLauncherMain (3 samples, 0.01%)</title><rect x="1268.3" y="651" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1271.33" y="661.5" ></text>
</g>
<g >
<title>[anon] (13 samples, 0.04%)</title><rect x="1375.0" y="731" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1377.97" y="741.5" ></text>
</g>
<g >
<title>PortalRun (49 samples, 0.17%)</title><rect x="1275.5" y="731" width="2.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1278.52" y="741.5" ></text>
</g>
<g >
<title>index_fetch_heap (4 samples, 0.01%)</title><rect x="1290.7" y="203" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1293.73" y="213.5" ></text>
</g>
<g >
<title>InsertPgClassTuple (4 samples, 0.01%)</title><rect x="31.1" y="347" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="34.10" y="357.5" ></text>
</g>
<g >
<title>pq_copymsgbytes (20 samples, 0.07%)</title><rect x="795.0" y="635" width="0.9" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="797.95" y="645.5" ></text>
</g>
<g >
<title>cpuacct_charge (7 samples, 0.02%)</title><rect x="173.5" y="379" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="176.49" y="389.5" ></text>
</g>
<g >
<title>activate_task (10 samples, 0.03%)</title><rect x="200.7" y="379" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="203.74" y="389.5" ></text>
</g>
<g >
<title>tas (36 samples, 0.12%)</title><rect x="846.6" y="539" width="1.7" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="849.62" y="549.5" ></text>
</g>
<g >
<title>InitBufferTag (21 samples, 0.07%)</title><rect x="952.6" y="251" width="0.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="955.56" y="261.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (4 samples, 0.01%)</title><rect x="941.5" y="315" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="944.54" y="325.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (119 samples, 0.40%)</title><rect x="672.0" y="475" width="5.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="674.97" y="485.5" ></text>
</g>
<g >
<title>record_object_address_dependencies (8 samples, 0.03%)</title><rect x="1292.5" y="411" width="0.4" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1295.51" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (76 samples, 0.26%)</title><rect x="70.7" y="187" width="3.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="73.72" y="197.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (8 samples, 0.03%)</title><rect x="1334.3" y="715" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1337.32" y="725.5" ></text>
</g>
<g >
<title>palloc (38 samples, 0.13%)</title><rect x="787.0" y="651" width="1.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="790.02" y="661.5" ></text>
</g>
<g >
<title>ExecScanExtended (13 samples, 0.04%)</title><rect x="12.2" y="539" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="15.24" y="549.5" ></text>
</g>
<g >
<title>exec_stmts (10 samples, 0.03%)</title><rect x="28.2" y="619" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="31.20" y="629.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (54 samples, 0.18%)</title><rect x="1134.2" y="539" width="2.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1137.20" y="549.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (57 samples, 0.19%)</title><rect x="81.5" y="555" width="2.7" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="84.50" y="565.5" ></text>
</g>
<g >
<title>exec_stmt_fori (20 samples, 0.07%)</title><rect x="1298.1" y="683" width="0.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1301.06" y="693.5" ></text>
</g>
<g >
<title>perform_spin_delay (4 samples, 0.01%)</title><rect x="1282.8" y="747" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1285.75" y="757.5" ></text>
</g>
<g >
<title>[[vdso]] (6 samples, 0.02%)</title><rect x="1129.9" y="603" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1132.86" y="613.5" ></text>
</g>
<g >
<title>performMultipleDeletions (27 samples, 0.09%)</title><rect x="1276.5" y="331" width="1.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1279.54" y="341.5" ></text>
</g>
<g >
<title>IndexTupleHasNulls (3 samples, 0.01%)</title><rect x="14.7" y="315" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="17.67" y="325.5" ></text>
</g>
<g >
<title>systable_getnext (3 samples, 0.01%)</title><rect x="41.1" y="491" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="44.08" y="501.5" ></text>
</g>
<g >
<title>__GI_unlink (12 samples, 0.04%)</title><rect x="1135.4" y="235" width="0.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1138.37" y="245.5" ></text>
</g>
<g >
<title>_raw_spin_lock (108 samples, 0.37%)</title><rect x="182.2" y="379" width="5.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="185.21" y="389.5" ></text>
</g>
<g >
<title>ComputeIndexAttrs (18 samples, 0.06%)</title><rect x="30.2" y="363" width="0.8" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="33.16" y="373.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,114 samples, 3.77%)</title><rect x="244.0" y="539" width="52.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="246.96" y="549.5" >do_s..</text>
</g>
<g >
<title>_SPI_execute_plan (3 samples, 0.01%)</title><rect x="12.8" y="411" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="15.85" y="421.5" ></text>
</g>
<g >
<title>index_getnext_tid (5 samples, 0.02%)</title><rect x="1388.7" y="619" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1391.69" y="629.5" ></text>
</g>
<g >
<title>__switch_to_asm (5 samples, 0.02%)</title><rect x="1381.0" y="619" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1384.04" y="629.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (3 samples, 0.01%)</title><rect x="942.0" y="363" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="944.96" y="373.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (9 samples, 0.03%)</title><rect x="1294.8" y="299" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1297.79" y="309.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="762.7" y="491" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="765.70" y="501.5" ></text>
</g>
<g >
<title>ReleaseCatCache (9 samples, 0.03%)</title><rect x="779.5" y="619" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="782.46" y="629.5" ></text>
</g>
<g >
<title>ProcessUtility (57 samples, 0.19%)</title><rect x="81.5" y="619" width="2.7" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="84.50" y="629.5" ></text>
</g>
<g >
<title>CatalogTuplesMultiInsertWithInfo (4 samples, 0.01%)</title><rect x="28.4" y="427" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="31.39" y="437.5" ></text>
</g>
<g >
<title>RelationFlushRelation (22 samples, 0.07%)</title><rect x="19.8" y="619" width="1.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="22.85" y="629.5" ></text>
</g>
<g >
<title>SysCacheInvalidate (40 samples, 0.14%)</title><rect x="815.9" y="539" width="1.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="818.86" y="549.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (5 samples, 0.02%)</title><rect x="17.9" y="747" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="20.89" y="757.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (54 samples, 0.18%)</title><rect x="1134.2" y="587" width="2.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1137.20" y="597.5" ></text>
</g>
<g >
<title>PortalRunUtility (30 samples, 0.10%)</title><rect x="36.5" y="731" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="39.46" y="741.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (5 samples, 0.02%)</title><rect x="1364.8" y="715" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1367.80" y="725.5" ></text>
</g>
<g >
<title>int4hashfast (3 samples, 0.01%)</title><rect x="627.4" y="443" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="630.40" y="453.5" ></text>
</g>
<g >
<title>AcquireExecutorLocks (148 samples, 0.50%)</title><rect x="549.0" y="619" width="7.0" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="552.04" y="629.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (4 samples, 0.01%)</title><rect x="904.6" y="347" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="907.58" y="357.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (10 samples, 0.03%)</title><rect x="425.8" y="155" width="0.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="428.79" y="165.5" ></text>
</g>
<g >
<title>ReleaseSysCache (9 samples, 0.03%)</title><rect x="869.4" y="619" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="872.44" y="629.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (4 samples, 0.01%)</title><rect x="389.1" y="59" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="392.10" y="69.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (3 samples, 0.01%)</title><rect x="1318.5" y="715" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="1321.45" y="725.5" ></text>
</g>
<g >
<title>VirtualXactLockTableInsert (54 samples, 0.18%)</title><rect x="861.2" y="603" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="864.18" y="613.5" ></text>
</g>
<g >
<title>planstate_walk_subplans (8 samples, 0.03%)</title><rect x="1368.3" y="715" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1371.34" y="725.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (7 samples, 0.02%)</title><rect x="38.5" y="651" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="41.52" y="661.5" ></text>
</g>
<g >
<title>PortalStart (3,801 samples, 12.85%)</title><rect x="596.7" y="651" width="177.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="599.74" y="661.5" >PortalStart</text>
</g>
<g >
<title>CommandCounterIncrement (21 samples, 0.07%)</title><rect x="1290.5" y="395" width="1.0" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1293.50" y="405.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (31 samples, 0.10%)</title><rect x="908.5" y="379" width="1.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="911.55" y="389.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (3 samples, 0.01%)</title><rect x="64.9" y="155" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="67.88" y="165.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (6 samples, 0.02%)</title><rect x="678.3" y="459" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="681.27" y="469.5" ></text>
</g>
<g >
<title>heap_create_with_catalog (12 samples, 0.04%)</title><rect x="1293.5" y="427" width="0.5" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="1296.49" y="437.5" ></text>
</g>
<g >
<title>socket_set_nonblocking (13 samples, 0.04%)</title><rect x="507.4" y="635" width="0.6" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="510.41" y="645.5" ></text>
</g>
<g >
<title>CheckCachedPlan (183 samples, 0.62%)</title><rect x="547.5" y="635" width="8.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="550.50" y="645.5" ></text>
</g>
<g >
<title>list_delete_ptr (28 samples, 0.09%)</title><rect x="1194.7" y="475" width="1.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1197.68" y="485.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (54 samples, 0.18%)</title><rect x="1134.2" y="523" width="2.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1137.20" y="533.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (113 samples, 0.38%)</title><rect x="280.5" y="411" width="5.3" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="283.50" y="421.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (9 samples, 0.03%)</title><rect x="1309.5" y="715" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1312.54" y="725.5" ></text>
</g>
<g >
<title>PageGetItemId (7 samples, 0.02%)</title><rect x="29.1" y="747" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="32.09" y="757.5" ></text>
</g>
<g >
<title>index_open (7 samples, 0.02%)</title><rect x="1357.5" y="715" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1360.52" y="725.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (3 samples, 0.01%)</title><rect x="21.7" y="619" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="24.71" y="629.5" ></text>
</g>
<g >
<title>exec_stmts (41 samples, 0.14%)</title><rect x="1386.7" y="587" width="1.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1389.73" y="597.5" ></text>
</g>
<g >
<title>index_create (26 samples, 0.09%)</title><rect x="1386.7" y="443" width="1.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1389.73" y="453.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (28 samples, 0.09%)</title><rect x="1159.1" y="523" width="1.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1162.12" y="533.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (153 samples, 0.52%)</title><rect x="191.0" y="411" width="7.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="194.03" y="421.5" ></text>
</g>
<g >
<title>AtEOXact_Snapshot (5 samples, 0.02%)</title><rect x="1156.1" y="603" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1159.13" y="613.5" ></text>
</g>
<g >
<title>int4hashfast (8 samples, 0.03%)</title><rect x="716.1" y="411" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="719.12" y="421.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (11 samples, 0.04%)</title><rect x="1277.8" y="587" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1280.80" y="597.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (3 samples, 0.01%)</title><rect x="1366.0" y="715" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1369.01" y="725.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (139 samples, 0.47%)</title><rect x="30.0" y="459" width="6.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="32.97" y="469.5" ></text>
</g>
<g >
<title>ReleaseCatCache (3 samples, 0.01%)</title><rect x="42.7" y="747" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="45.67" y="757.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (4 samples, 0.01%)</title><rect x="79.0" y="203" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="82.03" y="213.5" ></text>
</g>
<g >
<title>BackendRun (867 samples, 2.93%)</title><rect x="43.7" y="715" width="40.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="46.70" y="725.5" >Ba..</text>
</g>
<g >
<title>pg_atomic_read_u32_impl (3 samples, 0.01%)</title><rect x="55.8" y="203" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="58.83" y="213.5" ></text>
</g>
<g >
<title>PortalRunUtility (139 samples, 0.47%)</title><rect x="30.0" y="715" width="6.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="32.97" y="725.5" ></text>
</g>
<g >
<title>BufferGetPage (5 samples, 0.02%)</title><rect x="1022.3" y="347" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1025.33" y="357.5" ></text>
</g>
<g >
<title>AllocSetFree (6 samples, 0.02%)</title><rect x="1126.8" y="587" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1129.78" y="597.5" ></text>
</g>
<g >
<title>BufferAlloc (4 samples, 0.01%)</title><rect x="1314.2" y="715" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1317.16" y="725.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (8 samples, 0.03%)</title><rect x="821.6" y="475" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="824.65" y="485.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (15 samples, 0.05%)</title><rect x="1129.4" y="635" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1132.44" y="645.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (12 samples, 0.04%)</title><rect x="1262.3" y="635" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1265.31" y="645.5" ></text>
</g>
<g >
<title>RelationReloadIndexInfo (5 samples, 0.02%)</title><rect x="1279.7" y="635" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="1282.72" y="645.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (4 samples, 0.01%)</title><rect x="1385.3" y="411" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1388.29" y="421.5" ></text>
</g>
<g >
<title>index_build (11 samples, 0.04%)</title><rect x="40.0" y="699" width="0.5" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="42.96" y="709.5" ></text>
</g>
<g >
<title>CallSyscacheCallbacks (7 samples, 0.02%)</title><rect x="811.1" y="539" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="814.05" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (9 samples, 0.03%)</title><rect x="744.3" y="427" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="747.31" y="437.5" ></text>
</g>
<g >
<title>release_sock (9 samples, 0.03%)</title><rect x="320.6" y="459" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="323.59" y="469.5" ></text>
</g>
<g >
<title>hash_bytes (29 samples, 0.10%)</title><rect x="753.3" y="443" width="1.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="756.27" y="453.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (46 samples, 0.16%)</title><rect x="934.2" y="347" width="2.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="937.17" y="357.5" ></text>
</g>
<g >
<title>update_blocked_averages (20 samples, 0.07%)</title><rect x="206.4" y="395" width="0.9" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text  x="209.39" y="405.5" ></text>
</g>
<g >
<title>TimestampDifferenceExceeds (3 samples, 0.01%)</title><rect x="1264.5" y="651" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1267.50" y="661.5" ></text>
</g>
<g >
<title>index_getnext_tid (6 samples, 0.02%)</title><rect x="39.3" y="507" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="42.31" y="517.5" ></text>
</g>
<g >
<title>postmaster_child_launch (4 samples, 0.01%)</title><rect x="1268.1" y="699" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1271.14" y="709.5" ></text>
</g>
<g >
<title>PortalRunUtility (54 samples, 0.18%)</title><rect x="1134.2" y="619" width="2.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1137.20" y="629.5" ></text>
</g>
<g >
<title>InstrAlloc (123 samples, 0.42%)</title><rect x="604.4" y="603" width="5.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="607.40" y="613.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (3 samples, 0.01%)</title><rect x="40.3" y="459" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="43.29" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (4 samples, 0.01%)</title><rect x="1283.6" y="747" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1286.64" y="757.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (42 samples, 0.14%)</title><rect x="57.9" y="251" width="1.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="60.88" y="261.5" ></text>
</g>
<g >
<title>palloc (10 samples, 0.03%)</title><rect x="710.5" y="475" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="713.52" y="485.5" ></text>
</g>
<g >
<title>index_create (6 samples, 0.02%)</title><rect x="1277.9" y="491" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1280.94" y="501.5" ></text>
</g>
<g >
<title>record_times (7 samples, 0.02%)</title><rect x="213.6" y="395" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="216.62" y="405.5" ></text>
</g>
<g >
<title>check_stack_depth (5 samples, 0.02%)</title><rect x="1348.0" y="715" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1351.04" y="725.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (30 samples, 0.10%)</title><rect x="36.5" y="619" width="1.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="39.46" y="629.5" ></text>
</g>
<g >
<title>do_futex (5 samples, 0.02%)</title><rect x="1231.3" y="427" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1234.32" y="437.5" ></text>
</g>
<g >
<title>btgettuple (3 samples, 0.01%)</title><rect x="20.7" y="507" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="23.73" y="517.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (84 samples, 0.28%)</title><rect x="919.8" y="331" width="4.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="922.84" y="341.5" ></text>
</g>
<g >
<title>BufferAlloc (425 samples, 1.44%)</title><rect x="60.3" y="251" width="19.8" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="63.26" y="261.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (6 samples, 0.02%)</title><rect x="1081.5" y="283" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1084.46" y="293.5" ></text>
</g>
<g >
<title>AtStart_ResourceOwner (220 samples, 0.74%)</title><rect x="850.3" y="603" width="10.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="853.35" y="613.5" ></text>
</g>
<g >
<title>pfree (15 samples, 0.05%)</title><rect x="1221.1" y="587" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1224.05" y="597.5" ></text>
</g>
<g >
<title>tag_hash (76 samples, 0.26%)</title><rect x="61.5" y="203" width="3.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="64.48" y="213.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (3 samples, 0.01%)</title><rect x="21.7" y="651" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="24.71" y="661.5" ></text>
</g>
<g >
<title>fetch_att (15 samples, 0.05%)</title><rect x="1006.0" y="331" width="0.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1009.00" y="341.5" ></text>
</g>
<g >
<title>spin_delay (6 samples, 0.02%)</title><rect x="561.2" y="491" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="564.23" y="501.5" ></text>
</g>
<g >
<title>pstrdup (45 samples, 0.15%)</title><rect x="1131.5" y="651" width="2.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="1134.54" y="661.5" ></text>
</g>
<g >
<title>EndCommand (7 samples, 0.02%)</title><rect x="1316.6" y="715" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1319.63" y="725.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (27 samples, 0.09%)</title><rect x="1097.9" y="523" width="1.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1100.94" y="533.5" ></text>
</g>
<g >
<title>HeapTupleHeaderXminFrozen (3 samples, 0.01%)</title><rect x="962.5" y="347" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="965.50" y="357.5" ></text>
</g>
<g >
<title>ProcReleaseLocks (572 samples, 1.93%)</title><rect x="1223.2" y="571" width="26.7" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1226.20" y="581.5" >P..</text>
</g>
<g >
<title>AtEOXact_on_commit_actions (3 samples, 0.01%)</title><rect x="1156.7" y="603" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1159.74" y="613.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (6 samples, 0.02%)</title><rect x="1269.0" y="683" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1271.98" y="693.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (6 samples, 0.02%)</title><rect x="1094.9" y="555" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1097.90" y="565.5" ></text>
</g>
<g >
<title>strncpy@plt (10 samples, 0.03%)</title><rect x="718.2" y="459" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="721.22" y="469.5" ></text>
</g>
<g >
<title>FetchPortalTargetList (9 samples, 0.03%)</title><rect x="864.6" y="651" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="867.63" y="661.5" ></text>
</g>
<g >
<title>ExecDropStmt (3 samples, 0.01%)</title><rect x="12.8" y="331" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="15.85" y="341.5" ></text>
</g>
<g >
<title>AllocSetAlloc (54 samples, 0.18%)</title><rect x="1258.4" y="619" width="2.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1261.44" y="629.5" ></text>
</g>
<g >
<title>exec_stmts (4 samples, 0.01%)</title><rect x="1278.6" y="747" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1281.55" y="757.5" ></text>
</g>
<g >
<title>SearchCatCache2 (4 samples, 0.01%)</title><rect x="1287.6" y="379" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="1290.56" y="389.5" ></text>
</g>
<g >
<title>_bt_readpage (3 samples, 0.01%)</title><rect x="20.2" y="459" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="23.17" y="469.5" ></text>
</g>
<g >
<title>hash_search (135 samples, 0.46%)</title><rect x="572.3" y="555" width="6.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="575.33" y="565.5" ></text>
</g>
<g >
<title>BufferAlloc (3 samples, 0.01%)</title><rect x="40.3" y="427" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="43.29" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (7 samples, 0.02%)</title><rect x="956.2" y="187" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="959.24" y="197.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (15 samples, 0.05%)</title><rect x="20.9" y="619" width="0.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="23.92" y="629.5" ></text>
</g>
<g >
<title>_bt_first (3 samples, 0.01%)</title><rect x="42.5" y="539" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="45.53" y="549.5" ></text>
</g>
<g >
<title>TypeCreate (3 samples, 0.01%)</title><rect x="1293.9" y="411" width="0.1" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text  x="1296.86" y="421.5" ></text>
</g>
<g >
<title>TransactionIdPrecedes (5 samples, 0.02%)</title><rect x="1343.6" y="715" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1346.61" y="725.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (4 samples, 0.01%)</title><rect x="1287.6" y="347" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1290.56" y="357.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (6 samples, 0.02%)</title><rect x="1019.2" y="235" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1022.16" y="245.5" ></text>
</g>
<g >
<title>index_getnext_tid (3 samples, 0.01%)</title><rect x="1279.5" y="571" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1282.48" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (5 samples, 0.02%)</title><rect x="771.1" y="539" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="774.10" y="549.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (4 samples, 0.01%)</title><rect x="1293.3" y="283" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1296.30" y="293.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (24 samples, 0.08%)</title><rect x="1299.0" y="747" width="1.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1301.99" y="757.5" ></text>
</g>
<g >
<title>tag_hash (3 samples, 0.01%)</title><rect x="1287.3" y="139" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1290.28" y="149.5" ></text>
</g>
<g >
<title>TupleDescAttr (3 samples, 0.01%)</title><rect x="718.7" y="459" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="721.74" y="469.5" ></text>
</g>
<g >
<title>exec_stmt_block (5 samples, 0.02%)</title><rect x="17.5" y="475" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="20.47" y="485.5" ></text>
</g>
<g >
<title>PreCommit_Notify (9 samples, 0.03%)</title><rect x="1157.1" y="603" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1160.11" y="613.5" ></text>
</g>
<g >
<title>btint4cmp (22 samples, 0.07%)</title><rect x="993.3" y="331" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="996.30" y="341.5" ></text>
</g>
<g >
<title>ScanPgRelation (10 samples, 0.03%)</title><rect x="1288.7" y="267" width="0.5" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1291.73" y="277.5" ></text>
</g>
<g >
<title>psi_group_change (21 samples, 0.07%)</title><rect x="196.8" y="315" width="1.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="199.78" y="325.5" ></text>
</g>
<g >
<title>index_create (7 samples, 0.02%)</title><rect x="38.0" y="395" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="40.96" y="405.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (5 samples, 0.02%)</title><rect x="17.5" y="523" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="20.47" y="533.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (11 samples, 0.04%)</title><rect x="39.3" y="635" width="0.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="42.31" y="645.5" ></text>
</g>
<g >
<title>tcp_release_cb (3 samples, 0.01%)</title><rect x="250.5" y="443" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="253.49" y="453.5" ></text>
</g>
<g >
<title>LWLockAcquire (4 samples, 0.01%)</title><rect x="30.6" y="219" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="33.58" y="229.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (10 samples, 0.03%)</title><rect x="38.5" y="715" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="41.52" y="725.5" ></text>
</g>
<g >
<title>systable_inplace_update_begin (3 samples, 0.01%)</title><rect x="1292.2" y="379" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1295.23" y="389.5" ></text>
</g>
<g >
<title>xactGetCommittedChildren (3 samples, 0.01%)</title><rect x="1219.5" y="587" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1222.47" y="597.5" ></text>
</g>
<g >
<title>AllocSetFree (8 samples, 0.03%)</title><rect x="1220.6" y="555" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1223.63" y="565.5" ></text>
</g>
<g >
<title>SearchCatCache1 (97 samples, 0.33%)</title><rect x="624.1" y="491" width="4.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="627.14" y="501.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (21 samples, 0.07%)</title><rect x="215.1" y="427" width="1.0" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="218.07" y="437.5" ></text>
</g>
<g >
<title>read_tsc (5 samples, 0.02%)</title><rect x="426.0" y="123" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="429.02" y="133.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (16 samples, 0.05%)</title><rect x="1078.1" y="315" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1081.10" y="325.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (4 samples, 0.01%)</title><rect x="1385.3" y="427" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1388.29" y="437.5" ></text>
</g>
<g >
<title>AllocSetFree (10 samples, 0.03%)</title><rect x="1114.4" y="539" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1117.41" y="549.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (8 samples, 0.03%)</title><rect x="1009.9" y="363" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1012.87" y="373.5" ></text>
</g>
<g >
<title>tas (75 samples, 0.25%)</title><rect x="843.1" y="523" width="3.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="846.12" y="533.5" ></text>
</g>
<g >
<title>deleteSharedDependencyRecordsFor (5 samples, 0.02%)</title><rect x="82.3" y="219" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="85.34" y="229.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (3 samples, 0.01%)</title><rect x="689.4" y="427" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="692.38" y="437.5" ></text>
</g>
<g >
<title>_bt_readpage (5 samples, 0.02%)</title><rect x="1384.8" y="395" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1387.77" y="405.5" ></text>
</g>
<g >
<title>ExecScanReScan (31 samples, 0.10%)</title><rect x="912.0" y="475" width="1.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="915.00" y="485.5" ></text>
</g>
<g >
<title>list_nth_cell (3 samples, 0.01%)</title><rect x="890.9" y="635" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="893.86" y="645.5" ></text>
</g>
<g >
<title>lappend (5 samples, 0.02%)</title><rect x="660.6" y="475" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="663.59" y="485.5" ></text>
</g>
<g >
<title>LWLockRelease (10 samples, 0.03%)</title><rect x="943.0" y="363" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="945.99" y="373.5" ></text>
</g>
<g >
<title>ReadBuffer_common (343 samples, 1.16%)</title><rect x="943.8" y="331" width="16.0" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="946.83" y="341.5" ></text>
</g>
<g >
<title>tcp_options_write (6 samples, 0.02%)</title><rect x="464.0" y="395" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="467.01" y="405.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (11 samples, 0.04%)</title><rect x="37.9" y="523" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="40.86" y="533.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (260 samples, 0.88%)</title><rect x="978.9" y="347" width="12.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="981.93" y="357.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (49 samples, 0.17%)</title><rect x="1275.5" y="443" width="2.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1278.52" y="453.5" ></text>
</g>
<g >
<title>ReadBuffer (13 samples, 0.04%)</title><rect x="1337.2" y="715" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1340.22" y="725.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (14 samples, 0.05%)</title><rect x="1106.6" y="507" width="0.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1109.57" y="517.5" ></text>
</g>
<g >
<title>AllocSetAlloc (22 samples, 0.07%)</title><rect x="1132.3" y="603" width="1.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1135.33" y="613.5" ></text>
</g>
<g >
<title>ReadBufferExtended (8 samples, 0.03%)</title><rect x="1067.2" y="315" width="0.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1070.23" y="325.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (6 samples, 0.02%)</title><rect x="1311.4" y="715" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1314.36" y="725.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (5 samples, 0.02%)</title><rect x="68.4" y="203" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="71.43" y="213.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (139 samples, 0.47%)</title><rect x="30.0" y="683" width="6.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="32.97" y="693.5" ></text>
</g>
<g >
<title>ProcessUtility (13 samples, 0.04%)</title><rect x="22.5" y="539" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="25.46" y="549.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (104 samples, 0.35%)</title><rect x="223.1" y="475" width="4.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="226.05" y="485.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (8 samples, 0.03%)</title><rect x="705.4" y="507" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="708.44" y="517.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (6 samples, 0.02%)</title><rect x="1133.6" y="651" width="0.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="1136.64" y="661.5" ></text>
</g>
<g >
<title>ExecDropStmt (25 samples, 0.08%)</title><rect x="1294.0" y="443" width="1.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1297.05" y="453.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (9 samples, 0.03%)</title><rect x="1289.8" y="379" width="0.5" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1292.85" y="389.5" ></text>
</g>
<g >
<title>ExecInitInterpreter (5 samples, 0.02%)</title><rect x="653.9" y="443" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="656.91" y="453.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (7 samples, 0.02%)</title><rect x="38.5" y="507" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="41.52" y="517.5" ></text>
</g>
<g >
<title>IsTransactionStmtList (5 samples, 0.02%)</title><rect x="890.8" y="651" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="893.77" y="661.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (30 samples, 0.10%)</title><rect x="36.5" y="443" width="1.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="39.46" y="453.5" ></text>
</g>
<g >
<title>MemoryContextReset (28 samples, 0.09%)</title><rect x="1097.9" y="539" width="1.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1100.89" y="549.5" ></text>
</g>
<g >
<title>SearchCatCache2 (4 samples, 0.01%)</title><rect x="20.5" y="507" width="0.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="23.50" y="517.5" ></text>
</g>
<g >
<title>ChooseIndexName (3 samples, 0.01%)</title><rect x="36.5" y="379" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="39.46" y="389.5" ></text>
</g>
<g >
<title>pq_sendint8 (9 samples, 0.03%)</title><rect x="307.2" y="635" width="0.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="310.15" y="645.5" ></text>
</g>
<g >
<title>hash_bytes (53 samples, 0.18%)</title><rect x="1173.9" y="475" width="2.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1176.92" y="485.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (10 samples, 0.03%)</title><rect x="1284.6" y="747" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1287.62" y="757.5" ></text>
</g>
<g >
<title>LWLockRelease (6 samples, 0.02%)</title><rect x="26.1" y="747" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="29.05" y="757.5" ></text>
</g>
<g >
<title>pg_atomic_write_u32_impl (5 samples, 0.02%)</title><rect x="1015.8" y="299" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1018.80" y="309.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (15 samples, 0.05%)</title><rect x="20.9" y="667" width="0.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="23.92" y="677.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (20 samples, 0.07%)</title><rect x="679.7" y="459" width="0.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="682.67" y="469.5" ></text>
</g>
<g >
<title>StmtPlanRequiresRevalidation (11 samples, 0.04%)</title><rect x="580.1" y="619" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="583.13" y="629.5" ></text>
</g>
<g >
<title>index_getnext_slot (96 samples, 0.32%)</title><rect x="13.0" y="459" width="4.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="15.99" y="469.5" ></text>
</g>
<g >
<title>ExecutorRun (810 samples, 2.74%)</title><rect x="43.7" y="635" width="37.8" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="46.70" y="645.5" >Ex..</text>
</g>
<g >
<title>kmalloc_reserve (181 samples, 0.61%)</title><rect x="488.6" y="411" width="8.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="491.56" y="421.5" ></text>
</g>
<g >
<title>ExecIndexBuildScanKeys (531 samples, 1.80%)</title><rect x="661.3" y="539" width="24.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="664.33" y="549.5" >E..</text>
</g>
<g >
<title>ItemPointerGetOffsetNumber (5 samples, 0.02%)</title><rect x="964.9" y="363" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="967.93" y="373.5" ></text>
</g>
<g >
<title>perform_spin_delay (7 samples, 0.02%)</title><rect x="740.5" y="427" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="743.53" y="437.5" ></text>
</g>
<g >
<title>pg_client_to_server (57 samples, 0.19%)</title><rect x="797.0" y="635" width="2.7" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="800.00" y="645.5" ></text>
</g>
<g >
<title>pq_sendbyte (11 samples, 0.04%)</title><rect x="307.1" y="651" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="310.06" y="661.5" ></text>
</g>
<g >
<title>calc_bucket (6 samples, 0.02%)</title><rect x="527.1" y="571" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="530.11" y="581.5" ></text>
</g>
<g >
<title>smgrcreate (4 samples, 0.01%)</title><rect x="34.3" y="315" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="37.27" y="325.5" ></text>
</g>
<g >
<title>futex_wait (5 samples, 0.02%)</title><rect x="1231.3" y="411" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1234.32" y="421.5" ></text>
</g>
<g >
<title>palloc (11 samples, 0.04%)</title><rect x="639.0" y="459" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="641.98" y="469.5" ></text>
</g>
<g >
<title>RemoveRelations (6 samples, 0.02%)</title><rect x="37.5" y="379" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="40.54" y="389.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (11 samples, 0.04%)</title><rect x="37.9" y="619" width="0.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="40.86" y="629.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (17 samples, 0.06%)</title><rect x="497.0" y="411" width="0.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="500.01" y="421.5" ></text>
</g>
<g >
<title>UnlockRelationId (3 samples, 0.01%)</title><rect x="1288.9" y="219" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1291.87" y="229.5" ></text>
</g>
<g >
<title>__update_load_avg_se (10 samples, 0.03%)</title><rect x="181.7" y="379" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="184.75" y="389.5" ></text>
</g>
<g >
<title>SearchSysCache1 (110 samples, 0.37%)</title><rect x="623.5" y="507" width="5.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="626.53" y="517.5" ></text>
</g>
<g >
<title>xactGetCommittedInvalidationMessages (12 samples, 0.04%)</title><rect x="1219.6" y="587" width="0.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1222.61" y="597.5" ></text>
</g>
<g >
<title>index_getnext_slot (6 samples, 0.02%)</title><rect x="1287.3" y="363" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1290.28" y="373.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (7 samples, 0.02%)</title><rect x="38.5" y="459" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="41.52" y="469.5" ></text>
</g>
<g >
<title>RemoveRelations (19 samples, 0.06%)</title><rect x="35.5" y="363" width="0.9" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="38.48" y="373.5" ></text>
</g>
<g >
<title>ExecInitExprRec (24 samples, 0.08%)</title><rect x="665.3" y="507" width="1.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="668.35" y="517.5" ></text>
</g>
<g >
<title>FastPathTransferRelationLocks (4 samples, 0.01%)</title><rect x="1295.6" y="331" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1298.59" y="341.5" ></text>
</g>
<g >
<title>_bt_next (27 samples, 0.09%)</title><rect x="902.4" y="411" width="1.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="905.39" y="421.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (12 samples, 0.04%)</title><rect x="30.4" y="251" width="0.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="33.40" y="261.5" ></text>
</g>
<g >
<title>LockBuffer (37 samples, 0.13%)</title><rect x="15.3" y="331" width="1.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="18.32" y="341.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (8 samples, 0.03%)</title><rect x="1109.0" y="459" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1112.00" y="469.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3 samples, 0.01%)</title><rect x="14.8" y="315" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="17.81" y="325.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (21 samples, 0.07%)</title><rect x="1290.5" y="283" width="1.0" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1293.50" y="293.5" ></text>
</g>
<g >
<title>int4eq (5 samples, 0.02%)</title><rect x="1384.8" y="331" width="0.2" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text  x="1387.77" y="341.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (31 samples, 0.10%)</title><rect x="58.4" y="235" width="1.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="61.40" y="245.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (4 samples, 0.01%)</title><rect x="1293.3" y="411" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1296.30" y="421.5" ></text>
</g>
<g >
<title>exec_stmt_block (24 samples, 0.08%)</title><rect x="1299.0" y="699" width="1.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1301.99" y="709.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (3 samples, 0.01%)</title><rect x="1340.1" y="715" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1343.11" y="725.5" ></text>
</g>
<g >
<title>sk_page_frag_refill (75 samples, 0.25%)</title><rect x="477.2" y="443" width="3.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="480.22" y="453.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (57 samples, 0.19%)</title><rect x="81.5" y="539" width="2.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="84.50" y="549.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (3 samples, 0.01%)</title><rect x="1281.6" y="651" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1284.58" y="661.5" ></text>
</g>
<g >
<title>tcp_update_pacing_rate (6 samples, 0.02%)</title><rect x="419.4" y="139" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="422.44" y="149.5" ></text>
</g>
<g >
<title>index_build (5 samples, 0.02%)</title><rect x="37.0" y="363" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="39.98" y="373.5" ></text>
</g>
<g >
<title>bpf_skops_write_hdr_opt.isra.0 (5 samples, 0.02%)</title><rect x="462.6" y="395" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="465.61" y="405.5" ></text>
</g>
<g >
<title>LockAcquireExtended (5 samples, 0.02%)</title><rect x="1295.6" y="347" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1298.59" y="357.5" ></text>
</g>
<g >
<title>index_getattr (15 samples, 0.05%)</title><rect x="1075.4" y="331" width="0.7" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1078.44" y="341.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (14 samples, 0.05%)</title><rect x="1294.0" y="315" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1297.05" y="325.5" ></text>
</g>
<g >
<title>put_prev_task_fair (8 samples, 0.03%)</title><rect x="214.6" y="427" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="217.56" y="437.5" ></text>
</g>
<g >
<title>message_level_is_interesting (6 samples, 0.02%)</title><rect x="860.9" y="587" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="863.90" y="597.5" ></text>
</g>
<g >
<title>ExecutorRun (3 samples, 0.01%)</title><rect x="891.7" y="635" width="0.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="894.75" y="645.5" ></text>
</g>
<g >
<title>index_create (4 samples, 0.01%)</title><rect x="1269.0" y="587" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1271.98" y="597.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (135 samples, 0.46%)</title><rect x="191.9" y="379" width="6.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="194.87" y="389.5" ></text>
</g>
<g >
<title>exec_stmt_block (185 samples, 0.63%)</title><rect x="1287.2" y="619" width="8.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1290.18" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (34 samples, 0.11%)</title><rect x="15.3" y="283" width="1.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="18.32" y="293.5" ></text>
</g>
<g >
<title>expr_setup_walker (10 samples, 0.03%)</title><rect x="652.5" y="395" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="655.51" y="405.5" ></text>
</g>
<g >
<title>index_getnext_tid (69 samples, 0.23%)</title><rect x="901.7" y="443" width="3.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="904.73" y="453.5" ></text>
</g>
<g >
<title>bms_copy (26 samples, 0.09%)</title><rect x="765.1" y="571" width="1.2" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="768.13" y="581.5" ></text>
</g>
<g >
<title>LWLockAcquire (38 samples, 0.13%)</title><rect x="1085.5" y="315" width="1.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1088.47" y="325.5" ></text>
</g>
<g >
<title>uint32_hash (27 samples, 0.09%)</title><rect x="814.6" y="507" width="1.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="817.60" y="517.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat (66 samples, 0.22%)</title><rect x="1150.7" y="603" width="3.1" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text  x="1153.67" y="613.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (10 samples, 0.03%)</title><rect x="1387.3" y="363" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1390.29" y="373.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (3 samples, 0.01%)</title><rect x="25.0" y="731" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="27.98" y="741.5" ></text>
</g>
<g >
<title>kfree (9 samples, 0.03%)</title><rect x="413.0" y="107" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="416.05" y="117.5" ></text>
</g>
<g >
<title>tcp_cleanup_rbuf (9 samples, 0.03%)</title><rect x="286.6" y="443" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="289.62" y="453.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,662 samples, 9.00%)</title><rect x="113.5" y="523" width="124.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="116.52" y="533.5" >do_syscall_64</text>
</g>
<g >
<title>standard_ExecutorStart (3,361 samples, 11.37%)</title><rect x="610.4" y="603" width="156.8" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="613.37" y="613.5" >standard_Executo..</text>
</g>
<g >
<title>AllocSetFree (7 samples, 0.02%)</title><rect x="772.5" y="603" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="775.50" y="613.5" ></text>
</g>
<g >
<title>SearchCatCache1 (47 samples, 0.16%)</title><rect x="714.5" y="459" width="2.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="717.54" y="469.5" ></text>
</g>
<g >
<title>CreateExprContext (269 samples, 0.91%)</title><rect x="632.0" y="523" width="12.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="634.98" y="533.5" ></text>
</g>
<g >
<title>UnlockBufHdr (10 samples, 0.03%)</title><rect x="1015.6" y="331" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1018.56" y="341.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (17 samples, 0.06%)</title><rect x="1232.0" y="523" width="0.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1234.97" y="533.5" ></text>
</g>
<g >
<title>internal_putbytes (3 samples, 0.01%)</title><rect x="1359.3" y="715" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1362.29" y="725.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (371 samples, 1.25%)</title><rect x="220.4" y="507" width="17.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="223.44" y="517.5" ></text>
</g>
<g >
<title>load_new_mm_cr3 (28 samples, 0.09%)</title><rect x="1381.7" y="603" width="1.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1384.69" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (34 samples, 0.11%)</title><rect x="566.6" y="523" width="1.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="569.59" y="533.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irq (3 samples, 0.01%)</title><rect x="430.5" y="251" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="433.45" y="261.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (39 samples, 0.13%)</title><rect x="1285.2" y="747" width="1.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1288.18" y="757.5" ></text>
</g>
<g >
<title>should_output_to_server (3 samples, 0.01%)</title><rect x="779.1" y="635" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="782.08" y="645.5" ></text>
</g>
<g >
<title>LockRelationOid (3 samples, 0.01%)</title><rect x="1295.2" y="347" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1298.21" y="357.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (32 samples, 0.11%)</title><rect x="1088.4" y="299" width="1.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1091.37" y="309.5" ></text>
</g>
<g >
<title>AllocSetFree (5 samples, 0.02%)</title><rect x="1207.8" y="555" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1210.85" y="565.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (3 samples, 0.01%)</title><rect x="392.0" y="59" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="394.95" y="69.5" ></text>
</g>
<g >
<title>AllocSetAlloc (29 samples, 0.10%)</title><rect x="777.0" y="603" width="1.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="780.03" y="613.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.03%)</title><rect x="639.1" y="443" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="642.07" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (5 samples, 0.02%)</title><rect x="33.9" y="235" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="36.90" y="245.5" ></text>
</g>
<g >
<title>pg_ltoa (3 samples, 0.01%)</title><rect x="1364.6" y="715" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1367.61" y="725.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (5 samples, 0.02%)</title><rect x="528.2" y="571" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="531.23" y="581.5" ></text>
</g>
<g >
<title>tcp_event_new_data_sent (137 samples, 0.46%)</title><rect x="468.7" y="411" width="6.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="471.72" y="421.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (6 samples, 0.02%)</title><rect x="1254.7" y="587" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1257.66" y="597.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (6 samples, 0.02%)</title><rect x="947.4" y="187" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="950.42" y="197.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (6 samples, 0.02%)</title><rect x="1284.3" y="747" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1287.34" y="757.5" ></text>
</g>
<g >
<title>btgettuple (3 samples, 0.01%)</title><rect x="1389.0" y="587" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1392.02" y="597.5" ></text>
</g>
<g >
<title>ipv4_dst_check (4 samples, 0.01%)</title><rect x="338.7" y="363" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="341.75" y="373.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (33 samples, 0.11%)</title><rect x="430.7" y="283" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="433.69" y="293.5" ></text>
</g>
<g >
<title>hash_bytes (39 samples, 0.13%)</title><rect x="553.1" y="539" width="1.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="556.06" y="549.5" ></text>
</g>
<g >
<title>pairingheap_remove (6 samples, 0.02%)</title><rect x="1204.1" y="491" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1207.11" y="501.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (11 samples, 0.04%)</title><rect x="1277.8" y="619" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1280.80" y="629.5" ></text>
</g>
<g >
<title>napi_consume_skb (312 samples, 1.06%)</title><rect x="433.0" y="283" width="14.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="436.02" y="293.5" ></text>
</g>
<g >
<title>ShutdownExprContext (4 samples, 0.01%)</title><rect x="913.8" y="475" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="916.82" y="485.5" ></text>
</g>
<g >
<title>schedule (5 samples, 0.02%)</title><rect x="1231.3" y="379" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1234.32" y="389.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (7 samples, 0.02%)</title><rect x="33.1" y="283" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="36.06" y="293.5" ></text>
</g>
<g >
<title>spin_delay (36 samples, 0.12%)</title><rect x="841.0" y="507" width="1.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="844.01" y="517.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (58 samples, 0.20%)</title><rect x="689.9" y="491" width="2.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="692.94" y="501.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (49 samples, 0.17%)</title><rect x="1275.5" y="459" width="2.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1278.52" y="469.5" ></text>
</g>
<g >
<title>reportDependentObjects (11 samples, 0.04%)</title><rect x="1294.7" y="395" width="0.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1297.70" y="405.5" ></text>
</g>
<g >
<title>index_insert (10 samples, 0.03%)</title><rect x="1289.2" y="363" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1292.19" y="373.5" ></text>
</g>
<g >
<title>AllocSetFree (4 samples, 0.01%)</title><rect x="1196.4" y="459" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1199.41" y="469.5" ></text>
</g>
<g >
<title>InitPlan (3,164 samples, 10.70%)</title><rect x="618.9" y="587" width="147.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="621.86" y="597.5" >InitPlan</text>
</g>
<g >
<title>exec_toplevel_block (185 samples, 0.63%)</title><rect x="1287.2" y="635" width="8.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1290.18" y="645.5" ></text>
</g>
<g >
<title>switch_fpu_return (192 samples, 0.65%)</title><rect x="228.7" y="475" width="9.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="231.70" y="485.5" ></text>
</g>
<g >
<title>ReadBuffer_common (6 samples, 0.02%)</title><rect x="1287.3" y="251" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1290.28" y="261.5" ></text>
</g>
<g >
<title>pq_writeint32 (5 samples, 0.02%)</title><rect x="1105.2" y="507" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1108.22" y="517.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (3 samples, 0.01%)</title><rect x="21.7" y="683" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="24.71" y="693.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (9 samples, 0.03%)</title><rect x="779.5" y="603" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="782.46" y="613.5" ></text>
</g>
<g >
<title>deleteObjectsInList (7 samples, 0.02%)</title><rect x="1389.2" y="667" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1392.16" y="677.5" ></text>
</g>
<g >
<title>BackendStartup (101 samples, 0.34%)</title><rect x="13.0" y="747" width="4.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="15.99" y="757.5" ></text>
</g>
<g >
<title>SearchCatCache2 (3 samples, 0.01%)</title><rect x="22.5" y="235" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="25.46" y="245.5" ></text>
</g>
<g >
<title>hash_seq_search (107 samples, 0.36%)</title><rect x="1210.3" y="587" width="5.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1213.27" y="597.5" ></text>
</g>
<g >
<title>_bt_readpage (134 samples, 0.45%)</title><rect x="1019.5" y="363" width="6.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1022.48" y="373.5" ></text>
</g>
<g >
<title>_bt_doinsert (4 samples, 0.01%)</title><rect x="28.4" y="363" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="31.39" y="373.5" ></text>
</g>
<g >
<title>TablespaceCreateDbspace (3 samples, 0.01%)</title><rect x="1298.9" y="363" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1301.85" y="373.5" ></text>
</g>
<g >
<title>epoll_wait (2,765 samples, 9.35%)</title><rect x="109.5" y="555" width="129.0" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="112.50" y="565.5" >epoll_wait</text>
</g>
<g >
<title>DropRelationAllLocalBuffers (6 samples, 0.02%)</title><rect x="1135.0" y="251" width="0.3" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text  x="1138.04" y="261.5" ></text>
</g>
<g >
<title>newNode (3 samples, 0.01%)</title><rect x="1304.9" y="715" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1307.87" y="725.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (59 samples, 0.20%)</title><rect x="1250.5" y="571" width="2.8" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1253.55" y="581.5" ></text>
</g>
<g >
<title>palloc (24 samples, 0.08%)</title><rect x="683.9" y="523" width="1.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="686.92" y="533.5" ></text>
</g>
<g >
<title>enable_statement_timeout (5 samples, 0.02%)</title><rect x="1134.0" y="635" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1136.97" y="645.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (4 samples, 0.01%)</title><rect x="22.5" y="395" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="25.46" y="405.5" ></text>
</g>
<g >
<title>RemoveRelations (27 samples, 0.09%)</title><rect x="1276.5" y="347" width="1.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1279.54" y="357.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (10 samples, 0.03%)</title><rect x="1387.3" y="347" width="0.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1390.29" y="357.5" ></text>
</g>
<g >
<title>BasicOpenFilePerm (3 samples, 0.01%)</title><rect x="34.3" y="251" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="37.27" y="261.5" ></text>
</g>
<g >
<title>check_preempt_curr (3 samples, 0.01%)</title><rect x="197.8" y="331" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="200.85" y="341.5" ></text>
</g>
<g >
<title>systable_getnext (6 samples, 0.02%)</title><rect x="1287.3" y="379" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1290.28" y="389.5" ></text>
</g>
<g >
<title>ExecFetchSlotHeapTuple (6 samples, 0.02%)</title><rect x="1280.7" y="731" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1283.65" y="741.5" ></text>
</g>
<g >
<title>CreateTemplateTupleDesc (15 samples, 0.05%)</title><rect x="710.3" y="491" width="0.7" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="713.29" y="501.5" ></text>
</g>
<g >
<title>hash_bytes (3 samples, 0.01%)</title><rect x="1287.3" y="123" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1290.28" y="133.5" ></text>
</g>
<g >
<title>PreCommit_Notify (4 samples, 0.01%)</title><rect x="1335.1" y="715" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1338.12" y="725.5" ></text>
</g>
<g >
<title>hash_initial_lookup (6 samples, 0.02%)</title><rect x="757.7" y="459" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="760.71" y="469.5" ></text>
</g>
<g >
<title>do_sys_openat2 (3 samples, 0.01%)</title><rect x="34.3" y="171" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text  x="37.27" y="181.5" ></text>
</g>
<g >
<title>psi_task_change (3 samples, 0.01%)</title><rect x="201.1" y="363" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="204.07" y="373.5" ></text>
</g>
<g >
<title>detach_task (10 samples, 0.03%)</title><rect x="201.3" y="379" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="204.26" y="389.5" ></text>
</g>
<g >
<title>agg_fill_hash_table (3 samples, 0.01%)</title><rect x="905.4" y="507" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="908.37" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (52 samples, 0.18%)</title><rect x="583.5" y="587" width="2.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="586.53" y="597.5" ></text>
</g>
<g >
<title>palloc (20 samples, 0.07%)</title><rect x="786.1" y="635" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="789.08" y="645.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (3 samples, 0.01%)</title><rect x="1133.2" y="571" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1136.22" y="581.5" ></text>
</g>
<g >
<title>rb_insert_color (4 samples, 0.01%)</title><rect x="471.3" y="395" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="474.34" y="405.5" ></text>
</g>
<g >
<title>PageIsNew (55 samples, 0.19%)</title><rect x="1082.4" y="331" width="2.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1085.39" y="341.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (91 samples, 0.31%)</title><rect x="201.8" y="363" width="4.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="204.77" y="373.5" ></text>
</g>
<g >
<title>clear_bhb_loop (17 samples, 0.06%)</title><rect x="111.3" y="539" width="0.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="114.27" y="549.5" ></text>
</g>
<g >
<title>AllocSetFree (4 samples, 0.01%)</title><rect x="1131.3" y="619" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1134.26" y="629.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (10 samples, 0.03%)</title><rect x="802.0" y="603" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="805.00" y="613.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (10 samples, 0.03%)</title><rect x="1277.9" y="539" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1280.85" y="549.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (3 samples, 0.01%)</title><rect x="64.9" y="107" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="67.88" y="117.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (810 samples, 2.74%)</title><rect x="43.7" y="603" width="37.8" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="46.70" y="613.5" >st..</text>
</g>
<g >
<title>FunctionCall1Coll (4 samples, 0.01%)</title><rect x="1385.3" y="555" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1388.29" y="565.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (13 samples, 0.04%)</title><rect x="22.5" y="715" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="25.46" y="725.5" ></text>
</g>
<g >
<title>BufTableHashCode (31 samples, 0.10%)</title><rect x="946.3" y="251" width="1.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="949.30" y="261.5" ></text>
</g>
<g >
<title>ExecutePlan (11 samples, 0.04%)</title><rect x="1384.8" y="603" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1387.77" y="613.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (3 samples, 0.01%)</title><rect x="1388.5" y="411" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1391.51" y="421.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (22 samples, 0.07%)</title><rect x="19.8" y="715" width="1.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="22.85" y="725.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (19 samples, 0.06%)</title><rect x="665.5" y="491" width="0.9" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="668.49" y="501.5" ></text>
</g>
<g >
<title>BufTableHashCode (3 samples, 0.01%)</title><rect x="1287.3" y="171" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1290.28" y="181.5" ></text>
</g>
<g >
<title>index_getnext_tid (3 samples, 0.01%)</title><rect x="20.7" y="523" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="23.73" y="533.5" ></text>
</g>
<g >
<title>recordMultipleDependencies (8 samples, 0.03%)</title><rect x="1292.5" y="395" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1295.51" y="405.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (26 samples, 0.09%)</title><rect x="1088.6" y="283" width="1.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1091.65" y="293.5" ></text>
</g>
<g >
<title>SearchSysCache2 (4 samples, 0.01%)</title><rect x="1287.6" y="395" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1290.56" y="405.5" ></text>
</g>
<g >
<title>ExecScanExtended (3,850 samples, 13.02%)</title><rect x="914.3" y="491" width="179.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="917.33" y="501.5" >ExecScanExtended</text>
</g>
<g >
<title>pg_ltoa (5 samples, 0.02%)</title><rect x="1102.3" y="491" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1105.32" y="501.5" ></text>
</g>
<g >
<title>SPI_commit (41 samples, 0.14%)</title><rect x="1134.2" y="379" width="1.9" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="1137.20" y="389.5" ></text>
</g>
<g >
<title>index_getprocinfo (19 samples, 0.06%)</title><rect x="1091.2" y="379" width="0.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1094.17" y="389.5" ></text>
</g>
<g >
<title>InvalidateCatalogSnapshot (3 samples, 0.01%)</title><rect x="811.4" y="539" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="814.38" y="549.5" ></text>
</g>
<g >
<title>decimalLength64 (15 samples, 0.05%)</title><rect x="1348.3" y="715" width="0.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1351.32" y="725.5" ></text>
</g>
<g >
<title>fmgr_info (30 samples, 0.10%)</title><rect x="591.3" y="635" width="1.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="594.33" y="645.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (8 samples, 0.03%)</title><rect x="1126.3" y="603" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1129.27" y="613.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (45 samples, 0.15%)</title><rect x="1192.4" y="459" width="2.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1195.35" y="469.5" ></text>
</g>
<g >
<title>kmalloc_size_roundup (4 samples, 0.01%)</title><rect x="496.8" y="395" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="499.82" y="405.5" ></text>
</g>
<g >
<title>save_fpregs_to_fpstate (11 samples, 0.04%)</title><rect x="1384.0" y="731" width="0.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1386.98" y="741.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (5 samples, 0.02%)</title><rect x="1298.6" y="331" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1301.57" y="341.5" ></text>
</g>
<g >
<title>systable_getnext (5 samples, 0.02%)</title><rect x="39.6" y="539" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="42.59" y="549.5" ></text>
</g>
<g >
<title>btgettuple (39 samples, 0.13%)</title><rect x="902.0" y="427" width="1.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="905.01" y="437.5" ></text>
</g>
<g >
<title>CatCacheInvalidate (33 samples, 0.11%)</title><rect x="816.2" y="523" width="1.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="819.19" y="533.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (10 samples, 0.03%)</title><rect x="54.3" y="219" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="57.34" y="229.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (6 samples, 0.02%)</title><rect x="1007.9" y="347" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1010.91" y="357.5" ></text>
</g>
<g >
<title>btgettuple (3 samples, 0.01%)</title><rect x="1279.5" y="555" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1282.48" y="565.5" ></text>
</g>
<g >
<title>BufferIsValid (6 samples, 0.02%)</title><rect x="18.6" y="747" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="21.63" y="757.5" ></text>
</g>
<g >
<title>SearchCatCache1 (44 samples, 0.15%)</title><rect x="1108.4" y="491" width="2.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1111.44" y="501.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (11 samples, 0.04%)</title><rect x="1384.8" y="571" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1387.77" y="581.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (14 samples, 0.05%)</title><rect x="735.2" y="427" width="0.7" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="738.21" y="437.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (3 samples, 0.01%)</title><rect x="1294.5" y="139" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1297.47" y="149.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (45 samples, 0.15%)</title><rect x="714.6" y="443" width="2.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="717.63" y="453.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (16 samples, 0.05%)</title><rect x="1242.9" y="507" width="0.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1245.89" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (3 samples, 0.01%)</title><rect x="16.9" y="267" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="19.91" y="277.5" ></text>
</g>
<g >
<title>ExecDropStmt (19 samples, 0.06%)</title><rect x="35.5" y="379" width="0.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="38.48" y="389.5" ></text>
</g>
<g >
<title>AbortStrongLockAcquire (6 samples, 0.02%)</title><rect x="1305.6" y="715" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1308.62" y="725.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (18 samples, 0.06%)</title><rect x="1298.2" y="491" width="0.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1301.15" y="501.5" ></text>
</g>
<g >
<title>AllocSetDelete (9 samples, 0.03%)</title><rect x="1113.3" y="523" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1116.29" y="533.5" ></text>
</g>
<g >
<title>AllocSetAlloc (11 samples, 0.04%)</title><rect x="609.6" y="571" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="612.62" y="581.5" ></text>
</g>
<g >
<title>_bt_search (3 samples, 0.01%)</title><rect x="19.9" y="459" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="22.94" y="469.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (5 samples, 0.02%)</title><rect x="21.2" y="459" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="24.15" y="469.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (6 samples, 0.02%)</title><rect x="964.4" y="363" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="967.37" y="373.5" ></text>
</g>
<g >
<title>_bt_steppage (4 samples, 0.01%)</title><rect x="903.6" y="411" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="906.65" y="421.5" ></text>
</g>
<g >
<title>ProcessAutoVacLauncherInterrupts (3 samples, 0.01%)</title><rect x="1268.1" y="667" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1271.14" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberRelationRef (3 samples, 0.01%)</title><rect x="756.1" y="475" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="759.12" y="485.5" ></text>
</g>
<g >
<title>dlist_is_empty (10 samples, 0.03%)</title><rect x="1272.0" y="747" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1274.97" y="757.5" ></text>
</g>
<g >
<title>_int_malloc (94 samples, 0.32%)</title><rect x="1121.4" y="459" width="4.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1124.36" y="469.5" ></text>
</g>
<g >
<title>palloc0 (116 samples, 0.39%)</title><rect x="604.7" y="587" width="5.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="607.72" y="597.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (6 samples, 0.02%)</title><rect x="1260.7" y="587" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1263.68" y="597.5" ></text>
</g>
<g >
<title>index_create (9 samples, 0.03%)</title><rect x="22.5" y="459" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="25.46" y="469.5" ></text>
</g>
<g >
<title>tts_buffer_heap_init (5 samples, 0.02%)</title><rect x="1374.6" y="715" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1377.55" y="725.5" ></text>
</g>
<g >
<title>ProcessUtility (13 samples, 0.04%)</title><rect x="1295.2" y="443" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1298.21" y="453.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (19 samples, 0.06%)</title><rect x="591.8" y="603" width="0.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="594.84" y="613.5" ></text>
</g>
<g >
<title>table_index_build_scan (4 samples, 0.01%)</title><rect x="1387.8" y="379" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1390.76" y="389.5" ></text>
</g>
<g >
<title>index_create (39 samples, 0.13%)</title><rect x="19.8" y="731" width="1.9" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="22.85" y="741.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (4 samples, 0.01%)</title><rect x="1135.9" y="283" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1138.93" y="293.5" ></text>
</g>
<g >
<title>tas (5 samples, 0.02%)</title><rect x="561.5" y="507" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="564.51" y="517.5" ></text>
</g>
<g >
<title>fmgr_info (15 samples, 0.05%)</title><rect x="1106.5" y="523" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1109.52" y="533.5" ></text>
</g>
<g >
<title>exec_toplevel_block (11 samples, 0.04%)</title><rect x="37.9" y="603" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="40.86" y="613.5" ></text>
</g>
<g >
<title>CatalogTuplesMultiInsertWithInfo (4 samples, 0.01%)</title><rect x="1287.7" y="379" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1290.74" y="389.5" ></text>
</g>
<g >
<title>PredicateLockTID (7 samples, 0.02%)</title><rect x="965.8" y="363" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="968.81" y="373.5" ></text>
</g>
<g >
<title>systable_beginscan (4 samples, 0.01%)</title><rect x="1294.8" y="283" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="1297.84" y="293.5" ></text>
</g>
<g >
<title>systable_getnext (3 samples, 0.01%)</title><rect x="1288.3" y="251" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1291.30" y="261.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (9 samples, 0.03%)</title><rect x="1369.9" y="715" width="0.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="1372.89" y="725.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (21 samples, 0.07%)</title><rect x="865.1" y="619" width="1.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="868.14" y="629.5" ></text>
</g>
<g >
<title>enqueue_task_fair (3 samples, 0.01%)</title><rect x="990.9" y="251" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="993.92" y="261.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (5 samples, 0.02%)</title><rect x="572.0" y="523" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="574.96" y="533.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (18 samples, 0.06%)</title><rect x="248.9" y="443" width="0.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="251.86" y="453.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (11 samples, 0.04%)</title><rect x="1384.8" y="619" width="0.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1387.77" y="629.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (6 samples, 0.02%)</title><rect x="1375.8" y="715" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1378.81" y="725.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (24 samples, 0.08%)</title><rect x="599.7" y="603" width="1.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="602.68" y="613.5" ></text>
</g>
<g >
<title>tcp_small_queue_check.isra.0 (4 samples, 0.01%)</title><rect x="476.0" y="411" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="479.00" y="421.5" ></text>
</g>
<g >
<title>BufferGetLSNAtomic (81 samples, 0.27%)</title><rect x="1012.3" y="347" width="3.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1015.34" y="357.5" ></text>
</g>
<g >
<title>postmaster_child_launch (3 samples, 0.01%)</title><rect x="1268.3" y="683" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1271.33" y="693.5" ></text>
</g>
<g >
<title>CommitTransaction (37 samples, 0.13%)</title><rect x="1134.2" y="315" width="1.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1137.20" y="325.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (4 samples, 0.01%)</title><rect x="22.5" y="427" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="25.46" y="437.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (6 samples, 0.02%)</title><rect x="1386.1" y="715" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1389.13" y="725.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (6 samples, 0.02%)</title><rect x="35.1" y="283" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="38.06" y="293.5" ></text>
</g>
<g >
<title>pq_getmsgint (66 samples, 0.22%)</title><rect x="792.8" y="651" width="3.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="795.80" y="661.5" ></text>
</g>
<g >
<title>SearchCatCache1 (46 samples, 0.16%)</title><rect x="869.9" y="603" width="2.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="872.86" y="613.5" ></text>
</g>
<g >
<title>load_balance (128 samples, 0.43%)</title><rect x="200.2" y="395" width="6.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="203.18" y="405.5" ></text>
</g>
<g >
<title>BufferGetBlock (4 samples, 0.01%)</title><rect x="1022.4" y="331" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1025.38" y="341.5" ></text>
</g>
<g >
<title>exec_stmt_block (11 samples, 0.04%)</title><rect x="37.9" y="587" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="40.86" y="597.5" ></text>
</g>
<g >
<title>index_build (3 samples, 0.01%)</title><rect x="1389.0" y="683" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="1392.02" y="693.5" ></text>
</g>
<g >
<title>StmtPlanRequiresRevalidation (10 samples, 0.03%)</title><rect x="581.5" y="619" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="584.48" y="629.5" ></text>
</g>
<g >
<title>pg_checksum_block (7 samples, 0.02%)</title><rect x="1291.5" y="283" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1294.48" y="293.5" ></text>
</g>
<g >
<title>exec_stmts (49 samples, 0.17%)</title><rect x="1275.5" y="523" width="2.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1278.52" y="533.5" ></text>
</g>
<g >
<title>put_prev_entity (5 samples, 0.02%)</title><rect x="214.7" y="411" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="217.70" y="421.5" ></text>
</g>
<g >
<title>ExecFunctionScan (3 samples, 0.01%)</title><rect x="905.4" y="443" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="908.37" y="453.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (4 samples, 0.01%)</title><rect x="587.9" y="651" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="590.87" y="661.5" ></text>
</g>
<g >
<title>_bt_compare (671 samples, 2.27%)</title><rect x="1034.8" y="347" width="31.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1037.79" y="357.5" >_..</text>
</g>
<g >
<title>FastPathUnGrantRelationLock (88 samples, 0.30%)</title><rect x="1226.6" y="539" width="4.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1229.61" y="549.5" ></text>
</g>
<g >
<title>pq_putemptymessage (52 samples, 0.18%)</title><rect x="800.0" y="651" width="2.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="803.04" y="661.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (3 samples, 0.01%)</title><rect x="16.9" y="283" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="19.91" y="293.5" ></text>
</g>
<g >
<title>GetSnapshotData (93 samples, 0.31%)</title><rect x="582.4" y="635" width="4.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="585.41" y="645.5" ></text>
</g>
<g >
<title>ReadBuffer (13 samples, 0.04%)</title><rect x="1067.0" y="331" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1070.04" y="341.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (3 samples, 0.01%)</title><rect x="39.4" y="443" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="42.45" y="453.5" ></text>
</g>
<g >
<title>_bt_compare (3 samples, 0.01%)</title><rect x="1297.3" y="523" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1300.31" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (9 samples, 0.03%)</title><rect x="1018.0" y="283" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1020.99" y="293.5" ></text>
</g>
<g >
<title>tcp_rbtree_insert (8 samples, 0.03%)</title><rect x="474.6" y="395" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="477.56" y="405.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (4 samples, 0.01%)</title><rect x="170.8" y="395" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="173.78" y="405.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (11 samples, 0.04%)</title><rect x="959.3" y="267" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="962.28" y="277.5" ></text>
</g>
<g >
<title>pfree (22 samples, 0.07%)</title><rect x="1182.6" y="427" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1185.60" y="437.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (4 samples, 0.01%)</title><rect x="1293.3" y="363" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1296.30" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (6 samples, 0.02%)</title><rect x="1171.0" y="459" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1173.98" y="469.5" ></text>
</g>
<g >
<title>MemoryContextCreate (14 samples, 0.05%)</title><rect x="1117.4" y="539" width="0.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="1120.35" y="549.5" ></text>
</g>
<g >
<title>security_sock_rcv_skb (9 samples, 0.03%)</title><rect x="367.2" y="171" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="370.22" y="181.5" ></text>
</g>
<g >
<title>CatalogTupleInsert (10 samples, 0.03%)</title><rect x="1289.8" y="395" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1292.85" y="405.5" ></text>
</g>
<g >
<title>_bt_check_compare (4 samples, 0.01%)</title><rect x="21.2" y="411" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="24.20" y="421.5" ></text>
</g>
<g >
<title>_bt_first (3 samples, 0.01%)</title><rect x="1296.2" y="539" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1299.19" y="549.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (5 samples, 0.02%)</title><rect x="892.2" y="635" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="895.21" y="645.5" ></text>
</g>
<g >
<title>PathNameOpenFile (3 samples, 0.01%)</title><rect x="34.3" y="283" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="37.27" y="293.5" ></text>
</g>
<g >
<title>_bt_checkkeys (3 samples, 0.01%)</title><rect x="20.2" y="443" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="23.17" y="453.5" ></text>
</g>
<g >
<title>exec_stmts (49 samples, 0.17%)</title><rect x="1275.5" y="491" width="2.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1278.52" y="501.5" ></text>
</g>
<g >
<title>FastPathTransferRelationLocks (7 samples, 0.02%)</title><rect x="1299.5" y="395" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1302.51" y="405.5" ></text>
</g>
<g >
<title>fetch_att (12 samples, 0.04%)</title><rect x="923.2" y="283" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="926.20" y="293.5" ></text>
</g>
<g >
<title>ExecAssignScanProjectionInfo (7 samples, 0.02%)</title><rect x="1317.3" y="715" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1320.29" y="725.5" ></text>
</g>
<g >
<title>_bt_freestack (30 samples, 0.10%)</title><rect x="1006.8" y="379" width="1.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text  x="1009.79" y="389.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (23 samples, 0.08%)</title><rect x="888.4" y="619" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="891.43" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (13 samples, 0.04%)</title><rect x="1241.7" y="491" width="0.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1244.73" y="501.5" ></text>
</g>
<g >
<title>__kfree_skb (111 samples, 0.38%)</title><rect x="408.4" y="139" width="5.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="411.43" y="149.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (14 samples, 0.05%)</title><rect x="1279.3" y="715" width="0.7" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1282.30" y="725.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (8 samples, 0.03%)</title><rect x="1319.4" y="715" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1322.39" y="725.5" ></text>
</g>
<g >
<title>btinsert (4 samples, 0.01%)</title><rect x="28.4" y="379" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="31.39" y="389.5" ></text>
</g>
<g >
<title>AlterSequence (3 samples, 0.01%)</title><rect x="1388.5" y="395" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1391.51" y="405.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (20 samples, 0.07%)</title><rect x="1388.6" y="731" width="1.0" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1391.65" y="741.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (3 samples, 0.01%)</title><rect x="12.8" y="539" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="15.85" y="549.5" ></text>
</g>
<g >
<title>GetBufferDescriptor (5 samples, 0.02%)</title><rect x="23.7" y="747" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="26.72" y="757.5" ></text>
</g>
<g >
<title>update_curr (68 samples, 0.23%)</title><rect x="171.3" y="395" width="3.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="174.29" y="405.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (6 samples, 0.02%)</title><rect x="941.0" y="331" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="943.98" y="341.5" ></text>
</g>
<g >
<title>get_op_opfamily_properties (141 samples, 0.48%)</title><rect x="671.0" y="523" width="6.6" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="674.04" y="533.5" ></text>
</g>
<g >
<title>reportDependentObjects (3 samples, 0.01%)</title><rect x="42.0" y="683" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="44.97" y="693.5" ></text>
</g>
<g >
<title>HistoricSnapshotActive (20 samples, 0.07%)</title><rect x="586.8" y="635" width="0.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="589.75" y="645.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberRelationRef (5 samples, 0.02%)</title><rect x="928.1" y="395" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="931.15" y="405.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (5 samples, 0.02%)</title><rect x="35.5" y="299" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="38.53" y="309.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (10 samples, 0.03%)</title><rect x="1387.3" y="379" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1390.29" y="389.5" ></text>
</g>
<g >
<title>list_free (4 samples, 0.01%)</title><rect x="1195.8" y="427" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1198.80" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (5 samples, 0.02%)</title><rect x="1242.3" y="491" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1245.33" y="501.5" ></text>
</g>
<g >
<title>index_update_stats (4 samples, 0.01%)</title><rect x="37.0" y="347" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="40.02" y="357.5" ></text>
</g>
<g >
<title>btgettuple (11 samples, 0.04%)</title><rect x="1384.8" y="443" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1387.77" y="453.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (11 samples, 0.04%)</title><rect x="37.9" y="635" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="40.86" y="645.5" ></text>
</g>
<g >
<title>index_getattr (28 samples, 0.09%)</title><rect x="14.0" y="331" width="1.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="16.97" y="341.5" ></text>
</g>
<g >
<title>pollwake (368 samples, 1.24%)</title><rect x="380.2" y="107" width="17.2" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text  x="383.24" y="117.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (24 samples, 0.08%)</title><rect x="1299.0" y="635" width="1.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1301.99" y="645.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (5 samples, 0.02%)</title><rect x="779.6" y="571" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="782.64" y="581.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (29 samples, 0.10%)</title><rect x="1132.1" y="619" width="1.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1135.05" y="629.5" ></text>
</g>
<g >
<title>_bt_load (12 samples, 0.04%)</title><rect x="1291.5" y="363" width="0.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1294.48" y="373.5" ></text>
</g>
<g >
<title>EndImplicitTransactionBlock (5 samples, 0.02%)</title><rect x="1317.0" y="715" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1319.96" y="725.5" ></text>
</g>
<g >
<title>hash_search (5 samples, 0.02%)</title><rect x="103.1" y="443" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="106.11" y="453.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (139 samples, 0.47%)</title><rect x="30.0" y="427" width="6.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="32.97" y="437.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (3 samples, 0.01%)</title><rect x="1269.3" y="747" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="1272.26" y="757.5" ></text>
</g>
<g >
<title>palloc0 (53 samples, 0.18%)</title><rect x="681.4" y="523" width="2.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="684.45" y="533.5" ></text>
</g>
<g >
<title>index_getnext_tid (6 samples, 0.02%)</title><rect x="1357.2" y="715" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1360.24" y="725.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (3 samples, 0.01%)</title><rect x="248.4" y="459" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="251.39" y="469.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (4 samples, 0.01%)</title><rect x="1278.3" y="619" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1281.32" y="629.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (3 samples, 0.01%)</title><rect x="731.0" y="427" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="733.97" y="437.5" ></text>
</g>
<g >
<title>hash_search (109 samples, 0.37%)</title><rect x="1171.3" y="507" width="5.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1174.35" y="517.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1232.2" y="427" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1235.16" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (21 samples, 0.07%)</title><rect x="1088.9" y="251" width="1.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1091.88" y="261.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (3 samples, 0.01%)</title><rect x="1302.8" y="715" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1305.77" y="725.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (6 samples, 0.02%)</title><rect x="1187.6" y="411" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1190.64" y="421.5" ></text>
</g>
<g >
<title>LockBuffer (29 samples, 0.10%)</title><rect x="942.1" y="379" width="1.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="945.10" y="389.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (166 samples, 0.56%)</title><rect x="1048.3" y="331" width="7.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1051.28" y="341.5" ></text>
</g>
<g >
<title>start_xact_command (6 samples, 0.02%)</title><rect x="1133.9" y="651" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1136.92" y="661.5" ></text>
</g>
<g >
<title>CheckExprStillValid (72 samples, 0.24%)</title><rect x="907.2" y="427" width="3.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="910.19" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (6 samples, 0.02%)</title><rect x="1019.2" y="251" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1022.16" y="261.5" ></text>
</g>
<g >
<title>tag_hash (3 samples, 0.01%)</title><rect x="1374.3" y="715" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1377.27" y="725.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (139 samples, 0.47%)</title><rect x="30.0" y="411" width="6.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="32.97" y="421.5" ></text>
</g>
<g >
<title>index_create (25 samples, 0.08%)</title><rect x="39.3" y="715" width="1.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="42.31" y="725.5" ></text>
</g>
<g >
<title>ReleaseBuffer (19 samples, 0.06%)</title><rect x="904.1" y="395" width="0.9" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="907.07" y="405.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (8 samples, 0.03%)</title><rect x="1016.9" y="299" width="0.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1019.92" y="309.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (9 samples, 0.03%)</title><rect x="1107.8" y="459" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="1110.83" y="469.5" ></text>
</g>
<g >
<title>LWLockAcquire (61 samples, 0.21%)</title><rect x="768.0" y="603" width="2.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="770.98" y="613.5" ></text>
</g>
<g >
<title>update_load_avg (274 samples, 0.93%)</title><rect x="174.5" y="395" width="12.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="177.47" y="405.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (18 samples, 0.06%)</title><rect x="295.0" y="523" width="0.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="297.97" y="533.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (4 samples, 0.01%)</title><rect x="1133.0" y="587" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1136.03" y="597.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (8 samples, 0.03%)</title><rect x="862.2" y="571" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="865.20" y="581.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTupleCommon (4 samples, 0.01%)</title><rect x="1280.1" y="715" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="1283.09" y="725.5" ></text>
</g>
<g >
<title>skb_attempt_defer_free (107 samples, 0.36%)</title><rect x="263.7" y="443" width="5.0" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="266.75" y="453.5" ></text>
</g>
<g >
<title>tts_virtual_clear (5 samples, 0.02%)</title><rect x="1190.7" y="459" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1193.67" y="469.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (37 samples, 0.13%)</title><rect x="1134.2" y="331" width="1.7" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1137.20" y="341.5" ></text>
</g>
<g >
<title>ReadBuffer_common (3 samples, 0.01%)</title><rect x="40.3" y="491" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="43.29" y="501.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (4 samples, 0.01%)</title><rect x="20.5" y="475" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="23.50" y="485.5" ></text>
</g>
<g >
<title>ItemPointerSetOffsetNumber (3 samples, 0.01%)</title><rect x="965.5" y="363" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="968.49" y="373.5" ></text>
</g>
<g >
<title>_bt_checkpage (10 samples, 0.03%)</title><rect x="1067.6" y="331" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1070.65" y="341.5" ></text>
</g>
<g >
<title>getBaseTypeAndTypmod (60 samples, 0.20%)</title><rect x="869.2" y="635" width="2.8" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="872.20" y="645.5" ></text>
</g>
<g >
<title>btinsert (4 samples, 0.01%)</title><rect x="1388.1" y="347" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1391.13" y="357.5" ></text>
</g>
<g >
<title>_bt_getroot (6 samples, 0.02%)</title><rect x="1385.0" y="395" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1388.01" y="405.5" ></text>
</g>
<g >
<title>[unknown]  (21 samples, 0.07%)</title><rect x="1375.6" y="731" width="1.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="1378.63" y="741.5" ></text>
</g>
<g >
<title>AllocSetAlloc (8 samples, 0.03%)</title><rect x="710.6" y="459" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="713.57" y="469.5" ></text>
</g>
<g >
<title>register_seq_scan (3 samples, 0.01%)</title><rect x="1246.0" y="523" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1249.02" y="533.5" ></text>
</g>
<g >
<title>__usecs_to_jiffies (3 samples, 0.01%)</title><rect x="418.1" y="123" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="421.13" y="133.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (17 samples, 0.06%)</title><rect x="578.8" y="571" width="0.8" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="581.77" y="581.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (10 samples, 0.03%)</title><rect x="942.5" y="347" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="945.52" y="357.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (36 samples, 0.12%)</title><rect x="940.1" y="363" width="1.7" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="943.14" y="373.5" ></text>
</g>
<g >
<title>hash_initial_lookup (3 samples, 0.01%)</title><rect x="576.3" y="523" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="579.25" y="533.5" ></text>
</g>
<g >
<title>LockAcquireExtended (289 samples, 0.98%)</title><rect x="741.1" y="491" width="13.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="744.14" y="501.5" ></text>
</g>
<g >
<title>DefineIndex (32 samples, 0.11%)</title><rect x="39.0" y="731" width="1.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="41.98" y="741.5" ></text>
</g>
<g >
<title>CheckNNConstraintFetch (5 samples, 0.02%)</title><rect x="1294.2" y="203" width="0.3" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1297.23" y="213.5" ></text>
</g>
<g >
<title>getObjectDescription (3 samples, 0.01%)</title><rect x="42.0" y="667" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="44.97" y="677.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (54 samples, 0.18%)</title><rect x="1134.2" y="571" width="2.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1137.20" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (15 samples, 0.05%)</title><rect x="1242.9" y="491" width="0.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1245.94" y="501.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (4 samples, 0.01%)</title><rect x="1385.3" y="363" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1388.29" y="373.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (4 samples, 0.01%)</title><rect x="1103.8" y="491" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1106.82" y="501.5" ></text>
</g>
<g >
<title>LWLockRelease (43 samples, 0.15%)</title><rect x="1087.9" y="315" width="2.0" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1090.86" y="325.5" ></text>
</g>
<g >
<title>ExecScan (13 samples, 0.04%)</title><rect x="12.2" y="555" width="0.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="15.24" y="565.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (3 samples, 0.01%)</title><rect x="1238.7" y="491" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1241.69" y="501.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (4 samples, 0.01%)</title><rect x="1203.2" y="507" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1206.18" y="517.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (3 samples, 0.01%)</title><rect x="1322.1" y="715" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="1325.09" y="725.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (9 samples, 0.03%)</title><rect x="17.0" y="363" width="0.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="20.05" y="373.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (7 samples, 0.02%)</title><rect x="1387.3" y="267" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1390.29" y="277.5" ></text>
</g>
<g >
<title>heap_fill_tuple (4 samples, 0.01%)</title><rect x="1280.7" y="683" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1283.70" y="693.5" ></text>
</g>
<g >
<title>recv@plt (4 samples, 0.01%)</title><rect x="296.3" y="571" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="299.28" y="581.5" ></text>
</g>
<g >
<title>pg_class_aclmask (139 samples, 0.47%)</title><rect x="622.3" y="539" width="6.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="625.27" y="549.5" ></text>
</g>
<g >
<title>pgstat_report_wait_start (3 samples, 0.01%)</title><rect x="1368.1" y="715" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1371.06" y="725.5" ></text>
</g>
<g >
<title>Int32GetDatum (4 samples, 0.01%)</title><rect x="1006.5" y="315" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1009.51" y="325.5" ></text>
</g>
<g >
<title>index_endscan (8 samples, 0.03%)</title><rect x="1356.4" y="715" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1359.35" y="725.5" ></text>
</g>
<g >
<title>[[vdso]] (7 samples, 0.02%)</title><rect x="1262.5" y="619" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1265.54" y="629.5" ></text>
</g>
<g >
<title>ExecInitNode (2,889 samples, 9.77%)</title><rect x="628.9" y="571" width="134.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="631.90" y="581.5" >ExecInitNode</text>
</g>
<g >
<title>ProcessUtility (24 samples, 0.08%)</title><rect x="1299.0" y="587" width="1.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1301.99" y="597.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (3 samples, 0.01%)</title><rect x="21.7" y="731" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="24.71" y="741.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (12 samples, 0.04%)</title><rect x="295.1" y="507" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="298.06" y="517.5" ></text>
</g>
<g >
<title>systable_getnext (4 samples, 0.01%)</title><rect x="39.1" y="619" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="42.12" y="629.5" ></text>
</g>
<g >
<title>update_curr (3 samples, 0.01%)</title><rect x="200.8" y="331" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="203.79" y="341.5" ></text>
</g>
<g >
<title>__wrgsbase_inactive (5 samples, 0.02%)</title><rect x="111.0" y="539" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="114.04" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (32 samples, 0.11%)</title><rect x="1169.2" y="475" width="1.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1172.25" y="485.5" ></text>
</g>
<g >
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="206.2" y="379" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="209.16" y="389.5" ></text>
</g>
<g >
<title>internal_putbytes (16 samples, 0.05%)</title><rect x="1103.3" y="507" width="0.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1106.26" y="517.5" ></text>
</g>
<g >
<title>PortalRunUtility (49 samples, 0.17%)</title><rect x="1275.5" y="699" width="2.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1278.52" y="709.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (10 samples, 0.03%)</title><rect x="1107.8" y="475" width="0.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1110.78" y="485.5" ></text>
</g>
<g >
<title>tcp_inbound_md5_hash (3 samples, 0.01%)</title><rect x="368.1" y="187" width="0.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text  x="371.15" y="197.5" ></text>
</g>
<g >
<title>index_fetch_heap (3 samples, 0.01%)</title><rect x="1294.5" y="171" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1297.47" y="181.5" ></text>
</g>
<g >
<title>HeapTupleHeaderGetXmin (4 samples, 0.01%)</title><rect x="962.5" y="363" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="965.45" y="373.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (3 samples, 0.01%)</title><rect x="128.8" y="427" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="131.82" y="437.5" ></text>
</g>
<g >
<title>ReadBuffer (6 samples, 0.02%)</title><rect x="1287.3" y="283" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1290.28" y="293.5" ></text>
</g>
<g >
<title>inet_ehashfn (7 samples, 0.02%)</title><rect x="364.3" y="171" width="0.3" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text  x="367.28" y="181.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (3 samples, 0.01%)</title><rect x="775.0" y="571" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="777.98" y="581.5" ></text>
</g>
<g >
<title>tcp_queue_rcv (9 samples, 0.03%)</title><rect x="426.3" y="155" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="429.25" y="165.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (112 samples, 0.38%)</title><rect x="1120.6" y="475" width="5.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1123.62" y="485.5" ></text>
</g>
<g >
<title>AllocSetAlloc (6 samples, 0.02%)</title><rect x="1127.7" y="571" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1130.67" y="581.5" ></text>
</g>
<g >
<title>get_timeout_active (4 samples, 0.01%)</title><rect x="1128.6" y="635" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1131.65" y="645.5" ></text>
</g>
<g >
<title>ReleaseSysCache (11 samples, 0.04%)</title><rect x="678.1" y="507" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="681.09" y="517.5" ></text>
</g>
<g >
<title>RevalidateCachedQuery (527 samples, 1.78%)</title><rect x="556.0" y="635" width="24.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="559.04" y="645.5" ></text>
</g>
<g >
<title>AllocSetAlloc (15 samples, 0.05%)</title><rect x="937.3" y="379" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="940.34" y="389.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (123 samples, 0.42%)</title><rect x="582.0" y="651" width="5.8" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="585.04" y="661.5" ></text>
</g>
<g >
<title>dst_release (22 samples, 0.07%)</title><rect x="375.0" y="155" width="1.0" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="377.96" y="165.5" ></text>
</g>
<g >
<title>CopySnapshot (22 samples, 0.07%)</title><rect x="774.5" y="619" width="1.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="777.46" y="629.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (7 samples, 0.02%)</title><rect x="38.5" y="539" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="41.52" y="549.5" ></text>
</g>
<g >
<title>index_drop (8 samples, 0.03%)</title><rect x="1277.2" y="267" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1280.15" y="277.5" ></text>
</g>
<g >
<title>__rdgsbase_inactive (5 samples, 0.02%)</title><rect x="110.6" y="539" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="113.57" y="549.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseAll (12 samples, 0.04%)</title><rect x="1252.2" y="555" width="0.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1255.18" y="565.5" ></text>
</g>
<g >
<title>PinBufferForBlock (6 samples, 0.02%)</title><rect x="1287.3" y="203" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1290.28" y="213.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (139 samples, 0.47%)</title><rect x="30.0" y="635" width="6.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="32.97" y="645.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (3 samples, 0.01%)</title><rect x="1208.1" y="555" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1211.08" y="565.5" ></text>
</g>
<g >
<title>recordMultipleDependencies (4 samples, 0.01%)</title><rect x="28.4" y="443" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="31.39" y="453.5" ></text>
</g>
<g >
<title>BufTableLookup (103 samples, 0.35%)</title><rect x="947.8" y="251" width="4.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="950.75" y="261.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (17 samples, 0.06%)</title><rect x="1095.5" y="523" width="0.8" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1098.46" y="533.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (49 samples, 0.17%)</title><rect x="1275.5" y="635" width="2.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1278.52" y="645.5" ></text>
</g>
<g >
<title>update_curr (3 samples, 0.01%)</title><rect x="201.4" y="331" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="204.44" y="341.5" ></text>
</g>
<g >
<title>IndexTupleHasNulls (7 samples, 0.02%)</title><rect x="1325.5" y="715" width="0.4" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1328.55" y="725.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (140 samples, 0.47%)</title><rect x="729.3" y="475" width="6.6" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="732.33" y="485.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (9 samples, 0.03%)</title><rect x="1264.0" y="619" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1266.99" y="629.5" ></text>
</g>
<g >
<title>tcp_established_options (4 samples, 0.01%)</title><rect x="463.8" y="395" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="466.82" y="405.5" ></text>
</g>
<g >
<title>PlanCacheObjectCallback (3 samples, 0.01%)</title><rect x="811.2" y="523" width="0.1" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text  x="814.19" y="533.5" ></text>
</g>
<g >
<title>doDeletion (8 samples, 0.03%)</title><rect x="1296.4" y="619" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1299.38" y="629.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (3 samples, 0.01%)</title><rect x="1376.5" y="715" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1379.47" y="725.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (14 samples, 0.05%)</title><rect x="653.0" y="427" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="655.98" y="437.5" ></text>
</g>
<g >
<title>check_log_duration (6 samples, 0.02%)</title><rect x="1347.8" y="715" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1350.76" y="725.5" ></text>
</g>
<g >
<title>_bt_getbuf (327 samples, 1.11%)</title><rect x="44.6" y="363" width="15.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="47.58" y="373.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (30 samples, 0.10%)</title><rect x="36.5" y="491" width="1.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="39.46" y="501.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (149 samples, 0.50%)</title><rect x="530.5" y="619" width="6.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="533.47" y="629.5" ></text>
</g>
<g >
<title>hash_search (58 samples, 0.20%)</title><rect x="552.2" y="571" width="2.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="555.17" y="581.5" ></text>
</g>
<g >
<title>exec_simple_query (5 samples, 0.02%)</title><rect x="17.5" y="683" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="20.47" y="693.5" ></text>
</g>
<g >
<title>ExecScanExtended (810 samples, 2.74%)</title><rect x="43.7" y="507" width="37.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="46.70" y="517.5" >Ex..</text>
</g>
<g >
<title>btgettuple (3 samples, 0.01%)</title><rect x="1296.2" y="555" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1299.19" y="565.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3 samples, 0.01%)</title><rect x="296.1" y="555" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="299.14" y="565.5" ></text>
</g>
<g >
<title>StmtPlanRequiresRevalidation (8 samples, 0.03%)</title><rect x="811.9" y="523" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="814.94" y="533.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (294 samples, 0.99%)</title><rect x="1076.1" y="363" width="13.8" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="1079.14" y="373.5" ></text>
</g>
<g >
<title>_bt_first (5 samples, 0.02%)</title><rect x="1388.7" y="587" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1391.69" y="597.5" ></text>
</g>
<g >
<title>index_build (7 samples, 0.02%)</title><rect x="34.5" y="347" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="37.50" y="357.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (7 samples, 0.02%)</title><rect x="956.2" y="203" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="959.24" y="213.5" ></text>
</g>
<g >
<title>BufferGetBlock (6 samples, 0.02%)</title><rect x="18.1" y="747" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="21.12" y="757.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (3 samples, 0.01%)</title><rect x="1330.6" y="715" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1333.64" y="725.5" ></text>
</g>
<g >
<title>RelnameGetRelid (3 samples, 0.01%)</title><rect x="1136.3" y="267" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1139.25" y="277.5" ></text>
</g>
<g >
<title>vfs_write (5 samples, 0.02%)</title><rect x="1291.8" y="171" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1294.81" y="181.5" ></text>
</g>
<g >
<title>dequeue_entity (5 samples, 0.02%)</title><rect x="201.4" y="347" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="204.40" y="357.5" ></text>
</g>
<g >
<title>path_openat (3 samples, 0.01%)</title><rect x="34.3" y="139" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="37.27" y="149.5" ></text>
</g>
<g >
<title>FastPathTransferRelationLocks (9 samples, 0.03%)</title><rect x="1298.4" y="395" width="0.4" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1301.39" y="405.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (2,274 samples, 7.69%)</title><rect x="114.2" y="507" width="106.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="117.17" y="517.5" >__x64_sys_..</text>
</g>
<g >
<title>exec_stmt_fori (185 samples, 0.63%)</title><rect x="1287.2" y="587" width="8.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1290.18" y="597.5" ></text>
</g>
<g >
<title>get_relname_relid (3 samples, 0.01%)</title><rect x="1290.3" y="411" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1293.31" y="421.5" ></text>
</g>
<g >
<title>BlockIdSet (3 samples, 0.01%)</title><rect x="916.2" y="411" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="919.25" y="421.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (3 samples, 0.01%)</title><rect x="735.7" y="411" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="738.73" y="421.5" ></text>
</g>
<g >
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="194.1" y="331" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="197.07" y="341.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="34.3" y="203" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="37.27" y="213.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (4 samples, 0.01%)</title><rect x="22.5" y="443" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="25.46" y="453.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos64 (4 samples, 0.01%)</title><rect x="886.7" y="587" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="889.71" y="597.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (69 samples, 0.23%)</title><rect x="543.0" y="619" width="3.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="545.98" y="629.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1276.1" y="299" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1279.08" y="309.5" ></text>
</g>
<g >
<title>__slab_free (41 samples, 0.14%)</title><rect x="413.7" y="139" width="1.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="416.65" y="149.5" ></text>
</g>
<g >
<title>AllocSetFree (3 samples, 0.01%)</title><rect x="594.5" y="619" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="597.55" y="629.5" ></text>
</g>
<g >
<title>doDeletion (27 samples, 0.09%)</title><rect x="82.6" y="219" width="1.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="85.57" y="229.5" ></text>
</g>
<g >
<title>ProcessUtility (57 samples, 0.19%)</title><rect x="81.5" y="363" width="2.7" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="84.50" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (6 samples, 0.02%)</title><rect x="942.7" y="315" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="945.66" y="325.5" ></text>
</g>
<g >
<title>LWLockRelease (11 samples, 0.04%)</title><rect x="770.8" y="603" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="773.82" y="613.5" ></text>
</g>
<g >
<title>CatalogTuplesMultiInsertWithInfo (5 samples, 0.02%)</title><rect x="1293.5" y="379" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1296.49" y="389.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (7 samples, 0.02%)</title><rect x="1019.1" y="267" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1022.11" y="277.5" ></text>
</g>
<g >
<title>hash_bytes (27 samples, 0.09%)</title><rect x="946.4" y="203" width="1.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="949.44" y="213.5" ></text>
</g>
<g >
<title>enqueue_task_fair (3 samples, 0.01%)</title><rect x="64.9" y="75" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="67.88" y="85.5" ></text>
</g>
<g >
<title>TimestampDifference (9 samples, 0.03%)</title><rect x="1262.9" y="651" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1265.87" y="661.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (3 samples, 0.01%)</title><rect x="1136.3" y="251" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="1139.25" y="261.5" ></text>
</g>
<g >
<title>AllocSetAlloc (43 samples, 0.15%)</title><rect x="570.2" y="539" width="2.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="573.19" y="549.5" ></text>
</g>
<g >
<title>AllocSetFree (3 samples, 0.01%)</title><rect x="1307.1" y="715" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1310.07" y="725.5" ></text>
</g>
<g >
<title>index_getnext_tid (6 samples, 0.02%)</title><rect x="41.2" y="459" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="44.22" y="469.5" ></text>
</g>
<g >
<title>sock_poll (320 samples, 1.08%)</title><rect x="136.0" y="459" width="14.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="139.01" y="469.5" ></text>
</g>
<g >
<title>palloc (13 samples, 0.04%)</title><rect x="706.1" y="491" width="0.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="709.09" y="501.5" ></text>
</g>
<g >
<title>btbuild (3 samples, 0.01%)</title><rect x="34.6" y="331" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="37.60" y="341.5" ></text>
</g>
<g >
<title>_bt_readnextpage (17 samples, 0.06%)</title><rect x="902.9" y="379" width="0.7" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="905.85" y="389.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (10 samples, 0.03%)</title><rect x="28.2" y="699" width="0.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="31.20" y="709.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (118 samples, 0.40%)</title><rect x="1042.4" y="331" width="5.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1045.44" y="341.5" ></text>
</g>
<g >
<title>RelationGetSmgr (4 samples, 0.01%)</title><rect x="1338.9" y="715" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1341.94" y="725.5" ></text>
</g>
<g >
<title>pq_beginmessage_reuse (5 samples, 0.02%)</title><rect x="1102.8" y="539" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1105.79" y="549.5" ></text>
</g>
<g >
<title>PlanCacheRelCallback (4 samples, 0.01%)</title><rect x="102.9" y="459" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="105.92" y="469.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (56 samples, 0.19%)</title><rect x="1087.2" y="347" width="2.7" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="1090.25" y="357.5" ></text>
</g>
<g >
<title>ReadBufferExtended (9 samples, 0.03%)</title><rect x="17.0" y="331" width="0.5" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="20.05" y="341.5" ></text>
</g>
<g >
<title>heap_inplace_update_and_unlock (25 samples, 0.08%)</title><rect x="1279.3" y="747" width="1.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1282.30" y="757.5" ></text>
</g>
<g >
<title>index_beginscan (258 samples, 0.87%)</title><rect x="926.0" y="443" width="12.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="929.00" y="453.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (3 samples, 0.01%)</title><rect x="683.7" y="475" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="686.74" y="485.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (19 samples, 0.06%)</title><rect x="43.7" y="379" width="0.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="46.70" y="389.5" ></text>
</g>
<g >
<title>StartTransaction (3 samples, 0.01%)</title><rect x="1268.1" y="619" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1271.14" y="629.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (5 samples, 0.02%)</title><rect x="17.5" y="395" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="20.47" y="405.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (19 samples, 0.06%)</title><rect x="1200.6" y="507" width="0.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1203.61" y="517.5" ></text>
</g>
<g >
<title>__list_add_valid (3 samples, 0.01%)</title><rect x="465.0" y="379" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="467.99" y="389.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (464 samples, 1.57%)</title><rect x="59.8" y="283" width="21.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="62.84" y="293.5" ></text>
</g>
<g >
<title>ProcessUtility (3 samples, 0.01%)</title><rect x="12.8" y="651" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="15.85" y="661.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (44 samples, 0.15%)</title><rect x="570.1" y="555" width="2.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="573.14" y="565.5" ></text>
</g>
<g >
<title>LockBuffer (7 samples, 0.02%)</title><rect x="1068.1" y="315" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1071.11" y="325.5" ></text>
</g>
<g >
<title>exec_stmt_commit (41 samples, 0.14%)</title><rect x="1134.2" y="395" width="1.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1137.20" y="405.5" ></text>
</g>
<g >
<title>exec_bind_message (7,532 samples, 25.47%)</title><rect x="512.9" y="667" width="351.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="515.92" y="677.5" >exec_bind_message</text>
</g>
<g >
<title>GrantLockLocal (5 samples, 0.02%)</title><rect x="565.4" y="555" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="568.38" y="565.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (14 samples, 0.05%)</title><rect x="1262.2" y="651" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1265.22" y="661.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (5 samples, 0.02%)</title><rect x="17.5" y="539" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="20.47" y="549.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (21 samples, 0.07%)</title><rect x="904.0" y="411" width="1.0" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="906.97" y="421.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (24 samples, 0.08%)</title><rect x="1299.0" y="731" width="1.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1301.99" y="741.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (136 samples, 0.46%)</title><rect x="959.9" y="379" width="6.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="962.93" y="389.5" ></text>
</g>
<g >
<title>psi_group_change (3 samples, 0.01%)</title><rect x="201.1" y="347" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="204.07" y="357.5" ></text>
</g>
<g >
<title>LockAcquireExtended (3 samples, 0.01%)</title><rect x="1295.2" y="331" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1298.21" y="341.5" ></text>
</g>
<g >
<title>LWLockWakeup (5 samples, 0.02%)</title><rect x="1232.1" y="507" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1235.11" y="517.5" ></text>
</g>
<g >
<title>ExecCloseResultRelations (3 samples, 0.01%)</title><rect x="1180.4" y="491" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1183.45" y="501.5" ></text>
</g>
<g >
<title>AtEOXact_MultiXact (24 samples, 0.08%)</title><rect x="1148.8" y="603" width="1.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="1151.76" y="613.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (208 samples, 0.70%)</title><rect x="850.9" y="571" width="9.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="853.86" y="581.5" ></text>
</g>
<g >
<title>kfree_skbmem (5 samples, 0.02%)</title><rect x="416.1" y="139" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="419.08" y="149.5" ></text>
</g>
<g >
<title>AllocSetReset (24 samples, 0.08%)</title><rect x="1098.0" y="507" width="1.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1100.98" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (4 samples, 0.01%)</title><rect x="862.4" y="539" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="865.39" y="549.5" ></text>
</g>
<g >
<title>OidInputFunctionCall (3 samples, 0.01%)</title><rect x="1333.4" y="715" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1336.39" y="725.5" ></text>
</g>
<g >
<title>sk_forced_mem_schedule (16 samples, 0.05%)</title><rect x="501.0" y="427" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="504.02" y="437.5" ></text>
</g>
<g >
<title>LWLockAcquire (11 samples, 0.04%)</title><rect x="942.5" y="363" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="945.48" y="373.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (29 samples, 0.10%)</title><rect x="771.5" y="635" width="1.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="774.48" y="645.5" ></text>
</g>
<g >
<title>update_min_vruntime (13 samples, 0.04%)</title><rect x="173.9" y="379" width="0.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="176.86" y="389.5" ></text>
</g>
<g >
<title>SearchSysCacheAttName (4 samples, 0.01%)</title><rect x="1287.6" y="411" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="1290.56" y="421.5" ></text>
</g>
<g >
<title>_raw_spin_rq_lock_irqsave (5 samples, 0.02%)</title><rect x="206.7" y="379" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="209.72" y="389.5" ></text>
</g>
<g >
<title>ReleaseCatCache (12 samples, 0.04%)</title><rect x="623.0" y="491" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="625.97" y="501.5" ></text>
</g>
<g >
<title>update_rq_clock (3 samples, 0.01%)</title><rect x="207.1" y="379" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="210.09" y="389.5" ></text>
</g>
<g >
<title>table_slot_callbacks (5 samples, 0.02%)</title><rect x="763.1" y="539" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="766.12" y="549.5" ></text>
</g>
<g >
<title>hash_initial_lookup (5 samples, 0.02%)</title><rect x="49.6" y="203" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="52.58" y="213.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (5 samples, 0.02%)</title><rect x="1090.8" y="315" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1093.84" y="325.5" ></text>
</g>
<g >
<title>index_drop (19 samples, 0.06%)</title><rect x="82.9" y="203" width="0.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="85.95" y="213.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (5 samples, 0.02%)</title><rect x="1388.7" y="571" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1391.69" y="581.5" ></text>
</g>
<g >
<title>AtEOXact_RelationMap (12 samples, 0.04%)</title><rect x="1311.6" y="715" width="0.6" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1314.64" y="725.5" ></text>
</g>
<g >
<title>exec_stmt_fori (13 samples, 0.04%)</title><rect x="22.5" y="619" width="0.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="25.46" y="629.5" ></text>
</g>
<g >
<title>hash_initial_lookup (20 samples, 0.07%)</title><rect x="545.2" y="603" width="0.9" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="548.17" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (4 samples, 0.01%)</title><rect x="862.4" y="555" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="865.39" y="565.5" ></text>
</g>
<g >
<title>ip_rcv (48 samples, 0.16%)</title><rect x="427.7" y="235" width="2.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="430.65" y="245.5" ></text>
</g>
<g >
<title>_bt_search (6 samples, 0.02%)</title><rect x="1292.6" y="283" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1295.55" y="293.5" ></text>
</g>
<g >
<title>GrantLockLocal (5 samples, 0.02%)</title><rect x="551.8" y="571" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="554.84" y="581.5" ></text>
</g>
<g >
<title>exec_toplevel_block (41 samples, 0.14%)</title><rect x="1386.7" y="651" width="1.9" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1389.73" y="661.5" ></text>
</g>
<g >
<title>tomoyo_socket_sendmsg_permission (8 samples, 0.03%)</title><rect x="318.8" y="459" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="321.82" y="469.5" ></text>
</g>
<g >
<title>_bt_checkkeys (5 samples, 0.02%)</title><rect x="1345.6" y="715" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1348.57" y="725.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (37 samples, 0.13%)</title><rect x="1134.2" y="347" width="1.7" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="1137.20" y="357.5" ></text>
</g>
<g >
<title>btgettuple (3 samples, 0.01%)</title><rect x="42.5" y="555" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="45.53" y="565.5" ></text>
</g>
<g >
<title>ReleaseBuffer (32 samples, 0.11%)</title><rect x="900.1" y="427" width="1.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="903.10" y="437.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (136 samples, 0.46%)</title><rect x="647.4" y="475" width="6.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="650.38" y="485.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (61 samples, 0.21%)</title><rect x="583.1" y="603" width="2.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="586.11" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (43 samples, 0.15%)</title><rect x="768.8" y="571" width="2.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="771.82" y="581.5" ></text>
</g>
<g >
<title>skb_clone (3 samples, 0.01%)</title><rect x="463.6" y="395" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="466.59" y="405.5" ></text>
</g>
<g >
<title>FetchPreparedStatement (124 samples, 0.42%)</title><rect x="541.5" y="651" width="5.8" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="544.53" y="661.5" ></text>
</g>
<g >
<title>__alloc_skb (213 samples, 0.72%)</title><rect x="487.9" y="427" width="9.9" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text  x="490.86" y="437.5" ></text>
</g>
<g >
<title>PageSetChecksumInplace (7 samples, 0.02%)</title><rect x="1291.5" y="315" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="1294.48" y="325.5" ></text>
</g>
<g >
<title>int4in (27 samples, 0.09%)</title><rect x="589.6" y="619" width="1.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="592.65" y="629.5" ></text>
</g>
<g >
<title>BufferAlloc (6 samples, 0.02%)</title><rect x="1287.3" y="187" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1290.28" y="197.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (4 samples, 0.01%)</title><rect x="1298.6" y="315" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1301.62" y="325.5" ></text>
</g>
<g >
<title>index_getnext_slot (3 samples, 0.01%)</title><rect x="20.7" y="539" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="23.73" y="549.5" ></text>
</g>
<g >
<title>internal_flush_buffer (4,270 samples, 14.44%)</title><rect x="308.1" y="619" width="199.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="311.13" y="629.5" >internal_flush_buffer</text>
</g>
<g >
<title>hash_search_with_hash_value (59 samples, 0.20%)</title><rect x="537.5" y="619" width="2.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="540.52" y="629.5" ></text>
</g>
<g >
<title>DefineIndex (3 samples, 0.01%)</title><rect x="1385.3" y="315" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1388.29" y="325.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (14 samples, 0.05%)</title><rect x="1238.0" y="475" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1241.04" y="485.5" ></text>
</g>
<g >
<title>RelationBuildDesc (16 samples, 0.05%)</title><rect x="40.8" y="523" width="0.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="43.76" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (38 samples, 0.13%)</title><rect x="954.2" y="219" width="1.8" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="957.19" y="229.5" ></text>
</g>
<g >
<title>ExecPostprocessPlan (5 samples, 0.02%)</title><rect x="1202.6" y="507" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1205.62" y="517.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (3 samples, 0.01%)</title><rect x="12.8" y="555" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="15.85" y="565.5" ></text>
</g>
<g >
<title>_bt_getbuf (6 samples, 0.02%)</title><rect x="1385.0" y="379" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1388.01" y="389.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (3 samples, 0.01%)</title><rect x="1003.7" y="347" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1006.66" y="357.5" ></text>
</g>
<g >
<title>ProcessUtility (6 samples, 0.02%)</title><rect x="1269.0" y="667" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1271.98" y="677.5" ></text>
</g>
<g >
<title>StartReadBuffer (3 samples, 0.01%)</title><rect x="40.3" y="475" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="43.29" y="485.5" ></text>
</g>
<g >
<title>exprType (9 samples, 0.03%)</title><rect x="720.1" y="491" width="0.4" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="723.09" y="501.5" ></text>
</g>
<g >
<title>postmaster_child_launch (15 samples, 0.05%)</title><rect x="1384.8" y="747" width="0.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1387.77" y="757.5" ></text>
</g>
</g>
</svg>
