<?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="880" onload="init(evt)" viewBox="0 0 1400 880" 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="880.0" fill="url(#background)"  />
<text id="title" x="700.00" y="28" >Flame Graph</text>
<text id="details" x="10.00" y="861" > </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="861" > </text>
<g id="frames">
<g >
<title>pfree (60 samples, 0.05%)</title><rect x="555.4" y="699" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="558.35" y="709.5" ></text>
</g>
<g >
<title>__strlen_evex (12 samples, 0.01%)</title><rect x="1071.1" y="603" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1074.08" y="613.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (232 samples, 0.20%)</title><rect x="1136.9" y="555" width="2.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1139.92" y="565.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (7,037 samples, 5.95%)</title><rect x="333.0" y="299" width="82.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="336.01" y="309.5" >ip_loca..</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (151 samples, 0.13%)</title><rect x="1056.3" y="331" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1059.35" y="341.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (17 samples, 0.01%)</title><rect x="22.0" y="331" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="25.02" y="341.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (51 samples, 0.04%)</title><rect x="1094.0" y="651" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1097.00" y="661.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (10 samples, 0.01%)</title><rect x="645.4" y="507" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="648.42" y="517.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (25 samples, 0.02%)</title><rect x="446.5" y="459" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="449.54" y="469.5" ></text>
</g>
<g >
<title>_bt_steppage (93 samples, 0.08%)</title><rect x="834.5" y="459" width="1.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="837.49" y="469.5" ></text>
</g>
<g >
<title>tcp_rcv_established (5,778 samples, 4.89%)</title><rect x="347.5" y="235" width="67.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="350.52" y="245.5" >tcp_rc..</text>
</g>
<g >
<title>pg_server_to_client (31 samples, 0.03%)</title><rect x="1073.9" y="587" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1076.88" y="597.5" ></text>
</g>
<g >
<title>tts_buffer_heap_release (24 samples, 0.02%)</title><rect x="1383.6" y="779" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1386.57" y="789.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (12 samples, 0.01%)</title><rect x="569.9" y="619" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="572.87" y="629.5" ></text>
</g>
<g >
<title>btgettuple (12,625 samples, 10.67%)</title><rect x="913.2" y="475" width="147.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="916.23" y="485.5" >btgettuple</text>
</g>
<g >
<title>ExecComputeSlotInfo (34 samples, 0.03%)</title><rect x="644.0" y="555" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="647.01" y="565.5" ></text>
</g>
<g >
<title>ExecEndPlan (1,266 samples, 1.07%)</title><rect x="1154.1" y="571" width="14.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1157.13" y="581.5" ></text>
</g>
<g >
<title>ReleaseBuffer (161 samples, 0.14%)</title><rect x="831.6" y="491" width="1.9" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="834.59" y="501.5" ></text>
</g>
<g >
<title>scanner_isspace (21 samples, 0.02%)</title><rect x="1377.2" y="779" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1380.21" y="789.5" ></text>
</g>
<g >
<title>deleteObjectsInList (32 samples, 0.03%)</title><rect x="1275.0" y="459" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1278.00" y="469.5" ></text>
</g>
<g >
<title>skb_network_protocol (54 samples, 0.05%)</title><rect x="431.3" y="379" width="0.6" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="434.27" y="389.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (184 samples, 0.16%)</title><rect x="526.2" y="603" width="2.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="529.22" y="613.5" ></text>
</g>
<g >
<title>palloc (12 samples, 0.01%)</title><rect x="1266.6" y="811" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1269.57" y="821.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (743 samples, 0.63%)</title><rect x="719.7" y="699" width="8.7" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="722.71" y="709.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (10 samples, 0.01%)</title><rect x="1245.3" y="651" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1248.28" y="661.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (42 samples, 0.04%)</title><rect x="1388.9" y="571" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1391.87" y="581.5" ></text>
</g>
<g >
<title>IsSharedRelation (21 samples, 0.02%)</title><rect x="1316.3" y="779" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1319.29" y="789.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (13 samples, 0.01%)</title><rect x="728.4" y="699" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="731.38" y="709.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.01%)</title><rect x="1277.6" y="779" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1280.58" y="789.5" ></text>
</g>
<g >
<title>socket_putmessage (87 samples, 0.07%)</title><rect x="1071.8" y="587" width="1.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1074.84" y="597.5" ></text>
</g>
<g >
<title>BufferAlloc (1,777 samples, 1.50%)</title><rect x="876.7" y="331" width="20.8" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="879.72" y="341.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (466 samples, 0.39%)</title><rect x="460.9" y="443" width="5.4" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text  x="463.87" y="453.5" ></text>
</g>
<g >
<title>exprCollation (71 samples, 0.06%)</title><rect x="673.0" y="555" width="0.8" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="676.00" y="565.5" ></text>
</g>
<g >
<title>GetCurrentTransactionStopTimestamp (92 samples, 0.08%)</title><rect x="1254.6" y="715" width="1.1" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1257.61" y="725.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (425 samples, 0.36%)</title><rect x="1131.8" y="555" width="5.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1134.80" y="565.5" ></text>
</g>
<g >
<title>FastPathGrantRelationLock (199 samples, 0.17%)</title><rect x="692.6" y="539" width="2.3" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text  x="695.57" y="549.5" ></text>
</g>
<g >
<title>pq_sendint8 (9 samples, 0.01%)</title><rect x="1374.3" y="779" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1377.32" y="789.5" ></text>
</g>
<g >
<title>TimestampDifferenceExceeds (30 samples, 0.03%)</title><rect x="1255.7" y="715" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1258.68" y="725.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (13 samples, 0.01%)</title><rect x="1101.4" y="699" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1104.37" y="709.5" ></text>
</g>
<g >
<title>_bt_check_compare (156 samples, 0.13%)</title><rect x="979.9" y="395" width="1.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="982.88" y="405.5" ></text>
</g>
<g >
<title>index_insert (13 samples, 0.01%)</title><rect x="1268.1" y="427" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1271.14" y="437.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (176 samples, 0.15%)</title><rect x="478.4" y="715" width="2.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="481.36" y="725.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (17 samples, 0.01%)</title><rect x="830.1" y="523" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="833.06" y="533.5" ></text>
</g>
<g >
<title>ExecScan (713 samples, 0.60%)</title><rect x="829.3" y="587" width="8.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="832.31" y="597.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (30 samples, 0.03%)</title><rect x="47.5" y="283" width="0.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="50.54" y="293.5" ></text>
</g>
<g >
<title>performMultipleDeletions (10 samples, 0.01%)</title><rect x="1389.6" y="747" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1392.59" y="757.5" ></text>
</g>
<g >
<title>RelationCloseCleanup (18 samples, 0.02%)</title><rect x="1155.2" y="491" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1158.16" y="501.5" ></text>
</g>
<g >
<title>TransactionIdPrecedes (16 samples, 0.01%)</title><rect x="1342.4" y="779" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1345.36" y="789.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (22 samples, 0.02%)</title><rect x="1030.9" y="347" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1033.86" y="357.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (9 samples, 0.01%)</title><rect x="636.4" y="523" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="639.41" y="533.5" ></text>
</g>
<g >
<title>SysCacheInvalidate (59 samples, 0.05%)</title><rect x="764.1" y="603" width="0.7" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="767.10" y="613.5" ></text>
</g>
<g >
<title>LWLockWakeup (13 samples, 0.01%)</title><rect x="526.3" y="587" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="529.35" y="597.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (417 samples, 0.35%)</title><rect x="1269.2" y="283" width="4.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1272.17" y="293.5" ></text>
</g>
<g >
<title>BufferAlloc (1,569 samples, 1.33%)</title><rect x="30.0" y="315" width="18.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="33.01" y="325.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (10 samples, 0.01%)</title><rect x="1296.0" y="779" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1299.04" y="789.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (29 samples, 0.02%)</title><rect x="906.9" y="427" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="909.92" y="437.5" ></text>
</g>
<g >
<title>index_open (10 samples, 0.01%)</title><rect x="1360.6" y="779" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1363.56" y="789.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (17 samples, 0.01%)</title><rect x="1168.6" y="507" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1171.63" y="517.5" ></text>
</g>
<g >
<title>ServerLoop (105,620 samples, 89.30%)</title><rect x="28.0" y="811" width="1232.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="30.96" y="821.5" >ServerLoop</text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (34 samples, 0.03%)</title><rect x="794.4" y="587" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="797.37" y="597.5" ></text>
</g>
<g >
<title>[[vdso]] (37 samples, 0.03%)</title><rect x="1255.0" y="667" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1257.97" y="677.5" ></text>
</g>
<g >
<title>strlen@plt (15 samples, 0.01%)</title><rect x="755.1" y="699" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="758.08" y="709.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (33 samples, 0.03%)</title><rect x="12.4" y="475" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="15.40" y="485.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (43 samples, 0.04%)</title><rect x="1267.6" y="363" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1270.62" y="373.5" ></text>
</g>
<g >
<title>LockBuffer (229 samples, 0.19%)</title><rect x="1055.5" y="395" width="2.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1058.52" y="405.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (9 samples, 0.01%)</title><rect x="639.8" y="555" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="642.84" y="565.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (26 samples, 0.02%)</title><rect x="1289.9" y="779" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1292.86" y="789.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (31 samples, 0.03%)</title><rect x="1265.4" y="763" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1268.45" y="773.5" ></text>
</g>
<g >
<title>AtEOXact_on_commit_actions (26 samples, 0.02%)</title><rect x="1292.0" y="779" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1295.03" y="789.5" ></text>
</g>
<g >
<title>deregister_seq_scan (30 samples, 0.03%)</title><rect x="1238.0" y="571" width="0.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1241.04" y="581.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (61 samples, 0.05%)</title><rect x="1145.3" y="523" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1148.33" y="533.5" ></text>
</g>
<g >
<title>_raw_write_lock_irq (67 samples, 0.06%)</title><rect x="125.3" y="539" width="0.8" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="128.31" y="549.5" ></text>
</g>
<g >
<title>palloc (68 samples, 0.06%)</title><rect x="743.1" y="699" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="746.05" y="709.5" ></text>
</g>
<g >
<title>_bt_checkpage (29 samples, 0.02%)</title><rect x="1030.2" y="395" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1033.15" y="405.5" ></text>
</g>
<g >
<title>exec_stmt_block (88 samples, 0.07%)</title><rect x="84.9" y="539" width="1.0" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="87.91" y="549.5" ></text>
</g>
<g >
<title>__GI___errno_location (45 samples, 0.04%)</title><rect x="276.7" y="635" width="0.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="279.71" y="645.5" ></text>
</g>
<g >
<title>validate_xmit_skb (208 samples, 0.18%)</title><rect x="429.5" y="411" width="2.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="432.54" y="421.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (339 samples, 0.29%)</title><rect x="683.1" y="539" width="4.0" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="686.12" y="549.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (11 samples, 0.01%)</title><rect x="1335.2" y="779" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1338.22" y="789.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (10 samples, 0.01%)</title><rect x="1056.0" y="363" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1058.96" y="373.5" ></text>
</g>
<g >
<title>LWLockWakeup (15 samples, 0.01%)</title><rect x="1220.3" y="571" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1223.26" y="581.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (63 samples, 0.05%)</title><rect x="627.4" y="555" width="0.7" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="630.38" y="565.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (87 samples, 0.07%)</title><rect x="832.5" y="459" width="1.0" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="835.45" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (20 samples, 0.02%)</title><rect x="971.9" y="363" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="974.90" y="373.5" ></text>
</g>
<g >
<title>BuildQueryCompletionString (163 samples, 0.14%)</title><rect x="815.0" y="699" width="1.9" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="818.01" y="709.5" ></text>
</g>
<g >
<title>AtEOXact_Snapshot (33 samples, 0.03%)</title><rect x="1117.0" y="667" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1120.01" y="677.5" ></text>
</g>
<g >
<title>WaitEventSetWait (9,125 samples, 7.72%)</title><rect x="106.5" y="651" width="106.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="109.54" y="661.5" >WaitEventS..</text>
</g>
<g >
<title>__fget_light (120 samples, 0.10%)</title><rect x="473.6" y="539" width="1.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="476.57" y="549.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (19 samples, 0.02%)</title><rect x="1171.9" y="507" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1174.87" y="517.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (13 samples, 0.01%)</title><rect x="19.0" y="635" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="21.98" y="645.5" ></text>
</g>
<g >
<title>AllocSetAlloc (333 samples, 0.28%)</title><rect x="1087.9" y="571" width="3.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1090.91" y="581.5" ></text>
</g>
<g >
<title>get_leftop (17 samples, 0.01%)</title><rect x="628.2" y="587" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="631.24" y="597.5" ></text>
</g>
<g >
<title>switch_fpu_return (18 samples, 0.02%)</title><rect x="209.5" y="539" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="212.47" y="549.5" ></text>
</g>
<g >
<title>pgss_ExecutorStart (13,308 samples, 11.25%)</title><rect x="563.7" y="683" width="155.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="566.68" y="693.5" >pgss_ExecutorStart</text>
</g>
<g >
<title>CacheInvalidateHeapTupleCommon (9 samples, 0.01%)</title><rect x="1265.9" y="779" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="1268.95" y="789.5" ></text>
</g>
<g >
<title>MarkPortalActive (31 samples, 0.03%)</title><rect x="822.8" y="699" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="825.79" y="709.5" ></text>
</g>
<g >
<title>palloc (61 samples, 0.05%)</title><rect x="664.1" y="539" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="667.11" y="549.5" ></text>
</g>
<g >
<title>choose_custom_plan (96 samples, 0.08%)</title><rect x="536.6" y="699" width="1.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="539.64" y="709.5" ></text>
</g>
<g >
<title>_bt_load (30 samples, 0.03%)</title><rect x="1264.2" y="491" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1267.15" y="501.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (61 samples, 0.05%)</title><rect x="11.4" y="475" width="0.8" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="14.45" y="485.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (136 samples, 0.11%)</title><rect x="706.5" y="539" width="1.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="709.46" y="549.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (42 samples, 0.04%)</title><rect x="878.3" y="251" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="881.27" y="261.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (82 samples, 0.07%)</title><rect x="1229.4" y="571" width="0.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1232.38" y="581.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (21 samples, 0.02%)</title><rect x="1077.9" y="507" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1080.85" y="517.5" ></text>
</g>
<g >
<title>update_rt_rq_load_avg (11 samples, 0.01%)</title><rect x="197.7" y="443" width="0.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="200.67" y="453.5" ></text>
</g>
<g >
<title>RelationFlushRelation (46 samples, 0.04%)</title><rect x="1268.5" y="363" width="0.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1271.54" y="373.5" ></text>
</g>
<g >
<title>DefineSequence (23 samples, 0.02%)</title><rect x="1276.7" y="539" width="0.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1279.73" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (142 samples, 0.12%)</title><rect x="1056.5" y="315" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1059.45" y="325.5" ></text>
</g>
<g >
<title>int4eq (9 samples, 0.01%)</title><rect x="15.5" y="395" width="0.1" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text  x="18.51" y="405.5" ></text>
</g>
<g >
<title>fetch_att (34 samples, 0.03%)</title><rect x="15.1" y="379" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="18.11" y="389.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (935 samples, 0.79%)</title><rect x="537.8" y="715" width="10.9" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="540.78" y="725.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (13 samples, 0.01%)</title><rect x="717.8" y="587" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="720.76" y="597.5" ></text>
</g>
<g >
<title>heap_create_with_catalog (11 samples, 0.01%)</title><rect x="23.3" y="427" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="26.34" y="437.5" ></text>
</g>
<g >
<title>_bt_compare (30 samples, 0.03%)</title><rect x="1345.3" y="779" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1348.28" y="789.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (26 samples, 0.02%)</title><rect x="1334.5" y="779" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1337.50" y="789.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (143 samples, 0.12%)</title><rect x="1066.3" y="587" width="1.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1069.26" y="597.5" ></text>
</g>
<g >
<title>palloc0 (311 samples, 0.26%)</title><rect x="574.9" y="619" width="3.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="577.94" y="629.5" ></text>
</g>
<g >
<title>printtup (1,473 samples, 1.25%)</title><rect x="1065.0" y="619" width="17.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1068.04" y="629.5" ></text>
</g>
<g >
<title>hash_search (523 samples, 0.44%)</title><rect x="1139.9" y="571" width="6.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1142.94" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (17 samples, 0.01%)</title><rect x="22.0" y="315" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="25.02" y="325.5" ></text>
</g>
<g >
<title>DatumGetCString (10 samples, 0.01%)</title><rect x="550.7" y="667" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="553.70" y="677.5" ></text>
</g>
<g >
<title>pfree (80 samples, 0.07%)</title><rect x="1203.0" y="651" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1206.03" y="661.5" ></text>
</g>
<g >
<title>ProcessClientWriteInterrupt (30 samples, 0.03%)</title><rect x="1331.1" y="779" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1334.11" y="789.5" ></text>
</g>
<g >
<title>palloc (52 samples, 0.04%)</title><rect x="680.2" y="539" width="0.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="683.23" y="549.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (30 samples, 0.03%)</title><rect x="12.4" y="379" width="0.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="15.44" y="389.5" ></text>
</g>
<g >
<title>pq_copymsgbytes (142 samples, 0.12%)</title><rect x="750.6" y="699" width="1.7" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="753.63" y="709.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (31 samples, 0.03%)</title><rect x="1157.2" y="459" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1160.22" y="469.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (28 samples, 0.02%)</title><rect x="1276.7" y="683" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1279.67" y="693.5" ></text>
</g>
<g >
<title>AtCommit_Notify (13 samples, 0.01%)</title><rect x="1109.8" y="667" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1112.77" y="677.5" ></text>
</g>
<g >
<title>SearchCatCache1 (10 samples, 0.01%)</title><rect x="27.7" y="811" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="30.68" y="821.5" ></text>
</g>
<g >
<title>AllocSetAlloc (38 samples, 0.03%)</title><rect x="1094.2" y="635" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1097.15" y="645.5" ></text>
</g>
<g >
<title>BTreeTupleGetDownLink (17 samples, 0.01%)</title><rect x="1292.7" y="779" width="0.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="1295.71" y="789.5" ></text>
</g>
<g >
<title>shmem_alloc_and_acct_folio (290 samples, 0.25%)</title><rect x="1269.2" y="139" width="3.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1272.25" y="149.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (27 samples, 0.02%)</title><rect x="1089.6" y="539" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1092.57" y="549.5" ></text>
</g>
<g >
<title>LWLockWaitListLock (11 samples, 0.01%)</title><rect x="1219.6" y="571" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1222.58" y="581.5" ></text>
</g>
<g >
<title>finalize_in_progress_typentries (20 samples, 0.02%)</title><rect x="1117.4" y="651" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1120.43" y="661.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (16 samples, 0.01%)</title><rect x="610.0" y="523" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="613.03" y="533.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (1,728 samples, 1.46%)</title><rect x="762.2" y="635" width="20.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="765.20" y="645.5" ></text>
</g>
<g >
<title>BufferGetPage (24 samples, 0.02%)</title><rect x="1035.1" y="411" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1038.10" y="421.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (42 samples, 0.04%)</title><rect x="1388.9" y="619" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1391.87" y="629.5" ></text>
</g>
<g >
<title>__list_add_valid (18 samples, 0.02%)</title><rect x="440.0" y="443" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="443.04" y="453.5" ></text>
</g>
<g >
<title>RelationFlushRelation (13 samples, 0.01%)</title><rect x="19.2" y="667" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="22.21" y="677.5" ></text>
</g>
<g >
<title>index_getprocinfo (43 samples, 0.04%)</title><rect x="1059.7" y="443" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1062.73" y="453.5" ></text>
</g>
<g >
<title>TupleDescInitEntry (643 samples, 0.54%)</title><rect x="665.2" y="555" width="7.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="668.19" y="565.5" ></text>
</g>
<g >
<title>tcp_rack_update_reo_wnd (20 samples, 0.02%)</title><rect x="405.6" y="203" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="408.64" y="213.5" ></text>
</g>
<g >
<title>pq_writeint16 (18 samples, 0.02%)</title><rect x="1074.8" y="587" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1077.82" y="597.5" ></text>
</g>
<g >
<title>SearchSysCache3 (397 samples, 0.34%)</title><rect x="629.6" y="571" width="4.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="632.58" y="581.5" ></text>
</g>
<g >
<title>__tcp_select_window (73 samples, 0.06%)</title><rect x="435.4" y="459" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="438.43" y="469.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (43 samples, 0.04%)</title><rect x="51.2" y="299" width="0.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="54.16" y="309.5" ></text>
</g>
<g >
<title>dlist_init (25 samples, 0.02%)</title><rect x="1350.1" y="779" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1353.10" y="789.5" ></text>
</g>
<g >
<title>MemoryContextReset (557 samples, 0.47%)</title><rect x="93.1" y="731" width="6.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="96.07" y="741.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (27 samples, 0.02%)</title><rect x="1077.8" y="523" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="1080.78" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (14 samples, 0.01%)</title><rect x="1055.2" y="347" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1058.24" y="357.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (145 samples, 0.12%)</title><rect x="646.2" y="523" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="649.25" y="533.5" ></text>
</g>
<g >
<title>__schedule (5,334 samples, 4.51%)</title><rect x="143.4" y="507" width="62.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="146.41" y="517.5" >__sch..</text>
</g>
<g >
<title>palloc0 (412 samples, 0.35%)</title><rect x="565.3" y="651" width="4.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="568.26" y="661.5" ></text>
</g>
<g >
<title>list_head (9 samples, 0.01%)</title><rect x="617.1" y="555" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="620.10" y="565.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (4,881 samples, 4.13%)</title><rect x="28.0" y="619" width="56.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="30.96" y="629.5" >Exec..</text>
</g>
<g >
<title>cgroup_rstat_updated (29 samples, 0.02%)</title><rect x="470.3" y="443" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="473.28" y="453.5" ></text>
</g>
<g >
<title>__switch_to_asm (25 samples, 0.02%)</title><rect x="110.9" y="603" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="113.94" y="613.5" ></text>
</g>
<g >
<title>update_blocked_averages (248 samples, 0.21%)</title><rect x="194.9" y="459" width="2.9" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text  x="197.90" y="469.5" ></text>
</g>
<g >
<title>__check_object_size (293 samples, 0.25%)</title><rect x="247.5" y="459" width="3.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="250.48" y="469.5" ></text>
</g>
<g >
<title>ExecInitScanTupleSlot (542 samples, 0.46%)</title><rect x="674.7" y="603" width="6.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="677.68" y="613.5" ></text>
</g>
<g >
<title>PostgresMain (100,567 samples, 85.03%)</title><rect x="86.1" y="747" width="1173.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="89.13" y="757.5" >PostgresMain</text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (40 samples, 0.03%)</title><rect x="581.5" y="523" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="584.54" y="533.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (26 samples, 0.02%)</title><rect x="553.4" y="667" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="556.37" y="677.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (59 samples, 0.05%)</title><rect x="704.9" y="555" width="0.7" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="707.95" y="565.5" ></text>
</g>
<g >
<title>CatalogTuplesMultiInsertWithInfo (9 samples, 0.01%)</title><rect x="1274.7" y="443" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1277.75" y="453.5" ></text>
</g>
<g >
<title>get_page_from_freelist (26 samples, 0.02%)</title><rect x="452.1" y="459" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="455.08" y="469.5" ></text>
</g>
<g >
<title>__strlen_evex (18 samples, 0.02%)</title><rect x="1188.2" y="603" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1191.21" y="613.5" ></text>
</g>
<g >
<title>newidle_balance (2,740 samples, 2.32%)</title><rect x="165.8" y="475" width="32.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="168.82" y="485.5" >n..</text>
</g>
<g >
<title>fpregs_assert_state_consistent (22 samples, 0.02%)</title><rect x="476.2" y="555" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="479.21" y="565.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (325 samples, 0.27%)</title><rect x="542.1" y="651" width="3.8" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="545.13" y="661.5" ></text>
</g>
<g >
<title>lock_sock_nested (113 samples, 0.10%)</title><rect x="290.3" y="523" width="1.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="293.30" y="533.5" ></text>
</g>
<g >
<title>IncrBufferRefCount (101 samples, 0.09%)</title><rect x="872.0" y="411" width="1.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="874.96" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (27 samples, 0.02%)</title><rect x="1230.6" y="555" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1233.64" y="565.5" ></text>
</g>
<g >
<title>ip_finish_output (35 samples, 0.03%)</title><rect x="314.0" y="443" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="316.97" y="453.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (30 samples, 0.03%)</title><rect x="24.3" y="571" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="27.33" y="581.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (27 samples, 0.02%)</title><rect x="635.2" y="523" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="638.22" y="533.5" ></text>
</g>
<g >
<title>_bt_moveright (726 samples, 0.61%)</title><rect x="1031.2" y="427" width="8.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1034.18" y="437.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (3,267 samples, 2.76%)</title><rect x="1204.3" y="651" width="38.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1207.28" y="661.5" >Re..</text>
</g>
<g >
<title>MemoryContextDeleteOnly (155 samples, 0.13%)</title><rect x="1170.6" y="523" width="1.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1173.62" y="533.5" ></text>
</g>
<g >
<title>ReleaseCatCache (53 samples, 0.04%)</title><rect x="802.1" y="667" width="0.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="805.14" y="677.5" ></text>
</g>
<g >
<title>systable_getnext (9 samples, 0.01%)</title><rect x="1276.4" y="683" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1279.39" y="693.5" ></text>
</g>
<g >
<title>pgstat_report_activity (301 samples, 0.25%)</title><rect x="745.6" y="715" width="3.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="748.60" y="725.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (10 samples, 0.01%)</title><rect x="1220.3" y="555" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1223.31" y="565.5" ></text>
</g>
<g >
<title>hash_search (10 samples, 0.01%)</title><rect x="742.2" y="715" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="745.18" y="725.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (196 samples, 0.17%)</title><rect x="553.8" y="715" width="2.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="556.77" y="725.5" ></text>
</g>
<g >
<title>initStringInfo (11 samples, 0.01%)</title><rect x="1259.8" y="747" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1262.82" y="757.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (22 samples, 0.02%)</title><rect x="1293.0" y="779" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1295.99" y="789.5" ></text>
</g>
<g >
<title>ExtendBufferedRelCommon (29 samples, 0.02%)</title><rect x="26.3" y="651" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="29.28" y="661.5" ></text>
</g>
<g >
<title>AllocSetAlloc (44 samples, 0.04%)</title><rect x="563.0" y="667" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="565.96" y="677.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (28 samples, 0.02%)</title><rect x="209.1" y="539" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="212.15" y="549.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,977 samples, 1.67%)</title><rect x="875.6" y="411" width="23.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="878.64" y="421.5" ></text>
</g>
<g >
<title>expr_setup_walker (156 samples, 0.13%)</title><rect x="646.1" y="539" width="1.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="649.12" y="549.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (21 samples, 0.02%)</title><rect x="1099.9" y="651" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1102.89" y="661.5" ></text>
</g>
<g >
<title>index_fetch_heap (3,693 samples, 3.12%)</title><rect x="869.3" y="491" width="43.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="872.25" y="501.5" >ind..</text>
</g>
<g >
<title>ProcessUtility (27 samples, 0.02%)</title><rect x="1277.0" y="651" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1280.00" y="661.5" ></text>
</g>
<g >
<title>__alloc_skb (866 samples, 0.73%)</title><rect x="459.1" y="491" width="10.1" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text  x="462.13" y="501.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (27 samples, 0.02%)</title><rect x="22.0" y="347" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="24.96" y="357.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (73 samples, 0.06%)</title><rect x="1388.9" y="811" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1391.87" y="821.5" ></text>
</g>
<g >
<title>ReleaseCatCache (24 samples, 0.02%)</title><rect x="629.3" y="555" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="632.27" y="565.5" ></text>
</g>
<g >
<title>pfree (99 samples, 0.08%)</title><rect x="554.1" y="683" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="557.14" y="693.5" ></text>
</g>
<g >
<title>InsertPgClassTuple (18 samples, 0.02%)</title><rect x="1268.1" y="475" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1271.13" y="485.5" ></text>
</g>
<g >
<title>PageIsNew (336 samples, 0.28%)</title><rect x="1049.1" y="395" width="3.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1052.05" y="405.5" ></text>
</g>
<g >
<title>printtup_prepare_info (589 samples, 0.50%)</title><rect x="1075.1" y="603" width="6.8" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text  x="1078.05" y="613.5" ></text>
</g>
<g >
<title>initStringInfoInternal (15 samples, 0.01%)</title><rect x="1360.8" y="779" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1363.78" y="789.5" ></text>
</g>
<g >
<title>AtEOXact_RelationMap (27 samples, 0.02%)</title><rect x="1115.9" y="667" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1118.89" y="677.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (30 samples, 0.03%)</title><rect x="24.3" y="731" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="27.33" y="741.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (76 samples, 0.06%)</title><rect x="419.0" y="347" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="421.99" y="357.5" ></text>
</g>
<g >
<title>enlargeStringInfo (20 samples, 0.02%)</title><rect x="806.3" y="683" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="809.34" y="693.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (1,945 samples, 1.64%)</title><rect x="171.5" y="427" width="22.7" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="174.52" y="437.5" ></text>
</g>
<g >
<title>ReleaseSysCache (66 samples, 0.06%)</title><rect x="666.7" y="539" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="669.75" y="549.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (41 samples, 0.03%)</title><rect x="1260.6" y="635" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1263.56" y="645.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (81 samples, 0.07%)</title><rect x="1386.8" y="699" width="1.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1389.84" y="709.5" ></text>
</g>
<g >
<title>hash_search (261 samples, 0.22%)</title><rect x="504.0" y="699" width="3.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="507.03" y="709.5" ></text>
</g>
<g >
<title>ExecIndexScan (4,881 samples, 4.13%)</title><rect x="28.0" y="603" width="56.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="30.96" y="613.5" >Exec..</text>
</g>
<g >
<title>decimalLength64 (9 samples, 0.01%)</title><rect x="1349.7" y="779" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1352.72" y="789.5" ></text>
</g>
<g >
<title>socket_flush (26 samples, 0.02%)</title><rect x="1379.4" y="779" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1382.37" y="789.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (209 samples, 0.18%)</title><rect x="48.3" y="315" width="2.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="51.32" y="325.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (32 samples, 0.03%)</title><rect x="280.5" y="619" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="283.54" y="629.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (13 samples, 0.01%)</title><rect x="1261.4" y="715" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1264.35" y="725.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (17 samples, 0.01%)</title><rect x="70.3" y="283" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="73.30" y="293.5" ></text>
</g>
<g >
<title>SearchSysCache1 (161 samples, 0.14%)</title><rect x="802.8" y="683" width="1.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="805.79" y="693.5" ></text>
</g>
<g >
<title>SearchCatCache1 (295 samples, 0.25%)</title><rect x="738.3" y="683" width="3.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="741.29" y="693.5" ></text>
</g>
<g >
<title>register_seq_scan (39 samples, 0.03%)</title><rect x="1191.4" y="635" width="0.5" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1194.40" y="645.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (13 samples, 0.01%)</title><rect x="19.2" y="731" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="22.21" y="741.5" ></text>
</g>
<g >
<title>GrantLockLocal (40 samples, 0.03%)</title><rect x="524.5" y="619" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="527.46" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (148 samples, 0.13%)</title><rect x="726.5" y="603" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="729.53" y="613.5" ></text>
</g>
<g >
<title>namestrcpy (177 samples, 0.15%)</title><rect x="669.9" y="539" width="2.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="672.94" y="549.5" ></text>
</g>
<g >
<title>ProcessUtility (17 samples, 0.01%)</title><rect x="24.8" y="555" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="27.82" y="565.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (13 samples, 0.01%)</title><rect x="758.8" y="683" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="761.84" y="693.5" ></text>
</g>
<g >
<title>shmem_write_end (14 samples, 0.01%)</title><rect x="26.5" y="395" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="29.45" y="405.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (469 samples, 0.40%)</title><rect x="94.1" y="715" width="5.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="97.10" y="725.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (221 samples, 0.19%)</title><rect x="966.9" y="443" width="2.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="969.87" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (53 samples, 0.04%)</title><rect x="70.7" y="235" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="73.71" y="245.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (206 samples, 0.17%)</title><rect x="1183.5" y="603" width="2.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1186.46" y="613.5" ></text>
</g>
<g >
<title>SIGetDataEntries (1,485 samples, 1.26%)</title><rect x="765.0" y="619" width="17.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="768.04" y="629.5" ></text>
</g>
<g >
<title>index_rescan (103 samples, 0.09%)</title><rect x="1060.6" y="507" width="1.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1063.59" y="517.5" ></text>
</g>
<g >
<title>BTreeTupleIsPosting (23 samples, 0.02%)</title><rect x="923.5" y="395" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="926.47" y="405.5" ></text>
</g>
<g >
<title>PageGetItem (221 samples, 0.19%)</title><rect x="1019.1" y="395" width="2.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1022.15" y="405.5" ></text>
</g>
<g >
<title>mdextend (30 samples, 0.03%)</title><rect x="1264.2" y="427" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1267.15" y="437.5" ></text>
</g>
<g >
<title>__strlen_evex (18 samples, 0.02%)</title><rect x="819.4" y="667" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="822.39" y="677.5" ></text>
</g>
<g >
<title>start_xact_command (13 samples, 0.01%)</title><rect x="1101.7" y="715" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1104.66" y="725.5" ></text>
</g>
<g >
<title>PageGetItemId (13 samples, 0.01%)</title><rect x="978.7" y="411" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="981.65" y="421.5" ></text>
</g>
<g >
<title>AllocSetFree (37 samples, 0.03%)</title><rect x="1202.3" y="619" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1205.33" y="629.5" ></text>
</g>
<g >
<title>relation_close (100 samples, 0.08%)</title><rect x="1154.9" y="523" width="1.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1157.86" y="533.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (38 samples, 0.03%)</title><rect x="1180.0" y="539" width="0.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1182.96" y="549.5" ></text>
</g>
<g >
<title>AfterTriggerBeginXact (16 samples, 0.01%)</title><rect x="1282.6" y="779" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1285.57" y="789.5" ></text>
</g>
<g >
<title>exec_stmts (88 samples, 0.07%)</title><rect x="84.9" y="491" width="1.0" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="87.91" y="501.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe.part.0 (49 samples, 0.04%)</title><rect x="446.8" y="475" width="0.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="449.83" y="485.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumber (22 samples, 0.02%)</title><rect x="907.3" y="427" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="910.26" y="437.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Database (22 samples, 0.02%)</title><rect x="1113.9" y="651" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="1116.89" y="661.5" ></text>
</g>
<g >
<title>fetch_att (47 samples, 0.04%)</title><rect x="964.3" y="395" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="967.28" y="405.5" ></text>
</g>
<g >
<title>ExecReScan (10 samples, 0.01%)</title><rect x="1304.5" y="779" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="1307.50" y="789.5" ></text>
</g>
<g >
<title>DefineIndex (615 samples, 0.52%)</title><rect x="1267.3" y="507" width="7.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1270.35" y="517.5" ></text>
</g>
<g >
<title>TupleDescAttr (16 samples, 0.01%)</title><rect x="672.8" y="539" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="675.80" y="549.5" ></text>
</g>
<g >
<title>MemoryContextDelete (116 samples, 0.10%)</title><rect x="1083.1" y="619" width="1.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1086.11" y="629.5" ></text>
</g>
<g >
<title>RelationFlushRelation (29 samples, 0.02%)</title><rect x="1265.5" y="731" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1268.47" y="741.5" ></text>
</g>
<g >
<title>__GI_bsearch (160 samples, 0.14%)</title><rect x="841.4" y="459" width="1.8" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="844.38" y="469.5" ></text>
</g>
<g >
<title>CatCacheInvalidate (51 samples, 0.04%)</title><rect x="764.2" y="587" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="767.20" y="597.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (54 samples, 0.05%)</title><rect x="23.7" y="683" width="0.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="26.70" y="693.5" ></text>
</g>
<g >
<title>BufferGetBlock (12 samples, 0.01%)</title><rect x="970.9" y="379" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="973.92" y="389.5" ></text>
</g>
<g >
<title>kmem_cache_free (48 samples, 0.04%)</title><rect x="420.1" y="347" width="0.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="423.10" y="357.5" ></text>
</g>
<g >
<title>LWLockAcquire (749 samples, 0.63%)</title><rect x="61.4" y="299" width="8.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="64.41" y="309.5" ></text>
</g>
<g >
<title>_raw_spin_lock (40 samples, 0.03%)</title><rect x="194.2" y="443" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="197.22" y="453.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (13 samples, 0.01%)</title><rect x="641.2" y="555" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="644.18" y="565.5" ></text>
</g>
<g >
<title>pg_class_aclmask_ext (332 samples, 0.28%)</title><rect x="580.7" y="587" width="3.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="583.66" y="597.5" ></text>
</g>
<g >
<title>__ip_finish_output (116 samples, 0.10%)</title><rect x="308.3" y="443" width="1.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="311.31" y="453.5" ></text>
</g>
<g >
<title>_copy_to_iter (358 samples, 0.30%)</title><rect x="243.2" y="475" width="4.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="246.22" y="485.5" ></text>
</g>
<g >
<title>enlargeStringInfo (20 samples, 0.02%)</title><rect x="801.5" y="699" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="804.49" y="709.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (24 samples, 0.02%)</title><rect x="836.5" y="411" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="839.48" y="421.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (14 samples, 0.01%)</title><rect x="1102.5" y="379" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1105.54" y="389.5" ></text>
</g>
<g >
<title>__fdget (10 samples, 0.01%)</title><rect x="258.5" y="539" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text  x="261.51" y="549.5" ></text>
</g>
<g >
<title>AtEOXact_Parallel (28 samples, 0.02%)</title><rect x="1289.2" y="779" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1292.20" y="789.5" ></text>
</g>
<g >
<title>index_insert (13 samples, 0.01%)</title><rect x="1274.4" y="411" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1277.37" y="421.5" ></text>
</g>
<g >
<title>perform_spin_delay (145 samples, 0.12%)</title><rect x="1149.9" y="555" width="1.7" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1152.90" y="565.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (43 samples, 0.04%)</title><rect x="427.6" y="331" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="430.59" y="341.5" ></text>
</g>
<g >
<title>TupleDescInitEntryCollation (26 samples, 0.02%)</title><rect x="672.7" y="555" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="675.70" y="565.5" ></text>
</g>
<g >
<title>TransactionBlockStatusCode (15 samples, 0.01%)</title><rect x="480.5" y="731" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="483.48" y="741.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (18 samples, 0.02%)</title><rect x="1004.3" y="379" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1007.26" y="389.5" ></text>
</g>
<g >
<title>__put_user_nocheck_8 (24 samples, 0.02%)</title><rect x="208.4" y="523" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="211.39" y="533.5" ></text>
</g>
<g >
<title>GetSnapshotData (698 samples, 0.59%)</title><rect x="720.1" y="683" width="8.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="723.13" y="693.5" ></text>
</g>
<g >
<title>relation_close (21 samples, 0.02%)</title><rect x="1375.7" y="779" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1378.73" y="789.5" ></text>
</g>
<g >
<title>ShutdownExprContext (12 samples, 0.01%)</title><rect x="847.1" y="539" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="850.10" y="549.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (28 samples, 0.02%)</title><rect x="1276.7" y="811" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1279.67" y="821.5" ></text>
</g>
<g >
<title>systable_getnext (10 samples, 0.01%)</title><rect x="1265.7" y="667" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1268.66" y="677.5" ></text>
</g>
<g >
<title>slot_getattr (11 samples, 0.01%)</title><rect x="1378.2" y="779" width="0.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="1381.16" y="789.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (12,289 samples, 10.39%)</title><rect x="1103.1" y="699" width="143.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1106.10" y="709.5" >CommitTransacti..</text>
</g>
<g >
<title>MemoryContextAlloc (70 samples, 0.06%)</title><rect x="557.1" y="699" width="0.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="560.12" y="709.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (140 samples, 0.12%)</title><rect x="34.1" y="267" width="1.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="37.06" y="277.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (10 samples, 0.01%)</title><rect x="669.5" y="491" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="672.45" y="501.5" ></text>
</g>
<g >
<title>pfree (90 samples, 0.08%)</title><rect x="1174.8" y="539" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1177.83" y="549.5" ></text>
</g>
<g >
<title>__rcu_read_lock (16 samples, 0.01%)</title><rect x="417.6" y="315" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="420.60" y="325.5" ></text>
</g>
<g >
<title>GETSTRUCT (21 samples, 0.02%)</title><rect x="1077.3" y="571" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1080.29" y="581.5" ></text>
</g>
<g >
<title>palloc (39 samples, 0.03%)</title><rect x="1364.6" y="779" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1367.55" y="789.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (11 samples, 0.01%)</title><rect x="270.6" y="619" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="273.55" y="629.5" ></text>
</g>
<g >
<title>LockAcquireExtended (87 samples, 0.07%)</title><rect x="21.7" y="395" width="1.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="24.73" y="405.5" ></text>
</g>
<g >
<title>__strlen_evex (44 samples, 0.04%)</title><rect x="748.5" y="699" width="0.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="751.55" y="709.5" ></text>
</g>
<g >
<title>__inet_lookup_established (432 samples, 0.37%)</title><rect x="339.0" y="251" width="5.0" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text  x="341.99" y="261.5" ></text>
</g>
<g >
<title>list_length (13 samples, 0.01%)</title><rect x="634.3" y="571" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="637.35" y="581.5" ></text>
</g>
<g >
<title>IndexInfoFindDataOffset (15 samples, 0.01%)</title><rect x="963.6" y="395" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="966.55" y="405.5" ></text>
</g>
<g >
<title>ReadBuffer (43 samples, 0.04%)</title><rect x="1029.7" y="395" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1032.65" y="405.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (13 samples, 0.01%)</title><rect x="793.9" y="635" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="796.90" y="645.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (9 samples, 0.01%)</title><rect x="1274.7" y="427" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1277.75" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (21 samples, 0.02%)</title><rect x="1219.3" y="571" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1222.32" y="581.5" ></text>
</g>
<g >
<title>doDeletion (12 samples, 0.01%)</title><rect x="1263.9" y="347" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1266.92" y="357.5" ></text>
</g>
<g >
<title>netif_skb_features (104 samples, 0.09%)</title><rect x="430.7" y="395" width="1.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="433.68" y="405.5" ></text>
</g>
<g >
<title>ProcessUtility (46 samples, 0.04%)</title><rect x="1264.1" y="699" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1267.12" y="709.5" ></text>
</g>
<g >
<title>pgss_ExecutorEnd (4,924 samples, 4.16%)</title><rect x="1123.3" y="603" width="57.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1126.26" y="613.5" >pgss..</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (42 samples, 0.04%)</title><rect x="525.1" y="587" width="0.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="528.11" y="597.5" ></text>
</g>
<g >
<title>bpf_skops_write_hdr_opt.isra.0 (43 samples, 0.04%)</title><rect x="436.3" y="459" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="439.28" y="469.5" ></text>
</g>
<g >
<title>validate_xmit_xfrm (11 samples, 0.01%)</title><rect x="432.0" y="411" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="434.97" y="421.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (16 samples, 0.01%)</title><rect x="734.0" y="635" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="736.95" y="645.5" ></text>
</g>
<g >
<title>update_load_avg (325 samples, 0.27%)</title><rect x="160.4" y="459" width="3.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="163.36" y="469.5" ></text>
</g>
<g >
<title>palloc (67 samples, 0.06%)</title><rect x="562.7" y="683" width="0.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="565.70" y="693.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (168 samples, 0.14%)</title><rect x="1243.2" y="667" width="2.0" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1246.22" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (21 samples, 0.02%)</title><rect x="737.7" y="635" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="740.69" y="645.5" ></text>
</g>
<g >
<title>cubictcp_cwnd_event (48 samples, 0.04%)</title><rect x="436.8" y="459" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="439.79" y="469.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (50 samples, 0.04%)</title><rect x="292.0" y="507" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="294.98" y="517.5" ></text>
</g>
<g >
<title>pg_class_aclmask (348 samples, 0.29%)</title><rect x="580.5" y="603" width="4.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="583.51" y="613.5" ></text>
</g>
<g >
<title>btgettuple (476 samples, 0.40%)</title><rect x="12.9" y="491" width="5.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="15.88" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (178 samples, 0.15%)</title><rect x="1045.8" y="363" width="2.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1048.81" y="373.5" ></text>
</g>
<g >
<title>exec_stmts (17 samples, 0.01%)</title><rect x="24.8" y="651" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="27.82" y="661.5" ></text>
</g>
<g >
<title>exec_toplevel_block (17 samples, 0.01%)</title><rect x="24.8" y="683" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="27.82" y="693.5" ></text>
</g>
<g >
<title>ProcessUtility (28 samples, 0.02%)</title><rect x="1276.7" y="667" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1279.67" y="677.5" ></text>
</g>
<g >
<title>appendBinaryStringInfoNT (58 samples, 0.05%)</title><rect x="1073.2" y="587" width="0.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="1076.17" y="597.5" ></text>
</g>
<g >
<title>enable_statement_timeout (36 samples, 0.03%)</title><rect x="1351.2" y="779" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1354.22" y="789.5" ></text>
</g>
<g >
<title>mutex_unlock (36 samples, 0.03%)</title><rect x="141.1" y="539" width="0.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="144.08" y="549.5" ></text>
</g>
<g >
<title>relation_open (1,796 samples, 1.52%)</title><rect x="688.3" y="587" width="21.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="691.32" y="597.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (144 samples, 0.12%)</title><rect x="757.2" y="683" width="1.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="760.16" y="693.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (318 samples, 0.27%)</title><rect x="41.0" y="283" width="3.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="43.95" y="293.5" ></text>
</g>
<g >
<title>hash_initial_lookup (29 samples, 0.02%)</title><rect x="488.8" y="651" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="491.82" y="661.5" ></text>
</g>
<g >
<title>tcp_chrono_stop (9 samples, 0.01%)</title><rect x="405.5" y="203" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="408.46" y="213.5" ></text>
</g>
<g >
<title>LWLockRelease (46 samples, 0.04%)</title><rect x="889.2" y="315" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="892.23" y="325.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (23 samples, 0.02%)</title><rect x="1102.4" y="443" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1105.45" y="453.5" ></text>
</g>
<g >
<title>__rcu_read_lock (333 samples, 0.28%)</title><rect x="309.7" y="443" width="3.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="312.66" y="453.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (32 samples, 0.03%)</title><rect x="583.6" y="523" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="586.63" y="533.5" ></text>
</g>
<g >
<title>CStringGetDatum (9 samples, 0.01%)</title><rect x="1069.4" y="555" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1072.44" y="565.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (41 samples, 0.03%)</title><rect x="194.2" y="459" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="197.21" y="469.5" ></text>
</g>
<g >
<title>palloc0 (388 samples, 0.33%)</title><rect x="709.6" y="587" width="4.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="712.56" y="597.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (24 samples, 0.02%)</title><rect x="1353.1" y="779" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1356.12" y="789.5" ></text>
</g>
<g >
<title>ExecEvalParamExtern (48 samples, 0.04%)</title><rect x="844.5" y="475" width="0.6" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="847.52" y="485.5" ></text>
</g>
<g >
<title>FastPathTransferRelationLocks (80 samples, 0.07%)</title><rect x="21.7" y="379" width="1.0" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="24.74" y="389.5" ></text>
</g>
<g >
<title>native_sched_clock (34 samples, 0.03%)</title><rect x="205.2" y="459" width="0.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="208.23" y="469.5" ></text>
</g>
<g >
<title>__fget_light (125 samples, 0.11%)</title><rect x="258.6" y="539" width="1.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="261.63" y="549.5" ></text>
</g>
<g >
<title>ExecInitExprRec (100 samples, 0.08%)</title><rect x="650.9" y="555" width="1.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="653.93" y="565.5" ></text>
</g>
<g >
<title>internal_flush (21 samples, 0.02%)</title><rect x="269.2" y="715" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="272.20" y="725.5" ></text>
</g>
<g >
<title>ExecReadyExpr (79 samples, 0.07%)</title><rect x="608.6" y="539" width="0.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="611.57" y="549.5" ></text>
</g>
<g >
<title>printtup_startup (547 samples, 0.46%)</title><rect x="1085.7" y="635" width="6.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1088.70" y="645.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (56 samples, 0.05%)</title><rect x="666.8" y="507" width="0.7" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="669.83" y="517.5" ></text>
</g>
<g >
<title>RelationFlushRelation (11 samples, 0.01%)</title><rect x="1388.9" y="395" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1391.87" y="405.5" ></text>
</g>
<g >
<title>StartReadBuffer (20 samples, 0.02%)</title><rect x="12.2" y="395" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="15.16" y="405.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (280 samples, 0.24%)</title><rect x="1133.5" y="523" width="3.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1136.49" y="533.5" ></text>
</g>
<g >
<title>ExecReScan (792 samples, 0.67%)</title><rect x="838.0" y="571" width="9.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="841.01" y="581.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (22 samples, 0.02%)</title><rect x="1222.6" y="555" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1225.59" y="565.5" ></text>
</g>
<g >
<title>exec_toplevel_block (88 samples, 0.07%)</title><rect x="84.9" y="555" width="1.0" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="87.91" y="565.5" ></text>
</g>
<g >
<title>CopyQueryCompletion (14 samples, 0.01%)</title><rect x="822.4" y="699" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="825.41" y="709.5" ></text>
</g>
<g >
<title>RevalidateCachedQuery (1,952 samples, 1.65%)</title><rect x="513.8" y="699" width="22.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="516.83" y="709.5" ></text>
</g>
<g >
<title>[[vdso]] (31 samples, 0.03%)</title><rect x="1097.1" y="667" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1100.10" y="677.5" ></text>
</g>
<g >
<title>initStringInfo (392 samples, 0.33%)</title><rect x="1087.5" y="619" width="4.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1090.45" y="629.5" ></text>
</g>
<g >
<title>hash_bytes (19 samples, 0.02%)</title><rect x="1265.0" y="811" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1268.01" y="821.5" ></text>
</g>
<g >
<title>is_log_level_output (11 samples, 0.01%)</title><rect x="1242.7" y="619" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1245.73" y="629.5" ></text>
</g>
<g >
<title>exec_stmts (209 samples, 0.18%)</title><rect x="21.3" y="571" width="2.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="24.26" y="581.5" ></text>
</g>
<g >
<title>SearchCatCache1 (190 samples, 0.16%)</title><rect x="582.3" y="555" width="2.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="585.27" y="565.5" ></text>
</g>
<g >
<title>DefineRelation (14 samples, 0.01%)</title><rect x="23.3" y="443" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="26.30" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (170 samples, 0.14%)</title><rect x="1045.9" y="347" width="2.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1048.90" y="357.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (15,411 samples, 13.03%)</title><rect x="293.0" y="523" width="179.8" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="296.01" y="533.5" >tcp_sendmsg_locked</text>
</g>
<g >
<title>Int32GetDatum (16 samples, 0.01%)</title><rect x="15.3" y="363" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="18.32" y="373.5" ></text>
</g>
<g >
<title>_bt_compare (358 samples, 0.30%)</title><rect x="1035.5" y="411" width="4.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1038.47" y="421.5" ></text>
</g>
<g >
<title>futex_wake (10 samples, 0.01%)</title><rect x="1220.3" y="523" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1223.31" y="533.5" ></text>
</g>
<g >
<title>ExecClearTuple (102 samples, 0.09%)</title><rect x="845.5" y="523" width="1.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="848.50" y="533.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (17 samples, 0.01%)</title><rect x="1308.8" y="779" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="1311.79" y="789.5" ></text>
</g>
<g >
<title>pgstat_clear_backend_activity_snapshot (23 samples, 0.02%)</title><rect x="1370.7" y="779" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1373.69" y="789.5" ></text>
</g>
<g >
<title>ReleaseCatCache (76 samples, 0.06%)</title><rect x="581.1" y="555" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="584.13" y="565.5" ></text>
</g>
<g >
<title>LWLockAcquire (83 samples, 0.07%)</title><rect x="524.9" y="619" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="527.92" y="629.5" ></text>
</g>
<g >
<title>pgss_ExecutorFinish (210 samples, 0.18%)</title><rect x="1180.8" y="603" width="2.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1183.82" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (40 samples, 0.03%)</title><rect x="1054.8" y="331" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1057.77" y="341.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (39 samples, 0.03%)</title><rect x="718.3" y="635" width="0.5" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="721.33" y="645.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (20 samples, 0.02%)</title><rect x="875.1" y="363" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="878.15" y="373.5" ></text>
</g>
<g >
<title>__virt_addr_valid (81 samples, 0.07%)</title><rect x="249.9" y="443" width="1.0" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="252.91" y="453.5" ></text>
</g>
<g >
<title>update_ps_display_precheck (9 samples, 0.01%)</title><rect x="759.6" y="683" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="762.62" y="693.5" ></text>
</g>
<g >
<title>PortalRunUtility (209 samples, 0.18%)</title><rect x="21.3" y="779" width="2.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="24.26" y="789.5" ></text>
</g>
<g >
<title>AtEOXact_Aio (24 samples, 0.02%)</title><rect x="1109.9" y="667" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1112.93" y="677.5" ></text>
</g>
<g >
<title>resetStringInfo (24 samples, 0.02%)</title><rect x="1376.8" y="779" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1379.78" y="789.5" ></text>
</g>
<g >
<title>secure_write (34 samples, 0.03%)</title><rect x="1377.6" y="779" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1380.57" y="789.5" ></text>
</g>
<g >
<title>initStringInfoInternal (389 samples, 0.33%)</title><rect x="1087.5" y="603" width="4.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1090.48" y="613.5" ></text>
</g>
<g >
<title>performMultipleDeletions (72 samples, 0.06%)</title><rect x="85.0" y="331" width="0.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="88.04" y="341.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (14 samples, 0.01%)</title><rect x="615.9" y="491" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="618.92" y="501.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (27 samples, 0.02%)</title><rect x="739.4" y="651" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="742.45" y="661.5" ></text>
</g>
<g >
<title>BlockIdSet (11 samples, 0.01%)</title><rect x="1168.4" y="491" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1171.42" y="501.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (20 samples, 0.02%)</title><rect x="25.8" y="651" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="28.81" y="661.5" ></text>
</g>
<g >
<title>dlist_move_head (10 samples, 0.01%)</title><rect x="1351.1" y="779" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1354.10" y="789.5" ></text>
</g>
<g >
<title>tcp_push (11 samples, 0.01%)</title><rect x="452.4" y="507" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="455.40" y="517.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (245 samples, 0.21%)</title><rect x="732.4" y="715" width="2.9" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="735.44" y="725.5" ></text>
</g>
<g >
<title>GetUserIdAndSecContext (12 samples, 0.01%)</title><rect x="1311.9" y="779" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1314.91" y="789.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (13 samples, 0.01%)</title><rect x="1185.5" y="539" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1188.50" y="549.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (18 samples, 0.02%)</title><rect x="608.3" y="491" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="611.28" y="501.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,123 samples, 0.95%)</title><rect x="766.1" y="603" width="13.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="769.09" y="613.5" ></text>
</g>
<g >
<title>exec_stmt_block (28 samples, 0.02%)</title><rect x="1276.7" y="779" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1279.67" y="789.5" ></text>
</g>
<g >
<title>should_output_to_server (9 samples, 0.01%)</title><rect x="792.8" y="635" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="795.79" y="645.5" ></text>
</g>
<g >
<title>pfree (66 samples, 0.06%)</title><rect x="1189.5" y="635" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1192.47" y="645.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.01%)</title><rect x="814.5" y="651" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="817.54" y="661.5" ></text>
</g>
<g >
<title>ExecScanFetch (476 samples, 0.40%)</title><rect x="12.9" y="555" width="5.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="15.88" y="565.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (136 samples, 0.11%)</title><rect x="34.1" y="251" width="1.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="37.11" y="261.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (114 samples, 0.10%)</title><rect x="1090.4" y="539" width="1.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1093.38" y="549.5" ></text>
</g>
<g >
<title>ProcessUtility (15 samples, 0.01%)</title><rect x="1102.5" y="411" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1105.53" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (25 samples, 0.02%)</title><rect x="1230.7" y="539" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1233.66" y="549.5" ></text>
</g>
<g >
<title>tts_virtual_clear (19 samples, 0.02%)</title><rect x="849.2" y="507" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="852.24" y="517.5" ></text>
</g>
<g >
<title>do_syscall_64 (30 samples, 0.03%)</title><rect x="1264.2" y="331" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1267.15" y="341.5" ></text>
</g>
<g >
<title>UnpinBuffer (159 samples, 0.13%)</title><rect x="973.1" y="379" width="1.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="976.13" y="389.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (14 samples, 0.01%)</title><rect x="642.0" y="571" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="645.05" y="581.5" ></text>
</g>
<g >
<title>lappend (137 samples, 0.12%)</title><rect x="679.3" y="571" width="1.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="682.35" y="581.5" ></text>
</g>
<g >
<title>ComputeIndexAttrs (25 samples, 0.02%)</title><rect x="21.3" y="427" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="24.31" y="437.5" ></text>
</g>
<g >
<title>remove_entity_load_avg (33 samples, 0.03%)</title><rect x="369.0" y="107" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="372.01" y="117.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (62 samples, 0.05%)</title><rect x="516.9" y="555" width="0.8" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="519.94" y="565.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (18 samples, 0.02%)</title><rect x="25.3" y="747" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="28.26" y="757.5" ></text>
</g>
<g >
<title>AllocSetReset (153 samples, 0.13%)</title><rect x="1176.8" y="491" width="1.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1179.83" y="501.5" ></text>
</g>
<g >
<title>pgstat_get_transactional_drops (21 samples, 0.02%)</title><rect x="1200.6" y="651" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1203.56" y="661.5" ></text>
</g>
<g >
<title>PostgresMain (4,969 samples, 4.20%)</title><rect x="28.0" y="763" width="57.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="30.96" y="773.5" >Postg..</text>
</g>
<g >
<title>pg_atomic_read_u32_impl (476 samples, 0.40%)</title><rect x="64.6" y="251" width="5.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="67.56" y="261.5" ></text>
</g>
<g >
<title>ktime_get (43 samples, 0.04%)</title><rect x="253.3" y="475" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="256.25" y="485.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (18 samples, 0.02%)</title><rect x="19.0" y="731" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="21.98" y="741.5" ></text>
</g>
<g >
<title>StmtPlanRequiresRevalidation (55 samples, 0.05%)</title><rect x="536.0" y="683" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="538.95" y="693.5" ></text>
</g>
<g >
<title>tcp_ack (2,843 samples, 2.40%)</title><rect x="375.2" y="219" width="33.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="378.25" y="229.5" >tc..</text>
</g>
<g >
<title>__folio_alloc (13 samples, 0.01%)</title><rect x="26.3" y="315" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="29.29" y="325.5" ></text>
</g>
<g >
<title>ExtendBufferedRelBy (29 samples, 0.02%)</title><rect x="26.3" y="667" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="29.28" y="677.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (11,862 samples, 10.03%)</title><rect x="302.3" y="475" width="138.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="305.31" y="485.5" >__tcp_transmit..</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (24 samples, 0.02%)</title><rect x="875.1" y="379" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="878.10" y="389.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (10 samples, 0.01%)</title><rect x="1383.0" y="779" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="1385.99" y="789.5" ></text>
</g>
<g >
<title>GetSnapshotDataReuse (19 samples, 0.02%)</title><rect x="720.4" y="667" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="723.41" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (19 samples, 0.02%)</title><rect x="637.2" y="507" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="640.18" y="517.5" ></text>
</g>
<g >
<title>ReadBufferExtended (43 samples, 0.04%)</title><rect x="1387.3" y="411" width="0.5" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1390.28" y="421.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (11 samples, 0.01%)</title><rect x="1388.9" y="411" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1391.87" y="421.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (22 samples, 0.02%)</title><rect x="261.3" y="571" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="264.28" y="581.5" ></text>
</g>
<g >
<title>ReadBuffer (1,986 samples, 1.68%)</title><rect x="875.6" y="427" width="23.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="878.58" y="437.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (209 samples, 0.18%)</title><rect x="21.3" y="683" width="2.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="24.26" y="693.5" ></text>
</g>
<g >
<title>InstrEndLoop (29 samples, 0.02%)</title><rect x="1124.0" y="587" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="1127.03" y="597.5" ></text>
</g>
<g >
<title>expr_setup_walker (15 samples, 0.01%)</title><rect x="1352.9" y="779" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1355.94" y="789.5" ></text>
</g>
<g >
<title>FreeExprContext (548 samples, 0.46%)</title><rect x="1169.5" y="555" width="6.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1172.49" y="565.5" ></text>
</g>
<g >
<title>deleteObjectsInList (30 samples, 0.03%)</title><rect x="25.8" y="747" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="28.81" y="757.5" ></text>
</g>
<g >
<title>PortalDrop (6,082 samples, 5.14%)</title><rect x="1119.3" y="651" width="70.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1122.28" y="661.5" >Portal..</text>
</g>
<g >
<title>AllocSetContextCreateInternal (78 samples, 0.07%)</title><rect x="486.8" y="699" width="0.9" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="489.82" y="709.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (29 samples, 0.02%)</title><rect x="26.3" y="507" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="29.28" y="517.5" ></text>
</g>
<g >
<title>_find_next_and_bit (109 samples, 0.09%)</title><rect x="189.9" y="411" width="1.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="192.86" y="421.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (33 samples, 0.03%)</title><rect x="105.0" y="651" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="107.99" y="661.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (14 samples, 0.01%)</title><rect x="804.2" y="635" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="807.17" y="645.5" ></text>
</g>
<g >
<title>get_hash_entry (22 samples, 0.02%)</title><rect x="702.5" y="507" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="705.45" y="517.5" ></text>
</g>
<g >
<title>exec_stmts (88 samples, 0.07%)</title><rect x="84.9" y="523" width="1.0" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="87.91" y="533.5" ></text>
</g>
<g >
<title>pick_next_task_fair (31 samples, 0.03%)</title><rect x="1260.7" y="587" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1263.66" y="597.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (18 samples, 0.02%)</title><rect x="21.3" y="331" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="24.34" y="341.5" ></text>
</g>
<g >
<title>generic_file_write_iter (30 samples, 0.03%)</title><rect x="1264.2" y="283" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1267.15" y="293.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (68 samples, 0.06%)</title><rect x="1114.3" y="635" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1117.31" y="645.5" ></text>
</g>
<g >
<title>strlcpy (50 samples, 0.04%)</title><rect x="502.3" y="667" width="0.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="505.29" y="677.5" ></text>
</g>
<g >
<title>BufTagSetRelForkDetails (23 samples, 0.02%)</title><rect x="61.1" y="283" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="64.14" y="293.5" ></text>
</g>
<g >
<title>postmaster_child_launch (10 samples, 0.01%)</title><rect x="1260.1" y="763" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1263.09" y="773.5" ></text>
</g>
<g >
<title>_bt_fix_scankey_strategy (88 samples, 0.07%)</title><rect x="967.9" y="427" width="1.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="970.93" y="437.5" ></text>
</g>
<g >
<title>string_compare (30 samples, 0.03%)</title><rect x="818.9" y="667" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="821.88" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (9 samples, 0.01%)</title><rect x="1335.9" y="779" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1338.93" y="789.5" ></text>
</g>
<g >
<title>WaitLatch (47 samples, 0.04%)</title><rect x="1260.5" y="763" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="1263.50" y="773.5" ></text>
</g>
<g >
<title>hash_bytes (102 samples, 0.09%)</title><rect x="505.9" y="667" width="1.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="508.87" y="677.5" ></text>
</g>
<g >
<title>CStringGetDatum (13 samples, 0.01%)</title><rect x="1295.3" y="779" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1298.28" y="789.5" ></text>
</g>
<g >
<title>ExecReadyExpr (134 samples, 0.11%)</title><rect x="656.5" y="587" width="1.6" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="659.54" y="597.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (1,498 samples, 1.27%)</title><rect x="923.7" y="411" width="17.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="926.74" y="421.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (15 samples, 0.01%)</title><rect x="1124.4" y="587" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1127.39" y="597.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (32 samples, 0.03%)</title><rect x="836.4" y="427" width="0.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="839.39" y="437.5" ></text>
</g>
<g >
<title>ExecPostprocessPlan (20 samples, 0.02%)</title><rect x="1182.7" y="571" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1185.69" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (192 samples, 0.16%)</title><rect x="45.3" y="283" width="2.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="48.30" y="293.5" ></text>
</g>
<g >
<title>ktime_get (29 samples, 0.02%)</title><rect x="412.9" y="203" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="415.89" y="213.5" ></text>
</g>
<g >
<title>xactGetCommittedChildren (19 samples, 0.02%)</title><rect x="1201.1" y="651" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1204.10" y="661.5" ></text>
</g>
<g >
<title>alloc_perturb (48 samples, 0.04%)</title><rect x="866.8" y="379" width="0.5" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="869.78" y="389.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (34 samples, 0.03%)</title><rect x="1092.5" y="667" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1095.52" y="677.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (64 samples, 0.05%)</title><rect x="744.8" y="683" width="0.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="747.84" y="693.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (30 samples, 0.03%)</title><rect x="529.8" y="555" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="532.80" y="565.5" ></text>
</g>
<g >
<title>uint32_hash (23 samples, 0.02%)</title><rect x="763.8" y="571" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="766.83" y="581.5" ></text>
</g>
<g >
<title>standard_ExecutorFinish@plt (17 samples, 0.01%)</title><rect x="1183.1" y="587" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1186.07" y="597.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (17 samples, 0.01%)</title><rect x="24.8" y="603" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="27.82" y="613.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (18 samples, 0.02%)</title><rect x="1219.9" y="587" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1222.94" y="597.5" ></text>
</g>
<g >
<title>_bt_readpage (38 samples, 0.03%)</title><rect x="1386.8" y="459" width="0.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1389.84" y="469.5" ></text>
</g>
<g >
<title>cubictcp_acked (49 samples, 0.04%)</title><rect x="401.2" y="203" width="0.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="404.23" y="213.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (166 samples, 0.14%)</title><rect x="206.7" y="539" width="2.0" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="209.73" y="549.5" ></text>
</g>
<g >
<title>pq_endmessage_reuse (106 samples, 0.09%)</title><rect x="1071.6" y="603" width="1.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1074.62" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (20 samples, 0.02%)</title><rect x="1220.4" y="571" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1223.43" y="581.5" ></text>
</g>
<g >
<title>ExecInitExpr (560 samples, 0.47%)</title><rect x="620.3" y="587" width="6.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="623.29" y="597.5" ></text>
</g>
<g >
<title>set_ps_display (134 samples, 0.11%)</title><rect x="1257.9" y="731" width="1.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1260.94" y="741.5" ></text>
</g>
<g >
<title>shmem_write_end (19 samples, 0.02%)</title><rect x="1264.3" y="235" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1267.28" y="245.5" ></text>
</g>
<g >
<title>getObjectDescription (13 samples, 0.01%)</title><rect x="1275.4" y="443" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1278.40" y="453.5" ></text>
</g>
<g >
<title>pairingheap_add (37 samples, 0.03%)</title><rect x="562.2" y="651" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="565.21" y="661.5" ></text>
</g>
<g >
<title>BTreeTupleIsPosting (14 samples, 0.01%)</title><rect x="978.1" y="411" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="981.08" y="421.5" ></text>
</g>
<g >
<title>tcp_v4_fill_cb (16 samples, 0.01%)</title><rect x="414.9" y="251" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="417.93" y="261.5" ></text>
</g>
<g >
<title>RelationCreateStorage (9 samples, 0.01%)</title><rect x="22.8" y="395" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="25.83" y="405.5" ></text>
</g>
<g >
<title>get_hash_value (138 samples, 0.12%)</title><rect x="699.0" y="523" width="1.6" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="702.01" y="533.5" ></text>
</g>
<g >
<title>pq_writeint8 (14 samples, 0.01%)</title><rect x="1374.5" y="779" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1377.52" y="789.5" ></text>
</g>
<g >
<title>exec_toplevel_block (54 samples, 0.05%)</title><rect x="23.7" y="651" width="0.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="26.70" y="661.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (44 samples, 0.04%)</title><rect x="1260.5" y="699" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1263.53" y="709.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,947 samples, 1.65%)</title><rect x="29.0" y="395" width="22.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="31.96" y="405.5" ></text>
</g>
<g >
<title>expr_setup_walker (34 samples, 0.03%)</title><rect x="607.9" y="459" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="610.88" y="469.5" ></text>
</g>
<g >
<title>__put_user_nocheck_4 (39 samples, 0.03%)</title><rect x="124.6" y="539" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="127.57" y="549.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (14 samples, 0.01%)</title><rect x="1102.5" y="395" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1105.54" y="405.5" ></text>
</g>
<g >
<title>palloc (301 samples, 0.25%)</title><rect x="1247.7" y="699" width="3.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1250.75" y="709.5" ></text>
</g>
<g >
<title>ExecInitResultSlot (319 samples, 0.27%)</title><rect x="612.8" y="571" width="3.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="615.79" y="581.5" ></text>
</g>
<g >
<title>errstart (18 samples, 0.02%)</title><rect x="1352.5" y="779" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1355.46" y="789.5" ></text>
</g>
<g >
<title>pg_any_to_server (119 samples, 0.10%)</title><rect x="753.7" y="683" width="1.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="756.70" y="693.5" ></text>
</g>
<g >
<title>DefineRelation (41 samples, 0.03%)</title><rect x="1274.5" y="507" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1277.52" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (20 samples, 0.02%)</title><rect x="1366.1" y="779" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1369.07" y="789.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,205 samples, 1.02%)</title><rect x="360.3" y="155" width="14.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="363.34" y="165.5" ></text>
</g>
<g >
<title>__errno_location@plt (15 samples, 0.01%)</title><rect x="277.2" y="635" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="280.24" y="645.5" ></text>
</g>
<g >
<title>_bt_load (426 samples, 0.36%)</title><rect x="1269.1" y="427" width="4.9" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1272.07" y="437.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (9 samples, 0.01%)</title><rect x="20.1" y="779" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="23.12" y="789.5" ></text>
</g>
<g >
<title>LWLockRelease (9 samples, 0.01%)</title><rect x="1317.9" y="779" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1320.94" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (148 samples, 0.13%)</title><rect x="15.6" y="347" width="1.7" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="18.61" y="357.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (85 samples, 0.07%)</title><rect x="416.6" y="283" width="1.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="419.61" y="293.5" ></text>
</g>
<g >
<title>btint4cmp (24 samples, 0.02%)</title><rect x="1262.5" y="811" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1265.48" y="821.5" ></text>
</g>
<g >
<title>SearchSysCache1 (321 samples, 0.27%)</title><rect x="738.0" y="699" width="3.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="741.00" y="709.5" ></text>
</g>
<g >
<title>tcp_stream_alloc_skb (1,166 samples, 0.99%)</title><rect x="459.0" y="507" width="13.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="461.98" y="517.5" ></text>
</g>
<g >
<title>ipv4_dst_check (11 samples, 0.01%)</title><rect x="347.4" y="235" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="350.39" y="245.5" ></text>
</g>
<g >
<title>tcp_wfree (49 samples, 0.04%)</title><rect x="428.7" y="379" width="0.6" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="431.75" y="389.5" ></text>
</g>
<g >
<title>ExecIndexScan (115 samples, 0.10%)</title><rect x="11.4" y="635" width="1.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="14.45" y="645.5" ></text>
</g>
<g >
<title>get_timeout_active (9 samples, 0.01%)</title><rect x="1246.5" y="699" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1249.52" y="709.5" ></text>
</g>
<g >
<title>PortalRun (210 samples, 0.18%)</title><rect x="21.2" y="811" width="2.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="24.25" y="821.5" ></text>
</g>
<g >
<title>ExecDropStmt (49 samples, 0.04%)</title><rect x="1275.9" y="763" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1278.94" y="773.5" ></text>
</g>
<g >
<title>skb_release_data (286 samples, 0.24%)</title><rect x="421.4" y="331" width="3.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="424.41" y="341.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (63 samples, 0.05%)</title><rect x="513.1" y="651" width="0.7" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="516.07" y="661.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (17 samples, 0.01%)</title><rect x="24.8" y="699" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="27.82" y="709.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (22,813 samples, 19.29%)</title><rect x="825.9" y="651" width="266.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="828.91" y="661.5" >standard_ExecutorRun</text>
</g>
<g >
<title>GrantLockLocal (10 samples, 0.01%)</title><rect x="510.6" y="635" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="513.56" y="645.5" ></text>
</g>
<g >
<title>exec_stmt_block (209 samples, 0.18%)</title><rect x="21.3" y="619" width="2.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="24.26" y="629.5" ></text>
</g>
<g >
<title>resetStringInfo (74 samples, 0.06%)</title><rect x="267.1" y="683" width="0.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="270.12" y="693.5" ></text>
</g>
<g >
<title>sk_reset_timer (142 samples, 0.12%)</title><rect x="353.4" y="219" width="1.7" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="356.44" y="229.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (130 samples, 0.11%)</title><rect x="573.1" y="635" width="1.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="576.08" y="645.5" ></text>
</g>
<g >
<title>dequeue_task_fair (1,192 samples, 1.01%)</title><rect x="150.6" y="491" width="13.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="153.55" y="501.5" ></text>
</g>
<g >
<title>tcp_rate_gen (20 samples, 0.02%)</title><rect x="405.9" y="203" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="408.88" y="213.5" ></text>
</g>
<g >
<title>skb_clone_tx_timestamp (15 samples, 0.01%)</title><rect x="428.6" y="379" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="431.57" y="389.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (19 samples, 0.02%)</title><rect x="1219.3" y="555" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1222.35" y="565.5" ></text>
</g>
<g >
<title>expr_setup_walker (16 samples, 0.01%)</title><rect x="606.7" y="475" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="609.72" y="485.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (22 samples, 0.02%)</title><rect x="1159.4" y="475" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1162.37" y="485.5" ></text>
</g>
<g >
<title>OutputFunctionCall (250 samples, 0.21%)</title><rect x="1068.2" y="603" width="2.9" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="1071.17" y="613.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (14 samples, 0.01%)</title><rect x="535.8" y="667" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="538.79" y="677.5" ></text>
</g>
<g >
<title>__sk_dst_check (19 samples, 0.02%)</title><rect x="313.7" y="443" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="316.75" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (481 samples, 0.41%)</title><rect x="64.5" y="267" width="5.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="67.50" y="277.5" ></text>
</g>
<g >
<title>HeapTupleHasNulls (20 samples, 0.02%)</title><rect x="852.3" y="363" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="855.29" y="373.5" ></text>
</g>
<g >
<title>exec_stmts (77 samples, 0.07%)</title><rect x="1101.8" y="507" width="0.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1104.82" y="517.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (727 samples, 0.61%)</title><rect x="1267.3" y="587" width="8.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1270.35" y="597.5" ></text>
</g>
<g >
<title>IndexNext (12 samples, 0.01%)</title><rect x="1313.6" y="779" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1316.65" y="789.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (14 samples, 0.01%)</title><rect x="1085.1" y="587" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1088.13" y="597.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (46 samples, 0.04%)</title><rect x="658.1" y="587" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="661.12" y="597.5" ></text>
</g>
<g >
<title>BufferGetPage (9 samples, 0.01%)</title><rect x="972.7" y="411" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="975.65" y="421.5" ></text>
</g>
<g >
<title>InitBufferTag (28 samples, 0.02%)</title><rect x="1313.9" y="779" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1316.87" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (59 samples, 0.05%)</title><rect x="70.6" y="251" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="73.64" y="261.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (32 samples, 0.03%)</title><rect x="1275.0" y="427" width="0.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1278.00" y="437.5" ></text>
</g>
<g >
<title>OidInputFunctionCall (9 samples, 0.01%)</title><rect x="1324.5" y="779" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1327.50" y="789.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (24 samples, 0.02%)</title><rect x="685.0" y="491" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="687.96" y="501.5" ></text>
</g>
<g >
<title>PortalStart (14,956 samples, 12.65%)</title><rect x="557.9" y="715" width="174.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="560.93" y="725.5" >PortalStart</text>
</g>
<g >
<title>CreateExecutorState (634 samples, 0.54%)</title><rect x="571.2" y="651" width="7.4" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="574.18" y="661.5" ></text>
</g>
<g >
<title>string_hash (123 samples, 0.10%)</title><rect x="1188.0" y="619" width="1.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1191.01" y="629.5" ></text>
</g>
<g >
<title>SearchSysCache1 (202 samples, 0.17%)</title><rect x="1078.2" y="571" width="2.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1081.15" y="581.5" ></text>
</g>
<g >
<title>AllocSetFree (37 samples, 0.03%)</title><rect x="555.5" y="683" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="558.53" y="693.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (154 samples, 0.13%)</title><rect x="643.7" y="571" width="1.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="646.75" y="581.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (209 samples, 0.18%)</title><rect x="21.3" y="523" width="2.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="24.26" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (223 samples, 0.19%)</title><rect x="1137.0" y="539" width="2.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1140.01" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (232 samples, 0.20%)</title><rect x="776.4" y="555" width="2.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="779.44" y="565.5" ></text>
</g>
<g >
<title>string_hash (121 samples, 0.10%)</title><rect x="819.3" y="683" width="1.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="822.28" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (37 samples, 0.03%)</title><rect x="696.0" y="507" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="698.99" y="517.5" ></text>
</g>
<g >
<title>rb_insert_color (28 samples, 0.02%)</title><rect x="444.5" y="459" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="447.51" y="469.5" ></text>
</g>
<g >
<title>AllocSetAlloc (41 samples, 0.03%)</title><rect x="569.6" y="635" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="572.59" y="645.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (17 samples, 0.01%)</title><rect x="45.1" y="283" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="48.10" y="293.5" ></text>
</g>
<g >
<title>planstate_walk_subplans (30 samples, 0.03%)</title><rect x="1064.4" y="571" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1067.39" y="581.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (28 samples, 0.02%)</title><rect x="820.4" y="651" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="823.35" y="661.5" ></text>
</g>
<g >
<title>AllocSetFree (62 samples, 0.05%)</title><rect x="554.3" y="667" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="557.34" y="677.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (48 samples, 0.04%)</title><rect x="874.2" y="411" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="877.18" y="421.5" ></text>
</g>
<g >
<title>hash_initial_lookup (24 samples, 0.02%)</title><rect x="505.1" y="667" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="508.07" y="677.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (18 samples, 0.02%)</title><rect x="701.4" y="539" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="704.35" y="549.5" ></text>
</g>
<g >
<title>clear_page_erms (116 samples, 0.10%)</title><rect x="1272.7" y="155" width="1.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1275.67" y="165.5" ></text>
</g>
<g >
<title>string_compare (10 samples, 0.01%)</title><rect x="798.4" y="667" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="801.36" y="677.5" ></text>
</g>
<g >
<title>__update_load_avg_se (72 samples, 0.06%)</title><rect x="163.3" y="443" width="0.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="166.32" y="453.5" ></text>
</g>
<g >
<title>tag_hash (135 samples, 0.11%)</title><rect x="877.2" y="283" width="1.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="880.19" y="293.5" ></text>
</g>
<g >
<title>AtEOXact_Parallel (27 samples, 0.02%)</title><rect x="1113.4" y="667" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1116.36" y="677.5" ></text>
</g>
<g >
<title>AllocSetAlloc (187 samples, 0.16%)</title><rect x="1249.0" y="683" width="2.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1252.02" y="693.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (31 samples, 0.03%)</title><rect x="1334.0" y="779" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1336.98" y="789.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (13 samples, 0.01%)</title><rect x="874.9" y="411" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="877.88" y="421.5" ></text>
</g>
<g >
<title>xactGetCommittedInvalidationMessages (20 samples, 0.02%)</title><rect x="1201.3" y="651" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1204.32" y="661.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (254 samples, 0.21%)</title><rect x="852.0" y="379" width="3.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="855.00" y="389.5" ></text>
</g>
<g >
<title>CleanQuerytext (13 samples, 0.01%)</title><rect x="1295.8" y="779" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1298.83" y="789.5" ></text>
</g>
<g >
<title>DatumGetBool (10 samples, 0.01%)</title><rect x="981.5" y="379" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="984.46" y="389.5" ></text>
</g>
<g >
<title>deleteOneObject (23 samples, 0.02%)</title><rect x="1263.8" y="363" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1266.79" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (188 samples, 0.16%)</title><rect x="721.1" y="635" width="2.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="724.13" y="645.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (25 samples, 0.02%)</title><rect x="1369.6" y="779" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1372.58" y="789.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (20 samples, 0.02%)</title><rect x="906.7" y="427" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="909.68" y="437.5" ></text>
</g>
<g >
<title>ExecInitIndexScan (11,030 samples, 9.33%)</title><rect x="586.0" y="619" width="128.7" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="589.02" y="629.5" >ExecInitIndex..</text>
</g>
<g >
<title>GetPrivateRefCountEntry (34 samples, 0.03%)</title><rect x="872.1" y="395" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="875.07" y="405.5" ></text>
</g>
<g >
<title>bms_copy (9 samples, 0.01%)</title><rect x="1348.2" y="779" width="0.1" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="1351.18" y="789.5" ></text>
</g>
<g >
<title>PinBufferForBlock (14 samples, 0.01%)</title><rect x="1325.6" y="779" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1328.63" y="789.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (727 samples, 0.61%)</title><rect x="1267.3" y="763" width="8.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1270.35" y="773.5" ></text>
</g>
<g >
<title>tcp_established_options (11 samples, 0.01%)</title><rect x="438.3" y="459" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="441.31" y="469.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (129 samples, 0.11%)</title><rect x="1114.1" y="651" width="1.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1117.15" y="661.5" ></text>
</g>
<g >
<title>PortalRun (88 samples, 0.07%)</title><rect x="84.9" y="731" width="1.0" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="87.91" y="741.5" ></text>
</g>
<g >
<title>PortalDefineQuery (27 samples, 0.02%)</title><rect x="1328.0" y="779" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="1331.02" y="789.5" ></text>
</g>
<g >
<title>index_create (29 samples, 0.02%)</title><rect x="1388.9" y="507" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1391.87" y="517.5" ></text>
</g>
<g >
<title>clear_bhb_loop (148 samples, 0.13%)</title><rect x="278.8" y="619" width="1.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="281.81" y="629.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (54 samples, 0.05%)</title><rect x="23.7" y="571" width="0.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="26.70" y="581.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (10 samples, 0.01%)</title><rect x="644.7" y="539" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="647.69" y="549.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (727 samples, 0.61%)</title><rect x="1267.3" y="619" width="8.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1270.35" y="629.5" ></text>
</g>
<g >
<title>MemoryContextCreate (101 samples, 0.09%)</title><rect x="591.6" y="539" width="1.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="594.57" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (142 samples, 0.12%)</title><rect x="546.5" y="635" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="549.52" y="645.5" ></text>
</g>
<g >
<title>PageGetItem (1,177 samples, 1.00%)</title><rect x="947.8" y="411" width="13.7" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="950.79" y="421.5" ></text>
</g>
<g >
<title>palloc (61 samples, 0.05%)</title><rect x="644.8" y="539" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="647.82" y="549.5" ></text>
</g>
<g >
<title>btgettuple (81 samples, 0.07%)</title><rect x="1386.8" y="507" width="1.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1389.84" y="517.5" ></text>
</g>
<g >
<title>postmaster_child_launch (100,632 samples, 85.08%)</title><rect x="85.9" y="779" width="1174.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="88.93" y="789.5" >postmaster_child_launch</text>
</g>
<g >
<title>index_getnext_slot (16 samples, 0.01%)</title><rect x="1276.2" y="667" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1279.20" y="677.5" ></text>
</g>
<g >
<title>flush_ps_display (26 samples, 0.02%)</title><rect x="1258.9" y="699" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="1261.94" y="709.5" ></text>
</g>
<g >
<title>ExecInitExprRec (146 samples, 0.12%)</title><rect x="621.3" y="571" width="1.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="624.25" y="581.5" ></text>
</g>
<g >
<title>ExecScanExtended (476 samples, 0.40%)</title><rect x="12.9" y="571" width="5.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="15.88" y="581.5" ></text>
</g>
<g >
<title>heap_inplace_update_and_unlock (40 samples, 0.03%)</title><rect x="1265.4" y="811" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1268.45" y="821.5" ></text>
</g>
<g >
<title>BoolGetDatum (10 samples, 0.01%)</title><rect x="1387.1" y="379" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1390.08" y="389.5" ></text>
</g>
<g >
<title>_bt_parallel_done (14 samples, 0.01%)</title><rect x="835.4" y="427" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="838.42" y="437.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (529 samples, 0.45%)</title><rect x="941.6" y="411" width="6.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="944.62" y="421.5" ></text>
</g>
<g >
<title>UnpinBuffer (86 samples, 0.07%)</title><rect x="836.2" y="443" width="1.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="839.20" y="453.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (37 samples, 0.03%)</title><rect x="728.9" y="683" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="731.90" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (23 samples, 0.02%)</title><rect x="974.6" y="331" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="977.65" y="341.5" ></text>
</g>
<g >
<title>exec_stmt_fori (727 samples, 0.61%)</title><rect x="1267.3" y="651" width="8.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1270.35" y="661.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (59 samples, 0.05%)</title><rect x="417.8" y="315" width="0.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="420.81" y="325.5" ></text>
</g>
<g >
<title>hash_bytes (128 samples, 0.11%)</title><rect x="528.7" y="571" width="1.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="531.66" y="581.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,763 samples, 3.18%)</title><rect x="217.8" y="603" width="43.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="220.84" y="613.5" >do_..</text>
</g>
<g >
<title>stmt_requires_parse_analysis (35 samples, 0.03%)</title><rect x="536.2" y="667" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="539.18" y="677.5" ></text>
</g>
<g >
<title>ReleaseCatCache (48 samples, 0.04%)</title><rect x="1077.6" y="555" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1080.58" y="565.5" ></text>
</g>
<g >
<title>dst_release (88 samples, 0.07%)</title><rect x="352.4" y="219" width="1.0" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="355.40" y="229.5" ></text>
</g>
<g >
<title>get_page_from_freelist (288 samples, 0.24%)</title><rect x="1269.3" y="59" width="3.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1272.26" y="69.5" ></text>
</g>
<g >
<title>AllocSetAlloc (28 samples, 0.02%)</title><rect x="744.2" y="699" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="747.20" y="709.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (43 samples, 0.04%)</title><rect x="872.6" y="395" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="875.64" y="405.5" ></text>
</g>
<g >
<title>AllocSetAlloc (280 samples, 0.24%)</title><rect x="864.3" y="443" width="3.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="867.28" y="453.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (32 samples, 0.03%)</title><rect x="1275.0" y="363" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1278.00" y="373.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (26 samples, 0.02%)</title><rect x="222.8" y="523" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="225.80" y="533.5" ></text>
</g>
<g >
<title>tcp_recvmsg_locked (2,467 samples, 2.09%)</title><rect x="225.0" y="523" width="28.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="227.97" y="533.5" >t..</text>
</g>
<g >
<title>exec_simple_query (88 samples, 0.07%)</title><rect x="84.9" y="747" width="1.0" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="87.91" y="757.5" ></text>
</g>
<g >
<title>CleanQuerytext (89 samples, 0.08%)</title><rect x="1130.4" y="571" width="1.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1133.40" y="581.5" ></text>
</g>
<g >
<title>SerializationNeededForRead (43 samples, 0.04%)</title><rect x="1340.1" y="779" width="0.5" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text  x="1343.05" y="789.5" ></text>
</g>
<g >
<title>pfree (11 samples, 0.01%)</title><rect x="1163.6" y="507" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1166.60" y="517.5" ></text>
</g>
<g >
<title>LWLockAcquire (442 samples, 0.37%)</title><rect x="1131.6" y="571" width="5.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1134.62" y="581.5" ></text>
</g>
<g >
<title>dlist_is_empty (61 samples, 0.05%)</title><rect x="1350.4" y="779" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1353.39" y="789.5" ></text>
</g>
<g >
<title>int4hashfast (25 samples, 0.02%)</title><rect x="668.8" y="475" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="671.82" y="485.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (14 samples, 0.01%)</title><rect x="1261.3" y="811" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1264.34" y="821.5" ></text>
</g>
<g >
<title>list_nth_cell (13 samples, 0.01%)</title><rect x="732.2" y="699" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="735.16" y="709.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (63 samples, 0.05%)</title><rect x="1263.4" y="715" width="0.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1266.38" y="725.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (27 samples, 0.02%)</title><rect x="655.4" y="523" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="658.44" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (29 samples, 0.02%)</title><rect x="1229.6" y="539" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1232.64" y="549.5" ></text>
</g>
<g >
<title>_bt_moveright (9 samples, 0.01%)</title><rect x="1346.7" y="779" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1349.75" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseAll (34 samples, 0.03%)</title><rect x="1240.7" y="619" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1243.69" y="629.5" ></text>
</g>
<g >
<title>heapam_index_fetch_begin (83 samples, 0.07%)</title><rect x="867.8" y="475" width="1.0" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="870.84" y="485.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (28 samples, 0.02%)</title><rect x="708.7" y="507" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="711.69" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (310 samples, 0.26%)</title><rect x="79.0" y="283" width="3.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="81.99" y="293.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (40 samples, 0.03%)</title><rect x="635.1" y="539" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="638.07" y="549.5" ></text>
</g>
<g >
<title>LockErrorCleanup (37 samples, 0.03%)</title><rect x="1206.0" y="619" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1209.02" y="629.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (42 samples, 0.04%)</title><rect x="1388.9" y="539" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1391.87" y="549.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (86 samples, 0.07%)</title><rect x="28.0" y="459" width="1.0" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="30.96" y="469.5" ></text>
</g>
<g >
<title>do_syscall_64 (16,771 samples, 14.18%)</title><rect x="281.4" y="603" width="195.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="284.37" y="613.5" >do_syscall_64</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (17 samples, 0.01%)</title><rect x="22.4" y="315" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="25.45" y="325.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberRelationRef (13 samples, 0.01%)</title><rect x="706.1" y="539" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="709.08" y="549.5" ></text>
</g>
<g >
<title>IndexInfoFindDataOffset (26 samples, 0.02%)</title><rect x="1313.3" y="779" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1316.34" y="789.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (22 samples, 0.02%)</title><rect x="369.1" y="91" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="372.14" y="101.5" ></text>
</g>
<g >
<title>ExecInitScanTupleSlot (25 samples, 0.02%)</title><rect x="1302.8" y="779" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1305.78" y="789.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (714 samples, 0.60%)</title><rect x="783.4" y="635" width="8.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="786.45" y="645.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (43 samples, 0.04%)</title><rect x="1267.6" y="395" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1270.62" y="405.5" ></text>
</g>
<g >
<title>AfterTriggerFireDeferred (31 samples, 0.03%)</title><rect x="1282.8" y="779" width="0.4" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1285.80" y="789.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (46 samples, 0.04%)</title><rect x="1264.1" y="667" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1267.12" y="677.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (77 samples, 0.07%)</title><rect x="1101.8" y="619" width="0.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1104.82" y="629.5" ></text>
</g>
<g >
<title>pg_pwritev (30 samples, 0.03%)</title><rect x="1264.2" y="379" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1267.15" y="389.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (46 samples, 0.04%)</title><rect x="1264.1" y="683" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1267.12" y="693.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (79 samples, 0.07%)</title><rect x="975.0" y="395" width="0.9" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="978.02" y="405.5" ></text>
</g>
<g >
<title>AtEOXact_Files (59 samples, 0.05%)</title><rect x="1110.6" y="667" width="0.7" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1113.59" y="677.5" ></text>
</g>
<g >
<title>[anon] (29 samples, 0.02%)</title><rect x="1384.6" y="795" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1387.62" y="805.5" ></text>
</g>
<g >
<title>tcp_v4_send_check (13 samples, 0.01%)</title><rect x="440.6" y="459" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="443.57" y="469.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetTupleDesc (39 samples, 0.03%)</title><rect x="1166.3" y="523" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1169.33" y="533.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (13 samples, 0.01%)</title><rect x="530.9" y="619" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="533.93" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (44 samples, 0.04%)</title><rect x="1047.9" y="363" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1050.89" y="373.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (26 samples, 0.02%)</title><rect x="907.8" y="427" width="0.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="910.82" y="437.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (16 samples, 0.01%)</title><rect x="546.1" y="667" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="549.08" y="677.5" ></text>
</g>
<g >
<title>PageGetItem (14 samples, 0.01%)</title><rect x="1038.8" y="395" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1041.78" y="405.5" ></text>
</g>
<g >
<title>resetStringInfo (16 samples, 0.01%)</title><rect x="270.8" y="667" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="273.79" y="677.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (26 samples, 0.02%)</title><rect x="858.4" y="475" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="861.40" y="485.5" ></text>
</g>
<g >
<title>pg_client_to_server (15 samples, 0.01%)</title><rect x="1257.6" y="715" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1260.57" y="725.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (14 samples, 0.01%)</title><rect x="1250.7" y="651" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1253.66" y="661.5" ></text>
</g>
<g >
<title>palloc0 (138 samples, 0.12%)</title><rect x="614.6" y="523" width="1.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="617.61" y="533.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (11 samples, 0.01%)</title><rect x="832.9" y="443" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="835.86" y="453.5" ></text>
</g>
<g >
<title>netif_rx_internal (165 samples, 0.14%)</title><rect x="426.3" y="363" width="1.9" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text  x="429.30" y="373.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (42 samples, 0.04%)</title><rect x="1330.3" y="779" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1333.30" y="789.5" ></text>
</g>
<g >
<title>BufferIsValid (23 samples, 0.02%)</title><rect x="1294.9" y="779" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1297.90" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (16 samples, 0.01%)</title><rect x="1267.1" y="811" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1270.06" y="821.5" ></text>
</g>
<g >
<title>hash_initial_lookup (57 samples, 0.05%)</title><rect x="685.2" y="491" width="0.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="688.24" y="501.5" ></text>
</g>
<g >
<title>BufTableHashCode (309 samples, 0.26%)</title><rect x="53.1" y="299" width="3.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="56.08" y="309.5" ></text>
</g>
<g >
<title>ExecProcNode (81 samples, 0.07%)</title><rect x="1386.8" y="651" width="1.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1389.84" y="661.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (16 samples, 0.01%)</title><rect x="1178.7" y="523" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1181.72" y="533.5" ></text>
</g>
<g >
<title>ExecInitInterpreter (30 samples, 0.03%)</title><rect x="1302.0" y="779" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1305.05" y="789.5" ></text>
</g>
<g >
<title>pg_qsort (35 samples, 0.03%)</title><rect x="1367.9" y="779" width="0.5" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1370.95" y="789.5" ></text>
</g>
<g >
<title>initStringInfoInternal (19 samples, 0.02%)</title><rect x="1252.3" y="731" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1255.34" y="741.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (54 samples, 0.05%)</title><rect x="23.7" y="715" width="0.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="26.70" y="725.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (11 samples, 0.01%)</title><rect x="993.0" y="411" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="996.04" y="421.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (20 samples, 0.02%)</title><rect x="526.0" y="603" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="528.99" y="613.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (17 samples, 0.01%)</title><rect x="24.8" y="587" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="27.82" y="597.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30 samples, 0.03%)</title><rect x="1264.2" y="347" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1267.15" y="357.5" ></text>
</g>
<g >
<title>palloc0 (19 samples, 0.02%)</title><rect x="1365.0" y="779" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1368.01" y="789.5" ></text>
</g>
<g >
<title>__strncmp_evex (16 samples, 0.01%)</title><rect x="1187.8" y="587" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1190.81" y="597.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (22 samples, 0.02%)</title><rect x="78.7" y="283" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="81.74" y="293.5" ></text>
</g>
<g >
<title>IsAbortedTransactionBlockState (13 samples, 0.01%)</title><rect x="548.8" y="715" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="551.76" y="725.5" ></text>
</g>
<g >
<title>ObjectIdGetDatum (72 samples, 0.06%)</title><rect x="1323.7" y="779" width="0.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1326.66" y="789.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (209 samples, 0.18%)</title><rect x="21.3" y="715" width="2.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="24.26" y="725.5" ></text>
</g>
<g >
<title>ReadyForQuery (19 samples, 0.02%)</title><rect x="1332.3" y="779" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1335.29" y="789.5" ></text>
</g>
<g >
<title>__list_add_valid (13 samples, 0.01%)</title><rect x="124.3" y="539" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="127.27" y="549.5" ></text>
</g>
<g >
<title>AllocSetAlloc (79 samples, 0.07%)</title><rect x="790.9" y="619" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="793.86" y="629.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (18 samples, 0.02%)</title><rect x="196.4" y="427" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="199.38" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (17 samples, 0.01%)</title><rect x="517.7" y="539" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="520.67" y="549.5" ></text>
</g>
<g >
<title>exec_stmts (9 samples, 0.01%)</title><rect x="20.1" y="699" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="23.12" y="709.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (29 samples, 0.02%)</title><rect x="759.4" y="699" width="0.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="762.39" y="709.5" ></text>
</g>
<g >
<title>BufTableHashCode (178 samples, 0.15%)</title><rect x="30.5" y="299" width="2.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="33.50" y="309.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (42 samples, 0.04%)</title><rect x="1388.9" y="747" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1391.87" y="757.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (63 samples, 0.05%)</title><rect x="1263.4" y="683" width="0.7" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1266.38" y="693.5" ></text>
</g>
<g >
<title>LWLockAcquire (66 samples, 0.06%)</title><rect x="793.0" y="651" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="795.99" y="661.5" ></text>
</g>
<g >
<title>ProcessUtility (77 samples, 0.07%)</title><rect x="1101.8" y="667" width="0.9" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1104.82" y="677.5" ></text>
</g>
<g >
<title>disable_statement_timeout (12 samples, 0.01%)</title><rect x="1246.5" y="715" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1249.49" y="725.5" ></text>
</g>
<g >
<title>calc_bucket (9 samples, 0.01%)</title><rect x="1223.2" y="539" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1226.19" y="549.5" ></text>
</g>
<g >
<title>shmem_write_begin (15 samples, 0.01%)</title><rect x="26.3" y="395" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="29.28" y="405.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (504 samples, 0.43%)</title><rect x="675.1" y="587" width="5.9" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="678.10" y="597.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (9 samples, 0.01%)</title><rect x="1059.4" y="379" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1062.44" y="389.5" ></text>
</g>
<g >
<title>sched_clock_cpu (15 samples, 0.01%)</title><rect x="194.7" y="459" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="197.72" y="469.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (15 samples, 0.01%)</title><rect x="872.5" y="395" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="875.46" y="405.5" ></text>
</g>
<g >
<title>update_load_avg (32 samples, 0.03%)</title><rect x="197.0" y="443" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="200.00" y="453.5" ></text>
</g>
<g >
<title>AssertCouldGetRelation (30 samples, 0.03%)</title><rect x="1285.1" y="779" width="0.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1288.13" y="789.5" ></text>
</g>
<g >
<title>check_stack_depth (12 samples, 0.01%)</title><rect x="652.0" y="539" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="654.95" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (234 samples, 0.20%)</title><rect x="539.4" y="635" width="2.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="542.40" y="645.5" ></text>
</g>
<g >
<title>list_member_oid (27 samples, 0.02%)</title><rect x="1362.6" y="779" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1365.56" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerNewParent (16 samples, 0.01%)</title><rect x="1202.1" y="635" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1205.10" y="645.5" ></text>
</g>
<g >
<title>sk_forced_mem_schedule (87 samples, 0.07%)</title><rect x="471.6" y="491" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="474.57" y="501.5" ></text>
</g>
<g >
<title>AtEOXact_MultiXact (70 samples, 0.06%)</title><rect x="1112.4" y="667" width="0.9" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="1115.45" y="677.5" ></text>
</g>
<g >
<title>ProcReleaseLocks (13 samples, 0.01%)</title><rect x="1330.8" y="779" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1333.79" y="789.5" ></text>
</g>
<g >
<title>memset@plt (20 samples, 0.02%)</title><rect x="534.4" y="619" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="537.41" y="629.5" ></text>
</g>
<g >
<title>_bt_getbuf (21 samples, 0.02%)</title><rect x="12.2" y="459" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="15.16" y="469.5" ></text>
</g>
<g >
<title>native_load_tls (30 samples, 0.03%)</title><rect x="210.1" y="603" width="0.4" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="213.13" y="613.5" ></text>
</g>
<g >
<title>PortalRun (63 samples, 0.05%)</title><rect x="1263.4" y="795" width="0.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1266.38" y="805.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (32 samples, 0.03%)</title><rect x="561.8" y="635" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="564.84" y="645.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (40 samples, 0.03%)</title><rect x="1047.9" y="347" width="0.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1050.93" y="357.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,940 samples, 1.64%)</title><rect x="876.0" y="395" width="22.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="879.04" y="405.5" ></text>
</g>
<g >
<title>AllocSetAlloc (39 samples, 0.03%)</title><rect x="557.5" y="683" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="560.45" y="693.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,298 samples, 7.02%)</title><rect x="113.2" y="603" width="96.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="116.25" y="613.5" >entry_SYS..</text>
</g>
<g >
<title>ExecCloseResultRelations (13 samples, 0.01%)</title><rect x="1156.0" y="555" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1159.03" y="565.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (88 samples, 0.07%)</title><rect x="84.9" y="459" width="1.0" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="87.91" y="469.5" ></text>
</g>
<g >
<title>tcp_rate_check_app_limited (90 samples, 0.08%)</title><rect x="452.5" y="507" width="1.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="455.53" y="517.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (33 samples, 0.03%)</title><rect x="1388.3" y="779" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1391.30" y="789.5" ></text>
</g>
<g >
<title>fmgr_info (75 samples, 0.06%)</title><rect x="1076.0" y="587" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1079.03" y="597.5" ></text>
</g>
<g >
<title>EndImplicitTransactionBlock (46 samples, 0.04%)</title><rect x="1299.8" y="779" width="0.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1302.81" y="789.5" ></text>
</g>
<g >
<title>_raw_spin_rq_lock_irqsave (25 samples, 0.02%)</title><rect x="196.3" y="443" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="199.30" y="453.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (33 samples, 0.03%)</title><rect x="99.2" y="699" width="0.4" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="102.19" y="709.5" ></text>
</g>
<g >
<title>IndexTupleHasNulls (20 samples, 0.02%)</title><rect x="963.7" y="395" width="0.3" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="966.73" y="405.5" ></text>
</g>
<g >
<title>bms_is_member (21 samples, 0.02%)</title><rect x="681.9" y="571" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="684.91" y="581.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (13 samples, 0.01%)</title><rect x="662.2" y="539" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="665.16" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (153 samples, 0.13%)</title><rect x="526.6" y="571" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="529.57" y="581.5" ></text>
</g>
<g >
<title>__tcp_cleanup_rbuf (46 samples, 0.04%)</title><rect x="234.5" y="507" width="0.5" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text  x="237.45" y="517.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (85 samples, 0.07%)</title><rect x="1093.6" y="683" width="1.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1096.60" y="693.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (36 samples, 0.03%)</title><rect x="672.3" y="523" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="675.28" y="533.5" ></text>
</g>
<g >
<title>PortalDefineQuery (50 samples, 0.04%)</title><rect x="556.1" y="715" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="559.05" y="725.5" ></text>
</g>
<g >
<title>pg_any_to_server (76 samples, 0.06%)</title><rect x="744.7" y="699" width="0.9" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="747.70" y="709.5" ></text>
</g>
<g >
<title>PreCommit_Notify (34 samples, 0.03%)</title><rect x="1329.1" y="779" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1332.08" y="789.5" ></text>
</g>
<g >
<title>__slab_free (352 samples, 0.30%)</title><rect x="397.1" y="203" width="4.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="400.13" y="213.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (63 samples, 0.05%)</title><rect x="488.4" y="667" width="0.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="491.43" y="677.5" ></text>
</g>
<g >
<title>makeParamList (121 samples, 0.10%)</title><rect x="742.4" y="715" width="1.4" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="745.44" y="725.5" ></text>
</g>
<g >
<title>ipv4_mtu (17 samples, 0.01%)</title><rect x="456.0" y="475" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="458.99" y="485.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (13 samples, 0.01%)</title><rect x="815.8" y="683" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="818.77" y="693.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (25 samples, 0.02%)</title><rect x="858.8" y="459" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="861.75" y="469.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (144 samples, 0.12%)</title><rect x="478.6" y="699" width="1.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="481.57" y="709.5" ></text>
</g>
<g >
<title>MemoryContextDelete (223 samples, 0.19%)</title><rect x="1120.2" y="635" width="2.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1123.19" y="645.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (115 samples, 0.10%)</title><rect x="728.5" y="699" width="1.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="731.53" y="709.5" ></text>
</g>
<g >
<title>AllocSetAlloc (59 samples, 0.05%)</title><rect x="733.5" y="651" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="736.45" y="661.5" ></text>
</g>
<g >
<title>hash_search (18 samples, 0.02%)</title><rect x="764.8" y="587" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="767.83" y="597.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (15 samples, 0.01%)</title><rect x="47.9" y="299" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="50.89" y="309.5" ></text>
</g>
<g >
<title>AllocSetFree (44 samples, 0.04%)</title><rect x="1203.2" y="635" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1206.17" y="645.5" ></text>
</g>
<g >
<title>pq_getbyte (13,722 samples, 11.60%)</title><rect x="102.6" y="699" width="160.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="105.64" y="709.5" >pq_getbyte</text>
</g>
<g >
<title>LWLockRelease (24 samples, 0.02%)</title><rect x="691.0" y="507" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="694.02" y="517.5" ></text>
</g>
<g >
<title>PortalCleanup (5,461 samples, 4.62%)</title><rect x="1122.8" y="635" width="63.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1125.81" y="645.5" >Porta..</text>
</g>
<g >
<title>__memset_evex_unaligned_erms (10 samples, 0.01%)</title><rect x="1259.0" y="683" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1262.03" y="693.5" ></text>
</g>
<g >
<title>exec_toplevel_block (23 samples, 0.02%)</title><rect x="19.8" y="731" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="22.79" y="741.5" ></text>
</g>
<g >
<title>slot_getallattrs (12 samples, 0.01%)</title><rect x="1081.9" y="603" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1084.92" y="613.5" ></text>
</g>
<g >
<title>table_index_fetch_end (87 samples, 0.07%)</title><rect x="1163.7" y="507" width="1.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1166.73" y="517.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (33 samples, 0.03%)</title><rect x="82.9" y="315" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="85.91" y="325.5" ></text>
</g>
<g >
<title>_bt_drop_lock_and_maybe_pin (494 samples, 0.42%)</title><rect x="970.2" y="427" width="5.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="973.20" y="437.5" ></text>
</g>
<g >
<title>get_typstorage (257 samples, 0.22%)</title><rect x="634.5" y="587" width="3.0" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="637.51" y="597.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (134 samples, 0.11%)</title><rect x="1221.7" y="571" width="1.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1224.73" y="581.5" ></text>
</g>
<g >
<title>IndexNext (603 samples, 0.51%)</title><rect x="830.3" y="539" width="7.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="833.29" y="549.5" ></text>
</g>
<g >
<title>ProcessUtility (88 samples, 0.07%)</title><rect x="84.9" y="427" width="1.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="87.91" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (183 samples, 0.15%)</title><rect x="721.2" y="619" width="2.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="724.19" y="629.5" ></text>
</g>
<g >
<title>btgettuple (9 samples, 0.01%)</title><rect x="25.3" y="555" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="28.27" y="565.5" ></text>
</g>
<g >
<title>ProcessUtility (45 samples, 0.04%)</title><rect x="1264.1" y="635" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1267.13" y="645.5" ></text>
</g>
<g >
<title>PreCommit_Portals (27 samples, 0.02%)</title><rect x="1329.5" y="779" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text  x="1332.48" y="789.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (56 samples, 0.05%)</title><rect x="1159.6" y="507" width="0.7" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1162.63" y="517.5" ></text>
</g>
<g >
<title>table_open (428 samples, 0.36%)</title><rect x="682.6" y="571" width="5.0" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="685.58" y="581.5" ></text>
</g>
<g >
<title>pfree (66 samples, 0.06%)</title><rect x="271.4" y="699" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="274.36" y="709.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (35 samples, 0.03%)</title><rect x="802.3" y="635" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="805.30" y="645.5" ></text>
</g>
<g >
<title>IndexInfoFindDataOffset (27 samples, 0.02%)</title><rect x="1025.6" y="379" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1028.60" y="389.5" ></text>
</g>
<g >
<title>strncpy@plt (38 samples, 0.03%)</title><rect x="671.6" y="523" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="674.57" y="533.5" ></text>
</g>
<g >
<title>Int32GetDatum (59 samples, 0.05%)</title><rect x="1018.2" y="363" width="0.6" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1021.16" y="373.5" ></text>
</g>
<g >
<title>AllocSetFree (33 samples, 0.03%)</title><rect x="271.5" y="683" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="274.53" y="693.5" ></text>
</g>
<g >
<title>check_spread.isra.0 (26 samples, 0.02%)</title><rect x="204.4" y="459" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="207.40" y="469.5" ></text>
</g>
<g >
<title>uint32_hash (99 samples, 0.08%)</title><rect x="685.9" y="507" width="1.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="688.91" y="517.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (14 samples, 0.01%)</title><rect x="1100.1" y="651" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1103.14" y="661.5" ></text>
</g>
<g >
<title>get_rightop (25 samples, 0.02%)</title><rect x="634.2" y="587" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="637.22" y="597.5" ></text>
</g>
<g >
<title>index_getnext_slot (9 samples, 0.01%)</title><rect x="25.3" y="587" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="28.27" y="597.5" ></text>
</g>
<g >
<title>AllocSetFree (25 samples, 0.02%)</title><rect x="729.4" y="667" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="732.44" y="677.5" ></text>
</g>
<g >
<title>CatalogTuplesMultiInsertWithInfo (13 samples, 0.01%)</title><rect x="1274.4" y="443" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1277.37" y="453.5" ></text>
</g>
<g >
<title>exec_stmts (63 samples, 0.05%)</title><rect x="1263.4" y="555" width="0.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1266.38" y="565.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (415 samples, 0.35%)</title><rect x="1269.2" y="203" width="4.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="1272.18" y="213.5" ></text>
</g>
<g >
<title>PortalRun (77 samples, 0.07%)</title><rect x="1101.8" y="715" width="0.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1104.82" y="725.5" ></text>
</g>
<g >
<title>__GI___errno_location (39 samples, 0.03%)</title><rect x="105.9" y="635" width="0.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="108.90" y="645.5" ></text>
</g>
<g >
<title>palloc0 (121 samples, 0.10%)</title><rect x="1080.5" y="587" width="1.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1083.51" y="597.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (22,909 samples, 19.37%)</title><rect x="824.9" y="667" width="267.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="827.86" y="677.5" >pgss_ExecutorRun</text>
</g>
<g >
<title>generic_perform_write (415 samples, 0.35%)</title><rect x="1269.2" y="187" width="4.8" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="1272.18" y="197.5" ></text>
</g>
<g >
<title>register_seq_scan (18 samples, 0.02%)</title><rect x="1233.5" y="587" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1236.52" y="597.5" ></text>
</g>
<g >
<title>pfree (108 samples, 0.09%)</title><rect x="1227.0" y="587" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1229.99" y="597.5" ></text>
</g>
<g >
<title>generic_perform_write (29 samples, 0.02%)</title><rect x="26.3" y="411" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="29.28" y="421.5" ></text>
</g>
<g >
<title>message_level_is_interesting (41 samples, 0.03%)</title><rect x="792.4" y="651" width="0.5" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="795.42" y="661.5" ></text>
</g>
<g >
<title>ProcessUtility (42 samples, 0.04%)</title><rect x="1388.9" y="587" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1391.87" y="597.5" ></text>
</g>
<g >
<title>ProcessUtility (209 samples, 0.18%)</title><rect x="21.3" y="507" width="2.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="24.26" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (211 samples, 0.18%)</title><rect x="1137.1" y="507" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1140.15" y="517.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (16 samples, 0.01%)</title><rect x="1191.7" y="619" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1194.67" y="629.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (12 samples, 0.01%)</title><rect x="1202.8" y="619" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1205.77" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (17 samples, 0.01%)</title><rect x="1366.3" y="779" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1369.30" y="789.5" ></text>
</g>
<g >
<title>OidInputFunctionCall (401 samples, 0.34%)</title><rect x="549.1" y="715" width="4.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="552.09" y="725.5" ></text>
</g>
<g >
<title>tcp_small_queue_check.isra.0 (40 samples, 0.03%)</title><rect x="447.4" y="475" width="0.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="450.40" y="485.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (191 samples, 0.16%)</title><rect x="1183.6" y="587" width="2.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="1186.56" y="597.5" ></text>
</g>
<g >
<title>pq_endmessage_reuse (63 samples, 0.05%)</title><rect x="805.6" y="699" width="0.7" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="808.59" y="709.5" ></text>
</g>
<g >
<title>MemoryContextSetIdentifier (17 samples, 0.01%)</title><rect x="492.8" y="699" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="495.81" y="709.5" ></text>
</g>
<g >
<title>pfree (14 samples, 0.01%)</title><rect x="1179.3" y="555" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1182.29" y="565.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (13 samples, 0.01%)</title><rect x="679.1" y="523" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="682.13" y="533.5" ></text>
</g>
<g >
<title>do_syscall_64 (417 samples, 0.35%)</title><rect x="1269.2" y="267" width="4.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1272.17" y="277.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (114 samples, 0.10%)</title><rect x="1063.4" y="587" width="1.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1066.41" y="597.5" ></text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (309 samples, 0.26%)</title><rect x="1088.1" y="555" width="3.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1091.14" y="565.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (27 samples, 0.02%)</title><rect x="1347.0" y="779" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1350.00" y="789.5" ></text>
</g>
<g >
<title>ExecProject (602 samples, 0.51%)</title><rect x="848.3" y="539" width="7.0" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="851.30" y="549.5" ></text>
</g>
<g >
<title>exec_stmt_fori (17 samples, 0.01%)</title><rect x="24.8" y="635" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="27.82" y="645.5" ></text>
</g>
<g >
<title>AllocSetAlloc (32 samples, 0.03%)</title><rect x="578.2" y="603" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="581.19" y="613.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (28 samples, 0.02%)</title><rect x="1164.0" y="475" width="0.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1166.96" y="485.5" ></text>
</g>
<g >
<title>LockRelationOid (330 samples, 0.28%)</title><rect x="510.0" y="667" width="3.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="512.95" y="677.5" ></text>
</g>
<g >
<title>sock_poll (669 samples, 0.57%)</title><rect x="131.0" y="523" width="7.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="134.00" y="533.5" ></text>
</g>
<g >
<title>ExecProcNode (4,881 samples, 4.13%)</title><rect x="28.0" y="635" width="56.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="30.96" y="645.5" >Exec..</text>
</g>
<g >
<title>palloc (59 samples, 0.05%)</title><rect x="743.8" y="715" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="746.85" y="725.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (77 samples, 0.07%)</title><rect x="1101.8" y="571" width="0.9" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1104.82" y="581.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (18 samples, 0.02%)</title><rect x="19.0" y="747" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="21.98" y="757.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (15 samples, 0.01%)</title><rect x="1098.5" y="683" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1101.55" y="693.5" ></text>
</g>
<g >
<title>deleteOneObject (67 samples, 0.06%)</title><rect x="85.0" y="299" width="0.8" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="88.04" y="309.5" ></text>
</g>
<g >
<title>PortalRunMulti (209 samples, 0.18%)</title><rect x="21.3" y="795" width="2.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="24.26" y="805.5" ></text>
</g>
<g >
<title>PortalRunUtility (88 samples, 0.07%)</title><rect x="84.9" y="699" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="87.91" y="709.5" ></text>
</g>
<g >
<title>_bt_search (35 samples, 0.03%)</title><rect x="1347.7" y="779" width="0.4" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1350.66" y="789.5" ></text>
</g>
<g >
<title>newidle_balance (31 samples, 0.03%)</title><rect x="1260.7" y="571" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1263.66" y="581.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (18 samples, 0.02%)</title><rect x="25.3" y="699" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="28.26" y="709.5" ></text>
</g>
<g >
<title>pq_getmsgint (24 samples, 0.02%)</title><rect x="1256.5" y="731" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1259.46" y="741.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (10 samples, 0.01%)</title><rect x="1261.5" y="811" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1264.55" y="821.5" ></text>
</g>
<g >
<title>BufferGetPage (19 samples, 0.02%)</title><rect x="970.8" y="395" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="973.83" y="405.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (10 samples, 0.01%)</title><rect x="1055.3" y="331" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1058.29" y="341.5" ></text>
</g>
<g >
<title>get_hash_value (166 samples, 0.14%)</title><rect x="30.6" y="283" width="2.0" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="33.63" y="293.5" ></text>
</g>
<g >
<title>aa_sk_perm (293 samples, 0.25%)</title><rect x="254.5" y="523" width="3.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="257.46" y="533.5" ></text>
</g>
<g >
<title>CreateExecutorState (13 samples, 0.01%)</title><rect x="1297.0" y="779" width="0.1" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="1299.96" y="789.5" ></text>
</g>
<g >
<title>cpus_share_cache (10 samples, 0.01%)</title><rect x="367.0" y="123" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="369.97" y="133.5" ></text>
</g>
<g >
<title>__alloc_pages (288 samples, 0.24%)</title><rect x="1269.3" y="75" width="3.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1272.26" y="85.5" ></text>
</g>
<g >
<title>its_return_thunk (10 samples, 0.01%)</title><rect x="154.0" y="459" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="156.97" y="469.5" ></text>
</g>
<g >
<title>pfree (54 samples, 0.05%)</title><rect x="1365.2" y="779" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1368.24" y="789.5" ></text>
</g>
<g >
<title>hash_initial_lookup (41 samples, 0.03%)</title><rect x="707.6" y="523" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="710.57" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (267 samples, 0.23%)</title><rect x="35.7" y="267" width="3.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="38.69" y="277.5" ></text>
</g>
<g >
<title>pq_startmsgread (9 samples, 0.01%)</title><rect x="268.0" y="699" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="271.03" y="709.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (176 samples, 0.15%)</title><rect x="472.9" y="555" width="2.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="475.92" y="565.5" ></text>
</g>
<g >
<title>jit_compile_expr (16 samples, 0.01%)</title><rect x="657.9" y="571" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="660.91" y="581.5" ></text>
</g>
<g >
<title>security_sock_rcv_skb (33 samples, 0.03%)</title><rect x="346.5" y="235" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="349.48" y="245.5" ></text>
</g>
<g >
<title>_bt_first (81 samples, 0.07%)</title><rect x="1386.8" y="491" width="1.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1389.84" y="501.5" ></text>
</g>
<g >
<title>AllocSetAllocLarge (230 samples, 0.19%)</title><rect x="864.7" y="427" width="2.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="867.75" y="437.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (80 samples, 0.07%)</title><rect x="818.3" y="683" width="0.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="821.30" y="693.5" ></text>
</g>
<g >
<title>StartReadBuffer (1,929 samples, 1.63%)</title><rect x="876.1" y="379" width="22.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="879.14" y="389.5" ></text>
</g>
<g >
<title>DeleteComments (9 samples, 0.01%)</title><rect x="85.1" y="283" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="88.06" y="293.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (17 samples, 0.01%)</title><rect x="1311.4" y="779" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1314.36" y="789.5" ></text>
</g>
<g >
<title>get_hash_value (297 samples, 0.25%)</title><rect x="53.2" y="283" width="3.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="56.21" y="293.5" ></text>
</g>
<g >
<title>SIGetDataEntries (124 samples, 0.10%)</title><rect x="516.7" y="603" width="1.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="519.68" y="613.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (18 samples, 0.02%)</title><rect x="19.0" y="715" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="21.98" y="725.5" ></text>
</g>
<g >
<title>hash_seq_term (10 samples, 0.01%)</title><rect x="1358.7" y="779" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1361.67" y="789.5" ></text>
</g>
<g >
<title>GrantLockLocal (71 samples, 0.06%)</title><rect x="694.9" y="539" width="0.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="697.89" y="549.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (40 samples, 0.03%)</title><rect x="686.6" y="475" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="689.59" y="485.5" ></text>
</g>
<g >
<title>exec_stmts (54 samples, 0.05%)</title><rect x="23.7" y="587" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="26.70" y="597.5" ></text>
</g>
<g >
<title>AllocSetAlloc (118 samples, 0.10%)</title><rect x="640.0" y="571" width="1.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="642.97" y="581.5" ></text>
</g>
<g >
<title>MarkPortalActive (23 samples, 0.02%)</title><rect x="1319.6" y="779" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1322.56" y="789.5" ></text>
</g>
<g >
<title>PlanCacheRelCallback (33 samples, 0.03%)</title><rect x="762.9" y="603" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="765.87" y="613.5" ></text>
</g>
<g >
<title>_bt_readpage (524 samples, 0.44%)</title><rect x="976.0" y="427" width="6.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="978.97" y="437.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (25 samples, 0.02%)</title><rect x="751.9" y="683" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="754.90" y="693.5" ></text>
</g>
<g >
<title>printtup_create_DR (16 samples, 0.01%)</title><rect x="1375.0" y="779" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1377.96" y="789.5" ></text>
</g>
<g >
<title>exec_rt_fetch (35 samples, 0.03%)</title><rect x="682.2" y="571" width="0.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="685.16" y="581.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (54 samples, 0.05%)</title><rect x="23.7" y="555" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="26.70" y="565.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (3,581 samples, 3.03%)</title><rect x="218.3" y="587" width="41.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="221.31" y="597.5" >__x..</text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (46 samples, 0.04%)</title><rect x="1268.5" y="395" width="0.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1271.54" y="405.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (12 samples, 0.01%)</title><rect x="170.0" y="459" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="173.00" y="469.5" ></text>
</g>
<g >
<title>validate_relation_kind (9 samples, 0.01%)</title><rect x="709.3" y="587" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="712.28" y="597.5" ></text>
</g>
<g >
<title>__libc_pwrite64 (30 samples, 0.03%)</title><rect x="1264.2" y="363" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1267.15" y="373.5" ></text>
</g>
<g >
<title>int4hashfast (24 samples, 0.02%)</title><rect x="803.9" y="619" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="806.89" y="629.5" ></text>
</g>
<g >
<title>deleteObjectsInList (67 samples, 0.06%)</title><rect x="85.0" y="315" width="0.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="88.04" y="325.5" ></text>
</g>
<g >
<title>index_getnext_tid (9 samples, 0.01%)</title><rect x="25.3" y="571" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="28.27" y="581.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (56 samples, 0.05%)</title><rect x="744.9" y="667" width="0.7" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="747.93" y="677.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (11 samples, 0.01%)</title><rect x="1388.9" y="379" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1391.87" y="389.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (1,004 samples, 0.85%)</title><rect x="239.2" y="491" width="11.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="242.18" y="501.5" ></text>
</g>
<g >
<title>update_dl_rq_load_avg (33 samples, 0.03%)</title><rect x="196.6" y="443" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="199.62" y="453.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (17 samples, 0.01%)</title><rect x="24.8" y="539" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="27.82" y="549.5" ></text>
</g>
<g >
<title>FastPathUnGrantRelationLock (598 samples, 0.51%)</title><rect x="1211.6" y="603" width="7.0" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1214.61" y="613.5" ></text>
</g>
<g >
<title>dlist_is_empty (18 samples, 0.02%)</title><rect x="1238.5" y="619" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1241.53" y="629.5" ></text>
</g>
<g >
<title>RelationBuildDesc (37 samples, 0.03%)</title><rect x="1268.5" y="331" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1271.55" y="341.5" ></text>
</g>
<g >
<title>DefineIndex (28 samples, 0.02%)</title><rect x="1263.4" y="427" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1266.40" y="437.5" ></text>
</g>
<g >
<title>ReadBuffer (1,947 samples, 1.65%)</title><rect x="29.0" y="411" width="22.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="31.96" y="421.5" ></text>
</g>
<g >
<title>sock_def_readable (1,727 samples, 1.46%)</title><rect x="355.1" y="219" width="20.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="358.10" y="229.5" ></text>
</g>
<g >
<title>_bt_getbuf (43 samples, 0.04%)</title><rect x="1387.3" y="443" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1390.28" y="453.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (155 samples, 0.13%)</title><rect x="361.1" y="139" width="1.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="364.11" y="149.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (301 samples, 0.25%)</title><rect x="984.9" y="427" width="3.5" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="987.92" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (26 samples, 0.02%)</title><rect x="875.1" y="395" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="878.08" y="405.5" ></text>
</g>
<g >
<title>AtEOXact_RelationMap (29 samples, 0.02%)</title><rect x="1290.2" y="779" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1293.16" y="789.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (15 samples, 0.01%)</title><rect x="25.8" y="571" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="28.81" y="581.5" ></text>
</g>
<g >
<title>heapam_slot_callbacks (26 samples, 0.02%)</title><rect x="1359.3" y="779" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1362.27" y="789.5" ></text>
</g>
<g >
<title>AllocSetAlloc (32 samples, 0.03%)</title><rect x="730.8" y="635" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="733.81" y="645.5" ></text>
</g>
<g >
<title>int4eq (35 samples, 0.03%)</title><rect x="1386.9" y="395" width="0.4" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text  x="1389.87" y="405.5" ></text>
</g>
<g >
<title>InitBufferTag (68 samples, 0.06%)</title><rect x="60.6" y="299" width="0.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="63.62" y="309.5" ></text>
</g>
<g >
<title>palloc0 (58 samples, 0.05%)</title><rect x="868.1" y="459" width="0.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="871.13" y="469.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (28 samples, 0.02%)</title><rect x="1166.5" y="507" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1169.46" y="517.5" ></text>
</g>
<g >
<title>DefineSequence (29 samples, 0.02%)</title><rect x="26.3" y="731" width="0.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="29.28" y="741.5" ></text>
</g>
<g >
<title>do_epoll_wait (43 samples, 0.04%)</title><rect x="1260.5" y="651" width="0.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="1263.53" y="661.5" ></text>
</g>
<g >
<title>initStringInfoInternal (111 samples, 0.09%)</title><rect x="269.7" y="683" width="1.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="272.68" y="693.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (53 samples, 0.04%)</title><rect x="253.1" y="491" width="0.7" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="256.13" y="501.5" ></text>
</g>
<g >
<title>dlist_is_empty (171 samples, 0.14%)</title><rect x="1231.0" y="603" width="2.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1233.96" y="613.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (61 samples, 0.05%)</title><rect x="11.4" y="491" width="0.8" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="14.45" y="501.5" ></text>
</g>
<g >
<title>GetSnapshotData (875 samples, 0.74%)</title><rect x="538.2" y="699" width="10.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="541.20" y="709.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (235 samples, 0.20%)</title><rect x="1055.4" y="411" width="2.8" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="1058.45" y="421.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (77 samples, 0.07%)</title><rect x="238.1" y="491" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="241.13" y="501.5" ></text>
</g>
<g >
<title>ExecCheckPermissions (421 samples, 0.36%)</title><rect x="579.7" y="635" width="4.9" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="582.69" y="645.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (32 samples, 0.03%)</title><rect x="1181.4" y="587" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1184.45" y="597.5" ></text>
</g>
<g >
<title>pq_getmsgbytes (11 samples, 0.01%)</title><rect x="749.3" y="715" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="752.30" y="725.5" ></text>
</g>
<g >
<title>exec_stmt_block (9 samples, 0.01%)</title><rect x="20.1" y="747" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="23.12" y="757.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (14 samples, 0.01%)</title><rect x="1261.3" y="763" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1264.34" y="773.5" ></text>
</g>
<g >
<title>BufTableLookup (55 samples, 0.05%)</title><rect x="32.6" y="299" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="35.58" y="309.5" ></text>
</g>
<g >
<title>hash_bytes (160 samples, 0.14%)</title><rect x="532.5" y="587" width="1.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="535.54" y="597.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (23 samples, 0.02%)</title><rect x="1320.2" y="779" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1323.19" y="789.5" ></text>
</g>
<g >
<title>__GI___errno_location (11 samples, 0.01%)</title><rect x="213.0" y="651" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="216.01" y="661.5" ></text>
</g>
<g >
<title>FastPathTransferRelationLocks (16 samples, 0.01%)</title><rect x="1276.8" y="459" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1279.78" y="469.5" ></text>
</g>
<g >
<title>ExecScanExtended (115 samples, 0.10%)</title><rect x="11.4" y="603" width="1.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="14.45" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (265 samples, 0.22%)</title><rect x="35.7" y="251" width="3.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="38.72" y="261.5" ></text>
</g>
<g >
<title>ReadBuffer_common (33 samples, 0.03%)</title><rect x="12.4" y="411" width="0.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="15.40" y="421.5" ></text>
</g>
<g >
<title>hash_search (38 samples, 0.03%)</title><rect x="1357.1" y="779" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1360.10" y="789.5" ></text>
</g>
<g >
<title>exec_stmt_fori (23 samples, 0.02%)</title><rect x="19.8" y="683" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="22.79" y="693.5" ></text>
</g>
<g >
<title>PageGetItemId (15 samples, 0.01%)</title><rect x="1324.7" y="779" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1327.73" y="789.5" ></text>
</g>
<g >
<title>inet_send_prepare (38 samples, 0.03%)</title><rect x="286.5" y="523" width="0.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="289.49" y="533.5" ></text>
</g>
<g >
<title>__wake_up_common (1,422 samples, 1.20%)</title><rect x="357.8" y="187" width="16.6" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="360.81" y="197.5" ></text>
</g>
<g >
<title>ExecAssignExprContext (972 samples, 0.82%)</title><rect x="588.0" y="603" width="11.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="590.95" y="613.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (472 samples, 0.40%)</title><rect x="849.6" y="507" width="5.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="852.62" y="517.5" ></text>
</g>
<g >
<title>palloc (121 samples, 0.10%)</title><rect x="640.0" y="587" width="1.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="642.97" y="597.5" ></text>
</g>
<g >
<title>hash_search (285 samples, 0.24%)</title><rect x="531.1" y="619" width="3.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="534.08" y="629.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (96 samples, 0.08%)</title><rect x="1083.3" y="603" width="1.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1086.35" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseAll (16 samples, 0.01%)</title><rect x="1239.3" y="635" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1242.29" y="645.5" ></text>
</g>
<g >
<title>EndImplicitTransactionBlock (12 samples, 0.01%)</title><rect x="92.7" y="731" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="95.70" y="741.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (11 samples, 0.01%)</title><rect x="1388.9" y="491" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1391.87" y="501.5" ></text>
</g>
<g >
<title>AllocSetAlloc (46 samples, 0.04%)</title><rect x="1081.4" y="571" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1084.39" y="581.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (20 samples, 0.02%)</title><rect x="476.5" y="571" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="479.51" y="581.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (27 samples, 0.02%)</title><rect x="1277.0" y="811" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1280.00" y="821.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (201 samples, 0.17%)</title><rect x="689.0" y="539" width="2.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="691.96" y="549.5" ></text>
</g>
<g >
<title>fmgr_info_copy (26 samples, 0.02%)</title><rect x="917.0" y="427" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="919.97" y="437.5" ></text>
</g>
<g >
<title>read_tsc (13 samples, 0.01%)</title><rect x="413.1" y="187" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="416.08" y="197.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (21 samples, 0.02%)</title><rect x="24.8" y="779" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="27.82" y="789.5" ></text>
</g>
<g >
<title>internal_putbytes (85 samples, 0.07%)</title><rect x="755.8" y="683" width="1.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="758.78" y="693.5" ></text>
</g>
<g >
<title>smgrreleaserellocator (20 samples, 0.02%)</title><rect x="764.8" y="603" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="767.80" y="613.5" ></text>
</g>
<g >
<title>tcp_sendmsg (15,714 samples, 13.29%)</title><rect x="289.5" y="539" width="183.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="292.48" y="549.5" >tcp_sendmsg</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (153 samples, 0.13%)</title><rect x="726.5" y="635" width="1.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="729.47" y="645.5" ></text>
</g>
<g >
<title>BuildQueryCompletionString (10 samples, 0.01%)</title><rect x="1295.2" y="779" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1298.16" y="789.5" ></text>
</g>
<g >
<title>IndexNext (476 samples, 0.40%)</title><rect x="12.9" y="539" width="5.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="15.88" y="549.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (9 samples, 0.01%)</title><rect x="1267.5" y="411" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1270.45" y="421.5" ></text>
</g>
<g >
<title>ExecEndIndexScan (727 samples, 0.61%)</title><rect x="1156.3" y="539" width="8.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1159.27" y="549.5" ></text>
</g>
<g >
<title>_bt_getroot (21 samples, 0.02%)</title><rect x="12.2" y="475" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="15.16" y="485.5" ></text>
</g>
<g >
<title>ProcessUtility (27 samples, 0.02%)</title><rect x="1276.7" y="603" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1279.68" y="613.5" ></text>
</g>
<g >
<title>enlargeStringInfo (71 samples, 0.06%)</title><rect x="1351.6" y="779" width="0.9" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1354.64" y="789.5" ></text>
</g>
<g >
<title>_int_malloc (75 samples, 0.06%)</title><rect x="1090.8" y="523" width="0.9" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1093.84" y="533.5" ></text>
</g>
<g >
<title>list_delete_cell (104 samples, 0.09%)</title><rect x="1173.6" y="523" width="1.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1176.59" y="533.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (218 samples, 0.18%)</title><rect x="286.9" y="539" width="2.6" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="289.94" y="549.5" ></text>
</g>
<g >
<title>string_compare (25 samples, 0.02%)</title><rect x="505.3" y="667" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="508.35" y="677.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (468 samples, 0.40%)</title><rect x="720.9" y="651" width="5.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="723.86" y="661.5" ></text>
</g>
<g >
<title>TransactionIdPrecedes (20 samples, 0.02%)</title><rect x="729.0" y="667" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="732.04" y="677.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (175 samples, 0.15%)</title><rect x="1078.5" y="539" width="2.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1081.47" y="549.5" ></text>
</g>
<g >
<title>PortalRunSelect (81 samples, 0.07%)</title><rect x="1386.8" y="731" width="1.0" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="1389.84" y="741.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (13 samples, 0.01%)</title><rect x="1371.0" y="779" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1373.96" y="789.5" ></text>
</g>
<g >
<title>exec_stmt_block (727 samples, 0.61%)</title><rect x="1267.3" y="683" width="8.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1270.35" y="693.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (2,848 samples, 2.41%)</title><rect x="51.7" y="427" width="33.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="54.68" y="437.5" >Re..</text>
</g>
<g >
<title>getRelationDescription (11 samples, 0.01%)</title><rect x="1275.4" y="427" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1278.42" y="437.5" ></text>
</g>
<g >
<title>hash_initial_lookup (25 samples, 0.02%)</title><rect x="532.2" y="587" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="535.23" y="597.5" ></text>
</g>
<g >
<title>AllocSetAlloc (50 samples, 0.04%)</title><rect x="743.3" y="683" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="746.25" y="693.5" ></text>
</g>
<g >
<title>LWLockRelease (54 samples, 0.05%)</title><rect x="975.3" y="363" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="978.31" y="373.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (31 samples, 0.03%)</title><rect x="1159.9" y="475" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1162.90" y="485.5" ></text>
</g>
<g >
<title>read_tsc (35 samples, 0.03%)</title><rect x="253.3" y="459" width="0.5" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="256.34" y="469.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (54 samples, 0.05%)</title><rect x="23.7" y="539" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="26.70" y="549.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (6,884 samples, 5.82%)</title><rect x="334.8" y="267" width="80.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="337.80" y="277.5" >tcp_v4_..</text>
</g>
<g >
<title>pgstat_init_relation (15 samples, 0.01%)</title><rect x="709.1" y="571" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="712.10" y="581.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (32 samples, 0.03%)</title><rect x="1265.4" y="795" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1268.45" y="805.5" ></text>
</g>
<g >
<title>__mod_timer (136 samples, 0.11%)</title><rect x="353.5" y="203" width="1.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="356.45" y="213.5" ></text>
</g>
<g >
<title>GetPortalByName (237 samples, 0.20%)</title><rect x="797.0" y="715" width="2.8" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="799.99" y="725.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.01%)</title><rect x="1220.3" y="491" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1223.33" y="501.5" ></text>
</g>
<g >
<title>murmurhash32 (21 samples, 0.02%)</title><rect x="803.9" y="603" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="806.93" y="613.5" ></text>
</g>
<g >
<title>ProcessClientWriteInterrupt (92 samples, 0.08%)</title><rect x="276.4" y="651" width="1.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="279.35" y="661.5" ></text>
</g>
<g >
<title>FetchPreparedStatement (22 samples, 0.02%)</title><rect x="1306.6" y="779" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="1309.62" y="789.5" ></text>
</g>
<g >
<title>hash_initial_lookup (20 samples, 0.02%)</title><rect x="511.2" y="603" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="514.18" y="613.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (18 samples, 0.02%)</title><rect x="19.0" y="667" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="21.98" y="677.5" ></text>
</g>
<g >
<title>_bt_first (24 samples, 0.02%)</title><rect x="1345.7" y="779" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1348.65" y="789.5" ></text>
</g>
<g >
<title>PortalCleanup (60 samples, 0.05%)</title><rect x="1327.3" y="779" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1330.32" y="789.5" ></text>
</g>
<g >
<title>CopySnapshot (115 samples, 0.10%)</title><rect x="732.9" y="683" width="1.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="735.94" y="693.5" ></text>
</g>
<g >
<title>ProcessUtility (54 samples, 0.05%)</title><rect x="23.7" y="523" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="26.70" y="533.5" ></text>
</g>
<g >
<title>__libc_recv (27 samples, 0.02%)</title><rect x="1279.6" y="779" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1282.59" y="789.5" ></text>
</g>
<g >
<title>ExecTargetListLength (21 samples, 0.02%)</title><rect x="664.8" y="555" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="667.82" y="565.5" ></text>
</g>
<g >
<title>RemoveRelations (20 samples, 0.02%)</title><rect x="23.5" y="427" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="26.46" y="437.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (372 samples, 0.31%)</title><rect x="884.9" y="299" width="4.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="887.86" y="309.5" ></text>
</g>
<g >
<title>exec_stmt_block (42 samples, 0.04%)</title><rect x="1388.9" y="699" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1391.87" y="709.5" ></text>
</g>
<g >
<title>_int_malloc (120 samples, 0.10%)</title><rect x="866.0" y="395" width="1.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="868.99" y="405.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (10 samples, 0.01%)</title><rect x="169.9" y="459" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="172.88" y="469.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (298 samples, 0.25%)</title><rect x="851.5" y="411" width="3.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="854.52" y="421.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (30 samples, 0.03%)</title><rect x="1265.5" y="747" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1268.46" y="757.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (279 samples, 0.24%)</title><rect x="613.3" y="555" width="3.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="616.26" y="565.5" ></text>
</g>
<g >
<title>mdunlinkfork (20 samples, 0.02%)</title><rect x="1102.1" y="315" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1105.13" y="325.5" ></text>
</g>
<g >
<title>AllocSetAlloc (48 samples, 0.04%)</title><rect x="664.2" y="523" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="667.25" y="533.5" ></text>
</g>
<g >
<title>do_softirq.part.0 (9,120 samples, 7.71%)</title><rect x="318.4" y="395" width="106.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="321.44" y="405.5" >do_softirq..</text>
</g>
<g >
<title>LWLockRelease (47 samples, 0.04%)</title><rect x="1230.4" y="587" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1233.41" y="597.5" ></text>
</g>
<g >
<title>ExecIndexScan (81 samples, 0.07%)</title><rect x="1386.8" y="619" width="1.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1389.84" y="629.5" ></text>
</g>
<g >
<title>__GI_bsearch (23 samples, 0.02%)</title><rect x="843.3" y="459" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="846.33" y="469.5" ></text>
</g>
<g >
<title>hash_initial_lookup (38 samples, 0.03%)</title><rect x="1222.8" y="555" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1225.85" y="565.5" ></text>
</g>
<g >
<title>newNode (185 samples, 0.16%)</title><rect x="660.2" y="587" width="2.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="663.24" y="597.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (38 samples, 0.03%)</title><rect x="1281.7" y="779" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1284.65" y="789.5" ></text>
</g>
<g >
<title>exec_execute_message (81 samples, 0.07%)</title><rect x="1386.8" y="763" width="1.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1389.84" y="773.5" ></text>
</g>
<g >
<title>ExecScanFetch (115 samples, 0.10%)</title><rect x="11.4" y="587" width="1.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="14.45" y="597.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (25 samples, 0.02%)</title><rect x="740.7" y="651" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="743.66" y="661.5" ></text>
</g>
<g >
<title>_bt_readpage (234 samples, 0.20%)</title><rect x="12.9" y="443" width="2.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="15.88" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (24 samples, 0.02%)</title><rect x="691.0" y="459" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="694.02" y="469.5" ></text>
</g>
<g >
<title>ExecJustAssignVarImpl (24 samples, 0.02%)</title><rect x="1303.8" y="779" width="0.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1306.82" y="789.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (9 samples, 0.01%)</title><rect x="837.1" y="411" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="840.05" y="421.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (34 samples, 0.03%)</title><rect x="640.8" y="555" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="643.79" y="565.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (14 samples, 0.01%)</title><rect x="1309.5" y="779" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1312.46" y="789.5" ></text>
</g>
<g >
<title>_bt_checkkeys (14 samples, 0.01%)</title><rect x="970.0" y="427" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="973.04" y="437.5" ></text>
</g>
<g >
<title>exec_bind_message (26,976 samples, 22.81%)</title><rect x="480.7" y="731" width="314.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="483.75" y="741.5" >exec_bind_message</text>
</g>
<g >
<title>ReleaseBuffer (177 samples, 0.15%)</title><rect x="972.9" y="395" width="2.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="975.92" y="405.5" ></text>
</g>
<g >
<title>index_build (500 samples, 0.42%)</title><rect x="1268.5" y="475" width="5.9" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="1271.54" y="485.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (788 samples, 0.67%)</title><rect x="1267.3" y="811" width="9.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1270.35" y="821.5" ></text>
</g>
<g >
<title>AllocSetReset (110 samples, 0.09%)</title><rect x="1108.4" y="619" width="1.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1111.41" y="629.5" ></text>
</g>
<g >
<title>IsAbortedTransactionBlockState (9 samples, 0.01%)</title><rect x="1316.0" y="779" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1318.98" y="789.5" ></text>
</g>
<g >
<title>AtStart_Cache (10 samples, 0.01%)</title><rect x="1292.3" y="779" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1295.33" y="789.5" ></text>
</g>
<g >
<title>BufferAlloc (11 samples, 0.01%)</title><rect x="1293.9" y="779" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1296.86" y="789.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (29 samples, 0.02%)</title><rect x="26.3" y="747" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="29.28" y="757.5" ></text>
</g>
<g >
<title>pq_getbytes (150 samples, 0.13%)</title><rect x="265.4" y="683" width="1.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="268.37" y="693.5" ></text>
</g>
<g >
<title>[[vdso]] (83 samples, 0.07%)</title><rect x="479.3" y="683" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="482.28" y="693.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (14 samples, 0.01%)</title><rect x="683.5" y="523" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="686.46" y="533.5" ></text>
</g>
<g >
<title>rb_first (78 samples, 0.07%)</title><rect x="403.8" y="203" width="0.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="406.78" y="213.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (17 samples, 0.01%)</title><rect x="984.7" y="395" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="987.72" y="405.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (18 samples, 0.02%)</title><rect x="25.3" y="683" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="28.26" y="693.5" ></text>
</g>
<g >
<title>ExecCheckOneRelPerms (377 samples, 0.32%)</title><rect x="580.2" y="619" width="4.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="583.17" y="629.5" ></text>
</g>
<g >
<title>__kmem_cache_free (30 samples, 0.03%)</title><rect x="424.3" y="315" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="427.28" y="325.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (727 samples, 0.61%)</title><rect x="1267.3" y="523" width="8.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1270.35" y="533.5" ></text>
</g>
<g >
<title>deleteObjectsInList (39 samples, 0.03%)</title><rect x="1275.9" y="715" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1278.94" y="725.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (11 samples, 0.01%)</title><rect x="1388.9" y="443" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1391.87" y="453.5" ></text>
</g>
<g >
<title>exec_stmt_fori (77 samples, 0.07%)</title><rect x="1101.8" y="491" width="0.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1104.82" y="501.5" ></text>
</g>
<g >
<title>pg_pwritev (417 samples, 0.35%)</title><rect x="1269.2" y="315" width="4.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1272.17" y="325.5" ></text>
</g>
<g >
<title>TransactionStartedDuringRecovery (16 samples, 0.01%)</title><rect x="862.3" y="443" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="865.32" y="453.5" ></text>
</g>
<g >
<title>string_hash (110 samples, 0.09%)</title><rect x="798.5" y="683" width="1.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="801.48" y="693.5" ></text>
</g>
<g >
<title>PortalRunUtility (30 samples, 0.03%)</title><rect x="24.3" y="811" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="27.33" y="821.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (17 samples, 0.01%)</title><rect x="548.2" y="667" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="551.19" y="677.5" ></text>
</g>
<g >
<title>__libc_pwrite64 (417 samples, 0.35%)</title><rect x="1269.2" y="299" width="4.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1272.17" y="309.5" ></text>
</g>
<g >
<title>SearchCatCache2 (9 samples, 0.01%)</title><rect x="1267.5" y="443" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="1270.45" y="453.5" ></text>
</g>
<g >
<title>ProcessUtility (88 samples, 0.07%)</title><rect x="84.9" y="683" width="1.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="87.91" y="693.5" ></text>
</g>
<g >
<title>smgrextend (30 samples, 0.03%)</title><rect x="1264.2" y="443" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1267.15" y="453.5" ></text>
</g>
<g >
<title>_bt_doinsert (11 samples, 0.01%)</title><rect x="1268.1" y="395" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1271.14" y="405.5" ></text>
</g>
<g >
<title>ReadBuffer_common (43 samples, 0.04%)</title><rect x="1387.3" y="395" width="0.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1390.28" y="405.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (144 samples, 0.12%)</title><rect x="516.4" y="619" width="1.7" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="519.44" y="629.5" ></text>
</g>
<g >
<title>sk_reset_timer (131 samples, 0.11%)</title><rect x="444.8" y="459" width="1.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="447.84" y="469.5" ></text>
</g>
<g >
<title>AllocSetFree (50 samples, 0.04%)</title><rect x="1084.8" y="603" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1087.84" y="613.5" ></text>
</g>
<g >
<title>pq_getmsgstring (255 samples, 0.22%)</title><rect x="752.3" y="715" width="3.0" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text  x="755.28" y="725.5" ></text>
</g>
<g >
<title>__alloc_pages (26 samples, 0.02%)</title><rect x="452.1" y="475" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="455.08" y="485.5" ></text>
</g>
<g >
<title>__strlen_evex (28 samples, 0.02%)</title><rect x="759.0" y="683" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="761.99" y="693.5" ></text>
</g>
<g >
<title>ExecReadyExpr (83 samples, 0.07%)</title><rect x="623.0" y="571" width="0.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="625.96" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (158 samples, 0.13%)</title><rect x="697.1" y="507" width="1.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="700.11" y="517.5" ></text>
</g>
<g >
<title>_bt_fix_scankey_strategy (19 samples, 0.02%)</title><rect x="1345.9" y="779" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="1348.93" y="789.5" ></text>
</g>
<g >
<title>ResolveOpClass (23 samples, 0.02%)</title><rect x="21.3" y="411" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="24.31" y="421.5" ></text>
</g>
<g >
<title>AtEOXact_Enum (41 samples, 0.03%)</title><rect x="1286.1" y="779" width="0.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1289.09" y="789.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (9 samples, 0.01%)</title><rect x="680.6" y="491" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="683.64" y="501.5" ></text>
</g>
<g >
<title>exec_stmts (27 samples, 0.02%)</title><rect x="1277.0" y="715" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1280.00" y="725.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple_internal (202 samples, 0.17%)</title><rect x="852.6" y="363" width="2.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="855.60" y="373.5" ></text>
</g>
<g >
<title>SearchSysCache1 (210 samples, 0.18%)</title><rect x="582.1" y="571" width="2.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="585.06" y="581.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (38 samples, 0.03%)</title><rect x="633.6" y="523" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="636.65" y="533.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (131 samples, 0.11%)</title><rect x="865.9" y="411" width="1.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="868.89" y="421.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (20 samples, 0.02%)</title><rect x="1284.8" y="779" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1287.81" y="789.5" ></text>
</g>
<g >
<title>index_getnext_slot (13 samples, 0.01%)</title><rect x="1360.2" y="779" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1363.25" y="789.5" ></text>
</g>
<g >
<title>index_getattr (479 samples, 0.40%)</title><rect x="1022.7" y="395" width="5.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1025.71" y="405.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (20 samples, 0.02%)</title><rect x="264.6" y="683" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="267.58" y="693.5" ></text>
</g>
<g >
<title>index_create (146 samples, 0.12%)</title><rect x="21.6" y="427" width="1.7" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="24.60" y="437.5" ></text>
</g>
<g >
<title>hash_initial_lookup (21 samples, 0.02%)</title><rect x="818.6" y="667" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="821.64" y="677.5" ></text>
</g>
<g >
<title>ProcessUtility (63 samples, 0.05%)</title><rect x="1263.4" y="747" width="0.7" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1266.38" y="757.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (18 samples, 0.02%)</title><rect x="1368.4" y="779" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1371.37" y="789.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (37 samples, 0.03%)</title><rect x="1287.4" y="779" width="0.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1290.37" y="789.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16,810 samples, 14.21%)</title><rect x="280.9" y="619" width="196.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="283.92" y="629.5" >entry_SYSCALL_64_afte..</text>
</g>
<g >
<title>ExecProcNode (115 samples, 0.10%)</title><rect x="11.4" y="667" width="1.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="14.45" y="677.5" ></text>
</g>
<g >
<title>ipv4_dst_check (11 samples, 0.01%)</title><rect x="313.8" y="427" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="316.84" y="437.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (46 samples, 0.04%)</title><rect x="1264.1" y="715" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1267.12" y="725.5" ></text>
</g>
<g >
<title>release_sock (87 samples, 0.07%)</title><rect x="224.0" y="523" width="1.0" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="226.95" y="533.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (15 samples, 0.01%)</title><rect x="629.4" y="523" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="632.36" y="533.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (145 samples, 0.12%)</title><rect x="635.8" y="539" width="1.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="638.79" y="549.5" ></text>
</g>
<g >
<title>hash_search (10 samples, 0.01%)</title><rect x="1265.3" y="811" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1268.27" y="821.5" ></text>
</g>
<g >
<title>hash_seq_init (63 samples, 0.05%)</title><rect x="1233.0" y="603" width="0.7" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1236.00" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerSort (30 samples, 0.03%)</title><rect x="1241.9" y="635" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1244.92" y="645.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (18 samples, 0.02%)</title><rect x="271.9" y="683" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="274.92" y="693.5" ></text>
</g>
<g >
<title>resetStringInfo (45 samples, 0.04%)</title><rect x="805.1" y="683" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="808.07" y="693.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (60 samples, 0.05%)</title><rect x="260.6" y="571" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="263.57" y="581.5" ></text>
</g>
<g >
<title>ip_rcv_core (88 samples, 0.07%)</title><rect x="415.6" y="283" width="1.0" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="418.59" y="293.5" ></text>
</g>
<g >
<title>sched_clock_cpu (60 samples, 0.05%)</title><rect x="203.0" y="459" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="206.03" y="469.5" ></text>
</g>
<g >
<title>kmalloc_slab (18 samples, 0.02%)</title><rect x="466.3" y="443" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="469.31" y="453.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (12 samples, 0.01%)</title><rect x="1182.9" y="571" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1185.92" y="581.5" ></text>
</g>
<g >
<title>IndexNext (4,881 samples, 4.13%)</title><rect x="28.0" y="539" width="56.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="30.96" y="549.5" >Inde..</text>
</g>
<g >
<title>SearchCatCache3 (373 samples, 0.32%)</title><rect x="629.9" y="555" width="4.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="632.86" y="565.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (86 samples, 0.07%)</title><rect x="1258.4" y="715" width="1.0" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="1261.39" y="725.5" ></text>
</g>
<g >
<title>AllocSetFree (38 samples, 0.03%)</title><rect x="1186.0" y="587" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1189.00" y="597.5" ></text>
</g>
<g >
<title>OutputFunctionCall (11 samples, 0.01%)</title><rect x="1324.6" y="779" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="1327.60" y="789.5" ></text>
</g>
<g >
<title>AtCommit_Notify (10 samples, 0.01%)</title><rect x="1103.4" y="683" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1106.44" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (28 samples, 0.02%)</title><rect x="690.7" y="475" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="693.69" y="485.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (18 samples, 0.02%)</title><rect x="10.4" y="811" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="13.42" y="821.5" ></text>
</g>
<g >
<title>net_rx_action (8,889 samples, 7.52%)</title><rect x="321.1" y="363" width="103.7" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="324.09" y="373.5" >net_rx_act..</text>
</g>
<g >
<title>_bt_next (110 samples, 0.09%)</title><rect x="834.3" y="475" width="1.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="837.30" y="485.5" ></text>
</g>
<g >
<title>getTypeInputInfo (21 samples, 0.02%)</title><rect x="1355.0" y="779" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1358.04" y="789.5" ></text>
</g>
<g >
<title>__alloc_pages (10 samples, 0.01%)</title><rect x="1264.2" y="139" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1267.16" y="149.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (317 samples, 0.27%)</title><rect x="206.0" y="555" width="3.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="208.98" y="565.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (26 samples, 0.02%)</title><rect x="889.5" y="267" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="892.45" y="277.5" ></text>
</g>
<g >
<title>ExecAssignScanProjectionInfo (1,537 samples, 1.30%)</title><rect x="599.3" y="603" width="17.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="602.30" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (875 samples, 0.74%)</title><rect x="766.2" y="555" width="10.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="769.23" y="565.5" ></text>
</g>
<g >
<title>pg_any_to_server (11 samples, 0.01%)</title><rect x="753.1" y="699" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="756.11" y="709.5" ></text>
</g>
<g >
<title>__sigsetjmp@plt (18 samples, 0.02%)</title><rect x="1181.8" y="587" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1184.83" y="597.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (109 samples, 0.09%)</title><rect x="475.5" y="587" width="1.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="478.48" y="597.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (63 samples, 0.05%)</title><rect x="1263.4" y="667" width="0.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1266.38" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (27 samples, 0.02%)</title><rect x="1155.7" y="459" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1158.66" y="469.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (727 samples, 0.61%)</title><rect x="1267.3" y="779" width="8.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1270.35" y="789.5" ></text>
</g>
<g >
<title>PageGetItemId (19 samples, 0.02%)</title><rect x="989.2" y="427" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="992.23" y="437.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (12 samples, 0.01%)</title><rect x="756.6" y="667" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="759.62" y="677.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (36 samples, 0.03%)</title><rect x="758.3" y="651" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="761.27" y="661.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (14 samples, 0.01%)</title><rect x="1230.4" y="571" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1233.44" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (139 samples, 0.12%)</title><rect x="546.6" y="619" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="549.56" y="629.5" ></text>
</g>
<g >
<title>pfree (97 samples, 0.08%)</title><rect x="1158.5" y="491" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1161.50" y="501.5" ></text>
</g>
<g >
<title>loopback_xmit (350 samples, 0.30%)</title><rect x="425.2" y="395" width="4.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="428.23" y="405.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (215 samples, 0.18%)</title><rect x="62.0" y="251" width="2.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="64.99" y="261.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (26 samples, 0.02%)</title><rect x="975.6" y="299" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="978.62" y="309.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (1,737 samples, 1.47%)</title><rect x="762.1" y="651" width="20.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="765.10" y="661.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (47 samples, 0.04%)</title><rect x="1101.8" y="411" width="0.6" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="1104.82" y="421.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (13 samples, 0.01%)</title><rect x="664.7" y="507" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="667.66" y="517.5" ></text>
</g>
<g >
<title>btgettuple (9 samples, 0.01%)</title><rect x="1276.4" y="635" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1279.39" y="645.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (209 samples, 0.18%)</title><rect x="21.3" y="555" width="2.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="24.26" y="565.5" ></text>
</g>
<g >
<title>ExecCloseRangeTableRelations (138 samples, 0.12%)</title><rect x="1154.4" y="555" width="1.6" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1157.42" y="565.5" ></text>
</g>
<g >
<title>LWLockAcquire (437 samples, 0.37%)</title><rect x="33.7" y="299" width="5.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="36.72" y="309.5" ></text>
</g>
<g >
<title>HeapTupleHeaderGetXmin (9 samples, 0.01%)</title><rect x="903.0" y="427" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="905.99" y="437.5" ></text>
</g>
<g >
<title>MemoryContextDelete (189 samples, 0.16%)</title><rect x="1170.2" y="539" width="2.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1173.24" y="549.5" ></text>
</g>
<g >
<title>ProcessUtility (24 samples, 0.02%)</title><rect x="1275.6" y="507" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1278.55" y="517.5" ></text>
</g>
<g >
<title>hash_initial_lookup (35 samples, 0.03%)</title><rect x="798.0" y="667" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="800.95" y="677.5" ></text>
</g>
<g >
<title>exec_stmts (23 samples, 0.02%)</title><rect x="19.8" y="699" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="22.79" y="709.5" ></text>
</g>
<g >
<title>index_endscan (610 samples, 0.52%)</title><rect x="1157.6" y="523" width="7.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1160.62" y="533.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (209 samples, 0.18%)</title><rect x="21.3" y="667" width="2.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="24.26" y="677.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (13 samples, 0.01%)</title><rect x="19.2" y="763" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="22.21" y="773.5" ></text>
</g>
<g >
<title>ExecScan (18,445 samples, 15.60%)</title><rect x="847.3" y="571" width="215.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="850.26" y="581.5" >ExecScan</text>
</g>
<g >
<title>ProcessUtility (29 samples, 0.02%)</title><rect x="26.3" y="795" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="29.28" y="805.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (147 samples, 0.12%)</title><rect x="526.6" y="555" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="529.64" y="565.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10 samples, 0.01%)</title><rect x="196.5" y="411" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="199.48" y="421.5" ></text>
</g>
<g >
<title>AllocSetFree (71 samples, 0.06%)</title><rect x="1227.2" y="571" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1230.16" y="581.5" ></text>
</g>
<g >
<title>int4hashfast (44 samples, 0.04%)</title><rect x="739.9" y="635" width="0.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="742.92" y="645.5" ></text>
</g>
<g >
<title>clear_page_erms (14 samples, 0.01%)</title><rect x="26.5" y="379" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="29.45" y="389.5" ></text>
</g>
<g >
<title>ExecInitExprList (9 samples, 0.01%)</title><rect x="642.2" y="603" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="645.23" y="613.5" ></text>
</g>
<g >
<title>pgstat_report_activity (210 samples, 0.18%)</title><rect x="1095.3" y="715" width="2.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1098.29" y="725.5" ></text>
</g>
<g >
<title>index_create (19 samples, 0.02%)</title><rect x="1263.5" y="411" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1266.50" y="421.5" ></text>
</g>
<g >
<title>smgrGetPendingDeletes (25 samples, 0.02%)</title><rect x="1200.8" y="651" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1203.81" y="661.5" ></text>
</g>
<g >
<title>LWLockAcquire (385 samples, 0.33%)</title><rect x="884.7" y="315" width="4.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="887.72" y="325.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (36 samples, 0.03%)</title><rect x="1111.3" y="667" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1114.28" y="677.5" ></text>
</g>
<g >
<title>ShutdownExprContext (39 samples, 0.03%)</title><rect x="1172.6" y="539" width="0.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1175.62" y="549.5" ></text>
</g>
<g >
<title>LWLockAcquire (154 samples, 0.13%)</title><rect x="1053.6" y="379" width="1.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1056.63" y="389.5" ></text>
</g>
<g >
<title>_bt_relbuf (264 samples, 0.22%)</title><rect x="972.9" y="411" width="3.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="975.86" y="421.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (36 samples, 0.03%)</title><rect x="1183.7" y="555" width="0.5" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1186.75" y="565.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (10 samples, 0.01%)</title><rect x="574.6" y="635" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="577.59" y="645.5" ></text>
</g>
<g >
<title>standard_ExecutorFinish (88 samples, 0.07%)</title><rect x="1182.0" y="587" width="1.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1185.04" y="597.5" ></text>
</g>
<g >
<title>StartReadBuffer (2,848 samples, 2.41%)</title><rect x="51.7" y="363" width="33.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="54.68" y="373.5" >St..</text>
</g>
<g >
<title>pg_client_to_server (158 samples, 0.13%)</title><rect x="753.2" y="699" width="1.9" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="756.24" y="709.5" ></text>
</g>
<g >
<title>getTypeInputInfo (488 samples, 0.41%)</title><rect x="736.5" y="715" width="5.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="739.49" y="725.5" ></text>
</g>
<g >
<title>_bt_getbuf (186 samples, 0.16%)</title><rect x="15.6" y="427" width="2.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="18.61" y="437.5" ></text>
</g>
<g >
<title>RelationBuildDesc (11 samples, 0.01%)</title><rect x="1388.9" y="363" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1391.87" y="373.5" ></text>
</g>
<g >
<title>PostgresMain (478 samples, 0.40%)</title><rect x="12.9" y="763" width="5.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="15.88" y="773.5" ></text>
</g>
<g >
<title>ip_send_check (70 samples, 0.06%)</title><rect x="432.7" y="411" width="0.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="435.69" y="421.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (20 samples, 0.02%)</title><rect x="978.8" y="411" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="981.80" y="421.5" ></text>
</g>
<g >
<title>_bt_compare (3,011 samples, 2.55%)</title><rect x="993.2" y="411" width="35.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="996.17" y="421.5" >_b..</text>
</g>
<g >
<title>RelationClose (83 samples, 0.07%)</title><rect x="1156.6" y="507" width="1.0" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="1159.64" y="517.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (23 samples, 0.02%)</title><rect x="19.8" y="763" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="22.79" y="773.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (27 samples, 0.02%)</title><rect x="1276.7" y="571" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1279.68" y="581.5" ></text>
</g>
<g >
<title>socket_set_nonblocking (34 samples, 0.03%)</title><rect x="1380.5" y="779" width="0.4" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="1383.53" y="789.5" ></text>
</g>
<g >
<title>AtEOXact_TypeCache (38 samples, 0.03%)</title><rect x="1291.6" y="779" width="0.4" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1294.58" y="789.5" ></text>
</g>
<g >
<title>BlockIdSet (9 samples, 0.01%)</title><rect x="830.2" y="507" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="833.15" y="517.5" ></text>
</g>
<g >
<title>__list_add_valid (11 samples, 0.01%)</title><rect x="427.3" y="331" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="430.33" y="341.5" ></text>
</g>
<g >
<title>index_getnext_tid (115 samples, 0.10%)</title><rect x="11.4" y="539" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="14.45" y="549.5" ></text>
</g>
<g >
<title>IsInParallelMode (18 samples, 0.02%)</title><rect x="1316.1" y="779" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1319.08" y="789.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (186 samples, 0.16%)</title><rect x="15.6" y="363" width="2.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="18.61" y="373.5" ></text>
</g>
<g >
<title>ReleaseSysCache (56 samples, 0.05%)</title><rect x="802.1" y="683" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="805.12" y="693.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (46 samples, 0.04%)</title><rect x="138.3" y="491" width="0.5" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="141.26" y="501.5" ></text>
</g>
<g >
<title>index_getattr (18 samples, 0.02%)</title><rect x="1360.0" y="779" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1363.04" y="789.5" ></text>
</g>
<g >
<title>LockBuffer (52 samples, 0.04%)</title><rect x="1030.5" y="379" width="0.6" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1033.53" y="389.5" ></text>
</g>
<g >
<title>enter_lazy_tlb (9 samples, 0.01%)</title><rect x="164.5" y="491" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="167.46" y="501.5" ></text>
</g>
<g >
<title>_bt_spools_heapscan (14 samples, 0.01%)</title><rect x="1274.0" y="443" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1277.05" y="453.5" ></text>
</g>
<g >
<title>DatumGetInt32 (30 samples, 0.03%)</title><rect x="941.3" y="411" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="944.27" y="421.5" ></text>
</g>
<g >
<title>__mod_timer (125 samples, 0.11%)</title><rect x="444.9" y="443" width="1.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="447.91" y="453.5" ></text>
</g>
<g >
<title>tcp_send_mss (245 samples, 0.21%)</title><rect x="453.6" y="507" width="2.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="456.58" y="517.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitialize (110 samples, 0.09%)</title><rect x="626.9" y="587" width="1.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="629.88" y="597.5" ></text>
</g>
<g >
<title>tcp_cleanup_rbuf (12 samples, 0.01%)</title><rect x="252.0" y="507" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="254.99" y="517.5" ></text>
</g>
<g >
<title>StartReadBuffer (1,947 samples, 1.65%)</title><rect x="29.0" y="363" width="22.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="31.96" y="373.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (13 samples, 0.01%)</title><rect x="433.9" y="427" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="436.92" y="437.5" ></text>
</g>
<g >
<title>tag_hash (9 samples, 0.01%)</title><rect x="1382.8" y="779" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1385.85" y="789.5" ></text>
</g>
<g >
<title>ip_rcv (213 samples, 0.18%)</title><rect x="415.1" y="299" width="2.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="418.12" y="309.5" ></text>
</g>
<g >
<title>btbuild (440 samples, 0.37%)</title><rect x="1269.1" y="459" width="5.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1272.07" y="469.5" ></text>
</g>
<g >
<title>AtEOXact_SMgr (47 samples, 0.04%)</title><rect x="1116.2" y="667" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1119.20" y="677.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (14 samples, 0.01%)</title><rect x="1268.1" y="443" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1271.13" y="453.5" ></text>
</g>
<g >
<title>do_syscall_64 (8,258 samples, 6.98%)</title><rect x="113.7" y="587" width="96.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="116.72" y="597.5" >do_syscal..</text>
</g>
<g >
<title>pstrdup (220 samples, 0.19%)</title><rect x="756.8" y="715" width="2.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="759.78" y="725.5" ></text>
</g>
<g >
<title>pq_getmsgstring (87 samples, 0.07%)</title><rect x="1256.7" y="731" width="1.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text  x="1259.74" y="741.5" ></text>
</g>
<g >
<title>finalize_in_progress_typentries (10 samples, 0.01%)</title><rect x="1353.9" y="779" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1356.95" y="789.5" ></text>
</g>
<g >
<title>_int_free (10 samples, 0.01%)</title><rect x="1385.4" y="779" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1388.38" y="789.5" ></text>
</g>
<g >
<title>tcp_rbtree_insert (15 samples, 0.01%)</title><rect x="446.4" y="459" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="449.36" y="469.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (9 samples, 0.01%)</title><rect x="1267.5" y="427" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1270.45" y="437.5" ></text>
</g>
<g >
<title>palloc0 (68 samples, 0.06%)</title><rect x="715.9" y="619" width="0.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="718.88" y="629.5" ></text>
</g>
<g >
<title>index_close (93 samples, 0.08%)</title><rect x="1156.5" y="523" width="1.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1159.54" y="533.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (476 samples, 0.40%)</title><rect x="12.9" y="683" width="5.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="15.88" y="693.5" ></text>
</g>
<g >
<title>hash_search (289 samples, 0.24%)</title><rect x="683.7" y="523" width="3.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="686.69" y="533.5" ></text>
</g>
<g >
<title>_bt_mark_scankey_required (32 samples, 0.03%)</title><rect x="969.0" y="427" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="971.95" y="437.5" ></text>
</g>
<g >
<title>dlist_is_empty (20 samples, 0.02%)</title><rect x="1241.5" y="619" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1244.49" y="629.5" ></text>
</g>
<g >
<title>exec_stmts (17 samples, 0.01%)</title><rect x="24.8" y="619" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="27.82" y="629.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (24 samples, 0.02%)</title><rect x="260.1" y="587" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="263.10" y="597.5" ></text>
</g>
<g >
<title>uint32_hash (83 samples, 0.07%)</title><rect x="708.1" y="539" width="0.9" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="711.05" y="549.5" ></text>
</g>
<g >
<title>LaunchMissingBackgroundProcesses (14 samples, 0.01%)</title><rect x="1260.1" y="795" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1263.09" y="805.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (29 samples, 0.02%)</title><rect x="873.3" y="443" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="876.28" y="453.5" ></text>
</g>
<g >
<title>performMultipleDeletions (27 samples, 0.02%)</title><rect x="1263.8" y="395" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1266.79" y="405.5" ></text>
</g>
<g >
<title>_bt_metaversion (34 samples, 0.03%)</title><rect x="966.4" y="443" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="969.43" y="453.5" ></text>
</g>
<g >
<title>clear_bhb_loop (81 samples, 0.07%)</title><rect x="111.6" y="603" width="0.9" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="114.60" y="613.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (20 samples, 0.02%)</title><rect x="967.7" y="427" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="970.69" y="437.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (11 samples, 0.01%)</title><rect x="978.2" y="411" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="981.24" y="421.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (1,993 samples, 1.69%)</title><rect x="875.5" y="443" width="23.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="878.50" y="453.5" ></text>
</g>
<g >
<title>pq_copymsgbytes (15 samples, 0.01%)</title><rect x="1256.6" y="715" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="1259.57" y="725.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (27 samples, 0.02%)</title><rect x="1276.7" y="555" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1279.68" y="565.5" ></text>
</g>
<g >
<title>AllocSetAlloc (32 samples, 0.03%)</title><rect x="10.0" y="811" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="13.05" y="821.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (25 samples, 0.02%)</title><rect x="737.6" y="651" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="740.64" y="661.5" ></text>
</g>
<g >
<title>tcp_inbound_md5_hash (14 samples, 0.01%)</title><rect x="347.1" y="251" width="0.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text  x="350.14" y="261.5" ></text>
</g>
<g >
<title>BufferGetBlock (16 samples, 0.01%)</title><rect x="1048.8" y="379" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1051.81" y="389.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (10 samples, 0.01%)</title><rect x="731.1" y="619" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="734.07" y="629.5" ></text>
</g>
<g >
<title>get_timeout_active (16 samples, 0.01%)</title><rect x="1246.7" y="731" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1249.71" y="741.5" ></text>
</g>
<g >
<title>AttrDefaultFetch (12 samples, 0.01%)</title><rect x="1275.0" y="267" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1278.00" y="277.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (338 samples, 0.29%)</title><rect x="675.4" y="571" width="3.9" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="678.40" y="581.5" ></text>
</g>
<g >
<title>mdunlink (20 samples, 0.02%)</title><rect x="1102.1" y="331" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1105.13" y="341.5" ></text>
</g>
<g >
<title>AtEOXact_ComboCid (12 samples, 0.01%)</title><rect x="1285.9" y="779" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="1288.95" y="789.5" ></text>
</g>
<g >
<title>ExecScanFetch (17,712 samples, 14.98%)</title><rect x="855.3" y="539" width="206.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="858.32" y="549.5" >ExecScanFetch</text>
</g>
<g >
<title>LWLockAttemptLock (51 samples, 0.04%)</title><rect x="793.1" y="635" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="796.14" y="645.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (23 samples, 0.02%)</title><rect x="623.9" y="571" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="626.95" y="581.5" ></text>
</g>
<g >
<title>ExtendBufferedRelLocal (29 samples, 0.02%)</title><rect x="26.3" y="635" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="29.28" y="645.5" ></text>
</g>
<g >
<title>AllocSetAlloc (54 samples, 0.05%)</title><rect x="717.4" y="603" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="720.41" y="613.5" ></text>
</g>
<g >
<title>LockAcquireExtended (16 samples, 0.01%)</title><rect x="1276.8" y="475" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1279.78" y="485.5" ></text>
</g>
<g >
<title>PreCommit_Notify (13 samples, 0.01%)</title><rect x="1118.4" y="667" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1121.44" y="677.5" ></text>
</g>
<g >
<title>ExecIndexEvalRuntimeKeys (535 samples, 0.45%)</title><rect x="838.9" y="539" width="6.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="841.93" y="549.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Database (15 samples, 0.01%)</title><rect x="1289.7" y="779" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="1292.68" y="789.5" ></text>
</g>
<g >
<title>ExecClearTuple (22 samples, 0.02%)</title><rect x="1301.1" y="779" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1304.10" y="789.5" ></text>
</g>
<g >
<title>index_getattr (9 samples, 0.01%)</title><rect x="981.6" y="379" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="984.59" y="389.5" ></text>
</g>
<g >
<title>PreCommit_CheckForSerializationFailure (32 samples, 0.03%)</title><rect x="1328.7" y="779" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1331.71" y="789.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (10 samples, 0.01%)</title><rect x="973.3" y="363" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="976.28" y="373.5" ></text>
</g>
<g >
<title>get_page_from_freelist (13 samples, 0.01%)</title><rect x="26.3" y="283" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="29.29" y="293.5" ></text>
</g>
<g >
<title>__strncpy_evex (133 samples, 0.11%)</title><rect x="670.0" y="523" width="1.6" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="673.01" y="533.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (7,478 samples, 6.32%)</title><rect x="330.4" y="315" width="87.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="333.35" y="325.5" >__netif_..</text>
</g>
<g >
<title>ExecScanFetch (81 samples, 0.07%)</title><rect x="1386.8" y="571" width="1.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1389.84" y="581.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (56 samples, 0.05%)</title><rect x="1198.9" y="667" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1201.89" y="677.5" ></text>
</g>
<g >
<title>RegisterSnapshot (128 samples, 0.11%)</title><rect x="561.2" y="683" width="1.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="564.21" y="693.5" ></text>
</g>
<g >
<title>LockAcquireExtended (252 samples, 0.21%)</title><rect x="510.1" y="651" width="3.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="513.13" y="661.5" ></text>
</g>
<g >
<title>ExecJustAssignScanVar (378 samples, 0.32%)</title><rect x="850.7" y="475" width="4.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="853.68" y="485.5" ></text>
</g>
<g >
<title>exec_stmt_fori (46 samples, 0.04%)</title><rect x="1264.1" y="779" width="0.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1267.12" y="789.5" ></text>
</g>
<g >
<title>PortalRunSelect (115 samples, 0.10%)</title><rect x="11.4" y="747" width="1.4" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="14.45" y="757.5" ></text>
</g>
<g >
<title>WaitEventSetWaitBlock (46 samples, 0.04%)</title><rect x="1260.5" y="731" width="0.5" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="1263.51" y="741.5" ></text>
</g>
<g >
<title>RecoveryInProgress (39 samples, 0.03%)</title><rect x="1332.9" y="779" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1335.93" y="789.5" ></text>
</g>
<g >
<title>GetSnapshotData (35 samples, 0.03%)</title><rect x="1310.5" y="779" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1313.51" y="789.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (14 samples, 0.01%)</title><rect x="1261.3" y="747" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1264.34" y="757.5" ></text>
</g>
<g >
<title>ExecAssignScanProjectionInfo (36 samples, 0.03%)</title><rect x="1300.7" y="779" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1303.66" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (41 samples, 0.03%)</title><rect x="700.1" y="475" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="703.14" y="485.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (13 samples, 0.01%)</title><rect x="19.2" y="747" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="22.21" y="757.5" ></text>
</g>
<g >
<title>list_nth_cell (11 samples, 0.01%)</title><rect x="687.8" y="571" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="690.84" y="581.5" ></text>
</g>
<g >
<title>ExecutorRun (115 samples, 0.10%)</title><rect x="11.4" y="731" width="1.4" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="14.45" y="741.5" ></text>
</g>
<g >
<title>hash_initial_lookup (24 samples, 0.02%)</title><rect x="1187.5" y="603" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1190.49" y="613.5" ></text>
</g>
<g >
<title>select_task_rq_fair (355 samples, 0.30%)</title><rect x="362.9" y="139" width="4.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="365.94" y="149.5" ></text>
</g>
<g >
<title>mdcreate (9 samples, 0.01%)</title><rect x="22.8" y="363" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="25.83" y="373.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (32 samples, 0.03%)</title><rect x="651.6" y="539" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="654.58" y="549.5" ></text>
</g>
<g >
<title>IsSharedRelation (42 samples, 0.04%)</title><rect x="535.1" y="619" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="538.05" y="629.5" ></text>
</g>
<g >
<title>InsertPgAttributeTuples (9 samples, 0.01%)</title><rect x="1274.7" y="459" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1277.75" y="469.5" ></text>
</g>
<g >
<title>kfree (19 samples, 0.02%)</title><rect x="396.8" y="171" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="399.82" y="181.5" ></text>
</g>
<g >
<title>shmem_write_begin (296 samples, 0.25%)</title><rect x="1269.2" y="171" width="3.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1272.20" y="181.5" ></text>
</g>
<g >
<title>palloc (82 samples, 0.07%)</title><rect x="621.9" y="539" width="1.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="624.94" y="549.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (15 samples, 0.01%)</title><rect x="1330.9" y="779" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1333.94" y="789.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (12 samples, 0.01%)</title><rect x="907.1" y="395" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="910.12" y="405.5" ></text>
</g>
<g >
<title>WaitEventSetWait (46 samples, 0.04%)</title><rect x="1260.5" y="747" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1263.51" y="757.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (16 samples, 0.01%)</title><rect x="1090.2" y="539" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1093.20" y="549.5" ></text>
</g>
<g >
<title>pgss_ExecutorFinish (19 samples, 0.02%)</title><rect x="1369.9" y="779" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1372.87" y="789.5" ></text>
</g>
<g >
<title>ExecScanExtended (12 samples, 0.01%)</title><rect x="1305.8" y="779" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1308.84" y="789.5" ></text>
</g>
<g >
<title>AllocSetReset (92 samples, 0.08%)</title><rect x="1121.3" y="571" width="1.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1124.33" y="581.5" ></text>
</g>
<g >
<title>fill_seq_fork_with_data (29 samples, 0.02%)</title><rect x="26.3" y="699" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="29.28" y="709.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (73 samples, 0.06%)</title><rect x="754.2" y="651" width="0.9" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="757.23" y="661.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (88 samples, 0.07%)</title><rect x="84.9" y="443" width="1.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="87.91" y="453.5" ></text>
</g>
<g >
<title>tcp_send_delayed_ack (11 samples, 0.01%)</title><rect x="414.8" y="219" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="417.80" y="229.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (13 samples, 0.01%)</title><rect x="1336.4" y="779" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1339.40" y="789.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (26 samples, 0.02%)</title><rect x="846.4" y="491" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="849.38" y="501.5" ></text>
</g>
<g >
<title>ReleaseCachedPlan (26 samples, 0.02%)</title><rect x="1186.6" y="619" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="1189.58" y="629.5" ></text>
</g>
<g >
<title>ShowTransactionState (38 samples, 0.03%)</title><rect x="1242.4" y="667" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1245.44" y="677.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (27 samples, 0.02%)</title><rect x="1265.5" y="715" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1268.49" y="725.5" ></text>
</g>
<g >
<title>ProcessUtility (30 samples, 0.03%)</title><rect x="24.3" y="795" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="27.33" y="805.5" ></text>
</g>
<g >
<title>hash_search (194 samples, 0.16%)</title><rect x="488.0" y="683" width="2.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="491.00" y="693.5" ></text>
</g>
<g >
<title>ExecIndexScan (19,259 samples, 16.28%)</title><rect x="837.8" y="587" width="224.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="840.80" y="597.5" >ExecIndexScan</text>
</g>
<g >
<title>tag_hash (129 samples, 0.11%)</title><rect x="528.6" y="587" width="1.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="531.65" y="597.5" ></text>
</g>
<g >
<title>hash_search (262 samples, 0.22%)</title><rect x="500.8" y="699" width="3.0" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="503.76" y="709.5" ></text>
</g>
<g >
<title>tag_hash (286 samples, 0.24%)</title><rect x="53.3" y="267" width="3.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="56.33" y="277.5" ></text>
</g>
<g >
<title>record_times (27 samples, 0.02%)</title><rect x="202.7" y="459" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="205.72" y="469.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (180 samples, 0.15%)</title><rect x="582.4" y="539" width="2.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="585.38" y="549.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (17 samples, 0.01%)</title><rect x="1043.4" y="379" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1046.38" y="389.5" ></text>
</g>
<g >
<title>list_length (16 samples, 0.01%)</title><rect x="664.9" y="539" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="667.88" y="549.5" ></text>
</g>
<g >
<title>DatumGetInt32 (83 samples, 0.07%)</title><rect x="1297.9" y="779" width="1.0" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1300.94" y="789.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (29 samples, 0.02%)</title><rect x="1172.1" y="507" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1175.09" y="517.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (30 samples, 0.03%)</title><rect x="1230.6" y="571" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1233.61" y="581.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (595 samples, 0.50%)</title><rect x="493.7" y="683" width="6.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="496.70" y="693.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (142 samples, 0.12%)</title><rect x="631.6" y="523" width="1.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="634.59" y="533.5" ></text>
</g>
<g >
<title>AllocSetAlloc (83 samples, 0.07%)</title><rect x="598.3" y="523" width="1.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="601.29" y="533.5" ></text>
</g>
<g >
<title>SetRemoteDestReceiverParams (18 samples, 0.02%)</title><rect x="1094.7" y="715" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="1097.72" y="725.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (20 samples, 0.02%)</title><rect x="627.9" y="539" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="630.88" y="549.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (12 samples, 0.01%)</title><rect x="823.2" y="699" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="826.15" y="709.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (203 samples, 0.17%)</title><rect x="689.0" y="555" width="2.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="691.95" y="565.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (426 samples, 0.36%)</title><rect x="33.8" y="283" width="5.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="36.84" y="293.5" ></text>
</g>
<g >
<title>list_last_cell (21 samples, 0.02%)</title><rect x="679.5" y="555" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="682.51" y="565.5" ></text>
</g>
<g >
<title>AllocSetDelete (43 samples, 0.04%)</title><rect x="1083.7" y="587" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1086.70" y="597.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (16 samples, 0.01%)</title><rect x="78.8" y="267" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="81.81" y="277.5" ></text>
</g>
<g >
<title>StartReadBuffer (33 samples, 0.03%)</title><rect x="12.4" y="395" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="15.40" y="405.5" ></text>
</g>
<g >
<title>BufTableLookup (332 samples, 0.28%)</title><rect x="56.7" y="299" width="3.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="59.68" y="309.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (4,881 samples, 4.13%)</title><rect x="28.0" y="667" width="56.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="30.96" y="677.5" >stan..</text>
</g>
<g >
<title>BufferDescriptorGetBuffer (535 samples, 0.45%)</title><rect x="71.7" y="283" width="6.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="74.71" y="293.5" ></text>
</g>
<g >
<title>pstrdup (206 samples, 0.17%)</title><rect x="1098.7" y="715" width="2.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="1101.72" y="725.5" ></text>
</g>
<g >
<title>object_aclcheck_ext (27 samples, 0.02%)</title><rect x="653.1" y="539" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="656.11" y="549.5" ></text>
</g>
<g >
<title>pq_putemptymessage (10 samples, 0.01%)</title><rect x="1374.0" y="779" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1377.00" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (34 samples, 0.03%)</title><rect x="512.6" y="587" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="515.65" y="597.5" ></text>
</g>
<g >
<title>pgstat_report_activity (153 samples, 0.13%)</title><rect x="1252.6" y="731" width="1.8" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1255.61" y="741.5" ></text>
</g>
<g >
<title>secure_write (17,314 samples, 14.64%)</title><rect x="275.5" y="667" width="202.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="278.45" y="677.5" >secure_write</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (225 samples, 0.19%)</title><rect x="61.9" y="267" width="2.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="64.88" y="277.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (20 samples, 0.02%)</title><rect x="1100.3" y="683" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1103.32" y="693.5" ></text>
</g>
<g >
<title>PinBufferForBlock (1,898 samples, 1.60%)</title><rect x="876.4" y="347" width="22.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="879.41" y="357.5" ></text>
</g>
<g >
<title>standard_ExecutorEnd (2,327 samples, 1.97%)</title><rect x="1153.6" y="587" width="27.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1156.56" y="597.5" >s..</text>
</g>
<g >
<title>ResourceOwnerForgetTupleDesc (20 samples, 0.02%)</title><rect x="1337.2" y="779" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1340.17" y="789.5" ></text>
</g>
<g >
<title>index_getnext_slot (16,433 samples, 13.89%)</title><rect x="868.9" y="507" width="191.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="871.86" y="517.5" >index_getnext_slot</text>
</g>
<g >
<title>ChoosePortalStrategy (55 samples, 0.05%)</title><rect x="559.6" y="699" width="0.6" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="562.58" y="709.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (34 samples, 0.03%)</title><rect x="831.2" y="491" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="834.19" y="501.5" ></text>
</g>
<g >
<title>__put_user_nocheck_8 (25 samples, 0.02%)</title><rect x="125.0" y="539" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="128.02" y="549.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (30 samples, 0.03%)</title><rect x="748.2" y="683" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="751.18" y="693.5" ></text>
</g>
<g >
<title>object_aclmask_ext (15 samples, 0.01%)</title><rect x="653.2" y="523" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="656.24" y="533.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (24 samples, 0.02%)</title><rect x="1275.6" y="459" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1278.55" y="469.5" ></text>
</g>
<g >
<title>exec_stmts (23 samples, 0.02%)</title><rect x="19.8" y="667" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="22.79" y="677.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (46 samples, 0.04%)</title><rect x="1268.5" y="459" width="0.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1271.54" y="469.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesMVCC (11 samples, 0.01%)</title><rect x="906.8" y="411" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="909.79" y="421.5" ></text>
</g>
<g >
<title>index_create (17 samples, 0.01%)</title><rect x="19.8" y="523" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="22.79" y="533.5" ></text>
</g>
<g >
<title>Int32GetDatum (9 samples, 0.01%)</title><rect x="550.8" y="667" width="0.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="553.82" y="677.5" ></text>
</g>
<g >
<title>generic_file_write_iter (415 samples, 0.35%)</title><rect x="1269.2" y="219" width="4.8" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1272.18" y="229.5" ></text>
</g>
<g >
<title>AllocSetFree (32 samples, 0.03%)</title><rect x="1098.2" y="683" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1101.18" y="693.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (566 samples, 0.48%)</title><rect x="602.0" y="539" width="6.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="604.96" y="549.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (63 samples, 0.05%)</title><rect x="1096.7" y="699" width="0.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1099.73" y="709.5" ></text>
</g>
<g >
<title>table_open (14 samples, 0.01%)</title><rect x="1382.7" y="779" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1385.67" y="789.5" ></text>
</g>
<g >
<title>ReadBufferExtended (21 samples, 0.02%)</title><rect x="12.2" y="427" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="15.16" y="437.5" ></text>
</g>
<g >
<title>tag_hash (315 samples, 0.27%)</title><rect x="1223.3" y="571" width="3.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1226.29" y="581.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (62 samples, 0.05%)</title><rect x="719.0" y="683" width="0.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="721.96" y="693.5" ></text>
</g>
<g >
<title>ExecJustAssignVarImpl (372 samples, 0.31%)</title><rect x="850.7" y="459" width="4.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="853.75" y="469.5" ></text>
</g>
<g >
<title>ExecutorFinish (216 samples, 0.18%)</title><rect x="1180.7" y="619" width="2.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1183.75" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (49 samples, 0.04%)</title><rect x="794.2" y="619" width="0.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="797.19" y="629.5" ></text>
</g>
<g >
<title>stack_is_too_deep (13 samples, 0.01%)</title><rect x="715.1" y="603" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="718.10" y="613.5" ></text>
</g>
<g >
<title>_bt_search (43 samples, 0.04%)</title><rect x="1387.3" y="475" width="0.5" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1390.28" y="485.5" ></text>
</g>
<g >
<title>exec_stmt_fori (88 samples, 0.07%)</title><rect x="84.9" y="507" width="1.0" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="87.91" y="517.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (159 samples, 0.13%)</title><rect x="258.2" y="555" width="1.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="261.23" y="565.5" ></text>
</g>
<g >
<title>_bt_first (9 samples, 0.01%)</title><rect x="25.3" y="539" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="28.27" y="549.5" ></text>
</g>
<g >
<title>StartChildProcess (54 samples, 0.05%)</title><rect x="1260.4" y="811" width="0.6" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1263.42" y="821.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (18 samples, 0.02%)</title><rect x="817.9" y="715" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="820.86" y="725.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (12 samples, 0.01%)</title><rect x="1097.7" y="715" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1100.74" y="725.5" ></text>
</g>
<g >
<title>dlist_is_empty (21 samples, 0.02%)</title><rect x="1113.4" y="651" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1116.43" y="661.5" ></text>
</g>
<g >
<title>get_hash_value (33 samples, 0.03%)</title><rect x="1355.3" y="779" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1358.33" y="789.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (28 samples, 0.02%)</title><rect x="854.1" y="347" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="857.13" y="357.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (281 samples, 0.24%)</title><rect x="894.0" y="299" width="3.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="896.95" y="309.5" ></text>
</g>
<g >
<title>do_syscall_64 (44 samples, 0.04%)</title><rect x="1260.5" y="683" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1263.53" y="693.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (23 samples, 0.02%)</title><rect x="1375.5" y="779" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="1378.45" y="789.5" ></text>
</g>
<g >
<title>__x64_sys_pwrite64 (30 samples, 0.03%)</title><rect x="1264.2" y="315" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1267.15" y="325.5" ></text>
</g>
<g >
<title>update_curr (442 samples, 0.37%)</title><rect x="155.2" y="459" width="5.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="158.21" y="469.5" ></text>
</g>
<g >
<title>ScanPgRelation (17 samples, 0.01%)</title><rect x="1265.6" y="683" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1268.61" y="693.5" ></text>
</g>
<g >
<title>_bt_num_array_keys (86 samples, 0.07%)</title><rect x="28.0" y="427" width="1.0" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="30.96" y="437.5" ></text>
</g>
<g >
<title>get_hash_value (148 samples, 0.13%)</title><rect x="528.4" y="603" width="1.8" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="531.42" y="613.5" ></text>
</g>
<g >
<title>_int_free (94 samples, 0.08%)</title><rect x="1162.2" y="443" width="1.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1165.24" y="453.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.02%)</title><rect x="1385.8" y="795" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1388.80" y="805.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (46 samples, 0.04%)</title><rect x="1268.5" y="379" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1271.54" y="389.5" ></text>
</g>
<g >
<title>expr_setup_walker (208 samples, 0.18%)</title><rect x="645.5" y="571" width="2.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="648.55" y="581.5" ></text>
</g>
<g >
<title>pq_beginmessage (135 samples, 0.11%)</title><rect x="269.5" y="715" width="1.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="272.46" y="725.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (115 samples, 0.10%)</title><rect x="11.4" y="651" width="1.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="14.45" y="661.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (5,796 samples, 4.90%)</title><rect x="347.3" y="251" width="67.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="350.31" y="261.5" >tcp_v4..</text>
</g>
<g >
<title>smgr_bulk_flush (30 samples, 0.03%)</title><rect x="1264.2" y="459" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1267.15" y="469.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (212 samples, 0.18%)</title><rect x="756.9" y="699" width="2.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="759.87" y="709.5" ></text>
</g>
<g >
<title>hash_bytes (95 samples, 0.08%)</title><rect x="798.6" y="667" width="1.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="801.62" y="677.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (312 samples, 0.26%)</title><rect x="851.4" y="427" width="3.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="854.41" y="437.5" ></text>
</g>
<g >
<title>x64_sys_call (26 samples, 0.02%)</title><rect x="476.7" y="587" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="479.75" y="597.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (46 samples, 0.04%)</title><rect x="1264.1" y="747" width="0.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1267.12" y="757.5" ></text>
</g>
<g >
<title>CStringGetDatum (12 samples, 0.01%)</title><rect x="550.1" y="683" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="553.13" y="693.5" ></text>
</g>
<g >
<title>exec_stmt_fori (9 samples, 0.01%)</title><rect x="20.1" y="715" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="23.12" y="725.5" ></text>
</g>
<g >
<title>BTreeTupleGetDownLink (28 samples, 0.02%)</title><rect x="984.6" y="427" width="0.3" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="987.59" y="437.5" ></text>
</g>
<g >
<title>PortalRunUtility (63 samples, 0.05%)</title><rect x="1263.4" y="763" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1266.38" y="773.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (115 samples, 0.10%)</title><rect x="11.4" y="699" width="1.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="14.45" y="709.5" ></text>
</g>
<g >
<title>LockBuffer (73 samples, 0.06%)</title><rect x="975.1" y="379" width="0.8" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="978.09" y="389.5" ></text>
</g>
<g >
<title>namestrcpy (23 samples, 0.02%)</title><rect x="1363.7" y="779" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1366.65" y="789.5" ></text>
</g>
<g >
<title>list_head (10 samples, 0.01%)</title><rect x="804.7" y="699" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="807.67" y="709.5" ></text>
</g>
<g >
<title>strlen@plt (9 samples, 0.01%)</title><rect x="1259.4" y="715" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1262.39" y="725.5" ></text>
</g>
<g >
<title>skb_attempt_defer_free (351 samples, 0.30%)</title><rect x="235.0" y="507" width="4.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="238.00" y="517.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (9 samples, 0.01%)</title><rect x="863.7" y="411" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="866.70" y="421.5" ></text>
</g>
<g >
<title>sk_filter_trim_cap (210 samples, 0.18%)</title><rect x="344.4" y="251" width="2.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="347.41" y="261.5" ></text>
</g>
<g >
<title>object_aclcheck (27 samples, 0.02%)</title><rect x="1364.0" y="779" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1366.98" y="789.5" ></text>
</g>
<g >
<title>pg_ultoa_n (15 samples, 0.01%)</title><rect x="1070.9" y="539" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1073.85" y="549.5" ></text>
</g>
<g >
<title>__libc_send (17,080 samples, 14.44%)</title><rect x="278.1" y="635" width="199.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="281.08" y="645.5" >__libc_send</text>
</g>
<g >
<title>AllocSetFree (45 samples, 0.04%)</title><rect x="1175.1" y="523" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1178.09" y="533.5" ></text>
</g>
<g >
<title>PortalGetPrimaryStmt (63 samples, 0.05%)</title><rect x="796.3" y="699" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="799.26" y="709.5" ></text>
</g>
<g >
<title>index_create (35 samples, 0.03%)</title><rect x="19.0" y="795" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="21.98" y="805.5" ></text>
</g>
<g >
<title>list_nth (16 samples, 0.01%)</title><rect x="687.8" y="587" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="690.78" y="597.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (73 samples, 0.06%)</title><rect x="55.8" y="235" width="0.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="58.80" y="245.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (252 samples, 0.21%)</title><rect x="779.2" y="571" width="3.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="782.22" y="581.5" ></text>
</g>
<g >
<title>__strncmp_evex (23 samples, 0.02%)</title><rect x="819.0" y="651" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="821.97" y="661.5" ></text>
</g>
<g >
<title>clear_page_erms (10 samples, 0.01%)</title><rect x="1264.2" y="107" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1267.16" y="117.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (239 samples, 0.20%)</title><rect x="1176.1" y="539" width="2.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1179.12" y="549.5" ></text>
</g>
<g >
<title>exec_stmts (727 samples, 0.61%)</title><rect x="1267.3" y="667" width="8.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1270.35" y="677.5" ></text>
</g>
<g >
<title>palloc0 (168 samples, 0.14%)</title><rect x="638.0" y="587" width="2.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="641.01" y="597.5" ></text>
</g>
<g >
<title>AtEOXact_Inval (11 samples, 0.01%)</title><rect x="1103.7" y="683" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1106.74" y="693.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (84 samples, 0.07%)</title><rect x="1254.7" y="699" width="1.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1257.70" y="709.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (9 samples, 0.01%)</title><rect x="1301.7" y="779" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="1304.71" y="789.5" ></text>
</g>
<g >
<title>ExecDropStmt (20 samples, 0.02%)</title><rect x="23.5" y="443" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="26.46" y="453.5" ></text>
</g>
<g >
<title>__mod_memcg_state (42 samples, 0.04%)</title><rect x="233.5" y="459" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="236.53" y="469.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (332 samples, 0.28%)</title><rect x="205.9" y="571" width="3.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="208.90" y="581.5" ></text>
</g>
<g >
<title>fmgr_info (71 samples, 0.06%)</title><rect x="627.3" y="571" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="630.31" y="581.5" ></text>
</g>
<g >
<title>memset_erms (323 samples, 0.27%)</title><rect x="462.5" y="427" width="3.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="465.52" y="437.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (9 samples, 0.01%)</title><rect x="864.6" y="427" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="867.64" y="437.5" ></text>
</g>
<g >
<title>CatalogTupleInsert (12 samples, 0.01%)</title><rect x="1268.3" y="459" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1271.34" y="469.5" ></text>
</g>
<g >
<title>ProcessUtility (9 samples, 0.01%)</title><rect x="20.1" y="635" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="23.12" y="645.5" ></text>
</g>
<g >
<title>socket_putmessage (55 samples, 0.05%)</title><rect x="805.7" y="683" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="808.69" y="693.5" ></text>
</g>
<g >
<title>sched_clock_cpu (10 samples, 0.01%)</title><rect x="372.1" y="123" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="375.15" y="133.5" ></text>
</g>
<g >
<title>GetCachedPlan (2,626 samples, 2.22%)</title><rect x="507.1" y="715" width="30.7" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text  x="510.12" y="725.5" >G..</text>
</g>
<g >
<title>table_index_fetch_reset (137 samples, 0.12%)</title><rect x="835.6" y="491" width="1.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="838.63" y="501.5" ></text>
</g>
<g >
<title>AllocSetAlloc (47 samples, 0.04%)</title><rect x="678.8" y="539" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="681.78" y="549.5" ></text>
</g>
<g >
<title>GETSTRUCT (11 samples, 0.01%)</title><rect x="802.0" y="683" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="804.97" y="693.5" ></text>
</g>
<g >
<title>gettimeofday@plt (24 samples, 0.02%)</title><rect x="1255.4" y="683" width="0.3" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="1258.40" y="693.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (20 samples, 0.02%)</title><rect x="25.8" y="683" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="28.81" y="693.5" ></text>
</g>
<g >
<title>table_close (106 samples, 0.09%)</title><rect x="1154.8" y="539" width="1.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1157.79" y="549.5" ></text>
</g>
<g >
<title>SPI_commit (53 samples, 0.04%)</title><rect x="1101.8" y="443" width="0.6" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="1104.82" y="453.5" ></text>
</g>
<g >
<title>btgettuple (16 samples, 0.01%)</title><rect x="1276.2" y="635" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1279.20" y="645.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (19 samples, 0.02%)</title><rect x="270.5" y="635" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="273.46" y="645.5" ></text>
</g>
<g >
<title>exec_stmt_fori (42 samples, 0.04%)</title><rect x="1388.9" y="667" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1391.87" y="677.5" ></text>
</g>
<g >
<title>put_prev_task_fair (83 samples, 0.07%)</title><rect x="203.7" y="491" width="1.0" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="206.73" y="501.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (9 samples, 0.01%)</title><rect x="20.1" y="683" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="23.12" y="693.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (46 samples, 0.04%)</title><rect x="1264.1" y="731" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1267.12" y="741.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (24 samples, 0.02%)</title><rect x="637.1" y="523" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="640.12" y="533.5" ></text>
</g>
<g >
<title>AllocSetReset (378 samples, 0.32%)</title><rect x="94.8" y="699" width="4.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="97.78" y="709.5" ></text>
</g>
<g >
<title>ExecScan (4,881 samples, 4.13%)</title><rect x="28.0" y="587" width="56.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="30.96" y="597.5" >Exec..</text>
</g>
<g >
<title>AtEOXact_PgStat (170 samples, 0.14%)</title><rect x="1113.7" y="667" width="2.0" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text  x="1116.67" y="677.5" ></text>
</g>
<g >
<title>LWLockAcquire (35 samples, 0.03%)</title><rect x="21.9" y="363" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="24.89" y="373.5" ></text>
</g>
<g >
<title>StartTransactionCommand (11 samples, 0.01%)</title><rect x="1341.9" y="779" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1344.91" y="789.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (92 samples, 0.08%)</title><rect x="973.9" y="363" width="1.0" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="976.87" y="373.5" ></text>
</g>
<g >
<title>PreCommit_CheckForSerializationFailure (24 samples, 0.02%)</title><rect x="1118.2" y="667" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1121.16" y="677.5" ></text>
</g>
<g >
<title>doDeletion (35 samples, 0.03%)</title><rect x="85.4" y="283" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="88.36" y="293.5" ></text>
</g>
<g >
<title>pq_getmsgstring (20 samples, 0.02%)</title><rect x="1373.8" y="779" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text  x="1376.77" y="789.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (12 samples, 0.01%)</title><rect x="974.5" y="347" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="977.49" y="357.5" ></text>
</g>
<g >
<title>update_rq_clock (25 samples, 0.02%)</title><rect x="197.4" y="443" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="200.37" y="453.5" ></text>
</g>
<g >
<title>standard_ExecutorStart@plt (14 samples, 0.01%)</title><rect x="718.8" y="667" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="721.80" y="677.5" ></text>
</g>
<g >
<title>exec_stmt_block (17 samples, 0.01%)</title><rect x="24.8" y="667" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="27.82" y="677.5" ></text>
</g>
<g >
<title>LockBufHdr (68 samples, 0.06%)</title><rect x="971.3" y="395" width="0.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="974.34" y="405.5" ></text>
</g>
<g >
<title>SearchSysCache3 (13 samples, 0.01%)</title><rect x="1339.7" y="779" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1342.71" y="789.5" ></text>
</g>
<g >
<title>internal_putbytes (77 samples, 0.07%)</title><rect x="1072.0" y="571" width="0.9" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1074.96" y="581.5" ></text>
</g>
<g >
<title>enable_statement_timeout (9 samples, 0.01%)</title><rect x="1101.7" y="699" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1104.70" y="709.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (18 samples, 0.02%)</title><rect x="25.3" y="651" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="28.26" y="661.5" ></text>
</g>
<g >
<title>release_sock (120 samples, 0.10%)</title><rect x="291.6" y="523" width="1.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="294.61" y="533.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (18 samples, 0.02%)</title><rect x="570.2" y="667" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="573.17" y="677.5" ></text>
</g>
<g >
<title>LWLockQueueSelf (13 samples, 0.01%)</title><rect x="696.5" y="523" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="699.46" y="533.5" ></text>
</g>
<g >
<title>IOContextForStrategy (32 samples, 0.03%)</title><rect x="1312.9" y="779" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1315.89" y="789.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (28 samples, 0.02%)</title><rect x="1276.7" y="619" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1279.67" y="629.5" ></text>
</g>
<g >
<title>internal_putbytes (89 samples, 0.08%)</title><rect x="272.4" y="683" width="1.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="275.36" y="693.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (30 samples, 0.03%)</title><rect x="24.3" y="523" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="27.33" y="533.5" ></text>
</g>
<g >
<title>put_prev_entity (58 samples, 0.05%)</title><rect x="204.0" y="475" width="0.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="207.02" y="485.5" ></text>
</g>
<g >
<title>CommitTransaction (15 samples, 0.01%)</title><rect x="1296.2" y="779" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1299.16" y="789.5" ></text>
</g>
<g >
<title>TransactionBlockStatusCode (46 samples, 0.04%)</title><rect x="268.6" y="715" width="0.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="271.63" y="725.5" ></text>
</g>
<g >
<title>hash_initial_lookup (32 samples, 0.03%)</title><rect x="501.9" y="667" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="504.92" y="677.5" ></text>
</g>
<g >
<title>InitBufferTag (36 samples, 0.03%)</title><rect x="884.3" y="315" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="887.30" y="325.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (23 samples, 0.02%)</title><rect x="1333.7" y="779" width="0.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1336.71" y="789.5" ></text>
</g>
<g >
<title>GetPortalByName (38 samples, 0.03%)</title><rect x="1310.0" y="779" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="1313.03" y="789.5" ></text>
</g>
<g >
<title>ReleaseCatCache (65 samples, 0.05%)</title><rect x="737.2" y="683" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="740.21" y="693.5" ></text>
</g>
<g >
<title>AllocSetFree (33 samples, 0.03%)</title><rect x="641.7" y="571" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="644.66" y="581.5" ></text>
</g>
<g >
<title>pg_pwrite_zeros (29 samples, 0.02%)</title><rect x="26.3" y="571" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="29.28" y="581.5" ></text>
</g>
<g >
<title>GETSTRUCT (13 samples, 0.01%)</title><rect x="742.0" y="683" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="745.03" y="693.5" ></text>
</g>
<g >
<title>palloc0 (148 samples, 0.13%)</title><rect x="813.0" y="683" width="1.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="816.03" y="693.5" ></text>
</g>
<g >
<title>TupleDescAttr (15 samples, 0.01%)</title><rect x="672.1" y="523" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="675.10" y="533.5" ></text>
</g>
<g >
<title>ExecTypeFromTLInternal (1,020 samples, 0.86%)</title><rect x="662.7" y="571" width="11.9" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="665.65" y="581.5" ></text>
</g>
<g >
<title>hash_bytes (81 samples, 0.07%)</title><rect x="489.3" y="651" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="492.30" y="661.5" ></text>
</g>
<g >
<title>all (118,274 samples, 100%)</title><rect x="10.0" y="827" width="1380.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="13.00" y="837.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (17 samples, 0.01%)</title><rect x="636.9" y="523" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="639.89" y="533.5" ></text>
</g>
<g >
<title>AllocSetAlloc (47 samples, 0.04%)</title><rect x="814.2" y="667" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="817.19" y="677.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (99 samples, 0.08%)</title><rect x="689.5" y="475" width="1.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="692.53" y="485.5" ></text>
</g>
<g >
<title>hash_initial_lookup (29 samples, 0.02%)</title><rect x="702.7" y="507" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="705.71" y="517.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (70 samples, 0.06%)</title><rect x="581.2" y="539" width="0.8" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="584.19" y="549.5" ></text>
</g>
<g >
<title>ReadCommand (14,408 samples, 12.18%)</title><rect x="100.1" y="731" width="168.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="103.15" y="741.5" >ReadCommand</text>
</g>
<g >
<title>list_nth_cell (15 samples, 0.01%)</title><rect x="821.1" y="699" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="824.05" y="709.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (49 samples, 0.04%)</title><rect x="737.4" y="667" width="0.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="740.36" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (33 samples, 0.03%)</title><rect x="832.1" y="459" width="0.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="835.07" y="469.5" ></text>
</g>
<g >
<title>AllocSetAlloc (14 samples, 0.01%)</title><rect x="620.1" y="587" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="623.12" y="597.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (249 samples, 0.21%)</title><rect x="779.3" y="539" width="2.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="782.26" y="549.5" ></text>
</g>
<g >
<title>exec_execute_message (115 samples, 0.10%)</title><rect x="11.4" y="779" width="1.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="14.45" y="789.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (404 samples, 0.34%)</title><rect x="999.8" y="395" width="4.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1002.76" y="405.5" ></text>
</g>
<g >
<title>btgettuple (4,881 samples, 4.13%)</title><rect x="28.0" y="491" width="56.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="30.96" y="501.5" >btge..</text>
</g>
<g >
<title>ReindexIsProcessingIndex (24 samples, 0.02%)</title><rect x="1333.4" y="779" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1336.40" y="789.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (54 samples, 0.05%)</title><rect x="609.6" y="539" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="612.60" y="549.5" ></text>
</g>
<g >
<title>find_busiest_group (1,982 samples, 1.68%)</title><rect x="171.1" y="443" width="23.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="174.09" y="453.5" ></text>
</g>
<g >
<title>_bt_getbuf (18 samples, 0.02%)</title><rect x="1346.2" y="779" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1349.21" y="789.5" ></text>
</g>
<g >
<title>__kmem_cache_free (14 samples, 0.01%)</title><rect x="394.2" y="171" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="397.22" y="181.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (38 samples, 0.03%)</title><rect x="836.8" y="427" width="0.4" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="839.76" y="437.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (63 samples, 0.05%)</title><rect x="1263.4" y="731" width="0.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1266.38" y="741.5" ></text>
</g>
<g >
<title>Int32GetDatum (88 samples, 0.07%)</title><rect x="1314.6" y="779" width="1.0" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1317.61" y="789.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (88 samples, 0.07%)</title><rect x="84.9" y="635" width="1.0" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="87.91" y="645.5" ></text>
</g>
<g >
<title>exec_stmts (28 samples, 0.02%)</title><rect x="1276.7" y="731" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1279.67" y="741.5" ></text>
</g>
<g >
<title>SearchSysCache2 (9 samples, 0.01%)</title><rect x="1267.5" y="459" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1270.45" y="469.5" ></text>
</g>
<g >
<title>skb_clone (55 samples, 0.05%)</title><rect x="437.6" y="459" width="0.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="440.60" y="469.5" ></text>
</g>
<g >
<title>int4hashfast (20 samples, 0.02%)</title><rect x="583.4" y="507" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="586.39" y="517.5" ></text>
</g>
<g >
<title>AllocSetAlloc (54 samples, 0.05%)</title><rect x="734.7" y="667" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="737.65" y="677.5" ></text>
</g>
<g >
<title>ExecScanExtended (4,881 samples, 4.13%)</title><rect x="28.0" y="571" width="56.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="30.96" y="581.5" >Exec..</text>
</g>
<g >
<title>exec_stmt_execsql (28 samples, 0.02%)</title><rect x="1276.7" y="715" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1279.67" y="725.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (209 samples, 0.18%)</title><rect x="21.3" y="539" width="2.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="24.26" y="549.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (40 samples, 0.03%)</title><rect x="1250.4" y="667" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1253.36" y="677.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (16 samples, 0.01%)</title><rect x="1370.1" y="779" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1373.09" y="789.5" ></text>
</g>
<g >
<title>__refill_stock (14 samples, 0.01%)</title><rect x="234.3" y="475" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="237.29" y="485.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (45 samples, 0.04%)</title><rect x="1264.1" y="603" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1267.13" y="613.5" ></text>
</g>
<g >
<title>GetDefaultOpClass (23 samples, 0.02%)</title><rect x="21.3" y="395" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="24.31" y="405.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (63 samples, 0.05%)</title><rect x="1263.4" y="459" width="0.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1266.38" y="469.5" ></text>
</g>
<g >
<title>index_beginscan_internal (868 samples, 0.73%)</title><rect x="857.5" y="491" width="10.1" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text  x="860.47" y="501.5" ></text>
</g>
<g >
<title>list_nth_cell (9 samples, 0.01%)</title><rect x="628.3" y="571" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="631.34" y="581.5" ></text>
</g>
<g >
<title>__fget_light (71 samples, 0.06%)</title><rect x="123.4" y="539" width="0.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="126.45" y="549.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (219 samples, 0.19%)</title><rect x="490.3" y="699" width="2.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="493.26" y="709.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (17 samples, 0.01%)</title><rect x="21.4" y="315" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="24.35" y="325.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (14 samples, 0.01%)</title><rect x="641.0" y="539" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="644.02" y="549.5" ></text>
</g>
<g >
<title>StmtPlanRequiresRevalidation (14 samples, 0.01%)</title><rect x="1342.0" y="779" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1345.03" y="789.5" ></text>
</g>
<g >
<title>GETSTRUCT (16 samples, 0.01%)</title><rect x="629.0" y="571" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="632.02" y="581.5" ></text>
</g>
<g >
<title>PortalRunMulti (63 samples, 0.05%)</title><rect x="1263.4" y="779" width="0.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1266.38" y="789.5" ></text>
</g>
<g >
<title>index_create (36 samples, 0.03%)</title><rect x="25.3" y="779" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="28.26" y="789.5" ></text>
</g>
<g >
<title>ExecProcNode (476 samples, 0.40%)</title><rect x="12.9" y="635" width="5.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="15.88" y="645.5" ></text>
</g>
<g >
<title>generic_perform_write (30 samples, 0.03%)</title><rect x="1264.2" y="251" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="1267.15" y="261.5" ></text>
</g>
<g >
<title>clear_page_erms (19 samples, 0.02%)</title><rect x="1264.3" y="219" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1267.28" y="229.5" ></text>
</g>
<g >
<title>FreeQueryDesc (276 samples, 0.23%)</title><rect x="1183.3" y="619" width="3.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1186.27" y="629.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (10 samples, 0.01%)</title><rect x="1185.3" y="555" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1188.33" y="565.5" ></text>
</g>
<g >
<title>pg_qsort (18 samples, 0.02%)</title><rect x="1241.3" y="603" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1244.28" y="613.5" ></text>
</g>
<g >
<title>ExecEvalExpr (445 samples, 0.38%)</title><rect x="839.9" y="523" width="5.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="842.89" y="533.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberRelationRef (30 samples, 0.03%)</title><rect x="859.1" y="459" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="862.06" y="469.5" ></text>
</g>
<g >
<title>PortalRunMulti (77 samples, 0.07%)</title><rect x="1101.8" y="699" width="0.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1104.82" y="709.5" ></text>
</g>
<g >
<title>__rdgsbase_inactive (24 samples, 0.02%)</title><rect x="109.9" y="603" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="112.86" y="613.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (10 samples, 0.01%)</title><rect x="1275.4" y="363" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1278.42" y="373.5" ></text>
</g>
<g >
<title>pairingheap_remove (17 samples, 0.01%)</title><rect x="1185.5" y="555" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1188.45" y="565.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (71 samples, 0.06%)</title><rect x="1093.8" y="667" width="0.8" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1096.77" y="677.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (37 samples, 0.03%)</title><rect x="874.3" y="379" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="877.27" y="389.5" ></text>
</g>
<g >
<title>AllocSetAlloc (56 samples, 0.05%)</title><rect x="626.1" y="539" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="629.13" y="549.5" ></text>
</g>
<g >
<title>MemoryContextReset (11 samples, 0.01%)</title><rect x="86.0" y="747" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="89.00" y="757.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (19 samples, 0.02%)</title><rect x="48.1" y="299" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="51.06" y="309.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (68 samples, 0.06%)</title><rect x="602.6" y="507" width="0.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="605.59" y="517.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (21 samples, 0.02%)</title><rect x="205.7" y="571" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="208.66" y="581.5" ></text>
</g>
<g >
<title>BoolGetDatum (15 samples, 0.01%)</title><rect x="1293.6" y="779" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1296.62" y="789.5" ></text>
</g>
<g >
<title>new_list (99 samples, 0.08%)</title><rect x="679.8" y="555" width="1.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="682.76" y="565.5" ></text>
</g>
<g >
<title>exec_stmts (27 samples, 0.02%)</title><rect x="1277.0" y="747" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1280.00" y="757.5" ></text>
</g>
<g >
<title>int4eqfast (13 samples, 0.01%)</title><rect x="631.4" y="507" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="634.44" y="517.5" ></text>
</g>
<g >
<title>ReadBuffer (43 samples, 0.04%)</title><rect x="1387.3" y="427" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1390.28" y="437.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (233 samples, 0.20%)</title><rect x="732.6" y="699" width="2.7" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="735.58" y="709.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (11 samples, 0.01%)</title><rect x="1388.9" y="427" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1391.87" y="437.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (11 samples, 0.01%)</title><rect x="549.0" y="715" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="551.96" y="725.5" ></text>
</g>
<g >
<title>CheckExprStillValid (285 samples, 0.24%)</title><rect x="840.3" y="491" width="3.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="843.28" y="501.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (14 samples, 0.01%)</title><rect x="1093.4" y="651" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1096.44" y="661.5" ></text>
</g>
<g >
<title>deregister_seq_scan (24 samples, 0.02%)</title><rect x="1197.9" y="619" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1200.85" y="629.5" ></text>
</g>
<g >
<title>mod_memcg_state (53 samples, 0.04%)</title><rect x="233.4" y="475" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="236.40" y="485.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10 samples, 0.01%)</title><rect x="428.1" y="331" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="431.09" y="341.5" ></text>
</g>
<g >
<title>update_min_vruntime (26 samples, 0.02%)</title><rect x="164.2" y="459" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="167.16" y="469.5" ></text>
</g>
<g >
<title>AbortStrongLockAcquire (35 samples, 0.03%)</title><rect x="1281.2" y="779" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1284.24" y="789.5" ></text>
</g>
<g >
<title>LWLockRelease (195 samples, 0.16%)</title><rect x="696.7" y="539" width="2.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="699.69" y="549.5" ></text>
</g>
<g >
<title>UnlockBufHdr (25 samples, 0.02%)</title><rect x="972.3" y="395" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="975.30" y="405.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (21 samples, 0.02%)</title><rect x="992.8" y="411" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="995.79" y="421.5" ></text>
</g>
<g >
<title>tag_hash (157 samples, 0.13%)</title><rect x="703.0" y="523" width="1.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="706.05" y="533.5" ></text>
</g>
<g >
<title>_bt_search (54 samples, 0.05%)</title><rect x="12.2" y="491" width="0.6" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="15.16" y="501.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (24 samples, 0.02%)</title><rect x="1180.1" y="523" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1183.12" y="533.5" ></text>
</g>
<g >
<title>__x64_sys_pwrite64 (29 samples, 0.02%)</title><rect x="26.3" y="475" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="29.28" y="485.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (664 samples, 0.56%)</title><rect x="493.0" y="699" width="7.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="496.01" y="709.5" ></text>
</g>
<g >
<title>SendRowDescriptionMessage (16 samples, 0.01%)</title><rect x="1339.9" y="779" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1342.86" y="789.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (11 samples, 0.01%)</title><rect x="743.6" y="667" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="746.65" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerSort (35 samples, 0.03%)</title><rect x="1241.1" y="619" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1244.08" y="629.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (476 samples, 0.40%)</title><rect x="12.9" y="619" width="5.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="15.88" y="629.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (26 samples, 0.02%)</title><rect x="99.7" y="731" width="0.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="102.66" y="741.5" ></text>
</g>
<g >
<title>exec_stmt_block (30 samples, 0.03%)</title><rect x="24.3" y="651" width="0.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="27.33" y="661.5" ></text>
</g>
<g >
<title>RelationCloseCleanup (14 samples, 0.01%)</title><rect x="1156.8" y="491" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1159.78" y="501.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (64 samples, 0.05%)</title><rect x="374.4" y="187" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="377.40" y="197.5" ></text>
</g>
<g >
<title>disable_statement_timeout (15 samples, 0.01%)</title><rect x="1349.8" y="779" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1352.84" y="789.5" ></text>
</g>
<g >
<title>exprTypmod (40 samples, 0.03%)</title><rect x="674.1" y="555" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="677.07" y="565.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (209 samples, 0.18%)</title><rect x="21.3" y="475" width="2.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="24.26" y="485.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (16 samples, 0.01%)</title><rect x="707.4" y="523" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="710.39" y="533.5" ></text>
</g>
<g >
<title>murmurhash32 (42 samples, 0.04%)</title><rect x="632.0" y="491" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="634.99" y="501.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (10 samples, 0.01%)</title><rect x="1335.6" y="779" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1338.56" y="789.5" ></text>
</g>
<g >
<title>BackendRun (4,969 samples, 4.20%)</title><rect x="28.0" y="779" width="57.9" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="30.96" y="789.5" >Backe..</text>
</g>
<g >
<title>CommandEndInvalidationMessages (43 samples, 0.04%)</title><rect x="1267.6" y="443" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1270.62" y="453.5" ></text>
</g>
<g >
<title>ExecDropStmt (10 samples, 0.01%)</title><rect x="1389.6" y="779" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1392.59" y="789.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (22 samples, 0.02%)</title><rect x="629.3" y="539" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="632.28" y="549.5" ></text>
</g>
<g >
<title>CreateExprContextInternal (955 samples, 0.81%)</title><rect x="588.1" y="571" width="11.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="591.13" y="581.5" ></text>
</g>
<g >
<title>SearchPathMatchesCurrentEnvironment (30 samples, 0.03%)</title><rect x="535.6" y="683" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="538.60" y="693.5" ></text>
</g>
<g >
<title>AllocSetAlloc (85 samples, 0.07%)</title><rect x="639.0" y="571" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="641.95" y="581.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (30 samples, 0.03%)</title><rect x="817.5" y="667" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="820.51" y="677.5" ></text>
</g>
<g >
<title>IndexTupleHasNulls (13 samples, 0.01%)</title><rect x="14.8" y="379" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="17.81" y="389.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (20 samples, 0.02%)</title><rect x="1297.3" y="779" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1300.32" y="789.5" ></text>
</g>
<g >
<title>_bt_search (6,629 samples, 5.60%)</title><rect x="982.4" y="443" width="77.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="985.37" y="453.5" >_bt_sea..</text>
</g>
<g >
<title>ResourceOwnerEnlarge (31 samples, 0.03%)</title><rect x="1336.0" y="779" width="0.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1339.04" y="789.5" ></text>
</g>
<g >
<title>UnregisterSnapshotNoOwner (20 samples, 0.02%)</title><rect x="1180.4" y="539" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1183.40" y="549.5" ></text>
</g>
<g >
<title>list_member_oid (17 samples, 0.01%)</title><rect x="763.1" y="587" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="766.05" y="597.5" ></text>
</g>
<g >
<title>ExecOpenScanRelation (566 samples, 0.48%)</title><rect x="681.0" y="603" width="6.6" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="684.00" y="613.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (30 samples, 0.03%)</title><rect x="24.3" y="747" width="0.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="27.33" y="757.5" ></text>
</g>
<g >
<title>ExecDoInitialPruning (11 samples, 0.01%)</title><rect x="584.6" y="635" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="587.61" y="645.5" ></text>
</g>
<g >
<title>netdev_core_pick_tx (19 samples, 0.02%)</title><rect x="429.3" y="411" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="432.32" y="421.5" ></text>
</g>
<g >
<title>LockBuffer (20 samples, 0.02%)</title><rect x="1318.4" y="779" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1321.43" y="789.5" ></text>
</g>
<g >
<title>sock_put (23 samples, 0.02%)</title><rect x="346.9" y="251" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="349.86" y="261.5" ></text>
</g>
<g >
<title>LWLockAcquire (35 samples, 0.03%)</title><rect x="1030.7" y="363" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1033.71" y="373.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (86 samples, 0.07%)</title><rect x="290.6" y="507" width="1.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="293.61" y="517.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (145 samples, 0.12%)</title><rect x="516.4" y="635" width="1.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="519.43" y="645.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (9 samples, 0.01%)</title><rect x="20.1" y="587" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="23.12" y="597.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (47 samples, 0.04%)</title><rect x="1101.8" y="395" width="0.6" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1104.82" y="405.5" ></text>
</g>
<g >
<title>tts_virtual_clear (24 samples, 0.02%)</title><rect x="1168.5" y="523" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1171.54" y="533.5" ></text>
</g>
<g >
<title>index_getnext_tid (81 samples, 0.07%)</title><rect x="1386.8" y="523" width="1.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1389.84" y="533.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (170 samples, 0.14%)</title><rect x="500.9" y="683" width="2.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="503.89" y="693.5" ></text>
</g>
<g >
<title>_bt_first (12,581 samples, 10.64%)</title><rect x="913.6" y="459" width="146.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="916.59" y="469.5" >_bt_first</text>
</g>
<g >
<title>exec_stmt_execsql (30 samples, 0.03%)</title><rect x="24.3" y="587" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="27.33" y="597.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (11 samples, 0.01%)</title><rect x="1388.9" y="475" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1391.87" y="485.5" ></text>
</g>
<g >
<title>TupleDescInitEntryCollation (22 samples, 0.02%)</title><rect x="1343.7" y="779" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1346.66" y="789.5" ></text>
</g>
<g >
<title>GETSTRUCT (10 samples, 0.01%)</title><rect x="666.6" y="539" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="669.57" y="549.5" ></text>
</g>
<g >
<title>DatumGetInt32 (10 samples, 0.01%)</title><rect x="739.6" y="619" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="742.65" y="629.5" ></text>
</g>
<g >
<title>TupleDescAttr (24 samples, 0.02%)</title><rect x="1342.5" y="779" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1345.55" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (13 samples, 0.01%)</title><rect x="45.1" y="267" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="48.14" y="277.5" ></text>
</g>
<g >
<title>tas (103 samples, 0.09%)</title><rect x="1152.4" y="571" width="1.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1155.36" y="581.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (18 samples, 0.02%)</title><rect x="25.3" y="731" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="28.26" y="741.5" ></text>
</g>
<g >
<title>generic_file_write_iter (29 samples, 0.02%)</title><rect x="26.3" y="443" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="29.28" y="453.5" ></text>
</g>
<g >
<title>tcp_ack_update_rtt (61 samples, 0.05%)</title><rect x="404.7" y="203" width="0.8" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="407.75" y="213.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (30 samples, 0.03%)</title><rect x="24.3" y="699" width="0.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="27.33" y="709.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (59 samples, 0.05%)</title><rect x="525.0" y="603" width="0.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="528.02" y="613.5" ></text>
</g>
<g >
<title>__x64_sys_unlink (18 samples, 0.02%)</title><rect x="1102.2" y="251" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1105.15" y="261.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (18 samples, 0.02%)</title><rect x="1277.1" y="539" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1280.10" y="549.5" ></text>
</g>
<g >
<title>btendscan (37 samples, 0.03%)</title><rect x="1348.4" y="779" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1351.36" y="789.5" ></text>
</g>
<g >
<title>_bt_getbuf (142 samples, 0.12%)</title><rect x="1029.5" y="411" width="1.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1032.48" y="421.5" ></text>
</g>
<g >
<title>stack_is_too_deep (26 samples, 0.02%)</title><rect x="1380.9" y="779" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1383.93" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (18 samples, 0.02%)</title><rect x="490.0" y="635" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="493.04" y="645.5" ></text>
</g>
<g >
<title>LockAcquireExtended (1,414 samples, 1.20%)</title><rect x="518.1" y="635" width="16.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="521.15" y="645.5" ></text>
</g>
<g >
<title>RelationBuildDesc (32 samples, 0.03%)</title><rect x="1275.0" y="299" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1278.00" y="309.5" ></text>
</g>
<g >
<title>UpdateIndexRelation (12 samples, 0.01%)</title><rect x="1268.3" y="475" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1271.34" y="485.5" ></text>
</g>
<g >
<title>ExecDropStmt (47 samples, 0.04%)</title><rect x="1275.0" y="507" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1278.00" y="517.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (27 samples, 0.02%)</title><rect x="1277.0" y="699" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1280.00" y="709.5" ></text>
</g>
<g >
<title>index_getnext_tid (306 samples, 0.26%)</title><rect x="833.7" y="507" width="3.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="836.65" y="517.5" ></text>
</g>
<g >
<title>lock_sock_nested (66 samples, 0.06%)</title><rect x="223.2" y="523" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="226.18" y="533.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (9 samples, 0.01%)</title><rect x="468.7" y="459" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="471.65" y="469.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (13 samples, 0.01%)</title><rect x="629.4" y="507" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="632.39" y="517.5" ></text>
</g>
<g >
<title>__slab_free (206 samples, 0.17%)</title><rect x="394.4" y="171" width="2.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="397.38" y="181.5" ></text>
</g>
<g >
<title>import_single_range (18 samples, 0.02%)</title><rect x="221.0" y="555" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="223.99" y="565.5" ></text>
</g>
<g >
<title>sock_recvmsg (382 samples, 0.32%)</title><rect x="253.8" y="555" width="4.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="256.78" y="565.5" ></text>
</g>
<g >
<title>SearchCatCache1 (10 samples, 0.01%)</title><rect x="1275.4" y="395" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1278.42" y="405.5" ></text>
</g>
<g >
<title>systable_getnext (16 samples, 0.01%)</title><rect x="1276.2" y="683" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1279.20" y="693.5" ></text>
</g>
<g >
<title>list_delete_nth_cell (88 samples, 0.07%)</title><rect x="1173.7" y="507" width="1.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1176.74" y="517.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (17 samples, 0.01%)</title><rect x="24.8" y="507" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="27.82" y="517.5" ></text>
</g>
<g >
<title>do_futex (9 samples, 0.01%)</title><rect x="1220.3" y="459" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1223.33" y="469.5" ></text>
</g>
<g >
<title>__libc_recv (4,170 samples, 3.53%)</title><rect x="213.7" y="635" width="48.7" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="216.70" y="645.5" >__l..</text>
</g>
<g >
<title>__strlen_evex (9 samples, 0.01%)</title><rect x="502.9" y="667" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="505.92" y="677.5" ></text>
</g>
<g >
<title>hash_search (69 samples, 0.06%)</title><rect x="763.3" y="587" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="766.30" y="597.5" ></text>
</g>
<g >
<title>ExecResetTupleTable (20 samples, 0.02%)</title><rect x="1305.4" y="779" width="0.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1308.42" y="789.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (209 samples, 0.18%)</title><rect x="21.3" y="491" width="2.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="24.26" y="501.5" ></text>
</g>
<g >
<title>ExecScanExtended (18,403 samples, 15.56%)</title><rect x="847.5" y="555" width="214.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="850.47" y="565.5" >ExecScanExtended</text>
</g>
<g >
<title>pq_putemptymessage (130 samples, 0.11%)</title><rect x="755.3" y="715" width="1.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="758.26" y="725.5" ></text>
</g>
<g >
<title>kmalloc_reserve (627 samples, 0.53%)</title><rect x="460.3" y="475" width="7.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="463.27" y="485.5" ></text>
</g>
<g >
<title>pq_sendint32 (35 samples, 0.03%)</title><rect x="1074.2" y="587" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1077.25" y="597.5" ></text>
</g>
<g >
<title>ExecScanReScan (132 samples, 0.11%)</title><rect x="845.2" y="539" width="1.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="848.17" y="549.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_skmem (200 samples, 0.17%)</title><rect x="469.2" y="491" width="2.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="472.23" y="501.5" ></text>
</g>
<g >
<title>__fdget (22 samples, 0.02%)</title><rect x="473.3" y="539" width="0.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text  x="476.32" y="549.5" ></text>
</g>
<g >
<title>RelationBuildDesc (18 samples, 0.02%)</title><rect x="25.3" y="635" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="28.26" y="645.5" ></text>
</g>
<g >
<title>Int32GetDatum (36 samples, 0.03%)</title><rect x="947.4" y="379" width="0.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="950.37" y="389.5" ></text>
</g>
<g >
<title>ktime_get (41 samples, 0.03%)</title><rect x="440.7" y="475" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="443.72" y="485.5" ></text>
</g>
<g >
<title>LWLockAcquire (112 samples, 0.09%)</title><rect x="1229.1" y="587" width="1.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1232.08" y="597.5" ></text>
</g>
<g >
<title>ExecutePlan (476 samples, 0.40%)</title><rect x="12.9" y="651" width="5.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="15.88" y="661.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (88 samples, 0.07%)</title><rect x="84.9" y="395" width="1.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="87.91" y="405.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (142 samples, 0.12%)</title><rect x="803.0" y="651" width="1.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="806.02" y="661.5" ></text>
</g>
<g >
<title>BTreeTupleGetHeapTID (51 samples, 0.04%)</title><rect x="923.1" y="411" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="926.15" y="421.5" ></text>
</g>
<g >
<title>AlterSequence (14 samples, 0.01%)</title><rect x="1275.6" y="443" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1278.55" y="453.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (127 samples, 0.11%)</title><rect x="689.5" y="491" width="1.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="692.53" y="501.5" ></text>
</g>
<g >
<title>pfree (37 samples, 0.03%)</title><rect x="1164.3" y="475" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1167.29" y="485.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (209 samples, 0.18%)</title><rect x="21.3" y="699" width="2.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="24.26" y="709.5" ></text>
</g>
<g >
<title>MemoryContextReset (9 samples, 0.01%)</title><rect x="846.7" y="539" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="849.71" y="549.5" ></text>
</g>
<g >
<title>CreateDestReceiver (274 samples, 0.23%)</title><rect x="811.6" y="715" width="3.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="814.56" y="725.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (118 samples, 0.10%)</title><rect x="606.9" y="475" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="609.90" y="485.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (7,011 samples, 5.93%)</title><rect x="333.3" y="283" width="81.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="336.32" y="293.5" >ip_prot..</text>
</g>
<g >
<title>dispatch_compare_ptr (118 samples, 0.10%)</title><rect x="841.9" y="443" width="1.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="844.87" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (257 samples, 0.22%)</title><rect x="723.3" y="635" width="3.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="726.32" y="645.5" ></text>
</g>
<g >
<title>btint4cmp (10 samples, 0.01%)</title><rect x="1022.6" y="395" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1025.57" y="405.5" ></text>
</g>
<g >
<title>pfree (51 samples, 0.04%)</title><rect x="1185.9" y="603" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1188.89" y="613.5" ></text>
</g>
<g >
<title>ExecScan (476 samples, 0.40%)</title><rect x="12.9" y="587" width="5.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="15.88" y="597.5" ></text>
</g>
<g >
<title>SearchCatCache1 (189 samples, 0.16%)</title><rect x="1078.3" y="555" width="2.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1081.31" y="565.5" ></text>
</g>
<g >
<title>hash_seq_init (41 samples, 0.03%)</title><rect x="1357.7" y="779" width="0.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1360.68" y="789.5" ></text>
</g>
<g >
<title>InitBufferTag (39 samples, 0.03%)</title><rect x="33.3" y="299" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="36.27" y="309.5" ></text>
</g>
<g >
<title>spin_delay (129 samples, 0.11%)</title><rect x="1150.1" y="539" width="1.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1153.09" y="549.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (27 samples, 0.02%)</title><rect x="1277.0" y="683" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1280.00" y="693.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberSnapshot (44 samples, 0.04%)</title><rect x="561.7" y="651" width="0.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="564.70" y="661.5" ></text>
</g>
<g >
<title>x64_sys_call (18 samples, 0.02%)</title><rect x="261.5" y="587" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="264.53" y="597.5" ></text>
</g>
<g >
<title>index_create (10 samples, 0.01%)</title><rect x="1277.2" y="507" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1280.17" y="517.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (10 samples, 0.01%)</title><rect x="1359.2" y="779" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1362.15" y="789.5" ></text>
</g>
<g >
<title>exec_simple_query (63 samples, 0.05%)</title><rect x="1263.4" y="811" width="0.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="1266.38" y="821.5" ></text>
</g>
<g >
<title>FetchPreparedStatement (278 samples, 0.24%)</title><rect x="503.8" y="715" width="3.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="506.84" y="725.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (14 samples, 0.01%)</title><rect x="655.6" y="507" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="658.59" y="517.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (9 samples, 0.01%)</title><rect x="1382.6" y="779" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1385.57" y="789.5" ></text>
</g>
<g >
<title>check_stack_depth (9 samples, 0.01%)</title><rect x="1062.6" y="587" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1065.57" y="597.5" ></text>
</g>
<g >
<title>index_create (37 samples, 0.03%)</title><rect x="1264.1" y="555" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1267.13" y="565.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (14 samples, 0.01%)</title><rect x="626.6" y="523" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="629.55" y="533.5" ></text>
</g>
<g >
<title>AllocSetDelete (28 samples, 0.02%)</title><rect x="1284.2" y="779" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1287.20" y="789.5" ></text>
</g>
<g >
<title>IsAbortedTransactionBlockState (19 samples, 0.02%)</title><rect x="799.8" y="715" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="802.76" y="725.5" ></text>
</g>
<g >
<title>__libc_recv (23 samples, 0.02%)</title><rect x="1261.7" y="811" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1264.67" y="821.5" ></text>
</g>
<g >
<title>index_build (18 samples, 0.02%)</title><rect x="23.0" y="411" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="25.96" y="421.5" ></text>
</g>
<g >
<title>pq_recvbuf (13,660 samples, 11.55%)</title><rect x="103.3" y="683" width="159.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="106.32" y="693.5" >pq_recvbuf</text>
</g>
<g >
<title>pg_clock_gettime_ns (13 samples, 0.01%)</title><rect x="1367.5" y="779" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1370.47" y="789.5" ></text>
</g>
<g >
<title>FileWrite (418 samples, 0.35%)</title><rect x="1269.2" y="347" width="4.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1272.17" y="357.5" ></text>
</g>
<g >
<title>should_output_to_client (18 samples, 0.02%)</title><rect x="736.0" y="699" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="739.00" y="709.5" ></text>
</g>
<g >
<title>murmurhash32 (15 samples, 0.01%)</title><rect x="583.5" y="491" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="586.45" y="501.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (9 samples, 0.01%)</title><rect x="961.9" y="411" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="964.90" y="421.5" ></text>
</g>
<g >
<title>ExecFetchSlotHeapTuple (11 samples, 0.01%)</title><rect x="1266.1" y="795" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1269.05" y="805.5" ></text>
</g>
<g >
<title>GetCurrentTransactionStopTimestamp (15 samples, 0.01%)</title><rect x="1309.6" y="779" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1312.62" y="789.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (1,921 samples, 1.62%)</title><rect x="876.2" y="363" width="22.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="879.23" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (286 samples, 0.24%)</title><rect x="1133.4" y="539" width="3.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1136.42" y="549.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (13 samples, 0.01%)</title><rect x="1102.5" y="363" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1105.54" y="373.5" ></text>
</g>
<g >
<title>RelationFlushRelation (20 samples, 0.02%)</title><rect x="25.8" y="619" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="28.81" y="629.5" ></text>
</g>
<g >
<title>PortalRun (81 samples, 0.07%)</title><rect x="1386.8" y="747" width="1.0" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1389.84" y="757.5" ></text>
</g>
<g >
<title>AllocSetAlloc (48 samples, 0.04%)</title><rect x="645.0" y="523" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="647.97" y="533.5" ></text>
</g>
<g >
<title>ReadyForQuery (17,965 samples, 15.19%)</title><rect x="268.3" y="731" width="209.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="271.26" y="741.5" >ReadyForQuery</text>
</g>
<g >
<title>vma_alloc_folio (13 samples, 0.01%)</title><rect x="26.3" y="331" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="29.29" y="341.5" ></text>
</g>
<g >
<title>ReleaseCatCache (46 samples, 0.04%)</title><rect x="635.0" y="555" width="0.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="638.02" y="565.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (13 samples, 0.01%)</title><rect x="15.0" y="379" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="17.96" y="389.5" ></text>
</g>
<g >
<title>BufferGetBlock (9 samples, 0.01%)</title><rect x="978.4" y="395" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="981.43" y="405.5" ></text>
</g>
<g >
<title>__napi_poll (7,670 samples, 6.48%)</title><rect x="329.2" y="347" width="89.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="332.23" y="357.5" >__napi_p..</text>
</g>
<g >
<title>ExecProcNode (20,041 samples, 16.94%)</title><rect x="828.9" y="619" width="233.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="831.88" y="629.5" >ExecProcNode</text>
</g>
<g >
<title>AtStart_GUC (9 samples, 0.01%)</title><rect x="782.4" y="667" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="785.37" y="677.5" ></text>
</g>
<g >
<title>hash_initial_lookup (16 samples, 0.01%)</title><rect x="763.6" y="555" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="766.65" y="565.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (21 samples, 0.02%)</title><rect x="1102.5" y="427" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1105.47" y="437.5" ></text>
</g>
<g >
<title>__x64_sys_futex (9 samples, 0.01%)</title><rect x="1220.3" y="475" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1223.33" y="485.5" ></text>
</g>
<g >
<title>exec_stmt_fori (27 samples, 0.02%)</title><rect x="1277.0" y="731" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1280.00" y="741.5" ></text>
</g>
<g >
<title>LWLockAcquire (82 samples, 0.07%)</title><rect x="695.7" y="539" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="698.72" y="549.5" ></text>
</g>
<g >
<title>clear_page_erms (285 samples, 0.24%)</title><rect x="1269.3" y="43" width="3.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1272.30" y="53.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (63 samples, 0.05%)</title><rect x="1263.4" y="699" width="0.7" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1266.38" y="709.5" ></text>
</g>
<g >
<title>PageGetLSN (15 samples, 0.01%)</title><rect x="972.1" y="395" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="975.13" y="405.5" ></text>
</g>
<g >
<title>secure_raw_read (4,234 samples, 3.58%)</title><rect x="213.2" y="651" width="49.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="216.16" y="661.5" >sec..</text>
</g>
<g >
<title>ReleaseAndReadBuffer (33 samples, 0.03%)</title><rect x="12.4" y="459" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="15.40" y="469.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (13 samples, 0.01%)</title><rect x="19.2" y="715" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="22.21" y="725.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (25 samples, 0.02%)</title><rect x="1080.0" y="523" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1083.01" y="533.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (70 samples, 0.06%)</title><rect x="733.3" y="667" width="0.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="736.33" y="677.5" ></text>
</g>
<g >
<title>string_hash (81 samples, 0.07%)</title><rect x="502.9" y="683" width="0.9" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="505.87" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (24 samples, 0.02%)</title><rect x="793.4" y="603" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="796.37" y="613.5" ></text>
</g>
<g >
<title>should_output_to_server (14 samples, 0.01%)</title><rect x="1242.7" y="635" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1245.69" y="645.5" ></text>
</g>
<g >
<title>resetStringInfo (16 samples, 0.01%)</title><rect x="1091.8" y="587" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1094.83" y="597.5" ></text>
</g>
<g >
<title>BlockIdSet (10 samples, 0.01%)</title><rect x="846.6" y="475" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="849.57" y="485.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (11 samples, 0.01%)</title><rect x="764.8" y="571" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="767.83" y="581.5" ></text>
</g>
<g >
<title>ep_item_poll.isra.0 (946 samples, 0.80%)</title><rect x="127.8" y="539" width="11.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="130.76" y="549.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (1,947 samples, 1.65%)</title><rect x="29.0" y="347" width="22.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="31.96" y="357.5" ></text>
</g>
<g >
<title>list_head (12 samples, 0.01%)</title><rect x="1362.3" y="779" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1365.30" y="789.5" ></text>
</g>
<g >
<title>enlargeStringInfo (14 samples, 0.01%)</title><rect x="1073.6" y="571" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1076.59" y="581.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (36 samples, 0.03%)</title><rect x="1344.6" y="779" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1347.62" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (323 samples, 0.27%)</title><rect x="542.2" y="635" width="3.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="545.16" y="645.5" ></text>
</g>
<g >
<title>_bt_checkpage (379 samples, 0.32%)</title><rect x="1048.6" y="411" width="4.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1051.55" y="421.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (13 samples, 0.01%)</title><rect x="19.2" y="651" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="22.21" y="661.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (13 samples, 0.01%)</title><rect x="19.2" y="683" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="22.21" y="693.5" ></text>
</g>
<g >
<title>jit_compile_expr (36 samples, 0.03%)</title><rect x="1361.7" y="779" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1364.72" y="789.5" ></text>
</g>
<g >
<title>RevalidateCachedQuery (24 samples, 0.02%)</title><rect x="1337.7" y="779" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1340.70" y="789.5" ></text>
</g>
<g >
<title>AfterTriggerEndXact (20 samples, 0.02%)</title><rect x="1107.0" y="667" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1109.99" y="677.5" ></text>
</g>
<g >
<title>ReleaseSysCache (50 samples, 0.04%)</title><rect x="1077.6" y="571" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1080.56" y="581.5" ></text>
</g>
<g >
<title>_bt_lockbuf (212 samples, 0.18%)</title><rect x="1053.0" y="411" width="2.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1055.97" y="421.5" ></text>
</g>
<g >
<title>hash_bytes (93 samples, 0.08%)</title><rect x="819.6" y="667" width="1.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="822.60" y="677.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (63 samples, 0.05%)</title><rect x="1263.4" y="651" width="0.7" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1266.38" y="661.5" ></text>
</g>
<g >
<title>palloc (363 samples, 0.31%)</title><rect x="1087.6" y="587" width="4.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1090.59" y="597.5" ></text>
</g>
<g >
<title>postmaster_child_launch (478 samples, 0.40%)</title><rect x="12.9" y="795" width="5.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="15.88" y="805.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (156 samples, 0.13%)</title><rect x="729.9" y="699" width="1.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="732.87" y="709.5" ></text>
</g>
<g >
<title>resetStringInfo (91 samples, 0.08%)</title><rect x="1251.3" y="699" width="1.0" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1254.26" y="709.5" ></text>
</g>
<g >
<title>_bt_check_compare (234 samples, 0.20%)</title><rect x="12.9" y="411" width="2.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="15.88" y="421.5" ></text>
</g>
<g >
<title>expr_setup_walker (304 samples, 0.26%)</title><rect x="604.9" y="523" width="3.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="607.94" y="533.5" ></text>
</g>
<g >
<title>smgrDoPendingSyncs (20 samples, 0.02%)</title><rect x="1245.4" y="667" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1248.40" y="677.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (17 samples, 0.01%)</title><rect x="1307.6" y="779" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1310.63" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (210 samples, 0.18%)</title><rect x="1239.5" y="635" width="2.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1242.47" y="645.5" ></text>
</g>
<g >
<title>CheckExprStillValid (72 samples, 0.06%)</title><rect x="849.8" y="475" width="0.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="852.84" y="485.5" ></text>
</g>
<g >
<title>list_nth_cell (9 samples, 0.01%)</title><rect x="1362.9" y="779" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1365.87" y="789.5" ></text>
</g>
<g >
<title>IsSharedRelation (37 samples, 0.03%)</title><rect x="705.2" y="539" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="708.20" y="549.5" ></text>
</g>
<g >
<title>internal_putbytes (47 samples, 0.04%)</title><rect x="805.8" y="667" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="808.78" y="677.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (183 samples, 0.15%)</title><rect x="367.3" y="123" width="2.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="370.26" y="133.5" ></text>
</g>
<g >
<title>PageGetItemId (17 samples, 0.01%)</title><rect x="907.6" y="427" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="910.62" y="437.5" ></text>
</g>
<g >
<title>dclist_init (42 samples, 0.04%)</title><rect x="1112.8" y="651" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1115.76" y="661.5" ></text>
</g>
<g >
<title>AddNewAttributeTuples (9 samples, 0.01%)</title><rect x="1274.7" y="475" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1277.75" y="485.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (43 samples, 0.04%)</title><rect x="261.8" y="619" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="264.85" y="629.5" ></text>
</g>
<g >
<title>pq_writeint8 (31 samples, 0.03%)</title><rect x="273.9" y="683" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="276.88" y="693.5" ></text>
</g>
<g >
<title>UnpinBuffer (456 samples, 0.39%)</title><rect x="1043.2" y="395" width="5.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1046.16" y="405.5" ></text>
</g>
<g >
<title>pollwake (1,324 samples, 1.12%)</title><rect x="358.9" y="171" width="15.5" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text  x="361.95" y="181.5" ></text>
</g>
<g >
<title>ProcessUtility (209 samples, 0.18%)</title><rect x="21.3" y="763" width="2.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="24.26" y="773.5" ></text>
</g>
<g >
<title>CreateTemplateTupleDesc (87 samples, 0.07%)</title><rect x="663.8" y="555" width="1.0" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="666.81" y="565.5" ></text>
</g>
<g >
<title>enlargeStringInfo (18 samples, 0.02%)</title><rect x="273.7" y="683" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="276.67" y="693.5" ></text>
</g>
<g >
<title>memset_erms (34 samples, 0.03%)</title><rect x="468.8" y="459" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="471.77" y="469.5" ></text>
</g>
<g >
<title>getBaseTypeAndTypmod (253 samples, 0.21%)</title><rect x="801.7" y="699" width="3.0" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="804.72" y="709.5" ></text>
</g>
<g >
<title>ShutdownExprContext (24 samples, 0.02%)</title><rect x="1341.1" y="779" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1344.09" y="789.5" ></text>
</g>
<g >
<title>AllocSetAlloc (50 samples, 0.04%)</title><rect x="713.5" y="571" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="716.49" y="581.5" ></text>
</g>
<g >
<title>hash_bytes (152 samples, 0.13%)</title><rect x="703.1" y="507" width="1.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="706.09" y="517.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (9 samples, 0.01%)</title><rect x="893.8" y="299" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="896.85" y="309.5" ></text>
</g>
<g >
<title>ExecInitQual (1,720 samples, 1.45%)</title><rect x="642.3" y="603" width="20.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="645.34" y="613.5" ></text>
</g>
<g >
<title>CreateExprContext (959 samples, 0.81%)</title><rect x="588.1" y="587" width="11.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="591.11" y="597.5" ></text>
</g>
<g >
<title>memset@plt (36 samples, 0.03%)</title><rect x="1115.1" y="635" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1118.11" y="645.5" ></text>
</g>
<g >
<title>available_idle_cpu (220 samples, 0.19%)</title><rect x="364.4" y="123" width="2.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="367.40" y="133.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (104 samples, 0.09%)</title><rect x="1054.2" y="363" width="1.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1057.19" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (113 samples, 0.10%)</title><rect x="885.0" y="283" width="1.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="888.02" y="293.5" ></text>
</g>
<g >
<title>LWLockAcquire (20 samples, 0.02%)</title><rect x="1317.4" y="779" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1320.41" y="789.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (10 samples, 0.01%)</title><rect x="1275.4" y="379" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1278.42" y="389.5" ></text>
</g>
<g >
<title>hash_initial_lookup (43 samples, 0.04%)</title><rect x="1143.5" y="539" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1146.48" y="549.5" ></text>
</g>
<g >
<title>exec_stmts (209 samples, 0.18%)</title><rect x="21.3" y="603" width="2.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="24.26" y="613.5" ></text>
</g>
<g >
<title>smgrDoPendingDeletes (19 samples, 0.02%)</title><rect x="1245.2" y="667" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1248.18" y="677.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (9 samples, 0.01%)</title><rect x="918.9" y="427" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="921.88" y="437.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (12 samples, 0.01%)</title><rect x="855.2" y="507" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="858.17" y="517.5" ></text>
</g>
<g >
<title>get_timeout_active (13 samples, 0.01%)</title><rect x="795.3" y="683" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="798.35" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_write_u32 (15 samples, 0.01%)</title><rect x="972.4" y="379" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="975.41" y="389.5" ></text>
</g>
<g >
<title>list_member_oid (14 samples, 0.01%)</title><rect x="858.5" y="459" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="861.54" y="469.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (83 samples, 0.07%)</title><rect x="1163.7" y="491" width="1.0" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1166.75" y="501.5" ></text>
</g>
<g >
<title>ExecProcNode (30 samples, 0.03%)</title><rect x="827.1" y="635" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="830.05" y="645.5" ></text>
</g>
<g >
<title>__strlen_evex (28 samples, 0.02%)</title><rect x="1258.1" y="715" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1261.06" y="725.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (12 samples, 0.01%)</title><rect x="729.7" y="667" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="732.73" y="677.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (162 samples, 0.14%)</title><rect x="667.8" y="507" width="1.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="670.75" y="517.5" ></text>
</g>
<g >
<title>pgstat_get_transactional_drops (38 samples, 0.03%)</title><rect x="1371.2" y="779" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1374.19" y="789.5" ></text>
</g>
<g >
<title>tcp_skb_entail (218 samples, 0.18%)</title><rect x="456.4" y="507" width="2.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="459.43" y="517.5" ></text>
</g>
<g >
<title>send_call_function_single_ipi (173 samples, 0.15%)</title><rect x="372.3" y="123" width="2.0" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="375.26" y="133.5" ></text>
</g>
<g >
<title>ExecInitNode (11,175 samples, 9.45%)</title><rect x="584.9" y="635" width="130.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="587.86" y="645.5" >ExecInitNode</text>
</g>
<g >
<title>standard_ProcessUtility (17 samples, 0.01%)</title><rect x="24.8" y="523" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="27.82" y="533.5" ></text>
</g>
<g >
<title>AllocSetAlloc (35 samples, 0.03%)</title><rect x="680.4" y="523" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="683.41" y="533.5" ></text>
</g>
<g >
<title>hash_initial_lookup (46 samples, 0.04%)</title><rect x="60.0" y="267" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="63.02" y="277.5" ></text>
</g>
<g >
<title>ReadBuffer (25 samples, 0.02%)</title><rect x="1332.0" y="779" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1334.96" y="789.5" ></text>
</g>
<g >
<title>__folio_alloc (288 samples, 0.24%)</title><rect x="1269.3" y="91" width="3.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="1272.26" y="101.5" ></text>
</g>
<g >
<title>index_getnext_tid (4,881 samples, 4.13%)</title><rect x="28.0" y="507" width="56.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="30.96" y="517.5" >inde..</text>
</g>
<g >
<title>GetMemoryChunkMethodID (11 samples, 0.01%)</title><rect x="1174.6" y="443" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1177.62" y="453.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (32 samples, 0.03%)</title><rect x="1275.0" y="347" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1278.00" y="357.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (42 samples, 0.04%)</title><rect x="1388.9" y="795" width="0.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1391.87" y="805.5" ></text>
</g>
<g >
<title>CommitTransaction (12,124 samples, 10.25%)</title><rect x="1104.2" y="683" width="141.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1107.24" y="693.5" >CommitTransaction</text>
</g>
<g >
<title>RelationIncrementReferenceCount (27 samples, 0.02%)</title><rect x="705.9" y="555" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="708.92" y="565.5" ></text>
</g>
<g >
<title>ExecInitExprRec (728 samples, 0.62%)</title><rect x="648.0" y="587" width="8.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="650.97" y="597.5" ></text>
</g>
<g >
<title>FreeExecutorState (901 samples, 0.76%)</title><rect x="1168.9" y="571" width="10.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1171.94" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (216 samples, 0.18%)</title><rect x="1137.1" y="523" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1140.09" y="533.5" ></text>
</g>
<g >
<title>Int32GetDatum (24 samples, 0.02%)</title><rect x="1028.0" y="363" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1031.02" y="373.5" ></text>
</g>
<g >
<title>MemoryContextCreate (46 samples, 0.04%)</title><rect x="574.1" y="619" width="0.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="577.06" y="629.5" ></text>
</g>
<g >
<title>shmem_alloc_and_acct_folio (10 samples, 0.01%)</title><rect x="1264.2" y="203" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1267.16" y="213.5" ></text>
</g>
<g >
<title>smgrcreate (9 samples, 0.01%)</title><rect x="22.8" y="379" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="25.83" y="389.5" ></text>
</g>
<g >
<title>update_ps_display_precheck (15 samples, 0.01%)</title><rect x="1384.0" y="779" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1387.01" y="789.5" ></text>
</g>
<g >
<title>PortalReleaseCachedPlan (31 samples, 0.03%)</title><rect x="1186.5" y="635" width="0.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1189.52" y="645.5" ></text>
</g>
<g >
<title>DefineIndex (29 samples, 0.02%)</title><rect x="1388.9" y="523" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1391.87" y="533.5" ></text>
</g>
<g >
<title>do_epoll_wait (7,752 samples, 6.55%)</title><rect x="115.2" y="555" width="90.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="118.20" y="565.5" >do_epoll..</text>
</g>
<g >
<title>LWLockRelease (69 samples, 0.06%)</title><rect x="1219.9" y="603" width="0.8" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1222.86" y="613.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (30 samples, 0.03%)</title><rect x="24.3" y="763" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="27.33" y="773.5" ></text>
</g>
<g >
<title>get_timeout_active (12 samples, 0.01%)</title><rect x="809.0" y="683" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="811.99" y="693.5" ></text>
</g>
<g >
<title>ExecResetTupleTable (349 samples, 0.30%)</title><rect x="1164.8" y="555" width="4.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1167.82" y="565.5" ></text>
</g>
<g >
<title>dlist_init (9 samples, 0.01%)</title><rect x="500.7" y="683" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="503.66" y="693.5" ></text>
</g>
<g >
<title>ExtendBufferedRel (29 samples, 0.02%)</title><rect x="26.3" y="683" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="29.28" y="693.5" ></text>
</g>
<g >
<title>pg_ulltoa_n (82 samples, 0.07%)</title><rect x="816.0" y="683" width="0.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="818.95" y="693.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (43 samples, 0.04%)</title><rect x="1267.6" y="475" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1270.62" y="485.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (99 samples, 0.08%)</title><rect x="260.4" y="587" width="1.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="263.38" y="597.5" ></text>
</g>
<g >
<title>RWOptSpinReadStart (16 samples, 0.01%)</title><rect x="782.2" y="603" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="785.16" y="613.5" ></text>
</g>
<g >
<title>shmem_alloc_hugefolio (289 samples, 0.24%)</title><rect x="1269.3" y="123" width="3.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="1272.26" y="133.5" ></text>
</g>
<g >
<title>LockRelationOid (1,446 samples, 1.22%)</title><rect x="688.8" y="571" width="16.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="691.78" y="581.5" ></text>
</g>
<g >
<title>smgrDoPendingDeletes (15 samples, 0.01%)</title><rect x="1378.4" y="779" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1381.36" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (9 samples, 0.01%)</title><rect x="1384.8" y="779" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1387.81" y="789.5" ></text>
</g>
<g >
<title>hash_bytes (129 samples, 0.11%)</title><rect x="699.1" y="491" width="1.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="702.11" y="501.5" ></text>
</g>
<g >
<title>_bt_freestack (104 samples, 0.09%)</title><rect x="965.1" y="443" width="1.2" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text  x="968.13" y="453.5" ></text>
</g>
<g >
<title>get_hash_value (145 samples, 0.12%)</title><rect x="877.1" y="299" width="1.7" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="880.07" y="309.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (13 samples, 0.01%)</title><rect x="19.2" y="699" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="22.21" y="709.5" ></text>
</g>
<g >
<title>pq_sendint16 (28 samples, 0.02%)</title><rect x="806.3" y="699" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="809.33" y="709.5" ></text>
</g>
<g >
<title>ShowTransactionState (39 samples, 0.03%)</title><rect x="1340.6" y="779" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1343.63" y="789.5" ></text>
</g>
<g >
<title>tcp_update_pacing_rate (40 samples, 0.03%)</title><rect x="407.9" y="203" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="410.93" y="213.5" ></text>
</g>
<g >
<title>smgr_bulk_flush (426 samples, 0.36%)</title><rect x="1269.1" y="395" width="4.9" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1272.07" y="405.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (52 samples, 0.04%)</title><rect x="1036.2" y="395" width="0.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1039.22" y="405.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (27 samples, 0.02%)</title><rect x="584.1" y="507" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="587.08" y="517.5" ></text>
</g>
<g >
<title>relation_open (384 samples, 0.32%)</title><rect x="682.8" y="555" width="4.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="685.84" y="565.5" ></text>
</g>
<g >
<title>_GLOBAL_OFFSET_TABLE_ (23 samples, 0.02%)</title><rect x="843.3" y="475" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="846.33" y="485.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,118 samples, 0.95%)</title><rect x="766.1" y="587" width="13.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="769.10" y="597.5" ></text>
</g>
<g >
<title>index_getnext_tid (16 samples, 0.01%)</title><rect x="1276.2" y="651" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1279.20" y="661.5" ></text>
</g>
<g >
<title>exec_rt_fetch (24 samples, 0.02%)</title><rect x="687.7" y="603" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="690.69" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (42 samples, 0.04%)</title><rect x="1183.7" y="571" width="0.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1186.68" y="581.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (19 samples, 0.02%)</title><rect x="612.2" y="491" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="615.20" y="501.5" ></text>
</g>
<g >
<title>AllocSetDelete (57 samples, 0.05%)</title><rect x="1171.2" y="507" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1174.20" y="517.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (32 samples, 0.03%)</title><rect x="1250.8" y="667" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1253.83" y="677.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (4,881 samples, 4.13%)</title><rect x="28.0" y="683" width="56.9" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="30.96" y="693.5" >pgss..</text>
</g>
<g >
<title>ExecIndexScan (747 samples, 0.63%)</title><rect x="829.0" y="603" width="8.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="831.95" y="613.5" ></text>
</g>
<g >
<title>pq_sendint16 (31 samples, 0.03%)</title><rect x="1074.7" y="603" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1077.67" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (31 samples, 0.03%)</title><rect x="1230.0" y="555" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1232.98" y="565.5" ></text>
</g>
<g >
<title>MemoryContextReset (162 samples, 0.14%)</title><rect x="1066.0" y="603" width="1.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1069.04" y="613.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (20 samples, 0.02%)</title><rect x="1115.7" y="667" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1118.65" y="677.5" ></text>
</g>
<g >
<title>strlcpy (24 samples, 0.02%)</title><rect x="1381.8" y="779" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1384.81" y="789.5" ></text>
</g>
<g >
<title>table_index_build_scan (13 samples, 0.01%)</title><rect x="1274.0" y="427" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1277.05" y="437.5" ></text>
</g>
<g >
<title>AtEOXact_SMgr (46 samples, 0.04%)</title><rect x="1290.5" y="779" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1293.50" y="789.5" ></text>
</g>
<g >
<title>ReleaseCatCache (14 samples, 0.01%)</title><rect x="1335.1" y="779" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1338.06" y="789.5" ></text>
</g>
<g >
<title>new_list (115 samples, 0.10%)</title><rect x="658.9" y="571" width="1.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="661.87" y="581.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (1,011 samples, 0.85%)</title><rect x="239.1" y="507" width="11.8" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="242.10" y="517.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (75 samples, 0.06%)</title><rect x="845.8" y="507" width="0.9" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="848.81" y="517.5" ></text>
</g>
<g >
<title>ReadBuffer_common (21 samples, 0.02%)</title><rect x="12.2" y="411" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="15.16" y="421.5" ></text>
</g>
<g >
<title>__strlen_evex (45 samples, 0.04%)</title><rect x="1100.6" y="683" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1103.56" y="693.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (31 samples, 0.03%)</title><rect x="802.4" y="619" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="805.35" y="629.5" ></text>
</g>
<g >
<title>AllocSetFree (25 samples, 0.02%)</title><rect x="1284.5" y="779" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1287.52" y="789.5" ></text>
</g>
<g >
<title>ShowTransactionState (42 samples, 0.04%)</title><rect x="792.4" y="667" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="795.41" y="677.5" ></text>
</g>
<g >
<title>DefineIndex (11 samples, 0.01%)</title><rect x="24.8" y="491" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="27.82" y="501.5" ></text>
</g>
<g >
<title>initStringInfo (114 samples, 0.10%)</title><rect x="269.7" y="699" width="1.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="272.66" y="709.5" ></text>
</g>
<g >
<title>pg_server_to_client (18 samples, 0.02%)</title><rect x="1368.6" y="779" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1371.60" y="789.5" ></text>
</g>
<g >
<title>DatumGetBool (12 samples, 0.01%)</title><rect x="1297.6" y="779" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1300.56" y="789.5" ></text>
</g>
<g >
<title>pq_getmsgint (15 samples, 0.01%)</title><rect x="1373.6" y="779" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1376.60" y="789.5" ></text>
</g>
<g >
<title>exec_stmt_block (77 samples, 0.07%)</title><rect x="1101.8" y="523" width="0.9" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1104.82" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (38 samples, 0.03%)</title><rect x="525.2" y="571" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="528.16" y="581.5" ></text>
</g>
<g >
<title>MemoryContextReset (15 samples, 0.01%)</title><rect x="846.9" y="539" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="849.92" y="549.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (32 samples, 0.03%)</title><rect x="581.6" y="507" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="584.63" y="517.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (18 samples, 0.02%)</title><rect x="19.0" y="699" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="21.98" y="709.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (10 samples, 0.01%)</title><rect x="731.2" y="651" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="734.19" y="661.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (25 samples, 0.02%)</title><rect x="1336.9" y="779" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1339.88" y="789.5" ></text>
</g>
<g >
<title>apparmor_ip_postroute (20 samples, 0.02%)</title><rect x="434.4" y="411" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="437.39" y="421.5" ></text>
</g>
<g >
<title>AllocSetFree (35 samples, 0.03%)</title><rect x="1184.7" y="523" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1187.68" y="533.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (173 samples, 0.15%)</title><rect x="871.2" y="427" width="2.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="874.19" y="437.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (97 samples, 0.08%)</title><rect x="644.4" y="555" width="1.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="647.40" y="565.5" ></text>
</g>
<g >
<title>pfree (12 samples, 0.01%)</title><rect x="1060.2" y="443" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1063.24" y="453.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (1,085 samples, 0.92%)</title><rect x="969.4" y="443" width="12.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="972.45" y="453.5" ></text>
</g>
<g >
<title>BufferGetLSNAtomic (187 samples, 0.16%)</title><rect x="970.5" y="411" width="2.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="973.47" y="421.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (133 samples, 0.11%)</title><rect x="603.4" y="507" width="1.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="606.38" y="517.5" ></text>
</g>
<g >
<title>fmgr_info (66 samples, 0.06%)</title><rect x="652.1" y="555" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="655.14" y="565.5" ></text>
</g>
<g >
<title>pgstat_report_wait_start (13 samples, 0.01%)</title><rect x="1372.1" y="779" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1375.07" y="789.5" ></text>
</g>
<g >
<title>exec_stmt_fori (30 samples, 0.03%)</title><rect x="24.3" y="619" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="27.33" y="629.5" ></text>
</g>
<g >
<title>pgstat_report_activity (18 samples, 0.02%)</title><rect x="1371.7" y="779" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1374.67" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (34 samples, 0.03%)</title><rect x="667.1" y="491" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="670.09" y="501.5" ></text>
</g>
<g >
<title>start_xact_command (18 samples, 0.02%)</title><rect x="1381.3" y="779" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1384.30" y="789.5" ></text>
</g>
<g >
<title>pgstat_report_wait_start (47 samples, 0.04%)</title><rect x="212.5" y="635" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="215.46" y="645.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (43 samples, 0.04%)</title><rect x="1267.6" y="459" width="0.5" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1270.62" y="469.5" ></text>
</g>
<g >
<title>exec_execute_message (4,881 samples, 4.13%)</title><rect x="28.0" y="747" width="56.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="30.96" y="757.5" >exec..</text>
</g>
<g >
<title>exec_stmts (54 samples, 0.05%)</title><rect x="23.7" y="619" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="26.70" y="629.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (12 samples, 0.01%)</title><rect x="1122.6" y="603" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1125.64" y="613.5" ></text>
</g>
<g >
<title>ExecClearTuple (175 samples, 0.15%)</title><rect x="1166.8" y="539" width="2.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1169.78" y="549.5" ></text>
</g>
<g >
<title>x64_sys_call (25 samples, 0.02%)</title><rect x="209.8" y="571" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="212.78" y="581.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (23 samples, 0.02%)</title><rect x="19.8" y="811" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="22.79" y="821.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (727 samples, 0.61%)</title><rect x="1267.3" y="747" width="8.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1270.35" y="757.5" ></text>
</g>
<g >
<title>index_drop (26 samples, 0.02%)</title><rect x="85.5" y="267" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="88.47" y="277.5" ></text>
</g>
<g >
<title>ExecutePlan (115 samples, 0.10%)</title><rect x="11.4" y="683" width="1.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="14.45" y="693.5" ></text>
</g>
<g >
<title>LockBuffer (186 samples, 0.16%)</title><rect x="15.6" y="395" width="2.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="18.61" y="405.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (184 samples, 0.16%)</title><rect x="369.9" y="123" width="2.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="372.88" y="133.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (3,295 samples, 2.79%)</title><rect x="1204.0" y="667" width="38.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1206.97" y="677.5" >Re..</text>
</g>
<g >
<title>MemoryContextAlloc (63 samples, 0.05%)</title><rect x="530.2" y="619" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="533.15" y="629.5" ></text>
</g>
<g >
<title>ReleaseSysCache (68 samples, 0.06%)</title><rect x="737.2" y="699" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="740.17" y="709.5" ></text>
</g>
<g >
<title>MemoryContextCreate (67 samples, 0.06%)</title><rect x="1086.7" y="603" width="0.7" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="1089.66" y="613.5" ></text>
</g>
<g >
<title>clear_page_erms (12 samples, 0.01%)</title><rect x="26.3" y="267" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="29.30" y="277.5" ></text>
</g>
<g >
<title>ChoosePortalStrategy (14 samples, 0.01%)</title><rect x="485.5" y="715" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="488.48" y="725.5" ></text>
</g>
<g >
<title>__sys_sendto (16,417 samples, 13.88%)</title><rect x="283.4" y="571" width="191.6" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="286.42" y="581.5" >__sys_sendto</text>
</g>
<g >
<title>jit_compile_expr (19 samples, 0.02%)</title><rect x="623.7" y="555" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="626.70" y="565.5" ></text>
</g>
<g >
<title>LWLockRelease (103 samples, 0.09%)</title><rect x="70.2" y="299" width="1.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="73.16" y="309.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (77 samples, 0.07%)</title><rect x="1101.8" y="603" width="0.9" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1104.82" y="613.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (209 samples, 0.18%)</title><rect x="21.3" y="731" width="2.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="24.26" y="741.5" ></text>
</g>
<g >
<title>pgstat_report_stat (150 samples, 0.13%)</title><rect x="1254.4" y="731" width="1.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1257.40" y="741.5" ></text>
</g>
<g >
<title>cache_from_obj (66 samples, 0.06%)</title><rect x="402.9" y="187" width="0.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="405.93" y="197.5" ></text>
</g>
<g >
<title>findDependentObjects (10 samples, 0.01%)</title><rect x="1276.4" y="715" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1279.39" y="725.5" ></text>
</g>
<g >
<title>RemoveRelations (40 samples, 0.03%)</title><rect x="25.8" y="779" width="0.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="28.81" y="789.5" ></text>
</g>
<g >
<title>deleteOneObject (30 samples, 0.03%)</title><rect x="25.8" y="731" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="28.81" y="741.5" ></text>
</g>
<g >
<title>BackendStartup (105,601 samples, 89.29%)</title><rect x="28.0" y="795" width="1232.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="30.96" y="805.5" >BackendStartup</text>
</g>
<g >
<title>BufferGetBlock (13 samples, 0.01%)</title><rect x="1035.2" y="395" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1038.23" y="405.5" ></text>
</g>
<g >
<title>exec_stmts (9 samples, 0.01%)</title><rect x="20.1" y="731" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="23.12" y="741.5" ></text>
</g>
<g >
<title>index_getnext_tid (12,701 samples, 10.74%)</title><rect x="912.3" y="491" width="148.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="915.34" y="501.5" >index_getnext_tid</text>
</g>
<g >
<title>palloc (130 samples, 0.11%)</title><rect x="1058.2" y="427" width="1.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1061.20" y="437.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (23 samples, 0.02%)</title><rect x="639.6" y="555" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="642.57" y="565.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (27 samples, 0.02%)</title><rect x="1316.9" y="779" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1319.90" y="789.5" ></text>
</g>
<g >
<title>AtStart_ResourceOwner (772 samples, 0.65%)</title><rect x="782.9" y="667" width="9.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="785.92" y="677.5" ></text>
</g>
<g >
<title>pfree (71 samples, 0.06%)</title><rect x="641.4" y="587" width="0.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="644.38" y="597.5" ></text>
</g>
<g >
<title>_bt_binsrch (4,075 samples, 3.45%)</title><rect x="917.3" y="443" width="47.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="920.28" y="453.5" >_bt..</text>
</g>
<g >
<title>standard_ExecutorRun (476 samples, 0.40%)</title><rect x="12.9" y="667" width="5.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="15.88" y="677.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (23 samples, 0.02%)</title><rect x="19.8" y="795" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="22.79" y="805.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (46 samples, 0.04%)</title><rect x="1268.5" y="347" width="0.6" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1271.54" y="357.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (20 samples, 0.02%)</title><rect x="25.8" y="667" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="28.81" y="677.5" ></text>
</g>
<g >
<title>LockTagHashCode (150 samples, 0.13%)</title><rect x="528.4" y="619" width="1.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="531.40" y="629.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (26 samples, 0.02%)</title><rect x="669.1" y="491" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="672.12" y="501.5" ></text>
</g>
<g >
<title>newNode (218 samples, 0.18%)</title><rect x="624.3" y="571" width="2.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="627.25" y="581.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (9 samples, 0.01%)</title><rect x="744.4" y="683" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="747.40" y="693.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (372 samples, 0.31%)</title><rect x="643.6" y="587" width="4.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="646.63" y="597.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (501 samples, 0.42%)</title><rect x="849.5" y="523" width="5.8" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="852.46" y="533.5" ></text>
</g>
<g >
<title>tcp_write_xmit (12,668 samples, 10.71%)</title><rect x="300.4" y="491" width="147.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="303.45" y="501.5" >tcp_write_xmit</text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (67 samples, 0.06%)</title><rect x="1179.9" y="555" width="0.7" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="1182.85" y="565.5" ></text>
</g>
<g >
<title>RemoveLocalLock (649 samples, 0.55%)</title><rect x="1220.7" y="603" width="7.6" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1223.69" y="613.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (25 samples, 0.02%)</title><rect x="1324.9" y="779" width="0.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1327.93" y="789.5" ></text>
</g>
<g >
<title>exec_stmt_fori (63 samples, 0.05%)</title><rect x="1263.4" y="571" width="0.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1266.38" y="581.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (9 samples, 0.01%)</title><rect x="621.8" y="539" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="624.84" y="549.5" ></text>
</g>
<g >
<title>AllocSetAlloc (51 samples, 0.04%)</title><rect x="661.8" y="555" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="664.80" y="565.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (112 samples, 0.09%)</title><rect x="621.6" y="555" width="1.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="624.59" y="565.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (176 samples, 0.15%)</title><rect x="1056.1" y="363" width="2.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1059.08" y="373.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (87 samples, 0.07%)</title><rect x="1167.5" y="523" width="1.0" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="1170.53" y="533.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (13 samples, 0.01%)</title><rect x="1294.0" y="779" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1296.99" y="789.5" ></text>
</g>
<g >
<title>pg_pwritev (29 samples, 0.02%)</title><rect x="26.3" y="539" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="29.28" y="549.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (30 samples, 0.03%)</title><rect x="598.8" y="507" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="601.83" y="517.5" ></text>
</g>
<g >
<title>AllocSetFree (203 samples, 0.17%)</title><rect x="1161.0" y="475" width="2.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1163.98" y="485.5" ></text>
</g>
<g >
<title>ExecClearTuple (41 samples, 0.03%)</title><rect x="829.8" y="555" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="832.78" y="565.5" ></text>
</g>
<g >
<title>palloc (48 samples, 0.04%)</title><rect x="594.3" y="523" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="597.25" y="533.5" ></text>
</g>
<g >
<title>RemoveRelations (10 samples, 0.01%)</title><rect x="1389.6" y="763" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1392.59" y="773.5" ></text>
</g>
<g >
<title>PinBuffer (648 samples, 0.55%)</title><rect x="889.8" y="315" width="7.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="892.77" y="325.5" ></text>
</g>
<g >
<title>index_getattr (237 samples, 0.20%)</title><rect x="962.1" y="411" width="2.7" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="965.06" y="421.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (56 samples, 0.05%)</title><rect x="17.8" y="443" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="20.78" y="453.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (39 samples, 0.03%)</title><rect x="208.7" y="539" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="211.67" y="549.5" ></text>
</g>
<g >
<title>RelationFlushRelation (18 samples, 0.02%)</title><rect x="25.3" y="667" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="28.26" y="677.5" ></text>
</g>
<g >
<title>disable_statement_timeout (15 samples, 0.01%)</title><rect x="1095.1" y="715" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1098.08" y="725.5" ></text>
</g>
<g >
<title>exec_stmt_fori (54 samples, 0.05%)</title><rect x="23.7" y="603" width="0.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="26.70" y="613.5" ></text>
</g>
<g >
<title>__switch_to (40 samples, 0.03%)</title><rect x="147.8" y="491" width="0.4" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="150.75" y="501.5" ></text>
</g>
<g >
<title>pq_beginmessage_reuse (60 samples, 0.05%)</title><rect x="804.9" y="699" width="0.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="807.89" y="709.5" ></text>
</g>
<g >
<title>lappend_int (133 samples, 0.11%)</title><rect x="658.7" y="587" width="1.5" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text  x="661.68" y="597.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (21 samples, 0.02%)</title><rect x="212.0" y="603" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="215.04" y="613.5" ></text>
</g>
<g >
<title>performMultipleDeletions (40 samples, 0.03%)</title><rect x="25.8" y="763" width="0.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="28.81" y="773.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (23 samples, 0.02%)</title><rect x="1139.7" y="571" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1142.67" y="581.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (11 samples, 0.01%)</title><rect x="1388.9" y="459" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1391.87" y="469.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (13 samples, 0.01%)</title><rect x="1059.5" y="395" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1062.54" y="405.5" ></text>
</g>
<g >
<title>pfree (58 samples, 0.05%)</title><rect x="1174.1" y="459" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1177.08" y="469.5" ></text>
</g>
<g >
<title>__strlen_evex (22 samples, 0.02%)</title><rect x="1097.5" y="699" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1100.49" y="709.5" ></text>
</g>
<g >
<title>initReadOnlyStringInfo (12 samples, 0.01%)</title><rect x="742.3" y="715" width="0.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="745.30" y="725.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (9 samples, 0.01%)</title><rect x="718.1" y="651" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="721.11" y="661.5" ></text>
</g>
<g >
<title>update_rq_clock (61 samples, 0.05%)</title><rect x="204.9" y="491" width="0.7" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="207.93" y="501.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (207 samples, 0.18%)</title><rect x="1201.6" y="667" width="2.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1204.55" y="677.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (23 samples, 0.02%)</title><rect x="19.8" y="651" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="22.79" y="661.5" ></text>
</g>
<g >
<title>list_nth_cell (21 samples, 0.02%)</title><rect x="1179.0" y="555" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1182.05" y="565.5" ></text>
</g>
<g >
<title>HeapTupleHasNulls (24 samples, 0.02%)</title><rect x="1312.1" y="779" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1315.12" y="789.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (63 samples, 0.05%)</title><rect x="1263.4" y="523" width="0.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1266.38" y="533.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (18 samples, 0.02%)</title><rect x="503.6" y="651" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="506.60" y="661.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (14 samples, 0.01%)</title><rect x="791.6" y="603" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="794.62" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (278 samples, 0.24%)</title><rect x="894.0" y="283" width="3.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="896.99" y="293.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (209 samples, 0.18%)</title><rect x="21.3" y="651" width="2.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="24.26" y="661.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (11 samples, 0.01%)</title><rect x="616.1" y="491" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="619.09" y="501.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (39 samples, 0.03%)</title><rect x="552.3" y="683" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="555.27" y="693.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (16 samples, 0.01%)</title><rect x="873.4" y="411" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="876.43" y="421.5" ></text>
</g>
<g >
<title>ExecScanFetch (24 samples, 0.02%)</title><rect x="1062.2" y="555" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1065.19" y="565.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (96 samples, 0.08%)</title><rect x="1099.2" y="683" width="1.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1102.20" y="693.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (88 samples, 0.07%)</title><rect x="84.9" y="571" width="1.0" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="87.91" y="581.5" ></text>
</g>
<g >
<title>ExecReadyExpr (29 samples, 0.02%)</title><rect x="1304.6" y="779" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1307.64" y="789.5" ></text>
</g>
<g >
<title>__strncmp_evex (21 samples, 0.02%)</title><rect x="505.4" y="651" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="508.37" y="661.5" ></text>
</g>
<g >
<title>list_delete_ptr (147 samples, 0.12%)</title><rect x="1173.1" y="539" width="1.7" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1176.12" y="549.5" ></text>
</g>
<g >
<title>nf_hook_slow (46 samples, 0.04%)</title><rect x="434.1" y="427" width="0.5" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text  x="437.09" y="437.5" ></text>
</g>
<g >
<title>tcp_rate_skb_sent (37 samples, 0.03%)</title><rect x="439.0" y="459" width="0.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="441.98" y="469.5" ></text>
</g>
<g >
<title>PortalRunSelect (476 samples, 0.40%)</title><rect x="12.9" y="715" width="5.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="15.88" y="725.5" ></text>
</g>
<g >
<title>secure_raw_read (10 samples, 0.01%)</title><rect x="1388.2" y="811" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1391.18" y="821.5" ></text>
</g>
<g >
<title>spin_delay (10 samples, 0.01%)</title><rect x="1151.6" y="555" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1154.59" y="565.5" ></text>
</g>
<g >
<title>findDependentObjects (9 samples, 0.01%)</title><rect x="1276.4" y="699" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1279.39" y="709.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (20 samples, 0.02%)</title><rect x="25.8" y="635" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="28.81" y="645.5" ></text>
</g>
<g >
<title>smgr_bulk_finish (30 samples, 0.03%)</title><rect x="1264.2" y="475" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1267.15" y="485.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (15 samples, 0.01%)</title><rect x="563.3" y="651" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="566.25" y="661.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (124 samples, 0.10%)</title><rect x="1108.3" y="635" width="1.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1111.28" y="645.5" ></text>
</g>
<g >
<title>int4eqfast (11 samples, 0.01%)</title><rect x="1361.2" y="779" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1364.18" y="789.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (7,861 samples, 6.65%)</title><rect x="113.9" y="571" width="91.8" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="116.94" y="581.5" >__x64_sys..</text>
</g>
<g >
<title>plpgsql_inline_handler (727 samples, 0.61%)</title><rect x="1267.3" y="731" width="8.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1270.35" y="741.5" ></text>
</g>
<g >
<title>AllocSetAlloc (76 samples, 0.06%)</title><rect x="655.0" y="539" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="658.02" y="549.5" ></text>
</g>
<g >
<title>hash_seq_term (48 samples, 0.04%)</title><rect x="1237.8" y="587" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1240.83" y="597.5" ></text>
</g>
<g >
<title>[[heap]] (314 samples, 0.27%)</title><rect x="1277.6" y="795" width="3.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="1280.58" y="805.5" ></text>
</g>
<g >
<title>AcquireExecutorLocks (464 samples, 0.39%)</title><rect x="508.4" y="683" width="5.4" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="511.39" y="693.5" ></text>
</g>
<g >
<title>exec_stmts (46 samples, 0.04%)</title><rect x="1264.1" y="763" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1267.12" y="773.5" ></text>
</g>
<g >
<title>__skb_clone (68 samples, 0.06%)</title><rect x="434.6" y="459" width="0.8" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text  x="437.64" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (137 samples, 0.12%)</title><rect x="39.1" y="267" width="1.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="42.06" y="277.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (41 samples, 0.03%)</title><rect x="1045.1" y="363" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1048.10" y="373.5" ></text>
</g>
<g >
<title>AllocSetAlloc (25 samples, 0.02%)</title><rect x="716.4" y="603" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="719.38" y="613.5" ></text>
</g>
<g >
<title>reweight_entity (38 samples, 0.03%)</title><rect x="154.1" y="459" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="157.09" y="469.5" ></text>
</g>
<g >
<title>update_min_vruntime (40 samples, 0.03%)</title><rect x="159.9" y="443" width="0.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="162.90" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (25 samples, 0.02%)</title><rect x="1219.0" y="555" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1222.03" y="565.5" ></text>
</g>
<g >
<title>StartTransaction (17 samples, 0.01%)</title><rect x="1341.7" y="779" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1344.71" y="789.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (27 samples, 0.02%)</title><rect x="583.3" y="523" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="586.31" y="533.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (17 samples, 0.01%)</title><rect x="1386.6" y="795" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1389.64" y="805.5" ></text>
</g>
<g >
<title>DatumGetInt32 (36 samples, 0.03%)</title><rect x="1004.5" y="395" width="0.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1007.47" y="405.5" ></text>
</g>
<g >
<title>AllocSetFree (27 samples, 0.02%)</title><rect x="1093.1" y="651" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1096.12" y="661.5" ></text>
</g>
<g >
<title>ProcessUtility (13 samples, 0.01%)</title><rect x="1261.4" y="731" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1264.35" y="741.5" ></text>
</g>
<g >
<title>tts_virtual_clear (23 samples, 0.02%)</title><rect x="830.0" y="539" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="832.99" y="549.5" ></text>
</g>
<g >
<title>newNode (376 samples, 0.32%)</title><rect x="594.9" y="555" width="4.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="597.88" y="565.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (27 samples, 0.02%)</title><rect x="1276.7" y="587" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1279.68" y="597.5" ></text>
</g>
<g >
<title>murmurhash32 (20 samples, 0.02%)</title><rect x="668.9" y="459" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="671.88" y="469.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (88 samples, 0.07%)</title><rect x="84.9" y="379" width="1.0" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="87.91" y="389.5" ></text>
</g>
<g >
<title>ExecutorEnd (4,930 samples, 4.17%)</title><rect x="1123.2" y="619" width="57.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1126.23" y="629.5" >Exec..</text>
</g>
<g >
<title>GetPrivateRefCountEntry (59 samples, 0.05%)</title><rect x="78.0" y="283" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="80.95" y="293.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (159 samples, 0.13%)</title><rect x="526.5" y="587" width="1.9" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="529.50" y="597.5" ></text>
</g>
<g >
<title>MemoryContextDelete (261 samples, 0.22%)</title><rect x="1175.9" y="555" width="3.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1178.88" y="565.5" ></text>
</g>
<g >
<title>DefineIndex (37 samples, 0.03%)</title><rect x="23.7" y="459" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="26.71" y="469.5" ></text>
</g>
<g >
<title>pq_beginmessage (14 samples, 0.01%)</title><rect x="1372.9" y="779" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1375.89" y="789.5" ></text>
</g>
<g >
<title>ExecClearTuple (260 samples, 0.22%)</title><rect x="830.4" y="523" width="3.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="833.45" y="533.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (29 samples, 0.02%)</title><rect x="1260.7" y="523" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1263.66" y="533.5" ></text>
</g>
<g >
<title>exec_stmt_commit (54 samples, 0.05%)</title><rect x="1101.8" y="459" width="0.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1104.82" y="469.5" ></text>
</g>
<g >
<title>index_build (10 samples, 0.01%)</title><rect x="25.6" y="763" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="28.56" y="773.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (21 samples, 0.02%)</title><rect x="1084.2" y="587" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1087.22" y="597.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (12 samples, 0.01%)</title><rect x="1090.1" y="523" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1093.06" y="533.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (16 samples, 0.01%)</title><rect x="233.8" y="443" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="236.84" y="453.5" ></text>
</g>
<g >
<title>kmalloc_slab (57 samples, 0.05%)</title><rect x="466.9" y="443" width="0.7" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="469.92" y="453.5" ></text>
</g>
<g >
<title>FullTransactionIdFromEpochAndXid (12 samples, 0.01%)</title><rect x="1307.5" y="779" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1310.49" y="789.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (54 samples, 0.05%)</title><rect x="608.7" y="523" width="0.6" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="611.70" y="533.5" ></text>
</g>
<g >
<title>GetUserId (30 samples, 0.03%)</title><rect x="1311.6" y="779" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1314.56" y="789.5" ></text>
</g>
<g >
<title>hash_bytes (133 samples, 0.11%)</title><rect x="877.2" y="267" width="1.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="880.21" y="277.5" ></text>
</g>
<g >
<title>enqueue_to_backlog (145 samples, 0.12%)</title><rect x="426.5" y="347" width="1.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="429.52" y="357.5" ></text>
</g>
<g >
<title>AllocSetFree (50 samples, 0.04%)</title><rect x="965.5" y="411" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="968.54" y="421.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (14 samples, 0.01%)</title><rect x="599.0" y="491" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="602.01" y="501.5" ></text>
</g>
<g >
<title>socket_putmessage (109 samples, 0.09%)</title><rect x="272.1" y="699" width="1.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="275.13" y="709.5" ></text>
</g>
<g >
<title>ReadBuffer_common (56 samples, 0.05%)</title><rect x="17.8" y="379" width="0.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="20.78" y="389.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (15 samples, 0.01%)</title><rect x="26.3" y="379" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="29.28" y="389.5" ></text>
</g>
<g >
<title>ExecutorRun (476 samples, 0.40%)</title><rect x="12.9" y="699" width="5.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="15.88" y="709.5" ></text>
</g>
<g >
<title>pfree (12 samples, 0.01%)</title><rect x="1280.7" y="779" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1283.67" y="789.5" ></text>
</g>
<g >
<title>xactGetCommittedInvalidationMessages (32 samples, 0.03%)</title><rect x="1384.2" y="779" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1387.25" y="789.5" ></text>
</g>
<g >
<title>_bt_readnextpage (13 samples, 0.01%)</title><rect x="1347.4" y="779" width="0.2" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="1350.41" y="789.5" ></text>
</g>
<g >
<title>LWLockRelease (53 samples, 0.04%)</title><rect x="874.8" y="427" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="877.78" y="437.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (33 samples, 0.03%)</title><rect x="872.8" y="379" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="875.75" y="389.5" ></text>
</g>
<g >
<title>tcp_release_cb (20 samples, 0.02%)</title><rect x="224.7" y="507" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="227.73" y="517.5" ></text>
</g>
<g >
<title>check_log_duration (20 samples, 0.02%)</title><rect x="735.5" y="715" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="738.46" y="725.5" ></text>
</g>
<g >
<title>performMultipleDeletions (20 samples, 0.02%)</title><rect x="23.5" y="411" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="26.46" y="421.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (18 samples, 0.02%)</title><rect x="1079.3" y="523" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1082.31" y="533.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (28 samples, 0.02%)</title><rect x="1276.7" y="635" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1279.67" y="645.5" ></text>
</g>
<g >
<title>record_object_address_dependencies (10 samples, 0.01%)</title><rect x="23.2" y="411" width="0.1" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="26.17" y="421.5" ></text>
</g>
<g >
<title>BufTableLookup (474 samples, 0.40%)</title><rect x="878.8" y="315" width="5.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="881.76" y="325.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (81 samples, 0.07%)</title><rect x="1386.8" y="635" width="1.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1389.84" y="645.5" ></text>
</g>
<g >
<title>MemoryContextReset (18 samples, 0.02%)</title><rect x="837.4" y="555" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="840.37" y="565.5" ></text>
</g>
<g >
<title>LWLockAcquire (79 samples, 0.07%)</title><rect x="516.9" y="587" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="519.94" y="597.5" ></text>
</g>
<g >
<title>AllocSetAlloc (71 samples, 0.06%)</title><rect x="1283.2" y="779" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1286.16" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (108 samples, 0.09%)</title><rect x="885.1" y="267" width="1.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="888.07" y="277.5" ></text>
</g>
<g >
<title>ExecDropStmt (27 samples, 0.02%)</title><rect x="1263.8" y="427" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1266.79" y="437.5" ></text>
</g>
<g >
<title>__sigsetjmp@plt (17 samples, 0.01%)</title><rect x="732.0" y="699" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="734.96" y="709.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (32 samples, 0.03%)</title><rect x="1265.4" y="779" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1268.45" y="789.5" ></text>
</g>
<g >
<title>tcp_release_cb (34 samples, 0.03%)</title><rect x="292.6" y="507" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="295.62" y="517.5" ></text>
</g>
<g >
<title>AtStart_Memory (38 samples, 0.03%)</title><rect x="782.5" y="667" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="785.48" y="677.5" ></text>
</g>
<g >
<title>__tcp_select_window (17 samples, 0.01%)</title><rect x="234.8" y="491" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="237.79" y="501.5" ></text>
</g>
<g >
<title>fput (41 samples, 0.03%)</title><rect x="130.5" y="523" width="0.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="133.52" y="533.5" ></text>
</g>
<g >
<title>DefineIndex (19 samples, 0.02%)</title><rect x="1389.4" y="779" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1392.36" y="789.5" ></text>
</g>
<g >
<title>hash_search (475 samples, 0.40%)</title><rect x="1221.4" y="587" width="5.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1224.42" y="597.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (709 samples, 0.60%)</title><rect x="1040.2" y="411" width="8.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1043.21" y="421.5" ></text>
</g>
<g >
<title>calc_bucket (17 samples, 0.01%)</title><rect x="685.7" y="475" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="688.71" y="485.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (58 samples, 0.05%)</title><rect x="623.0" y="555" width="0.7" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="626.03" y="565.5" ></text>
</g>
<g >
<title>PageGetItemId (12 samples, 0.01%)</title><rect x="1038.9" y="395" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1041.94" y="405.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (44 samples, 0.04%)</title><rect x="1220.2" y="587" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1223.15" y="597.5" ></text>
</g>
<g >
<title>_bt_getroot (186 samples, 0.16%)</title><rect x="15.6" y="443" width="2.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="18.61" y="453.5" ></text>
</g>
<g >
<title>__sys_recvfrom (3,547 samples, 3.00%)</title><rect x="218.7" y="571" width="41.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="221.70" y="581.5" >__s..</text>
</g>
<g >
<title>calc_bucket (14 samples, 0.01%)</title><rect x="60.4" y="251" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="63.39" y="261.5" ></text>
</g>
<g >
<title>sk_page_frag_refill (272 samples, 0.23%)</title><rect x="449.2" y="507" width="3.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="452.22" y="517.5" ></text>
</g>
<g >
<title>AfterTriggerFireDeferred (64 samples, 0.05%)</title><rect x="1107.2" y="667" width="0.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1110.22" y="677.5" ></text>
</g>
<g >
<title>TupleDescAttr (26 samples, 0.02%)</title><rect x="669.6" y="539" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="672.64" y="549.5" ></text>
</g>
<g >
<title>secure_read (13,598 samples, 11.50%)</title><rect x="103.9" y="667" width="158.7" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="106.90" y="677.5" >secure_read</text>
</g>
<g >
<title>exec_stmt_execsql (63 samples, 0.05%)</title><rect x="1263.4" y="539" width="0.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1266.38" y="549.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (41 samples, 0.03%)</title><rect x="224.2" y="507" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="227.23" y="517.5" ></text>
</g>
<g >
<title>palloc (34 samples, 0.03%)</title><rect x="637.6" y="587" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="640.61" y="597.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (27 samples, 0.02%)</title><rect x="1277.0" y="795" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1280.00" y="805.5" ></text>
</g>
<g >
<title>pfree (59 samples, 0.05%)</title><rect x="1092.9" y="667" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1095.91" y="677.5" ></text>
</g>
<g >
<title>BufTableHashCode (149 samples, 0.13%)</title><rect x="877.0" y="315" width="1.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="880.02" y="325.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (108 samples, 0.09%)</title><rect x="83.6" y="315" width="1.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="86.55" y="325.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (20 samples, 0.02%)</title><rect x="1163.4" y="475" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1166.35" y="485.5" ></text>
</g>
<g >
<title>SearchSysCache1 (78 samples, 0.07%)</title><rect x="1338.8" y="779" width="0.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1341.80" y="789.5" ></text>
</g>
<g >
<title>DefineIndex (17 samples, 0.01%)</title><rect x="19.8" y="539" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="22.79" y="549.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (63 samples, 0.05%)</title><rect x="1263.4" y="507" width="0.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1266.38" y="517.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.02%)</title><rect x="1102.2" y="283" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1105.15" y="293.5" ></text>
</g>
<g >
<title>skb_page_frag_refill (264 samples, 0.22%)</title><rect x="449.3" y="491" width="3.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text  x="452.32" y="501.5" ></text>
</g>
<g >
<title>initStringInfoInternal (449 samples, 0.38%)</title><rect x="1247.1" y="715" width="5.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1250.08" y="725.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (15 samples, 0.01%)</title><rect x="868.6" y="427" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="871.60" y="437.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (22 samples, 0.02%)</title><rect x="1335.7" y="779" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1338.67" y="789.5" ></text>
</g>
<g >
<title>load_balance (29 samples, 0.02%)</title><rect x="1260.7" y="555" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1263.66" y="565.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (19 samples, 0.02%)</title><rect x="971.1" y="395" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="974.06" y="405.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (143 samples, 0.12%)</title><rect x="39.0" y="283" width="1.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="42.01" y="293.5" ></text>
</g>
<g >
<title>tcp_event_data_recv (120 samples, 0.10%)</title><rect x="411.5" y="219" width="1.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="414.45" y="229.5" ></text>
</g>
<g >
<title>hash_search (199 samples, 0.17%)</title><rect x="510.7" y="635" width="2.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="513.74" y="645.5" ></text>
</g>
<g >
<title>btint4cmp (17 samples, 0.01%)</title><rect x="1038.6" y="379" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1041.57" y="389.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (100 samples, 0.08%)</title><rect x="105.4" y="651" width="1.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="108.37" y="661.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (123 samples, 0.10%)</title><rect x="1092.2" y="683" width="1.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1095.17" y="693.5" ></text>
</g>
<g >
<title>table_index_fetch_begin (11 samples, 0.01%)</title><rect x="1061.8" y="507" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1064.80" y="517.5" ></text>
</g>
<g >
<title>pq_getbyte (18 samples, 0.02%)</title><rect x="1373.4" y="779" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1376.35" y="789.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (12,292 samples, 10.39%)</title><rect x="1103.1" y="715" width="143.4" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="1106.06" y="725.5" >CommitTransacti..</text>
</g>
<g >
<title>ExecutorRun (22,933 samples, 19.39%)</title><rect x="824.6" y="683" width="267.6" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="827.59" y="693.5" >ExecutorRun</text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (12 samples, 0.01%)</title><rect x="1279.1" y="779" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="1282.12" y="789.5" ></text>
</g>
<g >
<title>ReleaseCachedPlan (14 samples, 0.01%)</title><rect x="1334.9" y="779" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="1337.89" y="789.5" ></text>
</g>
<g >
<title>PortalRunSelect (4,881 samples, 4.13%)</title><rect x="28.0" y="715" width="56.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="30.96" y="725.5" >Port..</text>
</g>
<g >
<title>slot_getattr (338 samples, 0.29%)</title><rect x="851.1" y="443" width="4.0" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="854.11" y="453.5" ></text>
</g>
<g >
<title>ReleaseBuffer (101 samples, 0.09%)</title><rect x="836.0" y="459" width="1.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="839.04" y="469.5" ></text>
</g>
<g >
<title>AllocSetFree (38 samples, 0.03%)</title><rect x="1189.7" y="619" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1192.69" y="629.5" ></text>
</g>
<g >
<title>read_tsc (26 samples, 0.02%)</title><rect x="440.9" y="459" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="443.89" y="469.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (42 samples, 0.04%)</title><rect x="1388.9" y="603" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1391.87" y="613.5" ></text>
</g>
<g >
<title>cmpxchg_double_slab.constprop.0.isra.0 (40 samples, 0.03%)</title><rect x="400.7" y="187" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="403.74" y="197.5" ></text>
</g>
<g >
<title>postgres (9,386 samples, 7.94%)</title><rect x="1277.3" y="811" width="109.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1280.32" y="821.5" >postgres</text>
</g>
<g >
<title>pg_atomic_read_u32 (232 samples, 0.20%)</title><rect x="776.4" y="571" width="2.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="779.44" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (17 samples, 0.01%)</title><rect x="517.7" y="555" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="520.67" y="565.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (54 samples, 0.05%)</title><rect x="23.7" y="475" width="0.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="26.70" y="485.5" ></text>
</g>
<g >
<title>tts_heap_materialize (11 samples, 0.01%)</title><rect x="1266.1" y="779" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1269.05" y="789.5" ></text>
</g>
<g >
<title>IsSharedRelation (48 samples, 0.04%)</title><rect x="513.2" y="635" width="0.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="516.24" y="645.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (72 samples, 0.06%)</title><rect x="1076.1" y="571" width="0.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1079.07" y="581.5" ></text>
</g>
<g >
<title>dequeue_entity (1,028 samples, 0.87%)</title><rect x="152.5" y="475" width="12.0" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="155.46" y="485.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (263 samples, 0.22%)</title><rect x="851.9" y="395" width="3.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="854.93" y="405.5" ></text>
</g>
<g >
<title>ReleaseSysCache (25 samples, 0.02%)</title><rect x="629.3" y="571" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="632.26" y="581.5" ></text>
</g>
<g >
<title>_bt_readnextpage (51 samples, 0.04%)</title><rect x="835.0" y="443" width="0.6" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="837.99" y="453.5" ></text>
</g>
<g >
<title>message_level_is_interesting (33 samples, 0.03%)</title><rect x="1242.5" y="651" width="0.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1245.47" y="661.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (32 samples, 0.03%)</title><rect x="1238.9" y="635" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1241.91" y="645.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (14 samples, 0.01%)</title><rect x="1022.4" y="395" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1025.41" y="405.5" ></text>
</g>
<g >
<title>set_ps_display (35 samples, 0.03%)</title><rect x="759.3" y="715" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="762.34" y="725.5" ></text>
</g>
<g >
<title>recordMultipleDependencies (10 samples, 0.01%)</title><rect x="23.2" y="395" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="26.17" y="405.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (23 samples, 0.02%)</title><rect x="1261.7" y="795" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1264.67" y="805.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (32 samples, 0.03%)</title><rect x="1275.0" y="315" width="0.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1278.00" y="325.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (11 samples, 0.01%)</title><rect x="992.4" y="411" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="995.36" y="421.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (727 samples, 0.61%)</title><rect x="1267.3" y="555" width="8.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1270.35" y="565.5" ></text>
</g>
<g >
<title>AllocSetAlloc (39 samples, 0.03%)</title><rect x="594.4" y="507" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="597.36" y="517.5" ></text>
</g>
<g >
<title>pq_endmessage (203 samples, 0.17%)</title><rect x="271.0" y="715" width="2.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="274.03" y="725.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (28 samples, 0.02%)</title><rect x="667.2" y="475" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="670.16" y="485.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos64 (17 samples, 0.01%)</title><rect x="1367.7" y="779" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="1370.73" y="789.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (14 samples, 0.01%)</title><rect x="319.2" y="379" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="322.24" y="389.5" ></text>
</g>
<g >
<title>CatalogTupleInsert (18 samples, 0.02%)</title><rect x="1268.1" y="459" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1271.13" y="469.5" ></text>
</g>
<g >
<title>SearchCatCache1 (176 samples, 0.15%)</title><rect x="667.6" y="523" width="2.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="670.59" y="533.5" ></text>
</g>
<g >
<title>pfree (88 samples, 0.07%)</title><rect x="965.3" y="427" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="968.31" y="437.5" ></text>
</g>
<g >
<title>LockBuffer (151 samples, 0.13%)</title><rect x="873.7" y="443" width="1.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="876.65" y="453.5" ></text>
</g>
<g >
<title>pq_getmsgend (15 samples, 0.01%)</title><rect x="1256.3" y="731" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1259.29" y="741.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (49 samples, 0.04%)</title><rect x="1372.2" y="779" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1375.22" y="789.5" ></text>
</g>
<g >
<title>_bt_search (4,795 samples, 4.05%)</title><rect x="29.0" y="459" width="55.9" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="31.96" y="469.5" >_bt_..</text>
</g>
<g >
<title>tcp_schedule_loss_probe (24 samples, 0.02%)</title><rect x="407.4" y="203" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="410.42" y="213.5" ></text>
</g>
<g >
<title>RelationFlushRelation (32 samples, 0.03%)</title><rect x="1275.0" y="331" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1278.00" y="341.5" ></text>
</g>
<g >
<title>ip_queue_xmit (22 samples, 0.02%)</title><rect x="437.3" y="459" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="440.35" y="469.5" ></text>
</g>
<g >
<title>InputFunctionCall (300 samples, 0.25%)</title><rect x="549.2" y="699" width="3.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="552.23" y="709.5" ></text>
</g>
<g >
<title>index_getnext_slot (9 samples, 0.01%)</title><rect x="1265.7" y="651" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1268.67" y="661.5" ></text>
</g>
<g >
<title>RecordTransactionCommit (172 samples, 0.15%)</title><rect x="1199.5" y="667" width="2.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1202.55" y="677.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (26 samples, 0.02%)</title><rect x="1291.0" y="779" width="0.3" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1294.03" y="789.5" ></text>
</g>
<g >
<title>PredicateLockPage (19 samples, 0.02%)</title><rect x="979.0" y="411" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="982.05" y="421.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (43 samples, 0.04%)</title><rect x="1267.6" y="411" width="0.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1270.62" y="421.5" ></text>
</g>
<g >
<title>__libc_pwrite64 (29 samples, 0.02%)</title><rect x="26.3" y="523" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="29.28" y="533.5" ></text>
</g>
<g >
<title>ExecutorStart (13,388 samples, 11.32%)</title><rect x="563.5" y="699" width="156.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="566.49" y="709.5" >ExecutorStart</text>
</g>
<g >
<title>ProcessInvalidationMessages (46 samples, 0.04%)</title><rect x="1268.5" y="411" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1271.54" y="421.5" ></text>
</g>
<g >
<title>PortalRun (476 samples, 0.40%)</title><rect x="12.9" y="731" width="5.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="15.88" y="741.5" ></text>
</g>
<g >
<title>bpf_lsm_socket_sendmsg (11 samples, 0.01%)</title><rect x="288.6" y="523" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="291.60" y="533.5" ></text>
</g>
<g >
<title>IsInParallelMode (13 samples, 0.01%)</title><rect x="548.5" y="699" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="551.54" y="709.5" ></text>
</g>
<g >
<title>ExecutorRun (81 samples, 0.07%)</title><rect x="1386.8" y="715" width="1.0" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="1389.84" y="725.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (17 samples, 0.01%)</title><rect x="897.5" y="331" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="900.45" y="341.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (9 samples, 0.01%)</title><rect x="1190.1" y="619" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1193.13" y="629.5" ></text>
</g>
<g >
<title>exec_toplevel_block (77 samples, 0.07%)</title><rect x="1101.8" y="539" width="0.9" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1104.82" y="549.5" ></text>
</g>
<g >
<title>StartTransaction (2,992 samples, 2.53%)</title><rect x="760.3" y="683" width="34.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="763.30" y="693.5" >St..</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (152 samples, 0.13%)</title><rect x="697.2" y="491" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="700.18" y="501.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (24 samples, 0.02%)</title><rect x="1085.4" y="603" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1088.42" y="613.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (29 samples, 0.02%)</title><rect x="26.3" y="779" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="29.28" y="789.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (112 samples, 0.09%)</title><rect x="753.8" y="667" width="1.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="756.78" y="677.5" ></text>
</g>
<g >
<title>PinBuffer (968 samples, 0.82%)</title><rect x="71.4" y="299" width="11.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="74.42" y="309.5" ></text>
</g>
<g >
<title>LWLockRelease (30 samples, 0.03%)</title><rect x="22.3" y="363" width="0.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="25.31" y="373.5" ></text>
</g>
<g >
<title>LWLockRelease (160 samples, 0.14%)</title><rect x="38.8" y="299" width="1.9" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="41.82" y="309.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (16 samples, 0.01%)</title><rect x="1070.2" y="523" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1073.23" y="533.5" ></text>
</g>
<g >
<title>jit_compile_expr (14 samples, 0.01%)</title><rect x="609.3" y="523" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="612.33" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (31 samples, 0.03%)</title><rect x="696.1" y="491" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="699.06" y="501.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (200 samples, 0.17%)</title><rect x="841.0" y="475" width="2.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="843.99" y="485.5" ></text>
</g>
<g >
<title>shmem_alloc_and_acct_folio (13 samples, 0.01%)</title><rect x="26.3" y="363" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="29.29" y="373.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (13 samples, 0.01%)</title><rect x="604.7" y="459" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="607.73" y="469.5" ></text>
</g>
<g >
<title>newNode (172 samples, 0.15%)</title><rect x="610.4" y="539" width="2.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="613.45" y="549.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (54 samples, 0.05%)</title><rect x="23.7" y="667" width="0.6" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="26.70" y="677.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (249 samples, 0.21%)</title><rect x="830.6" y="507" width="2.9" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="833.57" y="517.5" ></text>
</g>
<g >
<title>DatumGetInt32 (18 samples, 0.02%)</title><rect x="947.2" y="379" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="950.16" y="389.5" ></text>
</g>
<g >
<title>CreateQueryDesc (280 samples, 0.24%)</title><rect x="560.2" y="699" width="3.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="563.22" y="709.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (32 samples, 0.03%)</title><rect x="1275.0" y="379" width="0.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1278.00" y="389.5" ></text>
</g>
<g >
<title>StartReadBuffer (18 samples, 0.02%)</title><rect x="1341.4" y="779" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1344.43" y="789.5" ></text>
</g>
<g >
<title>clear_buddies (11 samples, 0.01%)</title><rect x="153.8" y="459" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="156.84" y="469.5" ></text>
</g>
<g >
<title>IndexNext (81 samples, 0.07%)</title><rect x="1386.8" y="555" width="1.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1389.84" y="565.5" ></text>
</g>
<g >
<title>__new_sem_post (10 samples, 0.01%)</title><rect x="1220.3" y="539" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1223.31" y="549.5" ></text>
</g>
<g >
<title>vma_alloc_folio (288 samples, 0.24%)</title><rect x="1269.3" y="107" width="3.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1272.26" y="117.5" ></text>
</g>
<g >
<title>exec_stmts (727 samples, 0.61%)</title><rect x="1267.3" y="635" width="8.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1270.35" y="645.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.01%)</title><rect x="664.5" y="507" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="667.54" y="517.5" ></text>
</g>
<g >
<title>PortalRun (115 samples, 0.10%)</title><rect x="11.4" y="763" width="1.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="14.45" y="773.5" ></text>
</g>
<g >
<title>ProcReleaseLocks (2,842 samples, 2.40%)</title><rect x="1205.8" y="635" width="33.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1208.75" y="645.5" >Pr..</text>
</g>
<g >
<title>pgstat_count_io_op (66 samples, 0.06%)</title><rect x="50.9" y="315" width="0.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="53.90" y="325.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (19 samples, 0.02%)</title><rect x="1067.9" y="603" width="0.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1070.94" y="613.5" ></text>
</g>
<g >
<title>index_getnext_slot (4,881 samples, 4.13%)</title><rect x="28.0" y="523" width="56.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="30.96" y="533.5" >inde..</text>
</g>
<g >
<title>ProcessInvalidationMessages (43 samples, 0.04%)</title><rect x="1267.6" y="427" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1270.62" y="437.5" ></text>
</g>
<g >
<title>index_build (16 samples, 0.01%)</title><rect x="19.2" y="779" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="22.21" y="789.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (30 samples, 0.03%)</title><rect x="24.3" y="491" width="0.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="27.33" y="501.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (277 samples, 0.23%)</title><rect x="605.3" y="507" width="3.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="608.26" y="517.5" ></text>
</g>
<g >
<title>CheckCachedPlan (527 samples, 0.45%)</title><rect x="507.7" y="699" width="6.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="510.68" y="709.5" ></text>
</g>
<g >
<title>_bt_returnitem (23 samples, 0.02%)</title><rect x="982.1" y="443" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="985.10" y="453.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (222 samples, 0.19%)</title><rect x="762.4" y="619" width="2.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="765.45" y="629.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (23 samples, 0.02%)</title><rect x="19.8" y="555" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="22.79" y="565.5" ></text>
</g>
<g >
<title>CallXactCallbacks (15 samples, 0.01%)</title><rect x="1117.9" y="667" width="0.1" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="1120.86" y="677.5" ></text>
</g>
<g >
<title>enlargeStringInfo (11 samples, 0.01%)</title><rect x="1074.7" y="587" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1077.69" y="597.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (20 samples, 0.02%)</title><rect x="1122.4" y="603" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1125.41" y="613.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (24 samples, 0.02%)</title><rect x="1275.6" y="475" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1278.55" y="485.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (9 samples, 0.01%)</title><rect x="20.1" y="795" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="23.12" y="805.5" ></text>
</g>
<g >
<title>AllocSetAlloc (53 samples, 0.04%)</title><rect x="615.6" y="507" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="618.59" y="517.5" ></text>
</g>
<g >
<title>exec_describe_portal_message (1,168 samples, 0.99%)</title><rect x="795.5" y="731" width="13.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="798.50" y="741.5" ></text>
</g>
<g >
<title>printtup_create_DR (223 samples, 0.19%)</title><rect x="812.2" y="699" width="2.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="815.15" y="709.5" ></text>
</g>
<g >
<title>get_hash_entry (18 samples, 0.02%)</title><rect x="532.0" y="587" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="535.02" y="597.5" ></text>
</g>
<g >
<title>hash_bytes (278 samples, 0.24%)</title><rect x="53.4" y="251" width="3.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="56.40" y="261.5" ></text>
</g>
<g >
<title>LockBuffer (200 samples, 0.17%)</title><rect x="1053.1" y="395" width="2.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1056.11" y="405.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (35 samples, 0.03%)</title><rect x="973.5" y="363" width="0.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="976.46" y="373.5" ></text>
</g>
<g >
<title>AllocSetAlloc (35 samples, 0.03%)</title><rect x="868.4" y="443" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="871.39" y="453.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (20 samples, 0.02%)</title><rect x="555.1" y="667" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="558.06" y="677.5" ></text>
</g>
<g >
<title>Int32GetDatum (15 samples, 0.01%)</title><rect x="20.4" y="811" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="23.38" y="821.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (23 samples, 0.02%)</title><rect x="1102.4" y="459" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1105.45" y="469.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (25 samples, 0.02%)</title><rect x="1368.8" y="779" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1371.81" y="789.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (21 samples, 0.02%)</title><rect x="984.7" y="411" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="987.67" y="421.5" ></text>
</g>
<g >
<title>eth_type_trans (21 samples, 0.02%)</title><rect x="428.2" y="379" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="431.22" y="389.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (88 samples, 0.07%)</title><rect x="84.9" y="475" width="1.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="87.91" y="485.5" ></text>
</g>
<g >
<title>heap_create (13 samples, 0.01%)</title><rect x="22.8" y="411" width="0.2" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="25.81" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (878 samples, 0.74%)</title><rect x="766.2" y="571" width="10.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="769.19" y="581.5" ></text>
</g>
<g >
<title>_bt_first (4,881 samples, 4.13%)</title><rect x="28.0" y="475" width="56.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="30.96" y="485.5" >_bt_..</text>
</g>
<g >
<title>set_ps_display_with_len (46 samples, 0.04%)</title><rect x="1101.1" y="715" width="0.6" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="1104.13" y="725.5" ></text>
</g>
<g >
<title>hash_search (216 samples, 0.18%)</title><rect x="797.2" y="699" width="2.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="800.24" y="709.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (88 samples, 0.07%)</title><rect x="84.9" y="603" width="1.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="87.91" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (51 samples, 0.04%)</title><rect x="741.0" y="651" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="743.97" y="661.5" ></text>
</g>
<g >
<title>hash_bytes (10 samples, 0.01%)</title><rect x="1356.8" y="779" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1359.76" y="789.5" ></text>
</g>
<g >
<title>index_getattr (48 samples, 0.04%)</title><rect x="1039.1" y="395" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1042.09" y="405.5" ></text>
</g>
<g >
<title>__usecs_to_jiffies (23 samples, 0.02%)</title><rect x="418.7" y="347" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="421.72" y="357.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (27 samples, 0.02%)</title><rect x="1277.0" y="619" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1280.00" y="629.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (38 samples, 0.03%)</title><rect x="1386.8" y="475" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1389.84" y="485.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (239 samples, 0.20%)</title><rect x="539.3" y="651" width="2.8" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="542.35" y="661.5" ></text>
</g>
<g >
<title>PortalRunSelect (10 samples, 0.01%)</title><rect x="1328.5" y="779" width="0.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="1331.45" y="789.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (54 samples, 0.05%)</title><rect x="23.7" y="507" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="26.70" y="517.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (350 samples, 0.30%)</title><rect x="908.2" y="443" width="4.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="911.22" y="453.5" ></text>
</g>
<g >
<title>palloc0 (198 samples, 0.17%)</title><rect x="624.5" y="555" width="2.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="627.49" y="565.5" ></text>
</g>
<g >
<title>AllocSetAlloc (49 samples, 0.04%)</title><rect x="500.1" y="667" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="503.07" y="677.5" ></text>
</g>
<g >
<title>new_head_cell (37 samples, 0.03%)</title><rect x="593.4" y="539" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="596.43" y="549.5" ></text>
</g>
<g >
<title>__virt_addr_valid (17 samples, 0.01%)</title><rect x="300.1" y="491" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="303.05" y="501.5" ></text>
</g>
<g >
<title>ProcessUtility (30 samples, 0.03%)</title><rect x="24.3" y="539" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="27.33" y="549.5" ></text>
</g>
<g >
<title>ExecutePlan (4,881 samples, 4.13%)</title><rect x="28.0" y="651" width="56.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="30.96" y="661.5" >Exec..</text>
</g>
<g >
<title>EndCommand (266 samples, 0.22%)</title><rect x="814.8" y="715" width="3.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="817.75" y="725.5" ></text>
</g>
<g >
<title>hash_search (230 samples, 0.19%)</title><rect x="706.3" y="555" width="2.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="709.34" y="565.5" ></text>
</g>
<g >
<title>shmem_write_end (117 samples, 0.10%)</title><rect x="1272.7" y="171" width="1.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1275.66" y="181.5" ></text>
</g>
<g >
<title>newNode (401 samples, 0.34%)</title><rect x="709.4" y="603" width="4.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="712.40" y="613.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (14 samples, 0.01%)</title><rect x="689.0" y="523" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="692.04" y="533.5" ></text>
</g>
<g >
<title>FullTransactionIdFromEpochAndXid (12 samples, 0.01%)</title><rect x="791.9" y="667" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="794.93" y="677.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (99 samples, 0.08%)</title><rect x="689.5" y="459" width="1.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="692.53" y="469.5" ></text>
</g>
<g >
<title>_bt_first (9 samples, 0.01%)</title><rect x="1276.4" y="619" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1279.39" y="629.5" ></text>
</g>
<g >
<title>ReleaseCatCache (9 samples, 0.01%)</title><rect x="27.0" y="811" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="30.02" y="821.5" ></text>
</g>
<g >
<title>tts_buffer_heap_init (40 samples, 0.03%)</title><rect x="1383.1" y="779" width="0.5" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1386.10" y="789.5" ></text>
</g>
<g >
<title>GetPortalByName (226 samples, 0.19%)</title><rect x="818.1" y="715" width="2.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="821.10" y="725.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (21 samples, 0.02%)</title><rect x="273.1" y="667" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="276.12" y="677.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (126 samples, 0.11%)</title><rect x="12.9" y="395" width="1.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="15.88" y="405.5" ></text>
</g>
<g >
<title>LockAcquireExtended (25 samples, 0.02%)</title><rect x="1318.1" y="779" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1321.07" y="789.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (42 samples, 0.04%)</title><rect x="1388.9" y="731" width="0.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1391.87" y="741.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (144 samples, 0.12%)</title><rect x="15.7" y="331" width="1.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="18.66" y="341.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (9 samples, 0.01%)</title><rect x="82.6" y="283" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="85.61" y="293.5" ></text>
</g>
<g >
<title>new_list (88 samples, 0.07%)</title><rect x="593.9" y="539" width="1.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="596.86" y="549.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (32 samples, 0.03%)</title><rect x="412.9" y="219" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="415.85" y="229.5" ></text>
</g>
<g >
<title>internal_flush_buffer (17,381 samples, 14.70%)</title><rect x="274.7" y="683" width="202.8" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="277.67" y="693.5" >internal_flush_buffer</text>
</g>
<g >
<title>AllocSetFreeIndex (14 samples, 0.01%)</title><rect x="10.8" y="811" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="13.79" y="821.5" ></text>
</g>
<g >
<title>_bt_compare (3,914 samples, 3.31%)</title><rect x="919.2" y="427" width="45.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="922.16" y="437.5" >_bt..</text>
</g>
<g >
<title>SearchSysCache1 (10 samples, 0.01%)</title><rect x="1275.4" y="411" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1278.42" y="421.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (299 samples, 0.25%)</title><rect x="247.4" y="475" width="3.5" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="250.41" y="485.5" ></text>
</g>
<g >
<title>GETSTRUCT (17 samples, 0.01%)</title><rect x="736.9" y="699" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="739.87" y="709.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (32 samples, 0.03%)</title><rect x="44.7" y="283" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="47.67" y="293.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (25 samples, 0.02%)</title><rect x="889.5" y="251" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="892.46" y="261.5" ></text>
</g>
<g >
<title>_raw_spin_lock (192 samples, 0.16%)</title><rect x="148.3" y="491" width="2.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="151.31" y="501.5" ></text>
</g>
<g >
<title>ExecProject (18 samples, 0.02%)</title><rect x="1304.3" y="779" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1307.26" y="789.5" ></text>
</g>
<g >
<title>AtEOXact_LogicalRepWorkers (35 samples, 0.03%)</title><rect x="1288.1" y="779" width="0.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="1291.07" y="789.5" ></text>
</g>
<g >
<title>exec_stmts (28 samples, 0.02%)</title><rect x="1276.7" y="763" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1279.67" y="773.5" ></text>
</g>
<g >
<title>string_compare (20 samples, 0.02%)</title><rect x="1187.8" y="603" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1190.77" y="613.5" ></text>
</g>
<g >
<title>IndexNext (17,703 samples, 14.97%)</title><rect x="855.4" y="523" width="206.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="858.38" y="533.5" >IndexNext</text>
</g>
<g >
<title>ResourceOwnerDelete (84 samples, 0.07%)</title><rect x="1201.9" y="651" width="1.0" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1204.94" y="661.5" ></text>
</g>
<g >
<title>BufferGetPage (14 samples, 0.01%)</title><rect x="992.5" y="411" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="995.49" y="421.5" ></text>
</g>
<g >
<title>tcp_rcv_space_adjust (139 samples, 0.12%)</title><rect x="252.1" y="507" width="1.7" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="255.13" y="517.5" ></text>
</g>
<g >
<title>ExecEndNode (741 samples, 0.63%)</title><rect x="1156.2" y="555" width="8.6" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="1159.18" y="565.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (21 samples, 0.02%)</title><rect x="763.9" y="555" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="766.86" y="565.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (11 samples, 0.01%)</title><rect x="578.4" y="587" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="581.40" y="597.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (71 samples, 0.06%)</title><rect x="216.7" y="619" width="0.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="219.68" y="629.5" ></text>
</g>
<g >
<title>AtEOXact_ApplyLauncher (29 samples, 0.02%)</title><rect x="1285.6" y="779" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1288.58" y="789.5" ></text>
</g>
<g >
<title>GetPortalByName (207 samples, 0.18%)</title><rect x="487.8" y="699" width="2.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="490.84" y="709.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (30 samples, 0.03%)</title><rect x="1264.2" y="267" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="1267.15" y="277.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (28 samples, 0.02%)</title><rect x="793.3" y="619" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="796.32" y="629.5" ></text>
</g>
<g >
<title>ExecScanFetch (606 samples, 0.51%)</title><rect x="830.3" y="555" width="7.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="833.26" y="565.5" ></text>
</g>
<g >
<title>object_aclmask_ext (13 samples, 0.01%)</title><rect x="1364.3" y="779" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1367.33" y="789.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (27 samples, 0.02%)</title><rect x="964.0" y="395" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="966.96" y="405.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (55 samples, 0.05%)</title><rect x="1254.8" y="683" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1257.76" y="693.5" ></text>
</g>
<g >
<title>set_task_cpu (199 samples, 0.17%)</title><rect x="367.1" y="139" width="2.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="370.08" y="149.5" ></text>
</g>
<g >
<title>ReleaseSysCache (79 samples, 0.07%)</title><rect x="581.1" y="571" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="584.12" y="581.5" ></text>
</g>
<g >
<title>lappend (22 samples, 0.02%)</title><rect x="616.2" y="539" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="619.24" y="549.5" ></text>
</g>
<g >
<title>check_stack_depth (17 samples, 0.01%)</title><rect x="715.1" y="619" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="718.05" y="629.5" ></text>
</g>
<g >
<title>HeapCheckForSerializableConflictOut (12 samples, 0.01%)</title><rect x="902.8" y="427" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="905.85" y="437.5" ></text>
</g>
<g >
<title>LWLockAcquire (109 samples, 0.09%)</title><rect x="1218.6" y="603" width="1.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1221.59" y="613.5" ></text>
</g>
<g >
<title>StmtPlanRequiresRevalidation (24 samples, 0.02%)</title><rect x="537.5" y="683" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="540.48" y="693.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (64 samples, 0.05%)</title><rect x="652.2" y="539" width="0.7" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="655.15" y="549.5" ></text>
</g>
<g >
<title>AtCommit_Memory (155 samples, 0.13%)</title><rect x="1108.0" y="667" width="1.8" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1110.97" y="677.5" ></text>
</g>
<g >
<title>psi_task_switch (500 samples, 0.42%)</title><rect x="197.9" y="491" width="5.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="200.90" y="501.5" ></text>
</g>
<g >
<title>UnpinBuffer (141 samples, 0.12%)</title><rect x="831.8" y="475" width="1.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="834.82" y="485.5" ></text>
</g>
<g >
<title>expr_setup_walker (47 samples, 0.04%)</title><rect x="647.4" y="491" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="650.39" y="501.5" ></text>
</g>
<g >
<title>SearchPathMatchesCurrentEnvironment (30 samples, 0.03%)</title><rect x="1338.5" y="779" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1341.45" y="789.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (812 samples, 0.69%)</title><rect x="898.7" y="443" width="9.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="901.75" y="453.5" ></text>
</g>
<g >
<title>shmem_alloc_hugefolio (10 samples, 0.01%)</title><rect x="1264.2" y="187" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="1267.16" y="197.5" ></text>
</g>
<g >
<title>socket_set_nonblocking (31 samples, 0.03%)</title><rect x="477.5" y="699" width="0.3" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="480.47" y="709.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (39 samples, 0.03%)</title><rect x="1026.5" y="379" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1029.50" y="389.5" ></text>
</g>
<g >
<title>heap_multi_insert (28 samples, 0.02%)</title><rect x="1265.9" y="811" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1268.91" y="821.5" ></text>
</g>
<g >
<title>table_close (20 samples, 0.02%)</title><rect x="1382.3" y="779" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1385.32" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (11 samples, 0.01%)</title><rect x="706.1" y="523" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="709.10" y="533.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (253 samples, 0.21%)</title><rect x="779.2" y="587" width="3.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="782.21" y="597.5" ></text>
</g>
<g >
<title>index_create (15 samples, 0.01%)</title><rect x="24.4" y="459" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="27.37" y="469.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (23 samples, 0.02%)</title><rect x="635.3" y="507" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="638.27" y="517.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (24 samples, 0.02%)</title><rect x="1268.5" y="315" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1271.55" y="325.5" ></text>
</g>
<g >
<title>afterTriggerMarkEvents (16 samples, 0.01%)</title><rect x="1107.8" y="651" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1110.78" y="661.5" ></text>
</g>
<g >
<title>VirtualXactLockTableCleanup (183 samples, 0.15%)</title><rect x="1228.8" y="603" width="2.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1231.82" y="613.5" ></text>
</g>
<g >
<title>ExecBuildProjectionInfo (1,044 samples, 0.88%)</title><rect x="600.3" y="555" width="12.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="603.28" y="565.5" ></text>
</g>
<g >
<title>pq_writestring (48 samples, 0.04%)</title><rect x="807.8" y="699" width="0.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="810.85" y="709.5" ></text>
</g>
<g >
<title>exec_execute_message (25,085 samples, 21.21%)</title><rect x="809.1" y="731" width="292.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="812.13" y="741.5" >exec_execute_message</text>
</g>
<g >
<title>inet_sendmsg (68 samples, 0.06%)</title><rect x="286.1" y="539" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="289.14" y="549.5" ></text>
</g>
<g >
<title>exec_stmts (30 samples, 0.03%)</title><rect x="24.3" y="635" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="27.33" y="645.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (14 samples, 0.01%)</title><rect x="1164.6" y="459" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1167.55" y="469.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (116 samples, 0.10%)</title><rect x="835.9" y="475" width="1.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="838.87" y="485.5" ></text>
</g>
<g >
<title>_bt_getroot (43 samples, 0.04%)</title><rect x="1387.3" y="459" width="0.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1390.28" y="469.5" ></text>
</g>
<g >
<title>RelationFlushRelation (43 samples, 0.04%)</title><rect x="1267.6" y="379" width="0.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1270.62" y="389.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (63 samples, 0.05%)</title><rect x="1263.4" y="635" width="0.7" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1266.38" y="645.5" ></text>
</g>
<g >
<title>ComputeIndexAttrs (14 samples, 0.01%)</title><rect x="1267.4" y="491" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1270.39" y="501.5" ></text>
</g>
<g >
<title>enable_statement_timeout (20 samples, 0.02%)</title><rect x="808.9" y="699" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="811.90" y="709.5" ></text>
</g>
<g >
<title>finish_xact_command (12 samples, 0.01%)</title><rect x="1354.1" y="779" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1357.09" y="789.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (81 samples, 0.07%)</title><rect x="1386.8" y="683" width="1.0" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1389.84" y="693.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (57 samples, 0.05%)</title><rect x="739.8" y="651" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="742.76" y="661.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (10 samples, 0.01%)</title><rect x="696.5" y="491" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="699.49" y="501.5" ></text>
</g>
<g >
<title>printtup_destroy (72 samples, 0.06%)</title><rect x="1097.9" y="715" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1100.88" y="725.5" ></text>
</g>
<g >
<title>heapam_index_build_range_scan (13 samples, 0.01%)</title><rect x="1274.0" y="411" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1277.05" y="421.5" ></text>
</g>
<g >
<title>recordMultipleDependencies (13 samples, 0.01%)</title><rect x="1274.4" y="459" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1277.37" y="469.5" ></text>
</g>
<g >
<title>fetch_att (9 samples, 0.01%)</title><rect x="1039.5" y="379" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1042.55" y="389.5" ></text>
</g>
<g >
<title>exec_stmt_fori (28 samples, 0.02%)</title><rect x="1276.7" y="747" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1279.67" y="757.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (164 samples, 0.14%)</title><rect x="1036.9" y="395" width="1.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1039.85" y="405.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (19 samples, 0.02%)</title><rect x="917.0" y="411" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="920.04" y="421.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (99 samples, 0.08%)</title><rect x="685.9" y="491" width="1.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="688.91" y="501.5" ></text>
</g>
<g >
<title>enlargeStringInfo (13 samples, 0.01%)</title><rect x="1074.3" y="571" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1077.28" y="581.5" ></text>
</g>
<g >
<title>LWLockRelease (213 samples, 0.18%)</title><rect x="525.9" y="619" width="2.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="528.90" y="629.5" ></text>
</g>
<g >
<title>LWLockAcquire (186 samples, 0.16%)</title><rect x="15.6" y="379" width="2.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="18.61" y="389.5" ></text>
</g>
<g >
<title>ProcessUtility (63 samples, 0.05%)</title><rect x="1263.4" y="491" width="0.7" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1266.38" y="501.5" ></text>
</g>
<g >
<title>ExecReadyExpr (19 samples, 0.02%)</title><rect x="612.5" y="555" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="615.53" y="565.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (27 samples, 0.02%)</title><rect x="1275.0" y="283" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1278.00" y="293.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (16 samples, 0.01%)</title><rect x="733.8" y="635" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="736.77" y="645.5" ></text>
</g>
<g >
<title>PortalRunUtility (77 samples, 0.07%)</title><rect x="1101.8" y="683" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1104.82" y="693.5" ></text>
</g>
<g >
<title>MemoryChunkGetBlock (10 samples, 0.01%)</title><rect x="554.9" y="651" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="557.88" y="661.5" ></text>
</g>
<g >
<title>record_object_address_dependencies (13 samples, 0.01%)</title><rect x="1274.4" y="475" width="0.1" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1277.37" y="485.5" ></text>
</g>
<g >
<title>do_syscall_64 (29 samples, 0.02%)</title><rect x="26.3" y="491" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="29.28" y="501.5" ></text>
</g>
<g >
<title>smgrDoPendingDeletes (33 samples, 0.03%)</title><rect x="1102.0" y="363" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1104.98" y="373.5" ></text>
</g>
<g >
<title>PageGetItem (10 samples, 0.01%)</title><rect x="978.5" y="411" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="981.53" y="421.5" ></text>
</g>
<g >
<title>list_nth_cell (11 samples, 0.01%)</title><rect x="682.4" y="539" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="685.44" y="549.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (20 samples, 0.02%)</title><rect x="1267.6" y="331" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1270.63" y="341.5" ></text>
</g>
<g >
<title>postmaster_child_launch (54 samples, 0.05%)</title><rect x="1260.4" y="795" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1263.42" y="805.5" ></text>
</g>
<g >
<title>exec_stmt_fori (209 samples, 0.18%)</title><rect x="21.3" y="587" width="2.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="24.26" y="597.5" ></text>
</g>
<g >
<title>__update_load_avg_se (13 samples, 0.01%)</title><rect x="197.2" y="427" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="200.22" y="437.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (322 samples, 0.27%)</title><rect x="56.8" y="283" width="3.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="59.80" y="293.5" ></text>
</g>
<g >
<title>btgettuple (136 samples, 0.11%)</title><rect x="834.0" y="491" width="1.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="837.04" y="501.5" ></text>
</g>
<g >
<title>SearchCatCache1 (152 samples, 0.13%)</title><rect x="635.7" y="555" width="1.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="638.71" y="565.5" ></text>
</g>
<g >
<title>SearchSysCache1 (182 samples, 0.15%)</title><rect x="667.5" y="539" width="2.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="670.52" y="549.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (13 samples, 0.01%)</title><rect x="655.8" y="523" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="658.76" y="533.5" ></text>
</g>
<g >
<title>PortalRun (4,881 samples, 4.13%)</title><rect x="28.0" y="731" width="56.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="30.96" y="741.5" >Port..</text>
</g>
<g >
<title>AtEOXact_SPI (22 samples, 0.02%)</title><rect x="1116.8" y="667" width="0.2" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1119.75" y="677.5" ></text>
</g>
<g >
<title>start_xact_command (52 samples, 0.04%)</title><rect x="808.5" y="715" width="0.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="811.52" y="725.5" ></text>
</g>
<g >
<title>AtEOXact_ApplyLauncher (11 samples, 0.01%)</title><rect x="1110.2" y="667" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1113.21" y="677.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (12 samples, 0.01%)</title><rect x="731.8" y="699" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="734.82" y="709.5" ></text>
</g>
<g >
<title>RelationFlushRelation (18 samples, 0.02%)</title><rect x="19.0" y="683" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="21.98" y="693.5" ></text>
</g>
<g >
<title>IndexTupleHasNulls (50 samples, 0.04%)</title><rect x="1025.9" y="379" width="0.6" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1028.92" y="389.5" ></text>
</g>
<g >
<title>exec_stmt_block (27 samples, 0.02%)</title><rect x="1277.0" y="763" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1280.00" y="773.5" ></text>
</g>
<g >
<title>DecrTupleDescRefCount (57 samples, 0.05%)</title><rect x="1166.1" y="539" width="0.7" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="1169.12" y="549.5" ></text>
</g>
<g >
<title>tcp_check_space (240 samples, 0.20%)</title><rect x="408.4" y="219" width="2.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="411.42" y="229.5" ></text>
</g>
<g >
<title>tcp_chrono_start (32 samples, 0.03%)</title><rect x="458.6" y="491" width="0.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="461.60" y="501.5" ></text>
</g>
<g >
<title>psi_flags_change (36 samples, 0.03%)</title><rect x="198.7" y="475" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="201.68" y="485.5" ></text>
</g>
<g >
<title>exec_toplevel_block (9 samples, 0.01%)</title><rect x="20.1" y="763" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="23.12" y="773.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (342 samples, 0.29%)</title><rect x="1140.0" y="555" width="4.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1142.99" y="565.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (9 samples, 0.01%)</title><rect x="749.1" y="715" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="752.11" y="725.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (15 samples, 0.01%)</title><rect x="1172.4" y="539" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1175.44" y="549.5" ></text>
</g>
<g >
<title>palloc0 (337 samples, 0.28%)</title><rect x="595.3" y="539" width="4.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="598.34" y="549.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (165 samples, 0.14%)</title><rect x="546.3" y="667" width="1.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="549.26" y="677.5" ></text>
</g>
<g >
<title>pq_getmsgint (240 samples, 0.20%)</title><rect x="749.5" y="715" width="2.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="752.48" y="725.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (60 samples, 0.05%)</title><rect x="700.6" y="539" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="703.62" y="549.5" ></text>
</g>
<g >
<title>smgrdounlinkall (33 samples, 0.03%)</title><rect x="1102.0" y="347" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1104.98" y="357.5" ></text>
</g>
<g >
<title>smgrzeroextend (29 samples, 0.02%)</title><rect x="26.3" y="619" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="29.28" y="629.5" ></text>
</g>
<g >
<title>tcp_rate_skb_delivered (87 samples, 0.07%)</title><rect x="406.1" y="203" width="1.0" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="409.11" y="213.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (9,913 samples, 8.38%)</title><rect x="316.4" y="427" width="115.7" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="319.43" y="437.5" >__dev_queue_..</text>
</g>
<g >
<title>exec_toplevel_block (727 samples, 0.61%)</title><rect x="1267.3" y="699" width="8.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1270.35" y="709.5" ></text>
</g>
<g >
<title>SPI_inside_nonatomic_context (17 samples, 0.01%)</title><rect x="1338.1" y="779" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1341.05" y="789.5" ></text>
</g>
<g >
<title>MemoryContextReset (140 samples, 0.12%)</title><rect x="1108.1" y="651" width="1.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1111.09" y="661.5" ></text>
</g>
<g >
<title>DefineIndex (19 samples, 0.02%)</title><rect x="24.3" y="475" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="27.33" y="485.5" ></text>
</g>
<g >
<title>epoll_wait (45 samples, 0.04%)</title><rect x="1260.5" y="715" width="0.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1263.52" y="725.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (27 samples, 0.02%)</title><rect x="1198.6" y="667" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1201.58" y="677.5" ></text>
</g>
<g >
<title>GETSTRUCT (13 samples, 0.01%)</title><rect x="580.9" y="571" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="583.92" y="581.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (231 samples, 0.20%)</title><rect x="861.1" y="459" width="2.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="864.11" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (61 samples, 0.05%)</title><rect x="70.6" y="267" width="0.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="73.61" y="277.5" ></text>
</g>
<g >
<title>LWLockRelease (22 samples, 0.02%)</title><rect x="517.9" y="587" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="520.87" y="597.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (22 samples, 0.02%)</title><rect x="1228.0" y="571" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1230.99" y="581.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (244 samples, 0.21%)</title><rect x="602.1" y="523" width="2.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="605.08" y="533.5" ></text>
</g>
<g >
<title>performMultipleDeletions (49 samples, 0.04%)</title><rect x="1275.9" y="731" width="0.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1278.94" y="741.5" ></text>
</g>
<g >
<title>__folio_alloc (10 samples, 0.01%)</title><rect x="1264.2" y="155" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="1267.16" y="165.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (16,494 samples, 13.95%)</title><rect x="282.5" y="587" width="192.5" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="285.53" y="597.5" >__x64_sys_sendto</text>
</g>
<g >
<title>InitializeQueryCompletion (14 samples, 0.01%)</title><rect x="822.6" y="699" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="825.63" y="709.5" ></text>
</g>
<g >
<title>index_open (1,831 samples, 1.55%)</title><rect x="688.0" y="603" width="21.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="691.02" y="613.5" ></text>
</g>
<g >
<title>palloc (111 samples, 0.09%)</title><rect x="862.5" y="443" width="1.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="865.51" y="453.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (27 samples, 0.02%)</title><rect x="1286.8" y="779" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1289.80" y="789.5" ></text>
</g>
<g >
<title>pfree (105 samples, 0.09%)</title><rect x="1084.5" y="619" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1087.48" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (10 samples, 0.01%)</title><rect x="696.5" y="475" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="699.49" y="485.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (20 samples, 0.02%)</title><rect x="668.5" y="491" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="671.47" y="501.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (31 samples, 0.03%)</title><rect x="1389.4" y="795" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1392.36" y="805.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (56 samples, 0.05%)</title><rect x="17.8" y="427" width="0.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="20.78" y="437.5" ></text>
</g>
<g >
<title>hash_seq_search (44 samples, 0.04%)</title><rect x="1358.2" y="779" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1361.16" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (13 samples, 0.01%)</title><rect x="1080.3" y="523" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1083.34" y="533.5" ></text>
</g>
<g >
<title>FileZero (29 samples, 0.02%)</title><rect x="26.3" y="587" width="0.3" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="29.28" y="597.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (43 samples, 0.04%)</title><rect x="475.0" y="587" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="477.97" y="597.5" ></text>
</g>
<g >
<title>DatumGetInt32 (29 samples, 0.02%)</title><rect x="1017.8" y="363" width="0.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1020.82" y="373.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (79 samples, 0.07%)</title><rect x="516.9" y="571" width="1.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="519.94" y="581.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (19 samples, 0.02%)</title><rect x="157.8" y="443" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="160.82" y="453.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (30 samples, 0.03%)</title><rect x="1332.5" y="779" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1335.51" y="789.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (27 samples, 0.02%)</title><rect x="1279.6" y="763" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1282.59" y="773.5" ></text>
</g>
<g >
<title>pq_writeint32 (19 samples, 0.02%)</title><rect x="1074.4" y="571" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1077.43" y="581.5" ></text>
</g>
<g >
<title>__errno_location@plt (16 samples, 0.01%)</title><rect x="106.4" y="635" width="0.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="109.35" y="645.5" ></text>
</g>
<g >
<title>strlen@plt (12 samples, 0.01%)</title><rect x="1082.1" y="603" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1085.09" y="613.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (173 samples, 0.15%)</title><rect x="696.9" y="523" width="2.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="699.94" y="533.5" ></text>
</g>
<g >
<title>RemoveRelations (27 samples, 0.02%)</title><rect x="1263.8" y="411" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1266.79" y="421.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (30 samples, 0.03%)</title><rect x="1111.8" y="667" width="0.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1114.80" y="677.5" ></text>
</g>
<g >
<title>tas (52 samples, 0.04%)</title><rect x="1151.7" y="555" width="0.6" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1154.71" y="565.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (9 samples, 0.01%)</title><rect x="525.6" y="587" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="528.60" y="597.5" ></text>
</g>
<g >
<title>BackgroundWriterMain (54 samples, 0.05%)</title><rect x="1260.4" y="779" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1263.42" y="789.5" ></text>
</g>
<g >
<title>ExecDropStmt (72 samples, 0.06%)</title><rect x="85.0" y="363" width="0.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="88.04" y="373.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (23 samples, 0.02%)</title><rect x="19.8" y="571" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="22.79" y="581.5" ></text>
</g>
<g >
<title>pq_beginmessage_reuse (25 samples, 0.02%)</title><rect x="1071.3" y="603" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1074.33" y="613.5" ></text>
</g>
<g >
<title>hash_seq_search (399 samples, 0.34%)</title><rect x="1233.7" y="603" width="4.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1236.73" y="613.5" ></text>
</g>
<g >
<title>__switch_to (68 samples, 0.06%)</title><rect x="110.1" y="603" width="0.8" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="113.14" y="613.5" ></text>
</g>
<g >
<title>ExecDropStmt (40 samples, 0.03%)</title><rect x="25.8" y="795" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="28.81" y="805.5" ></text>
</g>
<g >
<title>tcp_event_new_data_sent (370 samples, 0.31%)</title><rect x="442.5" y="475" width="4.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="445.51" y="485.5" ></text>
</g>
<g >
<title>superuser_arg (19 samples, 0.02%)</title><rect x="1382.1" y="779" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1385.09" y="789.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (1,510 samples, 1.28%)</title><rect x="357.6" y="203" width="17.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="360.61" y="213.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (28 samples, 0.02%)</title><rect x="1276.7" y="699" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1279.67" y="709.5" ></text>
</g>
<g >
<title>ReadBuffer_common (2,848 samples, 2.41%)</title><rect x="51.7" y="379" width="33.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="54.68" y="389.5" >Re..</text>
</g>
<g >
<title>systable_getnext (19 samples, 0.02%)</title><rect x="21.3" y="379" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="24.34" y="389.5" ></text>
</g>
<g >
<title>AllocSetAlloc (24 samples, 0.02%)</title><rect x="731.4" y="651" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="734.41" y="661.5" ></text>
</g>
<g >
<title>printtup_shutdown (278 samples, 0.24%)</title><rect x="1082.5" y="635" width="3.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1085.46" y="645.5" ></text>
</g>
<g >
<title>[[vdso]] (19 samples, 0.02%)</title><rect x="748.3" y="667" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="751.30" y="677.5" ></text>
</g>
<g >
<title>GetCurrentSubTransactionId (9 samples, 0.01%)</title><rect x="823.0" y="683" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="826.05" y="693.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (44 samples, 0.04%)</title><rect x="741.0" y="635" width="0.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="744.05" y="645.5" ></text>
</g>
<g >
<title>BlockIdSet (19 samples, 0.02%)</title><rect x="831.4" y="475" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="834.37" y="485.5" ></text>
</g>
<g >
<title>PinBuffer (616 samples, 0.52%)</title><rect x="40.7" y="299" width="7.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="43.70" y="309.5" ></text>
</g>
<g >
<title>DefineIndex (175 samples, 0.15%)</title><rect x="21.3" y="443" width="2.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="24.26" y="453.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (13 samples, 0.01%)</title><rect x="1073.4" y="571" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1076.44" y="581.5" ></text>
</g>
<g >
<title>exec_toplevel_block (28 samples, 0.02%)</title><rect x="1276.7" y="795" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1279.67" y="805.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (242 samples, 0.20%)</title><rect x="886.4" y="267" width="2.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="889.38" y="277.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (24 samples, 0.02%)</title><rect x="1275.6" y="491" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1278.55" y="501.5" ></text>
</g>
<g >
<title>StartReadBuffer (32 samples, 0.03%)</title><rect x="18.1" y="363" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="21.05" y="373.5" ></text>
</g>
<g >
<title>__strlen_evex (11 samples, 0.01%)</title><rect x="505.7" y="667" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="508.74" y="677.5" ></text>
</g>
<g >
<title>GetBufferDescriptor (9 samples, 0.01%)</title><rect x="1308.7" y="779" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1311.65" y="789.5" ></text>
</g>
<g >
<title>ScanQueryForLocks (1,746 samples, 1.48%)</title><rect x="515.2" y="667" width="20.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="518.18" y="677.5" ></text>
</g>
<g >
<title>__rcu_read_lock (16 samples, 0.01%)</title><rect x="169.7" y="459" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="172.70" y="469.5" ></text>
</g>
<g >
<title>WaitEventSetWaitBlock (8,936 samples, 7.56%)</title><rect x="108.1" y="635" width="104.3" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="111.09" y="645.5" >WaitEventS..</text>
</g>
<g >
<title>FetchStatementTargetList (9 samples, 0.01%)</title><rect x="1306.9" y="779" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1309.88" y="789.5" ></text>
</g>
<g >
<title>btint4cmp (327 samples, 0.28%)</title><rect x="1015.0" y="379" width="3.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1018.03" y="389.5" ></text>
</g>
<g >
<title>mutex_lock (194 samples, 0.16%)</title><rect x="138.8" y="539" width="2.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="141.81" y="549.5" ></text>
</g>
<g >
<title>socket_putmessage (80 samples, 0.07%)</title><rect x="816.9" y="699" width="1.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="819.92" y="709.5" ></text>
</g>
<g >
<title>performMultipleDeletions (47 samples, 0.04%)</title><rect x="1275.0" y="475" width="0.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1278.00" y="485.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (29 samples, 0.02%)</title><rect x="26.3" y="427" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="29.28" y="437.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (74 samples, 0.06%)</title><rect x="552.8" y="683" width="0.9" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="555.81" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (56 samples, 0.05%)</title><rect x="1054.6" y="347" width="0.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1057.59" y="357.5" ></text>
</g>
<g >
<title>exec_execute_message (476 samples, 0.40%)</title><rect x="12.9" y="747" width="5.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="15.88" y="757.5" ></text>
</g>
<g >
<title>VirtualXactLockTableInsert (161 samples, 0.14%)</title><rect x="792.9" y="667" width="1.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="795.90" y="677.5" ></text>
</g>
<g >
<title>kmem_cache_free (76 samples, 0.06%)</title><rect x="402.8" y="203" width="0.9" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="405.81" y="213.5" ></text>
</g>
<g >
<title>RelationBuildDesc (18 samples, 0.02%)</title><rect x="19.0" y="651" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="21.98" y="661.5" ></text>
</g>
<g >
<title>FastPathGrantRelationLock (379 samples, 0.32%)</title><rect x="520.0" y="619" width="4.5" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text  x="523.04" y="629.5" ></text>
</g>
<g >
<title>_bt_first (476 samples, 0.40%)</title><rect x="12.9" y="475" width="5.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="15.88" y="485.5" ></text>
</g>
<g >
<title>AtEOXact_HashTables (18 samples, 0.02%)</title><rect x="1287.1" y="779" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1290.11" y="789.5" ></text>
</g>
<g >
<title>charhashfast (53 samples, 0.04%)</title><rect x="631.9" y="507" width="0.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="634.86" y="517.5" ></text>
</g>
<g >
<title>tomoyo_socket_sendmsg_permission (60 samples, 0.05%)</title><rect x="288.8" y="523" width="0.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="291.78" y="533.5" ></text>
</g>
<g >
<title>exec_simple_query (77 samples, 0.07%)</title><rect x="1101.8" y="731" width="0.9" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="1104.82" y="741.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (17 samples, 0.01%)</title><rect x="24.8" y="747" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="27.82" y="757.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (19 samples, 0.02%)</title><rect x="966.1" y="411" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="969.12" y="421.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (54 samples, 0.05%)</title><rect x="1156.9" y="491" width="0.7" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1159.95" y="501.5" ></text>
</g>
<g >
<title>apparmor_socket_recvmsg (12 samples, 0.01%)</title><rect x="257.9" y="523" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="260.88" y="533.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetLock (48 samples, 0.04%)</title><rect x="1228.3" y="603" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1231.26" y="613.5" ></text>
</g>
<g >
<title>PointerGetDatum (76 samples, 0.06%)</title><rect x="1325.8" y="779" width="0.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1328.83" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (26 samples, 0.02%)</title><rect x="1219.0" y="571" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1222.02" y="581.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (14 samples, 0.01%)</title><rect x="1296.3" y="779" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="1299.33" y="789.5" ></text>
</g>
<g >
<title>pg_class_aclmask (40 samples, 0.03%)</title><rect x="1366.7" y="779" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="1369.66" y="789.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (115 samples, 0.10%)</title><rect x="11.4" y="715" width="1.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="14.45" y="725.5" ></text>
</g>
<g >
<title>ReadBuffer (56 samples, 0.05%)</title><rect x="17.8" y="411" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="20.78" y="421.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (13 samples, 0.01%)</title><rect x="1304.1" y="779" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1307.11" y="789.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (14 samples, 0.01%)</title><rect x="1369.4" y="779" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="1372.42" y="789.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (45 samples, 0.04%)</title><rect x="1264.1" y="619" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1267.13" y="629.5" ></text>
</g>
<g >
<title>ExecInitRangeTable (122 samples, 0.10%)</title><rect x="715.2" y="635" width="1.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="718.25" y="645.5" ></text>
</g>
<g >
<title>SearchCatCache1 (151 samples, 0.13%)</title><rect x="802.9" y="667" width="1.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="805.91" y="677.5" ></text>
</g>
<g >
<title>AcquirePlannerLocks (1,784 samples, 1.51%)</title><rect x="514.7" y="683" width="20.9" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="517.74" y="693.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (16 samples, 0.01%)</title><rect x="196.1" y="443" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="199.11" y="453.5" ></text>
</g>
<g >
<title>tcp_tso_segs (33 samples, 0.03%)</title><rect x="447.9" y="475" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="450.87" y="485.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (48 samples, 0.04%)</title><rect x="802.2" y="651" width="0.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="805.15" y="661.5" ></text>
</g>
<g >
<title>_int_malloc (9 samples, 0.01%)</title><rect x="1385.5" y="779" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1388.50" y="789.5" ></text>
</g>
<g >
<title>TupleDescAttr (14 samples, 0.01%)</title><rect x="610.2" y="539" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="613.23" y="549.5" ></text>
</g>
<g >
<title>__sock_sendmsg (16,079 samples, 13.59%)</title><rect x="285.2" y="555" width="187.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="288.22" y="565.5" >__sock_sendmsg</text>
</g>
<g >
<title>murmurhash32 (18 samples, 0.02%)</title><rect x="1363.4" y="779" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1366.44" y="789.5" ></text>
</g>
<g >
<title>pfree (67 samples, 0.06%)</title><rect x="1097.9" y="699" width="0.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1100.94" y="709.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (10 samples, 0.01%)</title><rect x="19.2" y="619" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="22.21" y="629.5" ></text>
</g>
<g >
<title>lcons (165 samples, 0.14%)</title><rect x="593.0" y="555" width="1.9" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="595.96" y="565.5" ></text>
</g>
<g >
<title>AllocSetFree (44 samples, 0.04%)</title><rect x="1158.9" y="475" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1161.86" y="485.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (42 samples, 0.04%)</title><rect x="1388.9" y="635" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1391.87" y="645.5" ></text>
</g>
<g >
<title>index_getnext_tid (476 samples, 0.40%)</title><rect x="12.9" y="507" width="5.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="15.88" y="517.5" ></text>
</g>
<g >
<title>vfs_write (29 samples, 0.02%)</title><rect x="26.3" y="459" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="29.28" y="469.5" ></text>
</g>
<g >
<title>vma_alloc_folio (10 samples, 0.01%)</title><rect x="1264.2" y="171" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1267.16" y="181.5" ></text>
</g>
<g >
<title>ExecInitFunc (613 samples, 0.52%)</title><rect x="648.8" y="571" width="7.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="651.80" y="581.5" ></text>
</g>
<g >
<title>_bt_binsrch (3,318 samples, 2.81%)</title><rect x="989.6" y="427" width="38.7" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="992.58" y="437.5" >_b..</text>
</g>
<g >
<title>hash_search_with_hash_value (97 samples, 0.08%)</title><rect x="531.4" y="603" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="534.39" y="613.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (25 samples, 0.02%)</title><rect x="407.1" y="203" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="410.13" y="213.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (17 samples, 0.01%)</title><rect x="1045.6" y="363" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1048.61" y="373.5" ></text>
</g>
<g >
<title>LWLockQueueSelf (14 samples, 0.01%)</title><rect x="1219.6" y="587" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="1222.58" y="597.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (32 samples, 0.03%)</title><rect x="1229.6" y="555" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1232.60" y="565.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (141 samples, 0.12%)</title><rect x="467.6" y="475" width="1.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="470.59" y="485.5" ></text>
</g>
<g >
<title>pg_pwritev_with_retry (29 samples, 0.02%)</title><rect x="26.3" y="555" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="29.28" y="565.5" ></text>
</g>
<g >
<title>PreCommit_Portals (6,855 samples, 5.80%)</title><rect x="1118.6" y="667" width="80.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text  x="1121.59" y="677.5" >PreComm..</text>
</g>
<g >
<title>BackendMain (478 samples, 0.40%)</title><rect x="12.9" y="779" width="5.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="15.88" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (46 samples, 0.04%)</title><rect x="1043.6" y="379" width="0.6" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1046.64" y="389.5" ></text>
</g>
<g >
<title>AcquirePlannerLocks (36 samples, 0.03%)</title><rect x="1282.1" y="779" width="0.5" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="1285.13" y="789.5" ></text>
</g>
<g >
<title>Int32GetDatum (9 samples, 0.01%)</title><rect x="1043.7" y="363" width="0.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1046.72" y="373.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (85 samples, 0.07%)</title><rect x="1187.0" y="619" width="1.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1190.01" y="629.5" ></text>
</g>
<g >
<title>AllocSetAlloc (49 samples, 0.04%)</title><rect x="530.3" y="603" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="533.31" y="613.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (11 samples, 0.01%)</title><rect x="1334.4" y="779" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="1337.37" y="789.5" ></text>
</g>
<g >
<title>do_unlinkat (17 samples, 0.01%)</title><rect x="1102.2" y="235" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1105.15" y="245.5" ></text>
</g>
<g >
<title>index_getnext_slot (19 samples, 0.02%)</title><rect x="21.3" y="363" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="24.34" y="373.5" ></text>
</g>
<g >
<title>ExecScanExtended (81 samples, 0.07%)</title><rect x="1386.8" y="587" width="1.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1389.84" y="597.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (46 samples, 0.04%)</title><rect x="1268.5" y="443" width="0.6" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1271.54" y="453.5" ></text>
</g>
<g >
<title>GetTopTransactionIdIfAny (36 samples, 0.03%)</title><rect x="1310.9" y="779" width="0.5" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1313.94" y="789.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (60 samples, 0.05%)</title><rect x="84.1" y="299" width="0.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="87.10" y="309.5" ></text>
</g>
<g >
<title>CopyQueryCompletion (11 samples, 0.01%)</title><rect x="1296.8" y="779" width="0.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1299.75" y="789.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (45 samples, 0.04%)</title><rect x="32.7" y="283" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="35.69" y="293.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (32 samples, 0.03%)</title><rect x="1275.0" y="395" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1278.00" y="405.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (429 samples, 0.36%)</title><rect x="840.1" y="507" width="5.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="843.07" y="517.5" ></text>
</g>
<g >
<title>ReadBuffer (33 samples, 0.03%)</title><rect x="12.4" y="443" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="15.40" y="453.5" ></text>
</g>
<g >
<title>SearchSysCacheAttName (9 samples, 0.01%)</title><rect x="1267.5" y="475" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="1270.45" y="485.5" ></text>
</g>
<g >
<title>internal_flush (17,383 samples, 14.70%)</title><rect x="274.6" y="699" width="202.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="277.65" y="709.5" >internal_flush</text>
</g>
<g >
<title>list_nth_cell (12 samples, 0.01%)</title><rect x="560.1" y="683" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="563.08" y="693.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (77 samples, 0.07%)</title><rect x="1101.8" y="635" width="0.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1104.82" y="645.5" ></text>
</g>
<g >
<title>pgstat_tracks_backend_bktype (9 samples, 0.01%)</title><rect x="898.4" y="299" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="901.45" y="309.5" ></text>
</g>
<g >
<title>ExecScan (81 samples, 0.07%)</title><rect x="1386.8" y="603" width="1.0" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1389.84" y="613.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (357 samples, 0.30%)</title><rect x="254.1" y="539" width="4.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="257.07" y="549.5" ></text>
</g>
<g >
<title>PageGetItem (17 samples, 0.01%)</title><rect x="989.0" y="427" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="992.04" y="437.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (20 samples, 0.02%)</title><rect x="25.8" y="699" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="28.81" y="709.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (54 samples, 0.05%)</title><rect x="23.7" y="731" width="0.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="26.70" y="741.5" ></text>
</g>
<g >
<title>get_timeout_active (87 samples, 0.07%)</title><rect x="1355.7" y="779" width="1.0" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1358.72" y="789.5" ></text>
</g>
<g >
<title>ExecClearTuple (53 samples, 0.04%)</title><rect x="848.8" y="523" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="851.85" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (22 samples, 0.02%)</title><rect x="971.9" y="379" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="974.87" y="389.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (21 samples, 0.02%)</title><rect x="517.9" y="523" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="520.88" y="533.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (20 samples, 0.02%)</title><rect x="22.4" y="347" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="25.41" y="357.5" ></text>
</g>
<g >
<title>native_sched_clock (16 samples, 0.01%)</title><rect x="197.5" y="411" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="200.48" y="421.5" ></text>
</g>
<g >
<title>ExecIndexScan (476 samples, 0.40%)</title><rect x="12.9" y="603" width="5.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="15.88" y="613.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (24 samples, 0.02%)</title><rect x="477.1" y="619" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="480.09" y="629.5" ></text>
</g>
<g >
<title>BackendMain (123 samples, 0.10%)</title><rect x="11.4" y="811" width="1.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="14.45" y="821.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (32 samples, 0.03%)</title><rect x="59.6" y="267" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="62.63" y="277.5" ></text>
</g>
<g >
<title>index_create (597 samples, 0.50%)</title><rect x="1267.6" y="491" width="6.9" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1270.56" y="501.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (13 samples, 0.01%)</title><rect x="680.6" y="507" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="683.60" y="517.5" ></text>
</g>
<g >
<title>ReScanExprContext (34 samples, 0.03%)</title><rect x="1331.6" y="779" width="0.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1334.57" y="789.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (166 samples, 0.14%)</title><rect x="1321.4" y="779" width="1.9" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1324.39" y="789.5" ></text>
</g>
<g >
<title>table_index_fetch_begin (106 samples, 0.09%)</title><rect x="867.6" y="491" width="1.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="870.60" y="501.5" ></text>
</g>
<g >
<title>_bt_doinsert (11 samples, 0.01%)</title><rect x="1274.4" y="379" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1277.37" y="389.5" ></text>
</g>
<g >
<title>exec_describe_portal_message (9 samples, 0.01%)</title><rect x="1352.7" y="779" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1355.71" y="789.5" ></text>
</g>
<g >
<title>ExecShutdownNode_walker (140 samples, 0.12%)</title><rect x="1063.1" y="603" width="1.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1066.11" y="613.5" ></text>
</g>
<g >
<title>FreeSnapshot (101 samples, 0.09%)</title><rect x="554.1" y="699" width="1.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="557.12" y="709.5" ></text>
</g>
<g >
<title>AllocSetDelete (189 samples, 0.16%)</title><rect x="1176.4" y="523" width="2.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1179.44" y="533.5" ></text>
</g>
<g >
<title>sched_clock_cpu (44 samples, 0.04%)</title><rect x="205.1" y="475" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="208.13" y="485.5" ></text>
</g>
<g >
<title>vfs_write (417 samples, 0.35%)</title><rect x="1269.2" y="235" width="4.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1272.17" y="245.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (185 samples, 0.16%)</title><rect x="45.4" y="267" width="2.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="48.38" y="277.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (10 samples, 0.01%)</title><rect x="1346.9" y="779" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1349.89" y="789.5" ></text>
</g>
<g >
<title>btendscan (281 samples, 0.24%)</title><rect x="1160.3" y="507" width="3.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1163.31" y="517.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (10 samples, 0.01%)</title><rect x="622.8" y="507" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="625.78" y="517.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (54 samples, 0.05%)</title><rect x="23.7" y="491" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="26.70" y="501.5" ></text>
</g>
<g >
<title>pgstat_init_relation (15 samples, 0.01%)</title><rect x="687.1" y="539" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="690.14" y="549.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (31 samples, 0.03%)</title><rect x="584.0" y="523" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="587.03" y="533.5" ></text>
</g>
<g >
<title>PortalRunSelect (23,254 samples, 19.66%)</title><rect x="823.3" y="699" width="271.3" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="826.32" y="709.5" >PortalRunSelect</text>
</g>
<g >
<title>exec_stmts (46 samples, 0.04%)</title><rect x="1264.1" y="795" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1267.12" y="805.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (112 samples, 0.09%)</title><rect x="656.6" y="571" width="1.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="659.61" y="581.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (9 samples, 0.01%)</title><rect x="609.5" y="539" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="612.49" y="549.5" ></text>
</g>
<g >
<title>idle_cpu (263 samples, 0.22%)</title><rect x="191.1" y="411" width="3.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="194.13" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (23 samples, 0.02%)</title><rect x="1230.7" y="523" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1233.69" y="533.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (12 samples, 0.01%)</title><rect x="38.9" y="283" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="41.87" y="293.5" ></text>
</g>
<g >
<title>BufMappingPartitionLock (9 samples, 0.01%)</title><rect x="53.0" y="299" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="55.97" y="309.5" ></text>
</g>
<g >
<title>cpuacct_charge (159 samples, 0.13%)</title><rect x="158.0" y="443" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="161.04" y="453.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (788 samples, 0.67%)</title><rect x="1267.3" y="795" width="9.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1270.35" y="805.5" ></text>
</g>
<g >
<title>socket_putmessage (73 samples, 0.06%)</title><rect x="1379.7" y="779" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1382.67" y="789.5" ></text>
</g>
<g >
<title>psi_group_change (397 samples, 0.34%)</title><rect x="199.1" y="475" width="4.6" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="202.10" y="485.5" ></text>
</g>
<g >
<title>raw_local_deliver (86 samples, 0.07%)</title><rect x="333.8" y="267" width="1.0" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="336.79" y="277.5" ></text>
</g>
<g >
<title>tlist_matches_tupdesc (57 samples, 0.05%)</title><rect x="616.5" y="571" width="0.7" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text  x="619.54" y="581.5" ></text>
</g>
<g >
<title>pfree (46 samples, 0.04%)</title><rect x="729.3" y="683" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="732.33" y="693.5" ></text>
</g>
<g >
<title>murmurhash32 (49 samples, 0.04%)</title><rect x="632.6" y="491" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="635.59" y="501.5" ></text>
</g>
<g >
<title>AtEOXact_Buffers (19 samples, 0.02%)</title><rect x="1110.3" y="667" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1113.33" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (20 samples, 0.02%)</title><rect x="832.2" y="443" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="835.22" y="453.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (46 samples, 0.04%)</title><rect x="1264.1" y="651" width="0.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1267.12" y="661.5" ></text>
</g>
<g >
<title>save_fpregs_to_fpstate (134 samples, 0.11%)</title><rect x="210.5" y="603" width="1.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="213.48" y="613.5" ></text>
</g>
<g >
<title>palloc (72 samples, 0.06%)</title><rect x="659.3" y="555" width="0.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="662.30" y="565.5" ></text>
</g>
<g >
<title>get_hash_entry (52 samples, 0.04%)</title><rect x="501.3" y="667" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="504.31" y="677.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (40 samples, 0.03%)</title><rect x="850.2" y="459" width="0.5" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="853.21" y="469.5" ></text>
</g>
<g >
<title>ReScanExprContext (34 samples, 0.03%)</title><rect x="846.9" y="555" width="0.3" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="849.85" y="565.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (77 samples, 0.07%)</title><rect x="1101.8" y="587" width="0.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1104.82" y="597.5" ></text>
</g>
<g >
<title>__check_object_size (40 samples, 0.03%)</title><rect x="299.8" y="507" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="302.79" y="517.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (11 samples, 0.01%)</title><rect x="261.1" y="555" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="264.11" y="565.5" ></text>
</g>
<g >
<title>getTypeIOParam (40 samples, 0.03%)</title><rect x="1354.6" y="779" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="1357.58" y="789.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (16 samples, 0.01%)</title><rect x="592.8" y="555" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="595.76" y="565.5" ></text>
</g>
<g >
<title>ExecIndexScan (15 samples, 0.01%)</title><rect x="1301.8" y="779" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1304.84" y="789.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (21 samples, 0.02%)</title><rect x="1185.1" y="523" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1188.09" y="533.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (124 samples, 0.10%)</title><rect x="1086.0" y="619" width="1.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="1088.99" y="629.5" ></text>
</g>
<g >
<title>pg_qsort (21 samples, 0.02%)</title><rect x="1242.0" y="619" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1245.03" y="629.5" ></text>
</g>
<g >
<title>_bt_getroot (1,947 samples, 1.65%)</title><rect x="29.0" y="443" width="22.7" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="31.96" y="453.5" ></text>
</g>
<g >
<title>smgrDoPendingSyncs (36 samples, 0.03%)</title><rect x="1378.5" y="779" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1381.53" y="789.5" ></text>
</g>
<g >
<title>[[vdso]] (22 samples, 0.02%)</title><rect x="1253.9" y="683" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1256.88" y="693.5" ></text>
</g>
<g >
<title>ReadBuffer (2,848 samples, 2.41%)</title><rect x="51.7" y="411" width="33.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="54.68" y="421.5" >Re..</text>
</g>
<g >
<title>ExecTypeFromTL (1,032 samples, 0.87%)</title><rect x="662.6" y="587" width="12.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="665.62" y="597.5" ></text>
</g>
<g >
<title>murmurhash32 (24 samples, 0.02%)</title><rect x="1079.7" y="491" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1082.73" y="501.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (13 samples, 0.01%)</title><rect x="659.9" y="523" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="662.89" y="533.5" ></text>
</g>
<g >
<title>btinsert (13 samples, 0.01%)</title><rect x="1274.4" y="395" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1277.37" y="405.5" ></text>
</g>
<g >
<title>palloc (79 samples, 0.07%)</title><rect x="269.9" y="667" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="272.87" y="677.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (22 samples, 0.02%)</title><rect x="1168.3" y="507" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1171.29" y="517.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (71 samples, 0.06%)</title><rect x="534.7" y="635" width="0.8" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="537.71" y="645.5" ></text>
</g>
<g >
<title>clear_bhb_loop (148 samples, 0.13%)</title><rect x="215.0" y="619" width="1.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="217.96" y="629.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (13 samples, 0.01%)</title><rect x="652.7" y="523" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="655.75" y="533.5" ></text>
</g>
<g >
<title>_int_free (39 samples, 0.03%)</title><rect x="1178.1" y="459" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1181.14" y="469.5" ></text>
</g>
<g >
<title>dlist_is_empty (11 samples, 0.01%)</title><rect x="1263.1" y="811" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1266.11" y="821.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (26 samples, 0.02%)</title><rect x="1059.2" y="395" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1062.24" y="405.5" ></text>
</g>
<g >
<title>btgettuple (115 samples, 0.10%)</title><rect x="11.4" y="523" width="1.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="14.45" y="533.5" ></text>
</g>
<g >
<title>StartTransactionCommand (3,032 samples, 2.56%)</title><rect x="759.9" y="699" width="35.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="762.87" y="709.5" >St..</text>
</g>
<g >
<title>ScanKeyEntryInitializeWithInfo (56 samples, 0.05%)</title><rect x="916.6" y="443" width="0.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="919.62" y="453.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (9 samples, 0.01%)</title><rect x="20.1" y="667" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="23.12" y="677.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (32 samples, 0.03%)</title><rect x="731.3" y="667" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="734.32" y="677.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (102 samples, 0.09%)</title><rect x="701.9" y="523" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="704.86" y="533.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (27 samples, 0.02%)</title><rect x="859.1" y="443" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="862.09" y="453.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (19,284 samples, 16.30%)</title><rect x="837.7" y="603" width="225.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="840.67" y="613.5" >ExecProcNodeFirst</text>
</g>
<g >
<title>pgstat_clear_backend_activity_snapshot (11 samples, 0.01%)</title><rect x="1115.5" y="635" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1118.53" y="645.5" ></text>
</g>
<g >
<title>fetch_att (47 samples, 0.04%)</title><rect x="1353.4" y="779" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1356.40" y="789.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (275 samples, 0.23%)</title><rect x="738.5" y="667" width="3.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="741.50" y="677.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (428 samples, 0.36%)</title><rect x="369.4" y="139" width="5.0" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="372.40" y="149.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (246 samples, 0.21%)</title><rect x="886.3" y="283" width="2.9" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="889.34" y="293.5" ></text>
</g>
<g >
<title>PostgresMain (123 samples, 0.10%)</title><rect x="11.4" y="795" width="1.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="14.45" y="805.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (74 samples, 0.06%)</title><rect x="708.2" y="523" width="0.8" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="711.16" y="533.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (10 samples, 0.01%)</title><rect x="20.1" y="811" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="23.10" y="821.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (15 samples, 0.01%)</title><rect x="1296.6" y="779" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1299.55" y="789.5" ></text>
</g>
<g >
<title>ReadBuffer (21 samples, 0.02%)</title><rect x="12.2" y="443" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="15.16" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (25 samples, 0.02%)</title><rect x="974.6" y="347" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="977.63" y="357.5" ></text>
</g>
<g >
<title>BackendStartup (478 samples, 0.40%)</title><rect x="12.9" y="811" width="5.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="15.88" y="821.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (20 samples, 0.02%)</title><rect x="907.0" y="411" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="910.02" y="421.5" ></text>
</g>
<g >
<title>_bt_leafbuild (426 samples, 0.36%)</title><rect x="1269.1" y="443" width="4.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1272.07" y="453.5" ></text>
</g>
<g >
<title>int4hashfast (25 samples, 0.02%)</title><rect x="1079.7" y="507" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1082.72" y="517.5" ></text>
</g>
<g >
<title>palloc0 (164 samples, 0.14%)</title><rect x="660.5" y="571" width="1.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="663.48" y="581.5" ></text>
</g>
<g >
<title>ExecInterpExpr (125 samples, 0.11%)</title><rect x="843.6" y="491" width="1.5" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="846.62" y="501.5" ></text>
</g>
<g >
<title>tcp_data_ready (20 samples, 0.02%)</title><rect x="411.2" y="219" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text  x="414.22" y="229.5" ></text>
</g>
<g >
<title>LockRelation (87 samples, 0.07%)</title><rect x="21.7" y="411" width="1.0" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="24.73" y="421.5" ></text>
</g>
<g >
<title>mdextend (418 samples, 0.35%)</title><rect x="1269.2" y="363" width="4.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1272.17" y="373.5" ></text>
</g>
<g >
<title>hash_search (213 samples, 0.18%)</title><rect x="818.2" y="699" width="2.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="821.21" y="709.5" ></text>
</g>
<g >
<title>stmt_requires_parse_analysis (10 samples, 0.01%)</title><rect x="537.6" y="667" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="540.64" y="677.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (307 samples, 0.26%)</title><rect x="79.0" y="267" width="3.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="82.03" y="277.5" ></text>
</g>
<g >
<title>AllocSetFree (36 samples, 0.03%)</title><rect x="1174.2" y="443" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1177.20" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (11 samples, 0.01%)</title><rect x="27.4" y="811" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="30.41" y="821.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (131 samples, 0.11%)</title><rect x="39.1" y="235" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="42.13" y="245.5" ></text>
</g>
<g >
<title>FileWrite (30 samples, 0.03%)</title><rect x="1264.2" y="411" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1267.15" y="421.5" ></text>
</g>
<g >
<title>enable_statement_timeout (22 samples, 0.02%)</title><rect x="795.2" y="699" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="798.24" y="709.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (2,848 samples, 2.41%)</title><rect x="51.7" y="443" width="33.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="54.68" y="453.5" >_b..</text>
</g>
<g >
<title>__GI___libc_free (153 samples, 0.13%)</title><rect x="1161.6" y="459" width="1.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1164.57" y="469.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (9,161 samples, 7.75%)</title><rect x="318.0" y="411" width="106.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="320.97" y="421.5" >__local_bh..</text>
</g>
<g >
<title>CatalogCacheComputeHashValue (42 samples, 0.04%)</title><rect x="1079.5" y="523" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1082.52" y="533.5" ></text>
</g>
<g >
<title>SocketBackend (14,354 samples, 12.14%)</title><rect x="100.7" y="715" width="167.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="103.71" y="725.5" >SocketBackend</text>
</g>
<g >
<title>PortalRun (23,437 samples, 19.82%)</title><rect x="821.3" y="715" width="273.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="824.25" y="725.5" >PortalRun</text>
</g>
<g >
<title>DropRelationAllLocalBuffers (10 samples, 0.01%)</title><rect x="1102.0" y="315" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text  x="1105.01" y="325.5" ></text>
</g>
<g >
<title>int4hashfast (59 samples, 0.05%)</title><rect x="632.5" y="507" width="0.7" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="635.48" y="517.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (18 samples, 0.02%)</title><rect x="516.5" y="603" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="519.47" y="613.5" ></text>
</g>
<g >
<title>_bt_saveitem (31 samples, 0.03%)</title><rect x="981.7" y="411" width="0.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="984.71" y="421.5" ></text>
</g>
<g >
<title>btrescan (66 samples, 0.06%)</title><rect x="1060.8" y="491" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1063.76" y="501.5" ></text>
</g>
<g >
<title>FreeSnapshot (74 samples, 0.06%)</title><rect x="1184.5" y="555" width="0.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1187.47" y="565.5" ></text>
</g>
<g >
<title>LWLockAcquire (618 samples, 0.52%)</title><rect x="538.7" y="683" width="7.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="541.74" y="693.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (17 samples, 0.01%)</title><rect x="313.6" y="443" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="316.55" y="453.5" ></text>
</g>
<g >
<title>__mod_memcg_state (65 samples, 0.05%)</title><rect x="469.9" y="459" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="472.89" y="469.5" ></text>
</g>
<g >
<title>LWLockWaitListLock (12 samples, 0.01%)</title><rect x="696.5" y="507" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="699.46" y="517.5" ></text>
</g>
<g >
<title>index_getnext_slot (323 samples, 0.27%)</title><rect x="833.5" y="523" width="3.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="836.48" y="533.5" ></text>
</g>
<g >
<title>MemoryContextCreate (39 samples, 0.03%)</title><rect x="487.3" y="683" width="0.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="490.27" y="693.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (88 samples, 0.07%)</title><rect x="84.9" y="667" width="1.0" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="87.91" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (34 samples, 0.03%)</title><rect x="633.7" y="507" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="636.69" y="517.5" ></text>
</g>
<g >
<title>list_nth (23 samples, 0.02%)</title><rect x="682.3" y="555" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="685.30" y="565.5" ></text>
</g>
<g >
<title>EndCommand (34 samples, 0.03%)</title><rect x="1299.4" y="779" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1302.41" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (19 samples, 0.02%)</title><rect x="506.8" y="651" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="509.84" y="661.5" ></text>
</g>
<g >
<title>ExecutePlan (81 samples, 0.07%)</title><rect x="1386.8" y="667" width="1.0" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1389.84" y="677.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (19 samples, 0.02%)</title><rect x="1262.9" y="811" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1265.89" y="821.5" ></text>
</g>
<g >
<title>exec_stmts (42 samples, 0.04%)</title><rect x="1388.9" y="683" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1391.87" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (13 samples, 0.01%)</title><rect x="1220.5" y="539" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1223.51" y="549.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (133 samples, 0.11%)</title><rect x="25.1" y="811" width="1.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="28.06" y="821.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (234 samples, 0.20%)</title><rect x="12.9" y="459" width="2.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="15.88" y="469.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (42 samples, 0.04%)</title><rect x="1388.9" y="555" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1391.87" y="565.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (727 samples, 0.61%)</title><rect x="1267.3" y="715" width="8.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1270.35" y="725.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (21 samples, 0.02%)</title><rect x="24.8" y="795" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="27.82" y="805.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (727 samples, 0.61%)</title><rect x="1267.3" y="603" width="8.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1270.35" y="613.5" ></text>
</g>
<g >
<title>MemoryContextReset (17 samples, 0.01%)</title><rect x="1062.0" y="539" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1064.98" y="549.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (21 samples, 0.02%)</title><rect x="1175.6" y="523" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1178.62" y="533.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (46 samples, 0.04%)</title><rect x="1268.5" y="427" width="0.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1271.54" y="437.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10 samples, 0.01%)</title><rect x="1264.2" y="123" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1267.16" y="133.5" ></text>
</g>
<g >
<title>DefineIndex (37 samples, 0.03%)</title><rect x="1264.1" y="571" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1267.13" y="581.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (1,589 samples, 1.34%)</title><rect x="1039.7" y="427" width="18.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="1042.65" y="437.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (21 samples, 0.02%)</title><rect x="1072.6" y="555" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1075.58" y="565.5" ></text>
</g>
<g >
<title>socket_putmessage (108 samples, 0.09%)</title><rect x="755.5" y="699" width="1.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="758.52" y="709.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (45 samples, 0.04%)</title><rect x="1264.1" y="587" width="0.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1267.13" y="597.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (31 samples, 0.03%)</title><rect x="889.4" y="299" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="892.40" y="309.5" ></text>
</g>
<g >
<title>int4eqfast (19 samples, 0.02%)</title><rect x="739.5" y="635" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="742.54" y="645.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (17 samples, 0.01%)</title><rect x="22.4" y="331" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="25.45" y="341.5" ></text>
</g>
<g >
<title>ReadBufferExtended (33 samples, 0.03%)</title><rect x="12.4" y="427" width="0.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="15.40" y="437.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (23 samples, 0.02%)</title><rect x="19.8" y="619" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="22.79" y="629.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (24 samples, 0.02%)</title><rect x="1203.7" y="635" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1206.69" y="645.5" ></text>
</g>
<g >
<title>int4in (15 samples, 0.01%)</title><rect x="1361.3" y="779" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1364.32" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (158 samples, 0.13%)</title><rect x="1056.3" y="347" width="1.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1059.27" y="357.5" ></text>
</g>
<g >
<title>ExecInitResultTypeTL (1,052 samples, 0.89%)</title><rect x="662.4" y="603" width="12.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="665.41" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberTupleDesc (24 samples, 0.02%)</title><rect x="676.6" y="539" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="679.64" y="549.5" ></text>
</g>
<g >
<title>calc_bucket (20 samples, 0.02%)</title><rect x="707.8" y="507" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="710.82" y="517.5" ></text>
</g>
<g >
<title>sock_rfree (94 samples, 0.08%)</title><rect x="250.9" y="507" width="1.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="253.89" y="517.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (41 samples, 0.03%)</title><rect x="1253.7" y="699" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1256.67" y="709.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (362 samples, 0.31%)</title><rect x="1044.2" y="379" width="4.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1047.18" y="389.5" ></text>
</g>
<g >
<title>mem_cgroup_uncharge_skmem (56 samples, 0.05%)</title><rect x="233.4" y="491" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="236.37" y="501.5" ></text>
</g>
<g >
<title>pfree (71 samples, 0.06%)</title><rect x="1184.5" y="539" width="0.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1187.51" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (42 samples, 0.04%)</title><rect x="794.3" y="603" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="797.28" y="613.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (193 samples, 0.16%)</title><rect x="590.5" y="555" width="2.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="593.51" y="565.5" ></text>
</g>
<g >
<title>LockRelationOid (16 samples, 0.01%)</title><rect x="1276.8" y="491" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1279.78" y="501.5" ></text>
</g>
<g >
<title>palloc (80 samples, 0.07%)</title><rect x="604.0" y="491" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="607.00" y="501.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (111 samples, 0.09%)</title><rect x="561.4" y="667" width="1.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="564.35" y="677.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (46 samples, 0.04%)</title><rect x="223.4" y="507" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="226.38" y="517.5" ></text>
</g>
<g >
<title>relation_open (69 samples, 0.06%)</title><rect x="1376.0" y="779" width="0.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1378.98" y="789.5" ></text>
</g>
<g >
<title>BufferAlloc (2,609 samples, 2.21%)</title><rect x="52.5" y="315" width="30.4" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="55.47" y="325.5" >B..</text>
</g>
<g >
<title>exec_stmts (42 samples, 0.04%)</title><rect x="1388.9" y="651" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1391.87" y="661.5" ></text>
</g>
<g >
<title>__GI___libc_free (49 samples, 0.04%)</title><rect x="1178.0" y="475" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1181.02" y="485.5" ></text>
</g>
<g >
<title>expr_setup_walker (151 samples, 0.13%)</title><rect x="606.5" y="491" width="1.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="609.52" y="501.5" ></text>
</g>
<g >
<title>index_getnext_slot (81 samples, 0.07%)</title><rect x="1386.8" y="539" width="1.0" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1389.84" y="549.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (61 samples, 0.05%)</title><rect x="1275.8" y="779" width="0.7" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1278.83" y="789.5" ></text>
</g>
<g >
<title>GetSnapshotDataReuse (23 samples, 0.02%)</title><rect x="538.5" y="683" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="541.47" y="693.5" ></text>
</g>
<g >
<title>_bt_first (16 samples, 0.01%)</title><rect x="1276.2" y="619" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1279.20" y="629.5" ></text>
</g>
<g >
<title>LockAcquireExtended (1,160 samples, 0.98%)</title><rect x="691.4" y="555" width="13.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="694.35" y="565.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (496 samples, 0.42%)</title><rect x="460.7" y="459" width="5.8" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="463.73" y="469.5" ></text>
</g>
<g >
<title>PortalRunMulti (88 samples, 0.07%)</title><rect x="84.9" y="715" width="1.0" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="87.91" y="725.5" ></text>
</g>
<g >
<title>tag_hash (147 samples, 0.12%)</title><rect x="30.9" y="267" width="1.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="33.85" y="277.5" ></text>
</g>
<g >
<title>FetchPortalTargetList (105 samples, 0.09%)</title><rect x="795.8" y="715" width="1.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="798.77" y="725.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (86 samples, 0.07%)</title><rect x="28.0" y="443" width="1.0" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="30.96" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (9 samples, 0.01%)</title><rect x="1365.9" y="779" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1368.91" y="789.5" ></text>
</g>
<g >
<title>hash_bytes (175 samples, 0.15%)</title><rect x="1144.0" y="539" width="2.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1147.00" y="549.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (53 samples, 0.04%)</title><rect x="695.8" y="523" width="0.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="698.83" y="533.5" ></text>
</g>
<g >
<title>ScanPgRelation (16 samples, 0.01%)</title><rect x="1267.9" y="331" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1270.92" y="341.5" ></text>
</g>
<g >
<title>ExecScanFetch (4,881 samples, 4.13%)</title><rect x="28.0" y="555" width="56.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="30.96" y="565.5" >Exec..</text>
</g>
<g >
<title>BufferDescriptorGetBuffer (301 samples, 0.25%)</title><rect x="889.9" y="299" width="3.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="892.92" y="309.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (17 samples, 0.01%)</title><rect x="24.8" y="571" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="27.82" y="581.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (13 samples, 0.01%)</title><rect x="713.8" y="555" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="716.85" y="565.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (42 samples, 0.04%)</title><rect x="763.3" y="571" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="766.34" y="581.5" ></text>
</g>
<g >
<title>hash_initial_lookup (20 samples, 0.02%)</title><rect x="33.0" y="267" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="35.99" y="277.5" ></text>
</g>
<g >
<title>native_sched_clock (13 samples, 0.01%)</title><rect x="194.7" y="443" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="197.75" y="453.5" ></text>
</g>
<g >
<title>MemoryContextReset (10 samples, 0.01%)</title><rect x="1320.8" y="779" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1323.82" y="789.5" ></text>
</g>
<g >
<title>AllocSetAlloc (54 samples, 0.05%)</title><rect x="659.5" y="539" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="662.50" y="549.5" ></text>
</g>
<g >
<title>hash_seq_search (9 samples, 0.01%)</title><rect x="1238.8" y="619" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1241.81" y="629.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (10 samples, 0.01%)</title><rect x="1320.1" y="779" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1323.07" y="789.5" ></text>
</g>
<g >
<title>secure_raw_write (36 samples, 0.03%)</title><rect x="1388.3" y="811" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1391.30" y="821.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (27 samples, 0.02%)</title><rect x="432.2" y="427" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="435.21" y="437.5" ></text>
</g>
<g >
<title>int4in (158 samples, 0.13%)</title><rect x="550.4" y="683" width="1.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="553.43" y="693.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (31 samples, 0.03%)</title><rect x="875.0" y="411" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="878.03" y="421.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (21 samples, 0.02%)</title><rect x="1293.3" y="779" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1296.34" y="789.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (14 samples, 0.01%)</title><rect x="735.1" y="651" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="738.10" y="661.5" ></text>
</g>
<g >
<title>inet_ehashfn (42 samples, 0.04%)</title><rect x="343.5" y="235" width="0.5" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text  x="346.54" y="245.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (10 samples, 0.01%)</title><rect x="803.6" y="635" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="806.58" y="645.5" ></text>
</g>
<g >
<title>AllocSetAlloc (56 samples, 0.05%)</title><rect x="270.1" y="651" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="273.12" y="661.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (9 samples, 0.01%)</title><rect x="20.1" y="651" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="23.12" y="661.5" ></text>
</g>
<g >
<title>pgss_store (2,484 samples, 2.10%)</title><rect x="1124.6" y="587" width="29.0" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="1127.58" y="597.5" >p..</text>
</g>
<g >
<title>deleteObjectsInList (16 samples, 0.01%)</title><rect x="23.5" y="395" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="26.46" y="405.5" ></text>
</g>
<g >
<title>pq_beginmessage_reuse (16 samples, 0.01%)</title><rect x="1373.1" y="779" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1376.06" y="789.5" ></text>
</g>
<g >
<title>ProcessUtility (727 samples, 0.61%)</title><rect x="1267.3" y="571" width="8.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1270.35" y="581.5" ></text>
</g>
<g >
<title>hash_seq_term (36 samples, 0.03%)</title><rect x="1198.1" y="651" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1201.13" y="661.5" ></text>
</g>
<g >
<title>ReleaseSysCache (48 samples, 0.04%)</title><rect x="635.0" y="571" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="638.00" y="581.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberLock (14 samples, 0.01%)</title><rect x="695.6" y="523" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="698.55" y="533.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (27 samples, 0.02%)</title><rect x="440.3" y="443" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="443.25" y="453.5" ></text>
</g>
<g >
<title>hash_search (217 samples, 0.18%)</title><rect x="1186.9" y="635" width="2.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1189.91" y="645.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (24 samples, 0.02%)</title><rect x="656.0" y="571" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="658.95" y="581.5" ></text>
</g>
<g >
<title>SetCurrentStatementStartTimestamp (205 samples, 0.17%)</title><rect x="478.0" y="731" width="2.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="481.02" y="741.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (42 samples, 0.04%)</title><rect x="1077.6" y="539" width="0.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1080.61" y="549.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (88 samples, 0.07%)</title><rect x="84.9" y="619" width="1.0" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="87.91" y="629.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (11 samples, 0.01%)</title><rect x="1356.9" y="779" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1359.88" y="789.5" ></text>
</g>
<g >
<title>dlist_init (13 samples, 0.01%)</title><rect x="791.8" y="635" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="794.78" y="645.5" ></text>
</g>
<g >
<title>IndexNext (115 samples, 0.10%)</title><rect x="11.4" y="571" width="1.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="14.45" y="581.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.01%)</title><rect x="1277.3" y="795" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1280.32" y="805.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (54 samples, 0.05%)</title><rect x="23.7" y="747" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="26.70" y="757.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (30 samples, 0.03%)</title><rect x="24.3" y="555" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="27.33" y="565.5" ></text>
</g>
<g >
<title>CreatePortal (14 samples, 0.01%)</title><rect x="1297.1" y="779" width="0.2" height="15.0" fill="rgb(219,66,16)" rx="2" ry="2" />
<text  x="1300.12" y="789.5" ></text>
</g>
<g >
<title>tag_hash (141 samples, 0.12%)</title><rect x="511.4" y="619" width="1.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="514.41" y="629.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (17 samples, 0.01%)</title><rect x="804.5" y="619" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="807.45" y="629.5" ></text>
</g>
<g >
<title>RemoveRelations (72 samples, 0.06%)</title><rect x="85.0" y="347" width="0.9" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="88.04" y="357.5" ></text>
</g>
<g >
<title>is_log_level_output (15 samples, 0.01%)</title><rect x="736.3" y="683" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="739.28" y="693.5" ></text>
</g>
<g >
<title>hash_bytes (134 samples, 0.11%)</title><rect x="511.5" y="603" width="1.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="514.48" y="613.5" ></text>
</g>
<g >
<title>tcp_options_write (46 samples, 0.04%)</title><rect x="438.4" y="459" width="0.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="441.44" y="469.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (18 samples, 0.02%)</title><rect x="25.3" y="715" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="28.26" y="725.5" ></text>
</g>
<g >
<title>cache_from_obj (14 samples, 0.01%)</title><rect x="420.5" y="331" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="423.50" y="341.5" ></text>
</g>
<g >
<title>pfree (245 samples, 0.21%)</title><rect x="1160.7" y="491" width="2.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1163.73" y="501.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (39 samples, 0.03%)</title><rect x="1159.8" y="491" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1162.81" y="501.5" ></text>
</g>
<g >
<title>ReleaseSysCache (10 samples, 0.01%)</title><rect x="1335.3" y="779" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1338.35" y="789.5" ></text>
</g>
<g >
<title>StartChildProcess (10 samples, 0.01%)</title><rect x="1260.1" y="779" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1263.09" y="789.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (30 samples, 0.03%)</title><rect x="24.3" y="779" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="27.33" y="789.5" ></text>
</g>
<g >
<title>ReadBufferExtended (56 samples, 0.05%)</title><rect x="17.8" y="395" width="0.6" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="20.78" y="405.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (41 samples, 0.03%)</title><rect x="803.7" y="635" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="806.69" y="645.5" ></text>
</g>
<g >
<title>populate_compact_attribute (59 samples, 0.05%)</title><rect x="672.0" y="539" width="0.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="675.01" y="549.5" ></text>
</g>
<g >
<title>getTypeOutputInfo (308 samples, 0.26%)</title><rect x="1076.9" y="587" width="3.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1079.92" y="597.5" ></text>
</g>
<g >
<title>resetStringInfo (14 samples, 0.01%)</title><rect x="1071.5" y="587" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1074.46" y="597.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (151 samples, 0.13%)</title><rect x="697.2" y="475" width="1.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="700.19" y="485.5" ></text>
</g>
<g >
<title>AllocSetAlloc (106 samples, 0.09%)</title><rect x="757.6" y="667" width="1.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="760.59" y="677.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (209 samples, 0.18%)</title><rect x="21.3" y="459" width="2.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="24.26" y="469.5" ></text>
</g>
<g >
<title>AllocSetReset (121 samples, 0.10%)</title><rect x="1066.5" y="571" width="1.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1069.45" y="581.5" ></text>
</g>
<g >
<title>btinsert (13 samples, 0.01%)</title><rect x="1268.1" y="411" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1271.14" y="421.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (23 samples, 0.02%)</title><rect x="19.8" y="635" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="22.79" y="645.5" ></text>
</g>
<g >
<title>fetch_att (43 samples, 0.04%)</title><rect x="854.5" y="347" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="857.46" y="357.5" ></text>
</g>
<g >
<title>bms_copy (117 samples, 0.10%)</title><rect x="716.7" y="635" width="1.4" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="719.68" y="645.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (30 samples, 0.03%)</title><rect x="24.3" y="507" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="27.33" y="517.5" ></text>
</g>
<g >
<title>pq_sendint8 (65 samples, 0.05%)</title><rect x="273.5" y="699" width="0.7" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="276.48" y="709.5" ></text>
</g>
<g >
<title>UnregisterSnapshotNoOwner (135 samples, 0.11%)</title><rect x="1184.2" y="571" width="1.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1187.17" y="581.5" ></text>
</g>
<g >
<title>BufferGetPage (43 samples, 0.04%)</title><rect x="988.4" y="427" width="0.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="991.43" y="437.5" ></text>
</g>
<g >
<title>btint4cmp (175 samples, 0.15%)</title><rect x="945.7" y="395" width="2.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="948.75" y="405.5" ></text>
</g>
<g >
<title>deleteObjectsInList (23 samples, 0.02%)</title><rect x="1263.8" y="379" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1266.79" y="389.5" ></text>
</g>
<g >
<title>DefineRelation (10 samples, 0.01%)</title><rect x="25.7" y="795" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="28.68" y="805.5" ></text>
</g>
<g >
<title>hash_bytes (308 samples, 0.26%)</title><rect x="1223.4" y="555" width="3.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1226.37" y="565.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (20 samples, 0.02%)</title><rect x="25.8" y="715" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="28.81" y="725.5" ></text>
</g>
<g >
<title>GETSTRUCT (13 samples, 0.01%)</title><rect x="634.8" y="571" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="637.77" y="581.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (42 samples, 0.04%)</title><rect x="1388.9" y="763" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1391.87" y="773.5" ></text>
</g>
<g >
<title>exec_toplevel_block (42 samples, 0.04%)</title><rect x="1388.9" y="715" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1391.87" y="725.5" ></text>
</g>
<g >
<title>AtEOXact_LocalBuffers (23 samples, 0.02%)</title><rect x="1287.8" y="779" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1290.80" y="789.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (29 samples, 0.02%)</title><rect x="1316.6" y="779" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1319.56" y="789.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (53 samples, 0.04%)</title><rect x="510.8" y="619" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="513.79" y="629.5" ></text>
</g>
<g >
<title>index_beginscan (1,032 samples, 0.87%)</title><rect x="856.8" y="507" width="12.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="859.79" y="517.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (56 samples, 0.05%)</title><rect x="475.8" y="571" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="478.85" y="581.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (36 samples, 0.03%)</title><rect x="730.8" y="651" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="733.77" y="661.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (77 samples, 0.07%)</title><rect x="1101.8" y="555" width="0.9" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1104.82" y="565.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (18 samples, 0.02%)</title><rect x="1277.1" y="555" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1280.10" y="565.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (54 samples, 0.05%)</title><rect x="23.7" y="699" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="26.70" y="709.5" ></text>
</g>
<g >
<title>ExecScan (16 samples, 0.01%)</title><rect x="1305.7" y="779" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1308.65" y="789.5" ></text>
</g>
<g >
<title>__kfree_skb (635 samples, 0.54%)</title><rect x="389.6" y="203" width="7.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="392.64" y="213.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (170 samples, 0.14%)</title><rect x="161.3" y="443" width="2.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="164.33" y="453.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (58 samples, 0.05%)</title><rect x="858.7" y="475" width="0.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="861.73" y="485.5" ></text>
</g>
<g >
<title>DatumGetCString (15 samples, 0.01%)</title><rect x="1297.7" y="779" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1300.70" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (21 samples, 0.02%)</title><rect x="517.9" y="555" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="520.88" y="565.5" ></text>
</g>
<g >
<title>tag_hash (132 samples, 0.11%)</title><rect x="699.1" y="507" width="1.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="702.08" y="517.5" ></text>
</g>
<g >
<title>LWLockRelease (165 samples, 0.14%)</title><rect x="726.3" y="667" width="2.0" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="729.35" y="677.5" ></text>
</g>
<g >
<title>LockReleaseAll (27 samples, 0.02%)</title><rect x="1318.9" y="779" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1321.92" y="789.5" ></text>
</g>
<g >
<title>CallSyscacheCallbacks (10 samples, 0.01%)</title><rect x="762.7" y="603" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="765.71" y="613.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (24 samples, 0.02%)</title><rect x="691.0" y="491" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="694.02" y="501.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (296 samples, 0.25%)</title><rect x="1269.2" y="155" width="3.5" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1272.20" y="165.5" ></text>
</g>
<g >
<title>PinBufferForBlock (2,837 samples, 2.40%)</title><rect x="51.7" y="331" width="33.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="54.71" y="341.5" >Pi..</text>
</g>
<g >
<title>pgstat_report_xact_timestamp (34 samples, 0.03%)</title><rect x="794.8" y="667" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="797.81" y="677.5" ></text>
</g>
<g >
<title>fetch_att (114 samples, 0.10%)</title><rect x="1027.0" y="379" width="1.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1029.97" y="389.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (34 samples, 0.03%)</title><rect x="1155.6" y="475" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1158.58" y="485.5" ></text>
</g>
<g >
<title>index_endscan (9 samples, 0.01%)</title><rect x="1359.9" y="779" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1362.86" y="789.5" ></text>
</g>
<g >
<title>shmem_alloc_hugefolio (13 samples, 0.01%)</title><rect x="26.3" y="347" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="29.29" y="357.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe.part.0 (20 samples, 0.02%)</title><rect x="407.7" y="203" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="410.70" y="213.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,791 samples, 3.21%)</title><rect x="217.5" y="619" width="44.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="220.51" y="629.5" >ent..</text>
</g>
<g >
<title>CommitTransaction (47 samples, 0.04%)</title><rect x="1101.8" y="379" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1104.82" y="389.5" ></text>
</g>
<g >
<title>murmurhash32 (16 samples, 0.01%)</title><rect x="636.7" y="491" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="639.70" y="501.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (77 samples, 0.07%)</title><rect x="1101.8" y="651" width="0.9" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1104.82" y="661.5" ></text>
</g>
<g >
<title>AllocSetAlloc (55 samples, 0.05%)</title><rect x="604.2" y="475" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="607.24" y="485.5" ></text>
</g>
<g >
<title>smgrdestroyall (42 samples, 0.04%)</title><rect x="1116.3" y="651" width="0.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1119.26" y="661.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (10 samples, 0.01%)</title><rect x="1338.3" y="779" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1341.33" y="789.5" ></text>
</g>
<g >
<title>s_lock (533 samples, 0.45%)</title><rect x="1146.1" y="571" width="6.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1149.10" y="581.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (43 samples, 0.04%)</title><rect x="620.8" y="571" width="0.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="623.75" y="581.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (19 samples, 0.02%)</title><rect x="1317.7" y="779" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1320.72" y="789.5" ></text>
</g>
<g >
<title>choose_custom_plan (12 samples, 0.01%)</title><rect x="1349.5" y="779" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1352.47" y="789.5" ></text>
</g>
<g >
<title>SendRowDescriptionMessage (717 samples, 0.61%)</title><rect x="800.1" y="715" width="8.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="803.05" y="725.5" ></text>
</g>
<g >
<title>__libc_send (36 samples, 0.03%)</title><rect x="1388.3" y="795" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1391.30" y="805.5" ></text>
</g>
<g >
<title>mdzeroextend (29 samples, 0.02%)</title><rect x="26.3" y="603" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="29.28" y="613.5" ></text>
</g>
<g >
<title>pq_writeint32 (49 samples, 0.04%)</title><rect x="807.3" y="699" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="810.27" y="709.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (19 samples, 0.02%)</title><rect x="1076.7" y="555" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1079.68" y="565.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (57 samples, 0.05%)</title><rect x="1253.5" y="715" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1256.49" y="725.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (24 samples, 0.02%)</title><rect x="691.0" y="475" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="694.02" y="485.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (38 samples, 0.03%)</title><rect x="1305.0" y="779" width="0.4" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1307.98" y="789.5" ></text>
</g>
<g >
<title>int4hashfast (20 samples, 0.02%)</title><rect x="636.7" y="507" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="639.66" y="517.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (36 samples, 0.03%)</title><rect x="1329.8" y="779" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1332.79" y="789.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (27 samples, 0.02%)</title><rect x="1277.0" y="603" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1280.00" y="613.5" ></text>
</g>
<g >
<title>list_free_private (64 samples, 0.05%)</title><rect x="1174.0" y="475" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1177.01" y="485.5" ></text>
</g>
<g >
<title>stmt_requires_parse_analysis (15 samples, 0.01%)</title><rect x="1381.5" y="779" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1384.51" y="789.5" ></text>
</g>
<g >
<title>fill_seq_with_data (29 samples, 0.02%)</title><rect x="26.3" y="715" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="29.28" y="725.5" ></text>
</g>
<g >
<title>[[stack]] (8,860 samples, 7.49%)</title><rect x="1281.2" y="795" width="103.4" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1284.24" y="805.5" >[[stack]]</text>
</g>
<g >
<title>hash_search_with_hash_value (83 samples, 0.07%)</title><rect x="797.5" y="683" width="1.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="800.51" y="693.5" ></text>
</g>
<g >
<title>AllocSetAlloc (40 samples, 0.03%)</title><rect x="492.3" y="683" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="495.32" y="693.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (18 samples, 0.02%)</title><rect x="1320.5" y="779" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1323.46" y="789.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (20 samples, 0.02%)</title><rect x="204.7" y="491" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="207.70" y="501.5" ></text>
</g>
<g >
<title>load_balance (2,060 samples, 1.74%)</title><rect x="170.2" y="459" width="24.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="173.18" y="469.5" ></text>
</g>
<g >
<title>_bt_compare (19 samples, 0.02%)</title><rect x="1028.3" y="427" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1031.32" y="437.5" ></text>
</g>
<g >
<title>BufferGetPage (14 samples, 0.01%)</title><rect x="978.4" y="411" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="981.37" y="421.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (39 samples, 0.03%)</title><rect x="631.1" y="523" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="634.14" y="533.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (52 samples, 0.04%)</title><rect x="1155.4" y="491" width="0.6" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1158.37" y="501.5" ></text>
</g>
<g >
<title>_copy_from_iter (83 samples, 0.07%)</title><rect x="448.3" y="507" width="0.9" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="451.26" y="517.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (38 samples, 0.03%)</title><rect x="748.1" y="699" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="751.09" y="709.5" ></text>
</g>
<g >
<title>refill_stock (37 samples, 0.03%)</title><rect x="234.0" y="491" width="0.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="237.02" y="501.5" ></text>
</g>
<g >
<title>pg_client_to_server (28 samples, 0.02%)</title><rect x="1367.1" y="779" width="0.4" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1370.14" y="789.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (3,654 samples, 3.09%)</title><rect x="869.7" y="475" width="42.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="872.71" y="485.5" >tab..</text>
</g>
<g >
<title>llist_add_batch (181 samples, 0.15%)</title><rect x="369.9" y="107" width="2.1" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text  x="372.92" y="117.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (55 samples, 0.05%)</title><rect x="1096.8" y="683" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1099.82" y="693.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (37 samples, 0.03%)</title><rect x="1157.1" y="475" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1160.15" y="485.5" ></text>
</g>
<g >
<title>pg_ltoa (45 samples, 0.04%)</title><rect x="1070.5" y="555" width="0.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1073.50" y="565.5" ></text>
</g>
<g >
<title>InstrAlloc (472 samples, 0.40%)</title><rect x="564.6" y="667" width="5.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="567.56" y="677.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (182 samples, 0.15%)</title><rect x="645.8" y="555" width="2.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="648.85" y="565.5" ></text>
</g>
<g >
<title>_raw_spin_lock (24 samples, 0.02%)</title><rect x="344.0" y="251" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="347.03" y="261.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10 samples, 0.01%)</title><rect x="432.1" y="427" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="435.10" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (28 samples, 0.02%)</title><rect x="690.7" y="459" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="693.69" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (250 samples, 0.21%)</title><rect x="779.2" y="555" width="3.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="782.25" y="565.5" ></text>
</g>
<g >
<title>LockRelationOid (1,657 samples, 1.40%)</title><rect x="516.2" y="651" width="19.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="519.21" y="661.5" ></text>
</g>
<g >
<title>mod_memcg_state (94 samples, 0.08%)</title><rect x="469.6" y="475" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="472.60" y="485.5" ></text>
</g>
<g >
<title>standard_ExecutorStart (12,720 samples, 10.75%)</title><rect x="570.4" y="667" width="148.4" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="573.38" y="677.5" >standard_Execut..</text>
</g>
<g >
<title>PostgresMain (88 samples, 0.07%)</title><rect x="1386.8" y="779" width="1.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1389.84" y="789.5" ></text>
</g>
<g >
<title>index_beginscan (25 samples, 0.02%)</title><rect x="1359.6" y="779" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1362.57" y="789.5" ></text>
</g>
<g >
<title>LWLockRelease (255 samples, 0.22%)</title><rect x="779.2" y="603" width="3.0" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="782.19" y="613.5" ></text>
</g>
<g >
<title>PortalRunMulti (54 samples, 0.05%)</title><rect x="23.7" y="811" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="26.70" y="821.5" ></text>
</g>
<g >
<title>SearchSysCache1 (165 samples, 0.14%)</title><rect x="635.6" y="571" width="1.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="638.58" y="581.5" ></text>
</g>
<g >
<title>AtStart_GUC (17 samples, 0.01%)</title><rect x="1292.4" y="779" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1295.45" y="789.5" ></text>
</g>
<g >
<title>tcp_recvmsg (2,749 samples, 2.32%)</title><rect x="221.7" y="539" width="32.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="224.68" y="549.5" >t..</text>
</g>
<g >
<title>hash_search_with_hash_value (466 samples, 0.39%)</title><rect x="878.9" y="299" width="5.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="881.86" y="309.5" ></text>
</g>
<g >
<title>getTypeIOParam (37 samples, 0.03%)</title><rect x="741.7" y="699" width="0.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="744.75" y="709.5" ></text>
</g>
<g >
<title>GetOldestNonRemovableTransactionId (10 samples, 0.01%)</title><rect x="1274.1" y="395" width="0.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="1277.07" y="405.5" ></text>
</g>
<g >
<title>dlist_init (24 samples, 0.02%)</title><rect x="1113.0" y="635" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1115.97" y="645.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (45 samples, 0.04%)</title><rect x="32.0" y="235" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="35.04" y="245.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (27 samples, 0.02%)</title><rect x="1277.0" y="667" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1280.00" y="677.5" ></text>
</g>
<g >
<title>_bt_search (242 samples, 0.20%)</title><rect x="15.6" y="459" width="2.8" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="18.61" y="469.5" ></text>
</g>
<g >
<title>ExecutePlan (21,833 samples, 18.46%)</title><rect x="827.5" y="635" width="254.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="830.48" y="645.5" >ExecutePlan</text>
</g>
<g >
<title>reportDependentObjects (13 samples, 0.01%)</title><rect x="1275.4" y="459" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1278.40" y="469.5" ></text>
</g>
<g >
<title>btbeginscan (693 samples, 0.59%)</title><rect x="859.5" y="475" width="8.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="862.49" y="485.5" ></text>
</g>
<g >
<title>exec_stmt_block (63 samples, 0.05%)</title><rect x="1263.4" y="603" width="0.7" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1266.38" y="613.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (56 samples, 0.05%)</title><rect x="1307.8" y="779" width="0.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1310.82" y="789.5" ></text>
</g>
<g >
<title>recv@plt (18 samples, 0.02%)</title><rect x="262.4" y="635" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="265.35" y="645.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (88 samples, 0.07%)</title><rect x="84.9" y="651" width="1.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="87.91" y="661.5" ></text>
</g>
<g >
<title>exec_stmt_block (54 samples, 0.05%)</title><rect x="23.7" y="635" width="0.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="26.70" y="645.5" ></text>
</g>
<g >
<title>LWLockAcquire (489 samples, 0.41%)</title><rect x="720.6" y="667" width="5.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="723.63" y="677.5" ></text>
</g>
<g >
<title>hash_initial_lookup (24 samples, 0.02%)</title><rect x="884.0" y="283" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="887.01" y="293.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (51 samples, 0.04%)</title><rect x="164.6" y="491" width="0.6" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="167.56" y="501.5" ></text>
</g>
<g >
<title>PreCommit_CheckForSerializationFailure (12 samples, 0.01%)</title><rect x="1245.7" y="683" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1248.70" y="693.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (14 samples, 0.01%)</title><rect x="651.8" y="523" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="654.79" y="533.5" ></text>
</g>
<g >
<title>__GI_unlink (18 samples, 0.02%)</title><rect x="1102.2" y="299" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1105.15" y="309.5" ></text>
</g>
<g >
<title>ComputeXidHorizons (10 samples, 0.01%)</title><rect x="1274.1" y="379" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1277.07" y="389.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,848 samples, 2.41%)</title><rect x="51.7" y="395" width="33.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="54.68" y="405.5" >Re..</text>
</g>
<g >
<title>plpgsql_inline_handler (88 samples, 0.07%)</title><rect x="84.9" y="587" width="1.0" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="87.91" y="597.5" ></text>
</g>
<g >
<title>enlargeStringInfo (39 samples, 0.03%)</title><rect x="264.9" y="683" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="267.92" y="693.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (63 samples, 0.05%)</title><rect x="1263.4" y="443" width="0.7" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1266.38" y="453.5" ></text>
</g>
<g >
<title>pq_recvbuf (11 samples, 0.01%)</title><rect x="1374.1" y="779" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1377.12" y="789.5" ></text>
</g>
<g >
<title>index_getattr (99 samples, 0.08%)</title><rect x="14.4" y="395" width="1.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="17.35" y="405.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (22 samples, 0.02%)</title><rect x="758.4" y="635" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="761.43" y="645.5" ></text>
</g>
<g >
<title>tcp_poll (269 samples, 0.23%)</title><rect x="135.7" y="507" width="3.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="138.66" y="517.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_dest (9 samples, 0.01%)</title><rect x="372.0" y="123" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="375.03" y="133.5" ></text>
</g>
<g >
<title>LockRelationOid (14 samples, 0.01%)</title><rect x="1318.8" y="779" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1321.76" y="789.5" ></text>
</g>
<g >
<title>CopySnapshot (91 samples, 0.08%)</title><rect x="730.3" y="667" width="1.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="733.25" y="677.5" ></text>
</g>
<g >
<title>clear_page_erms (22 samples, 0.02%)</title><rect x="452.1" y="443" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="455.13" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (25 samples, 0.02%)</title><rect x="833.2" y="443" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="836.15" y="453.5" ></text>
</g>
<g >
<title>socket_flush (17,447 samples, 14.75%)</title><rect x="274.3" y="715" width="203.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="277.26" y="725.5" >socket_flush</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (134 samples, 0.11%)</title><rect x="39.1" y="251" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="42.10" y="261.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberSnapshot (27 samples, 0.02%)</title><rect x="718.5" y="619" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="721.47" y="629.5" ></text>
</g>
<g >
<title>__netif_rx (171 samples, 0.14%)</title><rect x="426.2" y="379" width="2.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="429.23" y="389.5" ></text>
</g>
<g >
<title>_bt_getroot (17 samples, 0.01%)</title><rect x="1346.4" y="779" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1349.42" y="789.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (44 samples, 0.04%)</title><rect x="1260.5" y="667" width="0.5" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1263.53" y="677.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (9 samples, 0.01%)</title><rect x="863.6" y="411" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="866.59" y="421.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (10 samples, 0.01%)</title><rect x="374.3" y="123" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="377.28" y="133.5" ></text>
</g>
<g >
<title>pq_sendbyte (73 samples, 0.06%)</title><rect x="273.4" y="715" width="0.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="276.40" y="725.5" ></text>
</g>
<g >
<title>get_op_opfamily_properties (495 samples, 0.42%)</title><rect x="628.4" y="587" width="5.8" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="631.44" y="597.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (243 samples, 0.21%)</title><rect x="613.4" y="539" width="2.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="616.40" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (26 samples, 0.02%)</title><rect x="889.5" y="283" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="892.45" y="293.5" ></text>
</g>
<g >
<title>DecrTupleDescRefCount (12 samples, 0.01%)</title><rect x="1299.2" y="779" width="0.2" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="1302.24" y="789.5" ></text>
</g>
<g >
<title>deleteOneObject (39 samples, 0.03%)</title><rect x="1275.9" y="699" width="0.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1278.94" y="709.5" ></text>
</g>
<g >
<title>btbuild (30 samples, 0.03%)</title><rect x="1264.2" y="523" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1267.15" y="533.5" ></text>
</g>
<g >
<title>AtEOXact_on_commit_actions (17 samples, 0.01%)</title><rect x="1117.7" y="667" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1120.66" y="677.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (73 samples, 0.06%)</title><rect x="763.3" y="603" width="0.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="766.25" y="613.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (14 samples, 0.01%)</title><rect x="1261.3" y="779" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1264.34" y="789.5" ></text>
</g>
<g >
<title>heap_form_tuple (10 samples, 0.01%)</title><rect x="1266.1" y="763" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1269.06" y="773.5" ></text>
</g>
<g >
<title>__copy_skb_header (23 samples, 0.02%)</title><rect x="435.2" y="443" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="438.16" y="453.5" ></text>
</g>
<g >
<title>ExecShutdownNode (143 samples, 0.12%)</title><rect x="1063.1" y="619" width="1.7" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1066.10" y="629.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (10,973 samples, 9.28%)</title><rect x="306.6" y="459" width="128.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="309.61" y="469.5" >__ip_queue_xmit</text>
</g>
<g >
<title>GetMemoryChunkMethodID (19 samples, 0.02%)</title><rect x="1309.8" y="779" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1312.81" y="789.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (29 samples, 0.02%)</title><rect x="633.2" y="523" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="636.25" y="533.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (40 samples, 0.03%)</title><rect x="704.4" y="491" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="707.40" y="501.5" ></text>
</g>
<g >
<title>palloc (80 samples, 0.07%)</title><rect x="1069.6" y="555" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1072.57" y="565.5" ></text>
</g>
<g >
<title>DefineIndex (52 samples, 0.04%)</title><rect x="25.1" y="795" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="28.07" y="805.5" ></text>
</g>
<g >
<title>DefineRelation (23 samples, 0.02%)</title><rect x="1276.7" y="523" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1279.73" y="533.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (12 samples, 0.01%)</title><rect x="1357.5" y="779" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1360.54" y="789.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (5,491 samples, 4.64%)</title><rect x="141.6" y="539" width="64.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="144.58" y="549.5" >sched..</text>
</g>
<g >
<title>_bt_first (115 samples, 0.10%)</title><rect x="11.4" y="507" width="1.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="14.45" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (149 samples, 0.13%)</title><rect x="546.4" y="651" width="1.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="549.44" y="661.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (43 samples, 0.04%)</title><rect x="1386.0" y="795" width="0.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1389.03" y="805.5" ></text>
</g>
<g >
<title>FileWriteV (418 samples, 0.35%)</title><rect x="1269.2" y="331" width="4.8" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1272.17" y="341.5" ></text>
</g>
<g >
<title>palloc (75 samples, 0.06%)</title><rect x="717.2" y="619" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="720.18" y="629.5" ></text>
</g>
<g >
<title>AllocSetAlloc (97 samples, 0.08%)</title><rect x="1058.6" y="411" width="1.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1061.56" y="421.5" ></text>
</g>
<g >
<title>dlist_move_head (12 samples, 0.01%)</title><rect x="741.6" y="651" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="744.56" y="661.5" ></text>
</g>
<g >
<title>InvalidateCatalogSnapshot (29 samples, 0.02%)</title><rect x="1315.6" y="779" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1318.64" y="789.5" ></text>
</g>
<g >
<title>hash_seq_search (538 samples, 0.45%)</title><rect x="1191.9" y="651" width="6.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1194.86" y="661.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (74 samples, 0.06%)</title><rect x="70.5" y="283" width="0.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="73.50" y="293.5" ></text>
</g>
<g >
<title>AtEOXact_Namespace (34 samples, 0.03%)</title><rect x="1288.8" y="779" width="0.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1291.80" y="789.5" ></text>
</g>
<g >
<title>exec_stmt_block (23 samples, 0.02%)</title><rect x="19.8" y="715" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="22.79" y="725.5" ></text>
</g>
<g >
<title>list_free (64 samples, 0.05%)</title><rect x="1174.0" y="491" width="0.8" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1177.01" y="501.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (35 samples, 0.03%)</title><rect x="668.7" y="491" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="671.71" y="501.5" ></text>
</g>
<g >
<title>ProcessUtility (54 samples, 0.05%)</title><rect x="23.7" y="779" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="26.70" y="789.5" ></text>
</g>
<g >
<title>AtStart_Cache (1,739 samples, 1.47%)</title><rect x="762.1" y="667" width="20.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="765.08" y="677.5" ></text>
</g>
<g >
<title>LockTagHashCode (141 samples, 0.12%)</title><rect x="699.0" y="539" width="1.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="701.97" y="549.5" ></text>
</g>
<g >
<title>pq_sendcountedtext (155 samples, 0.13%)</title><rect x="1072.9" y="603" width="1.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1075.86" y="613.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat (13 samples, 0.01%)</title><rect x="1289.5" y="779" width="0.2" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text  x="1292.53" y="789.5" ></text>
</g>
<g >
<title>PageGetItemId (58 samples, 0.05%)</title><rect x="1021.7" y="395" width="0.7" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1024.73" y="405.5" ></text>
</g>
<g >
<title>exprType (21 samples, 0.02%)</title><rect x="673.8" y="555" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="676.83" y="565.5" ></text>
</g>
<g >
<title>murmurhash32 (35 samples, 0.03%)</title><rect x="740.0" y="619" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="743.02" y="629.5" ></text>
</g>
<g >
<title>pick_next_task_fair (2,792 samples, 2.36%)</title><rect x="165.2" y="491" width="32.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="168.22" y="501.5" >p..</text>
</g>
<g >
<title>__tcp_push_pending_frames (12,684 samples, 10.72%)</title><rect x="300.3" y="507" width="148.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="303.26" y="517.5" >__tcp_push_pend..</text>
</g>
<g >
<title>LockReleaseAll (2,741 samples, 2.32%)</title><rect x="1206.5" y="619" width="31.9" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1209.45" y="629.5" >L..</text>
</g>
<g >
<title>hash_seq_init (134 samples, 0.11%)</title><rect x="1190.3" y="651" width="1.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1193.29" y="661.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (155 samples, 0.13%)</title><rect x="726.5" y="651" width="1.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="729.45" y="661.5" ></text>
</g>
<g >
<title>_raw_write_lock_irq (36 samples, 0.03%)</title><rect x="127.2" y="523" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="130.25" y="533.5" ></text>
</g>
<g >
<title>ExecAssignProjectionInfo (1,091 samples, 0.92%)</title><rect x="600.0" y="571" width="12.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="603.04" y="581.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (13 samples, 0.01%)</title><rect x="1274.4" y="427" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1277.37" y="437.5" ></text>
</g>
<g >
<title>ExecScan (115 samples, 0.10%)</title><rect x="11.4" y="619" width="1.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="14.45" y="629.5" ></text>
</g>
<g >
<title>ExecutorRun (4,881 samples, 4.13%)</title><rect x="28.0" y="699" width="56.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="30.96" y="709.5" >Exec..</text>
</g>
<g >
<title>pg_atomic_write_u32_impl (12 samples, 0.01%)</title><rect x="972.4" y="363" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="975.44" y="373.5" ></text>
</g>
<g >
<title>ExecGetRangeTableRelation (542 samples, 0.46%)</title><rect x="681.3" y="587" width="6.3" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text  x="684.26" y="597.5" ></text>
</g>
<g >
<title>internal_putbytes (71 samples, 0.06%)</title><rect x="817.0" y="683" width="0.9" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="820.03" y="693.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (21 samples, 0.02%)</title><rect x="873.4" y="427" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="876.37" y="437.5" ></text>
</g>
<g >
<title>ResourceOwnerNewParent (10 samples, 0.01%)</title><rect x="1202.9" y="651" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1205.92" y="661.5" ></text>
</g>
<g >
<title>__wrgsbase_inactive (32 samples, 0.03%)</title><rect x="111.2" y="603" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="114.23" y="613.5" ></text>
</g>
<g >
<title>_bt_checkkeys (15 samples, 0.01%)</title><rect x="1345.1" y="779" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1348.09" y="789.5" ></text>
</g>
<g >
<title>get_timeout_active (11 samples, 0.01%)</title><rect x="1095.1" y="699" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1098.13" y="709.5" ></text>
</g>
<g >
<title>schedule (40 samples, 0.03%)</title><rect x="1260.6" y="619" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1263.57" y="629.5" ></text>
</g>
<g >
<title>ProcessUtility (23 samples, 0.02%)</title><rect x="19.8" y="603" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="22.79" y="613.5" ></text>
</g>
<g >
<title>AbortStrongLockAcquire (15 samples, 0.01%)</title><rect x="1206.3" y="603" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1209.28" y="613.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (28 samples, 0.02%)</title><rect x="1325.2" y="779" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1328.24" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (24 samples, 0.02%)</title><rect x="718.5" y="603" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="721.51" y="613.5" ></text>
</g>
<g >
<title>RemoveRelations (47 samples, 0.04%)</title><rect x="1275.0" y="491" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1278.00" y="501.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (358 samples, 0.30%)</title><rect x="630.0" y="539" width="4.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="633.03" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (25 samples, 0.02%)</title><rect x="1230.0" y="539" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1233.05" y="549.5" ></text>
</g>
<g >
<title>ExecInterpExpr (51 samples, 0.04%)</title><rect x="1303.1" y="779" width="0.6" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="1306.07" y="789.5" ></text>
</g>
<g >
<title>BackendMain (88 samples, 0.07%)</title><rect x="1386.8" y="795" width="1.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1389.84" y="805.5" ></text>
</g>
<g >
<title>kfree_skbmem (15 samples, 0.01%)</title><rect x="419.9" y="347" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="422.93" y="357.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (57 samples, 0.05%)</title><rect x="266.4" y="667" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="269.38" y="677.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (30 samples, 0.03%)</title><rect x="24.3" y="715" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="27.33" y="725.5" ></text>
</g>
<g >
<title>ExecGetResultType (11 samples, 0.01%)</title><rect x="584.7" y="635" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="587.73" y="645.5" ></text>
</g>
<g >
<title>_bt_checkkeys (38 samples, 0.03%)</title><rect x="1386.8" y="443" width="0.5" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1389.84" y="453.5" ></text>
</g>
<g >
<title>_bt_compare (20 samples, 0.02%)</title><rect x="964.8" y="443" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="967.82" y="453.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (72 samples, 0.06%)</title><rect x="1226.1" y="539" width="0.9" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1229.13" y="549.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (23 samples, 0.02%)</title><rect x="19.8" y="747" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="22.79" y="757.5" ></text>
</g>
<g >
<title>hash_bytes (88 samples, 0.07%)</title><rect x="1188.4" y="603" width="1.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1191.42" y="613.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (29 samples, 0.02%)</title><rect x="1306.2" y="779" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1309.20" y="789.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (13 samples, 0.01%)</title><rect x="1303.7" y="779" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1306.67" y="789.5" ></text>
</g>
<g >
<title>AllocSetDelete (147 samples, 0.12%)</title><rect x="1120.7" y="603" width="1.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1123.69" y="613.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (24 samples, 0.02%)</title><rect x="815.5" y="683" width="0.3" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="818.49" y="693.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (14 samples, 0.01%)</title><rect x="557.7" y="667" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="560.73" y="677.5" ></text>
</g>
<g >
<title>init_spin_delay (36 samples, 0.03%)</title><rect x="971.5" y="379" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="974.45" y="389.5" ></text>
</g>
<g >
<title>DatumGetPointer (28 samples, 0.02%)</title><rect x="1298.9" y="779" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1301.91" y="789.5" ></text>
</g>
<g >
<title>LWLockRelease (200 samples, 0.17%)</title><rect x="1055.8" y="379" width="2.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1058.83" y="389.5" ></text>
</g>
<g >
<title>InstrAlloc (25 samples, 0.02%)</title><rect x="1314.3" y="779" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="1317.31" y="789.5" ></text>
</g>
<g >
<title>table_slot_callbacks (47 samples, 0.04%)</title><rect x="714.2" y="603" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="717.16" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (17 samples, 0.01%)</title><rect x="1336.7" y="779" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1339.68" y="789.5" ></text>
</g>
<g >
<title>ProcessUtility (21 samples, 0.02%)</title><rect x="24.8" y="811" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="27.82" y="821.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (30 samples, 0.03%)</title><rect x="975.6" y="315" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="978.57" y="325.5" ></text>
</g>
<g >
<title>schedule (5,378 samples, 4.55%)</title><rect x="142.9" y="523" width="62.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="145.90" y="533.5" >sched..</text>
</g>
<g >
<title>standard_ProcessUtility (29 samples, 0.02%)</title><rect x="26.3" y="763" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="29.28" y="773.5" ></text>
</g>
<g >
<title>BufferGetPage (37 samples, 0.03%)</title><rect x="1294.5" y="779" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1297.46" y="789.5" ></text>
</g>
<g >
<title>LWLockRelease (244 samples, 0.21%)</title><rect x="1136.8" y="571" width="2.8" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1139.78" y="581.5" ></text>
</g>
<g >
<title>table_index_fetch_reset (21 samples, 0.02%)</title><rect x="1061.6" y="491" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1064.55" y="501.5" ></text>
</g>
<g >
<title>_bt_lockbuf (186 samples, 0.16%)</title><rect x="15.6" y="411" width="2.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="18.61" y="421.5" ></text>
</g>
<g >
<title>PortalRunUtility (54 samples, 0.05%)</title><rect x="23.7" y="795" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="26.70" y="805.5" ></text>
</g>
<g >
<title>DropRelationsAllBuffers (10 samples, 0.01%)</title><rect x="1102.0" y="331" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1105.01" y="341.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (30 samples, 0.03%)</title><rect x="1043.8" y="363" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1046.83" y="373.5" ></text>
</g>
<g >
<title>AllocSetAlloc (45 samples, 0.04%)</title><rect x="700.8" y="523" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="703.79" y="533.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (60 samples, 0.05%)</title><rect x="112.5" y="603" width="0.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="115.55" y="613.5" ></text>
</g>
<g >
<title>printtup (23 samples, 0.02%)</title><rect x="1374.7" y="779" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1377.69" y="789.5" ></text>
</g>
<g >
<title>ScanPgRelation (12 samples, 0.01%)</title><rect x="1268.8" y="315" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1271.83" y="325.5" ></text>
</g>
<g >
<title>copy_user_short_string (299 samples, 0.25%)</title><rect x="243.9" y="459" width="3.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="246.90" y="469.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (291 samples, 0.25%)</title><rect x="705.6" y="571" width="3.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="708.65" y="581.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (38 samples, 0.03%)</title><rect x="1386.8" y="411" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1389.84" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (21 samples, 0.02%)</title><rect x="833.2" y="427" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="836.20" y="437.5" ></text>
</g>
<g >
<title>message_level_is_interesting (39 samples, 0.03%)</title><rect x="1363.0" y="779" width="0.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1365.99" y="789.5" ></text>
</g>
<g >
<title>RelationBuildDesc (12 samples, 0.01%)</title><rect x="19.2" y="635" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="22.21" y="645.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (13 samples, 0.01%)</title><rect x="716.5" y="587" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="719.51" y="597.5" ></text>
</g>
<g >
<title>index_build (10 samples, 0.01%)</title><rect x="1389.1" y="491" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="1392.05" y="501.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (27 samples, 0.02%)</title><rect x="1089.9" y="539" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1092.88" y="549.5" ></text>
</g>
<g >
<title>deleteOneObject (16 samples, 0.01%)</title><rect x="23.5" y="379" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="26.46" y="389.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (113 samples, 0.10%)</title><rect x="504.3" y="683" width="1.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="507.32" y="693.5" ></text>
</g>
<g >
<title>TupleDescAttr (15 samples, 0.01%)</title><rect x="616.9" y="555" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="619.93" y="565.5" ></text>
</g>
<g >
<title>HeapTupleIsHeapOnly (304 samples, 0.26%)</title><rect x="903.1" y="427" width="3.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="906.11" y="437.5" ></text>
</g>
<g >
<title>heap_create_with_catalog (22 samples, 0.02%)</title><rect x="1274.7" y="491" width="0.3" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="1277.75" y="501.5" ></text>
</g>
<g >
<title>AtEOXact_MultiXact (28 samples, 0.02%)</title><rect x="1288.5" y="779" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="1291.48" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (30 samples, 0.03%)</title><rect x="799.4" y="651" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="802.37" y="661.5" ></text>
</g>
<g >
<title>inet_recvmsg (2,790 samples, 2.36%)</title><rect x="221.2" y="555" width="32.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="224.20" y="565.5" >i..</text>
</g>
<g >
<title>AllocSetAlloc (42 samples, 0.04%)</title><rect x="612.0" y="507" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="614.97" y="517.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (12 samples, 0.01%)</title><rect x="124.4" y="539" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="127.43" y="549.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (38 samples, 0.03%)</title><rect x="534.0" y="571" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="536.97" y="581.5" ></text>
</g>
<g >
<title>check_log_duration (12 samples, 0.01%)</title><rect x="1094.9" y="715" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1097.93" y="725.5" ></text>
</g>
<g >
<title>InstrAlloc@plt (9 samples, 0.01%)</title><rect x="570.1" y="667" width="0.1" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text  x="573.07" y="677.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (30 samples, 0.03%)</title><rect x="1321.0" y="779" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1324.04" y="789.5" ></text>
</g>
<g >
<title>InitPlan (11,950 samples, 10.10%)</title><rect x="578.6" y="651" width="139.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="581.62" y="661.5" >InitPlan</text>
</g>
<g >
<title>pgss_ProcessUtility (63 samples, 0.05%)</title><rect x="1263.4" y="475" width="0.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1266.38" y="485.5" ></text>
</g>
<g >
<title>BufferGetBlock (23 samples, 0.02%)</title><rect x="988.7" y="411" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="991.66" y="421.5" ></text>
</g>
<g >
<title>CleanupTempFiles (46 samples, 0.04%)</title><rect x="1110.7" y="651" width="0.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1113.74" y="661.5" ></text>
</g>
<g >
<title>heap_create_with_catalog (23 samples, 0.02%)</title><rect x="1276.7" y="507" width="0.3" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="1279.73" y="517.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (34 samples, 0.03%)</title><rect x="883.6" y="283" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="886.60" y="293.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (192 samples, 0.16%)</title><rect x="871.0" y="443" width="2.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="873.97" y="453.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (460 samples, 0.39%)</title><rect x="849.7" y="491" width="5.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="852.73" y="501.5" ></text>
</g>
<g >
<title>PortalSetResultFormat (111 samples, 0.09%)</title><rect x="556.6" y="715" width="1.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="559.64" y="725.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (16 samples, 0.01%)</title><rect x="621.1" y="539" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="624.07" y="549.5" ></text>
</g>
<g >
<title>secure_raw_write (17,145 samples, 14.50%)</title><rect x="277.4" y="651" width="200.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="280.43" y="661.5" >secure_raw_write</text>
</g>
<g >
<title>SaveTransactionCharacteristics (19 samples, 0.02%)</title><rect x="1246.1" y="683" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="1249.14" y="693.5" ></text>
</g>
<g >
<title>[unknown]  (32 samples, 0.03%)</title><rect x="1385.0" y="795" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="1388.01" y="805.5" ></text>
</g>
<g >
<title>exec_stmts (77 samples, 0.07%)</title><rect x="1101.8" y="475" width="0.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1104.82" y="485.5" ></text>
</g>
<g >
<title>_bt_getroot (222 samples, 0.19%)</title><rect x="1028.6" y="427" width="2.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1031.55" y="437.5" ></text>
</g>
<g >
<title>exec_toplevel_block (27 samples, 0.02%)</title><rect x="1277.0" y="779" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1280.00" y="789.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (18 samples, 0.02%)</title><rect x="1277.1" y="571" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1280.10" y="581.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (32 samples, 0.03%)</title><rect x="636.5" y="523" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="639.52" y="533.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (20 samples, 0.02%)</title><rect x="740.4" y="651" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="743.43" y="661.5" ></text>
</g>
<g >
<title>hash_seq_term (33 samples, 0.03%)</title><rect x="1197.7" y="635" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1200.75" y="645.5" ></text>
</g>
<g >
<title>postmaster_child_launch (88 samples, 0.07%)</title><rect x="1386.8" y="811" width="1.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1389.84" y="821.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (65 samples, 0.05%)</title><rect x="1218.8" y="587" width="0.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1221.81" y="597.5" ></text>
</g>
<g >
<title>ReadBufferExtended (62 samples, 0.05%)</title><rect x="1042.3" y="379" width="0.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1045.29" y="389.5" ></text>
</g>
<g >
<title>AllocSetAlloc (58 samples, 0.05%)</title><rect x="622.2" y="523" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="625.22" y="533.5" ></text>
</g>
<g >
<title>CreatePortal (1,559 samples, 1.32%)</title><rect x="485.6" y="715" width="18.2" height="15.0" fill="rgb(219,66,16)" rx="2" ry="2" />
<text  x="488.64" y="725.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (13 samples, 0.01%)</title><rect x="923.3" y="395" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="926.32" y="405.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (751 samples, 0.63%)</title><rect x="783.2" y="651" width="8.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="786.17" y="661.5" ></text>
</g>
<g >
<title>hash_search (283 samples, 0.24%)</title><rect x="701.6" y="539" width="3.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="704.58" y="549.5" ></text>
</g>
<g >
<title>_bt_lockbuf (55 samples, 0.05%)</title><rect x="1030.5" y="395" width="0.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1033.49" y="405.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (154 samples, 0.13%)</title><rect x="729.9" y="683" width="1.8" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="732.89" y="693.5" ></text>
</g>
<g >
<title>string_hash (94 samples, 0.08%)</title><rect x="489.2" y="667" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="492.16" y="677.5" ></text>
</g>
<g >
<title>cubictcp_cong_avoid (10 samples, 0.01%)</title><rect x="401.8" y="203" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="404.81" y="213.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (12 samples, 0.01%)</title><rect x="833.0" y="443" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="836.01" y="453.5" ></text>
</g>
<g >
<title>exec_stmts (63 samples, 0.05%)</title><rect x="1263.4" y="587" width="0.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1266.38" y="597.5" ></text>
</g>
<g >
<title>index_getnext_tid (9 samples, 0.01%)</title><rect x="1276.4" y="651" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1279.39" y="661.5" ></text>
</g>
<g >
<title>pq_writeint16 (53 samples, 0.04%)</title><rect x="806.7" y="699" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="809.66" y="709.5" ></text>
</g>
<g >
<title>BufferGetBlock (21 samples, 0.02%)</title><rect x="1294.2" y="779" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1297.16" y="789.5" ></text>
</g>
<g >
<title>palloc0 (154 samples, 0.13%)</title><rect x="610.7" y="523" width="1.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="613.66" y="533.5" ></text>
</g>
<g >
<title>PageGetItemId (32 samples, 0.03%)</title><rect x="961.5" y="411" width="0.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="964.52" y="421.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (20 samples, 0.02%)</title><rect x="583.1" y="523" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="586.08" y="533.5" ></text>
</g>
<g >
<title>RelationClose (77 samples, 0.07%)</title><rect x="1155.1" y="507" width="0.9" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="1158.10" y="517.5" ></text>
</g>
<g >
<title>do_syscall_64 (18 samples, 0.02%)</title><rect x="1102.2" y="267" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1105.15" y="277.5" ></text>
</g>
<g >
<title>FileWriteV (30 samples, 0.03%)</title><rect x="1264.2" y="395" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1267.15" y="405.5" ></text>
</g>
<g >
<title>_SPI_commit (53 samples, 0.04%)</title><rect x="1101.8" y="427" width="0.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1104.82" y="437.5" ></text>
</g>
<g >
<title>finish_xact_command (12,334 samples, 10.43%)</title><rect x="1102.7" y="731" width="143.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1105.71" y="741.5" >finish_xact_com..</text>
</g>
<g >
<title>AtEOXact_Snapshot (21 samples, 0.02%)</title><rect x="1291.3" y="779" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1294.34" y="789.5" ></text>
</g>
<g >
<title>deregister_seq_scan (23 samples, 0.02%)</title><rect x="1198.3" y="635" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1201.29" y="645.5" ></text>
</g>
<g >
<title>fmgr_info (86 samples, 0.07%)</title><rect x="552.7" y="699" width="1.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="555.73" y="709.5" ></text>
</g>
<g >
<title>kmalloc_size_roundup (92 samples, 0.08%)</title><rect x="466.5" y="459" width="1.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="469.52" y="469.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (17 samples, 0.01%)</title><rect x="24.8" y="715" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="27.82" y="725.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (87 samples, 0.07%)</title><rect x="734.3" y="683" width="1.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="737.28" y="693.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (65 samples, 0.05%)</title><rect x="897.8" y="331" width="0.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="900.79" y="341.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (121 samples, 0.10%)</title><rect x="1132.0" y="539" width="1.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1135.01" y="549.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (19 samples, 0.02%)</title><rect x="696.7" y="523" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="699.72" y="533.5" ></text>
</g>
<g >
<title>exec_stmt_block (46 samples, 0.04%)</title><rect x="1264.1" y="811" width="0.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1267.12" y="821.5" ></text>
</g>
<g >
<title>_bt_checkkeys (205 samples, 0.17%)</title><rect x="979.3" y="411" width="2.4" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="982.32" y="421.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (27 samples, 0.02%)</title><rect x="1277.0" y="635" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1280.00" y="645.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (33 samples, 0.03%)</title><rect x="1062.7" y="619" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1065.72" y="629.5" ></text>
</g>
<g >
<title>smgrdestroyall (33 samples, 0.03%)</title><rect x="1379.0" y="779" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1381.97" y="789.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (14 samples, 0.01%)</title><rect x="849.3" y="491" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="852.30" y="501.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (18 samples, 0.02%)</title><rect x="1189.2" y="587" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1192.23" y="597.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (18 samples, 0.02%)</title><rect x="19.0" y="763" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="21.98" y="773.5" ></text>
</g>
<g >
<title>HeapTupleHeaderIsHeapOnly (302 samples, 0.26%)</title><rect x="903.1" y="411" width="3.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="906.14" y="421.5" ></text>
</g>
<g >
<title>gettimeofday@plt (14 samples, 0.01%)</title><rect x="480.2" y="699" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="483.25" y="709.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (166 samples, 0.14%)</title><rect x="684.0" y="507" width="1.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="686.97" y="517.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (42 samples, 0.04%)</title><rect x="1388.9" y="779" width="0.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1391.87" y="789.5" ></text>
</g>
<g >
<title>printtup_prepare_info (15 samples, 0.01%)</title><rect x="1375.2" y="779" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text  x="1378.18" y="789.5" ></text>
</g>
<g >
<title>index_getnext_slot (9 samples, 0.01%)</title><rect x="1276.4" y="667" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1279.39" y="677.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (381 samples, 0.32%)</title><rect x="424.9" y="411" width="4.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="427.87" y="421.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (38 samples, 0.03%)</title><rect x="975.5" y="347" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="978.49" y="357.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (18 samples, 0.02%)</title><rect x="25.3" y="763" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="28.26" y="773.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (34 samples, 0.03%)</title><rect x="893.4" y="299" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="896.43" y="309.5" ></text>
</g>
<g >
<title>skb_release_data (633 samples, 0.54%)</title><rect x="389.7" y="187" width="7.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="392.66" y="197.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (22 samples, 0.02%)</title><rect x="658.4" y="571" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="661.38" y="581.5" ></text>
</g>
<g >
<title>init_spin_delay (19 samples, 0.02%)</title><rect x="1361.0" y="779" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1363.96" y="789.5" ></text>
</g>
<g >
<title>TimestampDifference (21 samples, 0.02%)</title><rect x="1254.2" y="715" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1257.15" y="725.5" ></text>
</g>
<g >
<title>ExecIndexBuildScanKeys (2,137 samples, 1.81%)</title><rect x="617.3" y="603" width="24.9" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="620.28" y="613.5" >E..</text>
</g>
<g >
<title>pgss_ExecutorStart (34 samples, 0.03%)</title><rect x="1370.3" y="779" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1373.28" y="789.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (94 samples, 0.08%)</title><rect x="1179.6" y="571" width="1.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1182.57" y="581.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (54 samples, 0.05%)</title><rect x="23.7" y="763" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="26.70" y="773.5" ></text>
</g>
<g >
<title>smgr_bulk_finish (426 samples, 0.36%)</title><rect x="1269.1" y="411" width="4.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1272.07" y="421.5" ></text>
</g>
<g >
<title>sched_clock_cpu (18 samples, 0.02%)</title><rect x="197.5" y="427" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="200.46" y="437.5" ></text>
</g>
<g >
<title>SIGetDataEntries (179 samples, 0.15%)</title><rect x="689.2" y="523" width="2.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="692.22" y="533.5" ></text>
</g>
<g >
<title>IOContextForStrategy (9 samples, 0.01%)</title><rect x="29.4" y="331" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="32.36" y="341.5" ></text>
</g>
<g >
<title>LWLockRelease (85 samples, 0.07%)</title><rect x="793.8" y="651" width="1.0" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="796.79" y="661.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (13 samples, 0.01%)</title><rect x="806.2" y="651" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="809.15" y="661.5" ></text>
</g>
<g >
<title>dclist_init (10 samples, 0.01%)</title><rect x="1349.6" y="779" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1352.61" y="789.5" ></text>
</g>
<g >
<title>pq_getmessage (442 samples, 0.37%)</title><rect x="262.8" y="699" width="5.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="265.83" y="709.5" ></text>
</g>
<g >
<title>LWLockRelease (205 samples, 0.17%)</title><rect x="546.0" y="683" width="2.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="549.00" y="693.5" ></text>
</g>
<g >
<title>IndexScanEnd (112 samples, 0.09%)</title><rect x="1158.3" y="507" width="1.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1161.32" y="517.5" ></text>
</g>
<g >
<title>_bt_getbuf (1,947 samples, 1.65%)</title><rect x="29.0" y="427" width="22.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="31.96" y="437.5" ></text>
</g>
<g >
<title>AllocSetAlloc (75 samples, 0.06%)</title><rect x="1099.4" y="667" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1102.44" y="677.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (99 samples, 0.08%)</title><rect x="646.8" y="507" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="649.78" y="517.5" ></text>
</g>
<g >
<title>ReadBufferExtended (32 samples, 0.03%)</title><rect x="1029.8" y="379" width="0.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1032.76" y="389.5" ></text>
</g>
<g >
<title>BufferGetPage (22 samples, 0.02%)</title><rect x="1048.7" y="395" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1051.74" y="405.5" ></text>
</g>
<g >
<title>exec_stmts (30 samples, 0.03%)</title><rect x="24.3" y="603" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="27.33" y="613.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (16 samples, 0.01%)</title><rect x="1358.9" y="779" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1361.87" y="789.5" ></text>
</g>
<g >
<title>__get_user_8 (65 samples, 0.05%)</title><rect x="207.6" y="523" width="0.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="210.62" y="533.5" ></text>
</g>
<g >
<title>AllocSetAlloc (65 samples, 0.05%)</title><rect x="863.0" y="427" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="866.05" y="437.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (20 samples, 0.02%)</title><rect x="804.4" y="635" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="807.42" y="645.5" ></text>
</g>
<g >
<title>object_aclcheck (39 samples, 0.03%)</title><rect x="653.0" y="555" width="0.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="655.99" y="565.5" ></text>
</g>
<g >
<title>check_stack_depth (34 samples, 0.03%)</title><rect x="1349.1" y="779" width="0.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1352.07" y="789.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (233 samples, 0.20%)</title><rect x="1068.3" y="587" width="2.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1071.34" y="597.5" ></text>
</g>
<g >
<title>__calc_delta (54 samples, 0.05%)</title><rect x="157.2" y="443" width="0.6" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="160.19" y="453.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (23 samples, 0.02%)</title><rect x="19.8" y="587" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="22.79" y="597.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (23 samples, 0.02%)</title><rect x="19.8" y="779" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="22.79" y="789.5" ></text>
</g>
<g >
<title>_bt_leafbuild (30 samples, 0.03%)</title><rect x="1264.2" y="507" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1267.15" y="517.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (20 samples, 0.02%)</title><rect x="25.8" y="603" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="28.81" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (256 samples, 0.22%)</title><rect x="723.3" y="619" width="3.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="726.34" y="629.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (10 samples, 0.01%)</title><rect x="1264.2" y="219" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1267.16" y="229.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (38 samples, 0.03%)</title><rect x="17.3" y="331" width="0.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="20.34" y="341.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (32 samples, 0.03%)</title><rect x="1275.0" y="411" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1278.00" y="421.5" ></text>
</g>
<g >
<title>AllocSetAlloc (51 samples, 0.04%)</title><rect x="1069.9" y="539" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1072.90" y="549.5" ></text>
</g>
<g >
<title>_bt_checkkeys (234 samples, 0.20%)</title><rect x="12.9" y="427" width="2.7" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="15.88" y="437.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (169 samples, 0.14%)</title><rect x="1176.7" y="507" width="1.9" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1179.67" y="517.5" ></text>
</g>
<g >
<title>ep_done_scan (102 samples, 0.09%)</title><rect x="126.6" y="539" width="1.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="129.57" y="549.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (32 samples, 0.03%)</title><rect x="1309.1" y="779" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1312.08" y="789.5" ></text>
</g>
<g >
<title>GetUserIdAndSecContext (12 samples, 0.01%)</title><rect x="792.1" y="667" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="795.14" y="677.5" ></text>
</g>
<g >
<title>PinBufferForBlock (1,903 samples, 1.61%)</title><rect x="29.5" y="331" width="22.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="32.46" y="341.5" ></text>
</g>
<g >
<title>string_hash (123 samples, 0.10%)</title><rect x="505.6" y="683" width="1.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="508.64" y="693.5" ></text>
</g>
<g >
<title>ExecReScanIndexScan (701 samples, 0.59%)</title><rect x="838.6" y="555" width="8.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="841.64" y="565.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (3,622 samples, 3.06%)</title><rect x="870.1" y="459" width="42.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="873.08" y="469.5" >hea..</text>
</g>
<g >
<title>HistoricSnapshotActive (31 samples, 0.03%)</title><rect x="1312.5" y="779" width="0.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1315.53" y="789.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (13 samples, 0.01%)</title><rect x="974.3" y="347" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="977.30" y="357.5" ></text>
</g>
<g >
<title>__sigsetjmp@plt (17 samples, 0.01%)</title><rect x="825.7" y="651" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="828.65" y="661.5" ></text>
</g>
<g >
<title>socket_set_nonblocking (12 samples, 0.01%)</title><rect x="262.6" y="667" width="0.1" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="265.56" y="677.5" ></text>
</g>
<g >
<title>exec_toplevel_block (63 samples, 0.05%)</title><rect x="1263.4" y="619" width="0.7" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1266.38" y="629.5" ></text>
</g>
<g >
<title>exec_toplevel_block (209 samples, 0.18%)</title><rect x="21.3" y="635" width="2.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="24.26" y="645.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (24 samples, 0.02%)</title><rect x="691.0" y="443" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="694.02" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (26 samples, 0.02%)</title><rect x="973.6" y="347" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="976.56" y="357.5" ></text>
</g>
<g >
<title>AtEOXact_TypeCache (23 samples, 0.02%)</title><rect x="1117.4" y="667" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1120.39" y="677.5" ></text>
</g>
<g >
<title>index_getnext_slot (115 samples, 0.10%)</title><rect x="11.4" y="555" width="1.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="14.45" y="565.5" ></text>
</g>
<g >
<title>ip_local_out (84 samples, 0.07%)</title><rect x="432.5" y="443" width="1.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="435.53" y="453.5" ></text>
</g>
<g >
<title>RelationReloadIndexInfo (18 samples, 0.02%)</title><rect x="1265.6" y="699" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="1268.60" y="709.5" ></text>
</g>
<g >
<title>ReportChangedGUCOptions (12 samples, 0.01%)</title><rect x="477.9" y="731" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="480.87" y="741.5" ></text>
</g>
<g >
<title>AtEOXact_Files (20 samples, 0.02%)</title><rect x="1286.6" y="779" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1289.56" y="789.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (727 samples, 0.61%)</title><rect x="1267.3" y="539" width="8.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1270.35" y="549.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (88 samples, 0.07%)</title><rect x="84.9" y="411" width="1.0" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="87.91" y="421.5" ></text>
</g>
<g >
<title>BackendMain (100,632 samples, 85.08%)</title><rect x="85.9" y="763" width="1174.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="88.93" y="773.5" >BackendMain</text>
</g>
<g >
<title>copy_user_enhanced_fast_string (22 samples, 0.02%)</title><rect x="243.6" y="459" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="246.65" y="469.5" ></text>
</g>
<g >
<title>DefineIndex (35 samples, 0.03%)</title><rect x="19.0" y="811" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="21.98" y="821.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (196 samples, 0.17%)</title><rect x="1098.8" y="699" width="2.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1101.84" y="709.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (19 samples, 0.02%)</title><rect x="1319.9" y="779" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1322.85" y="789.5" ></text>
</g>
<g >
<title>__sk_mem_reduce_allocated (113 samples, 0.10%)</title><rect x="233.1" y="507" width="1.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="236.14" y="517.5" ></text>
</g>
<g >
<title>_GLOBAL_OFFSET_TABLE_ (19 samples, 0.02%)</title><rect x="1385.4" y="795" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1388.38" y="805.5" ></text>
</g>
<g >
<title>palloc0 (13 samples, 0.01%)</title><rect x="1266.7" y="811" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1269.71" y="821.5" ></text>
</g>
<g >
<title>LWLockAcquire (58 samples, 0.05%)</title><rect x="874.1" y="427" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="877.07" y="437.5" ></text>
</g>
<g >
<title>systable_getnext (9 samples, 0.01%)</title><rect x="25.3" y="603" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="28.27" y="613.5" ></text>
</g>
<g >
<title>_raw_write_unlock_irq (40 samples, 0.03%)</title><rect x="126.1" y="539" width="0.5" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="129.09" y="549.5" ></text>
</g>
<g >
<title>start_xact_command (3,059 samples, 2.59%)</title><rect x="759.8" y="715" width="35.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="762.81" y="725.5" >st..</text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (11 samples, 0.01%)</title><rect x="734.2" y="667" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="737.15" y="677.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,126 samples, 8.56%)</title><rect x="314.4" y="443" width="118.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="317.38" y="453.5" >ip_finish_ou..</text>
</g>
<g >
<title>AtEOXact_LogicalRepWorkers (18 samples, 0.02%)</title><rect x="1112.2" y="667" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="1115.24" y="677.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (12 samples, 0.01%)</title><rect x="758.7" y="651" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="761.69" y="661.5" ></text>
</g>
<g >
<title>ReleaseCatCache (64 samples, 0.05%)</title><rect x="666.8" y="523" width="0.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="669.77" y="533.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.01%)</title><rect x="1220.3" y="507" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1223.33" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (33 samples, 0.03%)</title><rect x="975.5" y="331" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="978.54" y="341.5" ></text>
</g>
<g >
<title>ip_output (96 samples, 0.08%)</title><rect x="433.5" y="443" width="1.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="436.51" y="453.5" ></text>
</g>
<g >
<title>sk_free (9 samples, 0.01%)</title><rect x="428.5" y="379" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="431.47" y="389.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (30 samples, 0.03%)</title><rect x="898.2" y="315" width="0.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="901.20" y="325.5" ></text>
</g>
<g >
<title>__strlen_evex (23 samples, 0.02%)</title><rect x="1257.3" y="715" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1260.26" y="725.5" ></text>
</g>
<g >
<title>PreCommit_Notify (10 samples, 0.01%)</title><rect x="1245.8" y="683" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1248.84" y="693.5" ></text>
</g>
<g >
<title>kfree_skbmem (74 samples, 0.06%)</title><rect x="401.9" y="203" width="0.9" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="404.95" y="213.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (66 samples, 0.06%)</title><rect x="1342.8" y="779" width="0.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1345.83" y="789.5" ></text>
</g>
<g >
<title>send@plt (9 samples, 0.01%)</title><rect x="477.4" y="635" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="480.37" y="645.5" ></text>
</g>
<g >
<title>index_create (9 samples, 0.01%)</title><rect x="24.8" y="475" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="27.84" y="485.5" ></text>
</g>
<g >
<title>shmem_write_begin (10 samples, 0.01%)</title><rect x="1264.2" y="235" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1267.16" y="245.5" ></text>
</g>
<g >
<title>palloc0 (208 samples, 0.18%)</title><rect x="653.5" y="555" width="2.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="656.53" y="565.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (9 samples, 0.01%)</title><rect x="20.1" y="619" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="23.12" y="629.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (17 samples, 0.01%)</title><rect x="676.7" y="523" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="679.72" y="533.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (9 samples, 0.01%)</title><rect x="20.1" y="603" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="23.12" y="613.5" ></text>
</g>
<g >
<title>__strlen_evex (24 samples, 0.02%)</title><rect x="752.8" y="699" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="755.83" y="709.5" ></text>
</g>
<g >
<title>tcp_check_space (111 samples, 0.09%)</title><rect x="441.2" y="475" width="1.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="444.20" y="485.5" ></text>
</g>
<g >
<title>FetchStatementTargetList (28 samples, 0.02%)</title><rect x="795.9" y="699" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="798.93" y="709.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (62 samples, 0.05%)</title><rect x="516.9" y="539" width="0.8" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="519.94" y="549.5" ></text>
</g>
<g >
<title>RegisterSnapshot (49 samples, 0.04%)</title><rect x="718.2" y="651" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="721.21" y="661.5" ></text>
</g>
<g >
<title>RemoveRelations (49 samples, 0.04%)</title><rect x="1275.9" y="747" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1278.94" y="757.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (13 samples, 0.01%)</title><rect x="1261.4" y="683" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1264.35" y="693.5" ></text>
</g>
<g >
<title>ip_skb_dst_mtu (76 samples, 0.06%)</title><rect x="308.7" y="427" width="0.9" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text  x="311.72" y="437.5" ></text>
</g>
<g >
<title>ExecSetExecProcNode (19 samples, 0.02%)</title><rect x="714.8" y="619" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="717.83" y="629.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (105 samples, 0.09%)</title><rect x="1121.2" y="587" width="1.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1124.19" y="597.5" ></text>
</g>
<g >
<title>tag_hash (176 samples, 0.15%)</title><rect x="1144.0" y="555" width="2.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1146.98" y="565.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (13 samples, 0.01%)</title><rect x="907.4" y="411" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="910.36" y="421.5" ></text>
</g>
<g >
<title>dlist_is_empty (10 samples, 0.01%)</title><rect x="1242.3" y="635" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1245.27" y="645.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (10 samples, 0.01%)</title><rect x="25.3" y="619" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="28.26" y="629.5" ></text>
</g>
<g >
<title>should_output_to_server (21 samples, 0.02%)</title><rect x="736.2" y="699" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="739.21" y="709.5" ></text>
</g>
<g >
<title>IncrTupleDescRefCount (27 samples, 0.02%)</title><rect x="676.6" y="555" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="679.61" y="565.5" ></text>
</g>
<g >
<title>tcp_queue_rcv (135 samples, 0.11%)</title><rect x="413.2" y="219" width="1.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="416.23" y="229.5" ></text>
</g>
<g >
<title>DefineIndex (14 samples, 0.01%)</title><rect x="1277.1" y="523" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1280.13" y="533.5" ></text>
</g>
<g >
<title>ExecInitNode (21 samples, 0.02%)</title><rect x="1302.4" y="779" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1305.40" y="789.5" ></text>
</g>
<g >
<title>tcp_update_skb_after_send (99 samples, 0.08%)</title><rect x="439.4" y="459" width="1.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="442.41" y="469.5" ></text>
</g>
<g >
<title>update_cfs_group (58 samples, 0.05%)</title><rect x="154.5" y="459" width="0.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="157.53" y="469.5" ></text>
</g>
<g >
<title>pg_ultoa_n (27 samples, 0.02%)</title><rect x="1369.1" y="779" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1372.10" y="789.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (11 samples, 0.01%)</title><rect x="717.9" y="587" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="720.91" y="597.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (18 samples, 0.02%)</title><rect x="19.0" y="779" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="21.98" y="789.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (20 samples, 0.02%)</title><rect x="1319.3" y="779" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1322.29" y="789.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (27 samples, 0.02%)</title><rect x="1300.3" y="779" width="0.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1303.34" y="789.5" ></text>
</g>
<g >
<title>smgrextend (418 samples, 0.35%)</title><rect x="1269.2" y="379" width="4.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1272.17" y="389.5" ></text>
</g>
<g >
<title>__schedule (40 samples, 0.03%)</title><rect x="1260.6" y="603" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1263.57" y="613.5" ></text>
</g>
<g >
<title>hash_bytes (147 samples, 0.12%)</title><rect x="30.9" y="251" width="1.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="33.85" y="261.5" ></text>
</g>
<g >
<title>index_build (31 samples, 0.03%)</title><rect x="1264.2" y="539" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="1267.15" y="549.5" ></text>
</g>
<g >
<title>napi_consume_skb (355 samples, 0.30%)</title><rect x="420.7" y="347" width="4.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="423.66" y="357.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (53 samples, 0.04%)</title><rect x="448.6" y="491" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="451.58" y="501.5" ></text>
</g>
<g >
<title>index_getnext_slot (476 samples, 0.40%)</title><rect x="12.9" y="523" width="5.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="15.88" y="533.5" ></text>
</g>
<g >
<title>__alloc_pages (13 samples, 0.01%)</title><rect x="26.3" y="299" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="29.29" y="309.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (13 samples, 0.01%)</title><rect x="1261.4" y="699" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1264.35" y="709.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (38 samples, 0.03%)</title><rect x="17.3" y="347" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="20.34" y="357.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (201 samples, 0.17%)</title><rect x="1120.4" y="619" width="2.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1123.44" y="629.5" ></text>
</g>
<g >
<title>index_create (29 samples, 0.02%)</title><rect x="23.8" y="443" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="26.80" y="453.5" ></text>
</g>
<g >
<title>ExecScanExtended (697 samples, 0.59%)</title><rect x="829.5" y="571" width="8.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="832.47" y="581.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (61 samples, 0.05%)</title><rect x="794.1" y="635" width="0.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="797.05" y="645.5" ></text>
</g>
<g >
<title>aa_sk_perm (116 samples, 0.10%)</title><rect x="287.2" y="523" width="1.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="290.24" y="533.5" ></text>
</g>
<g >
<title>__x64_sys_pwrite64 (417 samples, 0.35%)</title><rect x="1269.2" y="251" width="4.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1272.17" y="261.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (21 samples, 0.02%)</title><rect x="517.9" y="571" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="520.88" y="581.5" ></text>
</g>
<g >
<title>s_lock (13 samples, 0.01%)</title><rect x="1377.1" y="779" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1380.06" y="789.5" ></text>
</g>
<g >
<title>tcp_current_mss (151 samples, 0.13%)</title><rect x="454.7" y="491" width="1.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="457.67" y="501.5" ></text>
</g>
<g >
<title>newNode (331 samples, 0.28%)</title><rect x="574.7" y="635" width="3.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="577.71" y="645.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (9 samples, 0.01%)</title><rect x="261.7" y="619" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="264.74" y="629.5" ></text>
</g>
<g >
<title>int4out (156 samples, 0.13%)</title><rect x="1069.2" y="571" width="1.9" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1072.24" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (17 samples, 0.01%)</title><rect x="1220.5" y="555" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1223.47" y="565.5" ></text>
</g>
<g >
<title>bpf_lsm_socket_recvmsg (11 samples, 0.01%)</title><rect x="258.0" y="523" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text  x="261.02" y="533.5" ></text>
</g>
<g >
<title>initStringInfo (467 samples, 0.39%)</title><rect x="1246.9" y="731" width="5.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1249.89" y="741.5" ></text>
</g>
<g >
<title>tag_hash (162 samples, 0.14%)</title><rect x="532.5" y="603" width="1.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="535.52" y="613.5" ></text>
</g>
<g >
<title>errstart (64 samples, 0.05%)</title><rect x="735.7" y="715" width="0.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="738.70" y="725.5" ></text>
</g>
<g >
<title>fmgr_info (12 samples, 0.01%)</title><rect x="1354.3" y="779" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1357.31" y="789.5" ></text>
</g>
<g >
<title>deleteOneObject (32 samples, 0.03%)</title><rect x="1275.0" y="443" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1278.00" y="453.5" ></text>
</g>
<g >
<title>ProcessUtility (14 samples, 0.01%)</title><rect x="1261.3" y="795" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1264.34" y="805.5" ></text>
</g>
<g >
<title>RelationBuildDesc (42 samples, 0.04%)</title><rect x="1267.6" y="347" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1270.62" y="357.5" ></text>
</g>
<g >
<title>pick_next_task_idle (9 samples, 0.01%)</title><rect x="197.8" y="491" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="200.79" y="501.5" ></text>
</g>
<g >
<title>RelationBuildDesc (20 samples, 0.02%)</title><rect x="25.8" y="587" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="28.81" y="597.5" ></text>
</g>
<g >
<title>try_charge_memcg (75 samples, 0.06%)</title><rect x="470.7" y="475" width="0.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="473.69" y="485.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (26 samples, 0.02%)</title><rect x="1018.8" y="395" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1021.85" y="405.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (119 samples, 0.10%)</title><rect x="1132.0" y="523" width="1.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1135.04" y="533.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (31 samples, 0.03%)</title><rect x="289.9" y="523" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="292.88" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (21 samples, 0.02%)</title><rect x="517.9" y="539" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="520.88" y="549.5" ></text>
</g>
<g >
<title>pfree (54 samples, 0.05%)</title><rect x="1202.3" y="635" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1205.29" y="645.5" ></text>
</g>
<g >
<title>palloc0 (200 samples, 0.17%)</title><rect x="677.0" y="555" width="2.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="679.99" y="565.5" ></text>
</g>
<g >
<title>IsTransactionStmtList (34 samples, 0.03%)</title><rect x="820.8" y="715" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="823.83" y="725.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (30 samples, 0.03%)</title><rect x="24.3" y="683" width="0.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="27.33" y="693.5" ></text>
</g>
<g >
<title>scanner_isspace (17 samples, 0.01%)</title><rect x="1131.2" y="555" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1134.24" y="565.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTuple (9 samples, 0.01%)</title><rect x="1265.9" y="795" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1268.95" y="805.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (17 samples, 0.01%)</title><rect x="24.8" y="731" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="27.82" y="741.5" ></text>
</g>
<g >
<title>_bt_check_compare (38 samples, 0.03%)</title><rect x="1386.8" y="427" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1389.84" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (151 samples, 0.13%)</title><rect x="726.5" y="619" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="729.50" y="629.5" ></text>
</g>
<g >
<title>exec_toplevel_block (30 samples, 0.03%)</title><rect x="24.3" y="667" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="27.33" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberLock (14 samples, 0.01%)</title><rect x="524.8" y="603" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="527.76" y="613.5" ></text>
</g>
<g >
<title>__raise_softirq_irqoff (11 samples, 0.01%)</title><rect x="427.5" y="331" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="430.46" y="341.5" ></text>
</g>
<g >
<title>index_fetch_heap (18 samples, 0.02%)</title><rect x="21.3" y="347" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="24.34" y="357.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,947 samples, 1.65%)</title><rect x="29.0" y="379" width="22.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="31.96" y="389.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (17 samples, 0.01%)</title><rect x="24.8" y="763" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="27.82" y="773.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (27 samples, 0.02%)</title><rect x="1323.3" y="779" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1326.33" y="789.5" ></text>
</g>
<g >
<title>check_stack_depth (13 samples, 0.01%)</title><rect x="656.2" y="571" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="659.23" y="581.5" ></text>
</g>
<g >
<title>find_busiest_group (29 samples, 0.02%)</title><rect x="1260.7" y="539" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="1263.66" y="549.5" ></text>
</g>
<g >
<title>palloc (323 samples, 0.27%)</title><rect x="863.8" y="459" width="3.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="866.80" y="469.5" ></text>
</g>
<g >
<title>decimalLength64 (62 samples, 0.05%)</title><rect x="816.2" y="667" width="0.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="819.19" y="677.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (27 samples, 0.02%)</title><rect x="47.6" y="267" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="50.57" y="277.5" ></text>
</g>
<g >
<title>ExecConditionalAssignProjectionInfo (1,517 samples, 1.28%)</title><rect x="599.5" y="587" width="17.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="602.51" y="597.5" ></text>
</g>
<g >
<title>pg_client_to_server (90 samples, 0.08%)</title><rect x="744.5" y="715" width="1.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="747.55" y="725.5" ></text>
</g>
<g >
<title>cmpxchg_double_slab.constprop.0.isra.0 (46 samples, 0.04%)</title><rect x="396.2" y="155" width="0.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="399.24" y="165.5" ></text>
</g>
<g >
<title>ProcessUtility (18 samples, 0.02%)</title><rect x="1277.1" y="587" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1280.10" y="597.5" ></text>
</g>
<g >
<title>pg_qsort (17 samples, 0.01%)</title><rect x="1241.7" y="619" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1244.73" y="629.5" ></text>
</g>
<g >
<title>LWLockAcquire (127 samples, 0.11%)</title><rect x="689.5" y="507" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="692.53" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (14 samples, 0.01%)</title><rect x="22.5" y="299" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="25.48" y="309.5" ></text>
</g>
<g >
<title>validate_relation_kind (22 samples, 0.02%)</title><rect x="687.3" y="555" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="690.32" y="565.5" ></text>
</g>
<g >
<title>handle_softirqs (9,037 samples, 7.64%)</title><rect x="319.4" y="379" width="105.4" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="322.41" y="389.5" >handle_sof..</text>
</g>
<g >
<title>expr_setup_walker (30 samples, 0.03%)</title><rect x="620.9" y="555" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="623.90" y="565.5" ></text>
</g>
<g >
<title>ReadBuffer (81 samples, 0.07%)</title><rect x="1042.1" y="395" width="1.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1045.14" y="405.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (180 samples, 0.15%)</title><rect x="330.8" y="299" width="2.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="333.83" y="309.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (11 samples, 0.01%)</title><rect x="604.6" y="459" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="607.60" y="469.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irq (18 samples, 0.02%)</title><rect x="418.5" y="315" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="421.50" y="325.5" ></text>
</g>
<g >
<title>process_backlog (7,654 samples, 6.47%)</title><rect x="329.4" y="331" width="89.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="332.42" y="341.5" >process_..</text>
</g>
<g >
<title>LWLockAttemptLock (725 samples, 0.61%)</title><rect x="61.7" y="283" width="8.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="64.65" y="293.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (599 samples, 0.51%)</title><rect x="538.9" y="667" width="7.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="541.94" y="677.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (52 samples, 0.04%)</title><rect x="1326.7" y="779" width="0.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1329.71" y="789.5" ></text>
</g>
<g >
<title>tcp_established_options (21 samples, 0.02%)</title><rect x="456.2" y="475" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="459.19" y="485.5" ></text>
</g>
<g >
<title>__ip_local_out (76 samples, 0.06%)</title><rect x="432.6" y="427" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="435.62" y="437.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (2,848 samples, 2.41%)</title><rect x="51.7" y="347" width="33.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="54.68" y="357.5" >St..</text>
</g>
<g >
<title>pgss_ProcessUtility (28 samples, 0.02%)</title><rect x="1276.7" y="651" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1279.67" y="661.5" ></text>
</g>
<g >
<title>vfs_write (30 samples, 0.03%)</title><rect x="1264.2" y="299" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1267.15" y="309.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (209 samples, 0.18%)</title><rect x="21.3" y="747" width="2.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="24.26" y="757.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (116 samples, 0.10%)</title><rect x="550.9" y="667" width="1.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="553.92" y="677.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,196 samples, 1.01%)</title><rect x="1004.9" y="395" width="13.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1007.89" y="405.5" ></text>
</g>
<g >
<title>native_sched_clock (48 samples, 0.04%)</title><rect x="203.2" y="443" width="0.5" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="206.16" y="453.5" ></text>
</g>
<g >
<title>FreeExecutorState (27 samples, 0.02%)</title><rect x="1307.0" y="779" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1309.98" y="789.5" ></text>
</g>
<g >
<title>hash_bytes (67 samples, 0.06%)</title><rect x="503.0" y="667" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="506.02" y="677.5" ></text>
</g>
<g >
<title>epoll_wait (8,834 samples, 7.47%)</title><rect x="109.3" y="619" width="103.0" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="112.27" y="629.5" >epoll_wait</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (41 samples, 0.03%)</title><rect x="874.2" y="395" width="0.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="877.22" y="405.5" ></text>
</g>
<g >
<title>ComputeIndexAttrs (10 samples, 0.01%)</title><rect x="25.1" y="779" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="28.14" y="789.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (13 samples, 0.01%)</title><rect x="1089.7" y="523" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1092.73" y="533.5" ></text>
</g>
</g>
</svg>
