2-Yuya-kernel.svg

image/svg+xml

Filename: 2-Yuya-kernel.svg
Type: image/svg+xml
Part: 0
Message: Re: [PoC] Reducing planning time when tables have many partitions
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1094" onload="init(evt)" viewBox="0 0 1200 1094" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES:  -->
<defs>
	<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
		<stop stop-color="#eeeeee" offset="5%" />
		<stop stop-color="#eeeeb0" offset="95%" />
	</linearGradient>
</defs>
<style type="text/css">
	text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
	#search, #ignorecase { opacity:0.1; cursor:pointer; }
	#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
	#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
	#title { text-anchor:middle; font-size:17px}
	#unzoom { cursor:pointer; }
	#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
	.hide { display:none; }
	.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
	"use strict";
	var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
	function init(evt) {
		details = document.getElementById("details").firstChild;
		searchbtn = document.getElementById("search");
		ignorecaseBtn = document.getElementById("ignorecase");
		unzoombtn = document.getElementById("unzoom");
		matchedtxt = document.getElementById("matched");
		svg = document.getElementsByTagName("svg")[0];
		searching = 0;
		currentSearchTerm = null;

		// use GET parameters to restore a flamegraphs state.
		var params = get_params();
		if (params.x && params.y)
			zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
                if (params.s) search(params.s);
	}

	// event listeners
	window.addEventListener("click", function(e) {
		var target = find_group(e.target);
		if (target) {
			if (target.nodeName == "a") {
				if (e.ctrlKey === false) return;
				e.preventDefault();
			}
			if (target.classList.contains("parent")) unzoom(true);
			zoom(target);
			if (!document.querySelector('.parent')) {
				// we have basically done a clearzoom so clear the url
				var params = get_params();
				if (params.x) delete params.x;
				if (params.y) delete params.y;
				history.replaceState(null, null, parse_params(params));
				unzoombtn.classList.add("hide");
				return;
			}

			// set parameters for zoom state
			var el = target.querySelector("rect");
			if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
				var params = get_params()
				params.x = el.attributes._orig_x.value;
				params.y = el.attributes.y.value;
				history.replaceState(null, null, parse_params(params));
			}
		}
		else if (e.target.id == "unzoom") clearzoom();
		else if (e.target.id == "search") search_prompt();
		else if (e.target.id == "ignorecase") toggle_ignorecase();
	}, false)

	// mouse-over for info
	// show
	window.addEventListener("mouseover", function(e) {
		var target = find_group(e.target);
		if (target) details.nodeValue = "Function: " + g_to_text(target);
	}, false)

	// clear
	window.addEventListener("mouseout", function(e) {
		var target = find_group(e.target);
		if (target) details.nodeValue = ' ';
	}, false)

	// ctrl-F for search
	// ctrl-I to toggle case-sensitive search
	window.addEventListener("keydown",function (e) {
		if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
			e.preventDefault();
			search_prompt();
		}
		else if (e.ctrlKey && e.keyCode === 73) {
			e.preventDefault();
			toggle_ignorecase();
		}
	}, false)

	// functions
	function get_params() {
		var params = {};
		var paramsarr = window.location.search.substr(1).split('&');
		for (var i = 0; i < paramsarr.length; ++i) {
			var tmp = paramsarr[i].split("=");
			if (!tmp[0] || !tmp[1]) continue;
			params[tmp[0]]  = decodeURIComponent(tmp[1]);
		}
		return params;
	}
	function parse_params(params) {
		var uri = "?";
		for (var key in params) {
			uri += key + '=' + encodeURIComponent(params[key]) + '&';
		}
		if (uri.slice(-1) == "&")
			uri = uri.substring(0, uri.length - 1);
		if (uri == '?')
			uri = window.location.href.split('?')[0];
		return uri;
	}
	function find_child(node, selector) {
		var children = node.querySelectorAll(selector);
		if (children.length) return children[0];
	}
	function find_group(node) {
		var parent = node.parentElement;
		if (!parent) return;
		if (parent.id == "frames") return node;
		return find_group(parent);
	}
	function orig_save(e, attr, val) {
		if (e.attributes["_orig_" + attr] != undefined) return;
		if (e.attributes[attr] == undefined) return;
		if (val == undefined) val = e.attributes[attr].value;
		e.setAttribute("_orig_" + attr, val);
	}
	function orig_load(e, attr) {
		if (e.attributes["_orig_"+attr] == undefined) return;
		e.attributes[attr].value = e.attributes["_orig_" + attr].value;
		e.removeAttribute("_orig_"+attr);
	}
	function g_to_text(e) {
		var text = find_child(e, "title").firstChild.nodeValue;
		return (text)
	}
	function g_to_func(e) {
		var func = g_to_text(e);
		// if there's any manipulation we want to do to the function
		// name before it's searched, do it here before returning.
		return (func);
	}
	function update_text(e) {
		var r = find_child(e, "rect");
		var t = find_child(e, "text");
		var w = parseFloat(r.attributes.width.value) -3;
		var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
		t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;

		// Smaller than this size won't fit anything
		if (w < 2 * 12 * 0.59) {
			t.textContent = "";
			return;
		}

		t.textContent = txt;
		var sl = t.getSubStringLength(0, txt.length);
		// check if only whitespace or if we can fit the entire string into width w
		if (/^ *$/.test(txt) || sl < w)
			return;

		// this isn't perfect, but gives a good starting point
		// and avoids calling getSubStringLength too often
		var start = Math.floor((w/sl) * txt.length);
		for (var x = start; x > 0; x = x-2) {
			if (t.getSubStringLength(0, x + 2) <= w) {
				t.textContent = txt.substring(0, x) + "..";
				return;
			}
		}
		t.textContent = "";
	}

	// zoom
	function zoom_reset(e) {
		if (e.attributes != undefined) {
			orig_load(e, "x");
			orig_load(e, "width");
		}
		if (e.childNodes == undefined) return;
		for (var i = 0, c = e.childNodes; i < c.length; i++) {
			zoom_reset(c[i]);
		}
	}
	function zoom_child(e, x, ratio) {
		if (e.attributes != undefined) {
			if (e.attributes.x != undefined) {
				orig_save(e, "x");
				e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
				if (e.tagName == "text")
					e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
			}
			if (e.attributes.width != undefined) {
				orig_save(e, "width");
				e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
			}
		}

		if (e.childNodes == undefined) return;
		for (var i = 0, c = e.childNodes; i < c.length; i++) {
			zoom_child(c[i], x - 10, ratio);
		}
	}
	function zoom_parent(e) {
		if (e.attributes) {
			if (e.attributes.x != undefined) {
				orig_save(e, "x");
				e.attributes.x.value = 10;
			}
			if (e.attributes.width != undefined) {
				orig_save(e, "width");
				e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
			}
		}
		if (e.childNodes == undefined) return;
		for (var i = 0, c = e.childNodes; i < c.length; i++) {
			zoom_parent(c[i]);
		}
	}
	function zoom(node) {
		var attr = find_child(node, "rect").attributes;
		var width = parseFloat(attr.width.value);
		var xmin = parseFloat(attr.x.value);
		var xmax = parseFloat(xmin + width);
		var ymin = parseFloat(attr.y.value);
		var ratio = (svg.width.baseVal.value - 2 * 10) / width;

		// XXX: Workaround for JavaScript float issues (fix me)
		var fudge = 0.0001;

		unzoombtn.classList.remove("hide");

		var el = document.getElementById("frames").children;
		for (var i = 0; i < el.length; i++) {
			var e = el[i];
			var a = find_child(e, "rect").attributes;
			var ex = parseFloat(a.x.value);
			var ew = parseFloat(a.width.value);
			var upstack;
			// Is it an ancestor
			if (0 == 0) {
				upstack = parseFloat(a.y.value) > ymin;
			} else {
				upstack = parseFloat(a.y.value) < ymin;
			}
			if (upstack) {
				// Direct ancestor
				if (ex <= xmin && (ex+ew+fudge) >= xmax) {
					e.classList.add("parent");
					zoom_parent(e);
					update_text(e);
				}
				// not in current path
				else
					e.classList.add("hide");
			}
			// Children maybe
			else {
				// no common path
				if (ex < xmin || ex + fudge >= xmax) {
					e.classList.add("hide");
				}
				else {
					zoom_child(e, xmin, ratio);
					update_text(e);
				}
			}
		}
		search();
	}
	function unzoom(dont_update_text) {
		unzoombtn.classList.add("hide");
		var el = document.getElementById("frames").children;
		for(var i = 0; i < el.length; i++) {
			el[i].classList.remove("parent");
			el[i].classList.remove("hide");
			zoom_reset(el[i]);
			if(!dont_update_text) update_text(el[i]);
		}
		search();
	}
	function clearzoom() {
		unzoom();

		// remove zoom state
		var params = get_params();
		if (params.x) delete params.x;
		if (params.y) delete params.y;
		history.replaceState(null, null, parse_params(params));
	}

	// search
	function toggle_ignorecase() {
		ignorecase = !ignorecase;
		if (ignorecase) {
			ignorecaseBtn.classList.add("show");
		} else {
			ignorecaseBtn.classList.remove("show");
		}
		reset_search();
		search();
	}
	function reset_search() {
		var el = document.querySelectorAll("#frames rect");
		for (var i = 0; i < el.length; i++) {
			orig_load(el[i], "fill")
		}
		var params = get_params();
		delete params.s;
		history.replaceState(null, null, parse_params(params));
	}
	function search_prompt() {
		if (!searching) {
			var term = prompt("Enter a search term (regexp " +
			    "allowed, eg: ^ext4_)"
			    + (ignorecase ? ", ignoring case" : "")
			    + "\nPress Ctrl-i to toggle case sensitivity", "");
			if (term != null) search(term);
		} else {
			reset_search();
			searching = 0;
			currentSearchTerm = null;
			searchbtn.classList.remove("show");
			searchbtn.firstChild.nodeValue = "Search"
			matchedtxt.classList.add("hide");
			matchedtxt.firstChild.nodeValue = ""
		}
	}
	function search(term) {
		if (term) currentSearchTerm = term;

		var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
		var el = document.getElementById("frames").children;
		var matches = new Object();
		var maxwidth = 0;
		for (var i = 0; i < el.length; i++) {
			var e = el[i];
			var func = g_to_func(e);
			var rect = find_child(e, "rect");
			if (func == null || rect == null)
				continue;

			// Save max width. Only works as we have a root frame
			var w = parseFloat(rect.attributes.width.value);
			if (w > maxwidth)
				maxwidth = w;

			if (func.match(re)) {
				// highlight
				var x = parseFloat(rect.attributes.x.value);
				orig_save(rect, "fill");
				rect.attributes.fill.value = "rgb(230,0,230)";

				// remember matches
				if (matches[x] == undefined) {
					matches[x] = w;
				} else {
					if (w > matches[x]) {
						// overwrite with parent
						matches[x] = w;
					}
				}
				searching = 1;
			}
		}
		if (!searching)
			return;
		var params = get_params();
		params.s = currentSearchTerm;
		history.replaceState(null, null, parse_params(params));

		searchbtn.classList.add("show");
		searchbtn.firstChild.nodeValue = "Reset Search";

		// calculate percent matched, excluding vertical overlap
		var count = 0;
		var lastx = -1;
		var lastw = 0;
		var keys = Array();
		for (k in matches) {
			if (matches.hasOwnProperty(k))
				keys.push(k);
		}
		// sort the matched frames by their x location
		// ascending, then width descending
		keys.sort(function(a, b){
			return a - b;
		});
		// Step through frames saving only the biggest bottom-up frames
		// thanks to the sort order. This relies on the tree property
		// where children are always smaller than their parents.
		var fudge = 0.0001;	// JavaScript floating point
		for (var k in keys) {
			var x = parseFloat(keys[k]);
			var w = matches[keys[k]];
			if (x >= lastx + lastw - fudge) {
				count += w;
				lastx = x;
				lastw = w;
			}
		}
		// display matched percent
		matchedtxt.classList.remove("hide");
		var pct = 100 * count / maxwidth;
		if (pct != 100) pct = pct.toFixed(1)
		matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
	}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1094.0" fill="url(#background)"  />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1077" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="1077" > </text>
<g id="frames">
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="177.1" y="453" width="1.0" height="15.0" fill="rgb(249,92,41)" rx="2" ry="2" />
<text  x="180.14" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="825.7" y="341" width="0.9" height="15.0" fill="rgb(243,182,2)" rx="2" ry="2" />
<text  x="828.74" y="351.5" ></text>
</g>
<g >
<title>_bt_first (9,000,000 samples, 0.69%)</title><rect x="446.9" y="373" width="8.2" height="15.0" fill="rgb(230,129,17)" rx="2" ry="2" />
<text  x="449.94" y="383.5" ></text>
</g>
<g >
<title>eqsel (4,000,000 samples, 0.31%)</title><rect x="714.9" y="325" width="3.6" height="15.0" fill="rgb(222,145,15)" rx="2" ry="2" />
<text  x="717.91" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="851.2" y="437" width="0.9" height="15.0" fill="rgb(215,197,39)" rx="2" ry="2" />
<text  x="854.17" y="447.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="518.7" y="453" width="0.9" height="15.0" fill="rgb(218,188,16)" rx="2" ry="2" />
<text  x="521.70" y="463.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="435.1" y="293" width="0.9" height="15.0" fill="rgb(254,37,33)" rx="2" ry="2" />
<text  x="438.13" y="303.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (3,000,000 samples, 0.23%)</title><rect x="377.9" y="357" width="2.7" height="15.0" fill="rgb(243,203,6)" rx="2" ry="2" />
<text  x="380.90" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="158.1" y="469" width="0.9" height="15.0" fill="rgb(246,202,10)" rx="2" ry="2" />
<text  x="161.07" y="479.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="837.5" y="501" width="1.0" height="15.0" fill="rgb(236,10,39)" rx="2" ry="2" />
<text  x="840.54" y="511.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="42.7" y="421" width="0.9" height="15.0" fill="rgb(228,7,22)" rx="2" ry="2" />
<text  x="45.70" y="431.5" ></text>
</g>
<g >
<title>set_base_rel_pathlists (285,000,000 samples, 21.94%)</title><rect x="601.4" y="645" width="258.9" height="15.0" fill="rgb(241,125,33)" rx="2" ry="2" />
<text  x="604.36" y="655.5" >set_base_rel_pathlists</text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="324.3" y="405" width="1.8" height="15.0" fill="rgb(253,4,28)" rx="2" ry="2" />
<text  x="327.30" y="415.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (6,000,000 samples, 0.46%)</title><rect x="246.2" y="341" width="5.4" height="15.0" fill="rgb(207,84,14)" rx="2" ry="2" />
<text  x="249.18" y="351.5" ></text>
</g>
<g >
<title>index_endscan (1,000,000 samples, 0.08%)</title><rect x="331.6" y="485" width="0.9" height="15.0" fill="rgb(223,228,21)" rx="2" ry="2" />
<text  x="334.57" y="495.5" ></text>
</g>
<g >
<title>ReadBuffer (2,000,000 samples, 0.15%)</title><rect x="334.3" y="405" width="1.8" height="15.0" fill="rgb(251,185,29)" rx="2" ry="2" />
<text  x="337.30" y="415.5" ></text>
</g>
<g >
<title>table_index_fetch_end (1,000,000 samples, 0.08%)</title><rect x="524.1" y="501" width="1.0" height="15.0" fill="rgb(219,184,39)" rx="2" ry="2" />
<text  x="527.15" y="511.5" ></text>
</g>
<g >
<title>LockTagHashCode (1,000,000 samples, 0.08%)</title><rect x="326.1" y="421" width="0.9" height="15.0" fill="rgb(215,16,11)" rx="2" ry="2" />
<text  x="329.12" y="431.5" ></text>
</g>
<g >
<title>_bt_first (12,000,000 samples, 0.92%)</title><rect x="929.3" y="245" width="10.9" height="15.0" fill="rgb(217,219,20)" rx="2" ry="2" />
<text  x="932.29" y="255.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,000,000 samples, 0.23%)</title><rect x="1187.3" y="949" width="2.7" height="15.0" fill="rgb(221,217,50)" rx="2" ry="2" />
<text  x="1190.27" y="959.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="495.1" y="421" width="0.9" height="15.0" fill="rgb(207,67,41)" rx="2" ry="2" />
<text  x="498.08" y="431.5" ></text>
</g>
<g >
<title>ReleaseLruFile (8,000,000 samples, 0.62%)</title><rect x="168.1" y="469" width="7.2" height="15.0" fill="rgb(208,163,13)" rx="2" ry="2" />
<text  x="171.06" y="479.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="706.7" y="373" width="0.9" height="15.0" fill="rgb(220,107,45)" rx="2" ry="2" />
<text  x="709.74" y="383.5" ></text>
</g>
<g >
<title>set_rtable_names (1,000,000 samples, 0.08%)</title><rect x="24.5" y="709" width="0.9" height="15.0" fill="rgb(230,118,39)" rx="2" ry="2" />
<text  x="27.53" y="719.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="919.3" y="101" width="0.9" height="15.0" fill="rgb(234,54,42)" rx="2" ry="2" />
<text  x="922.30" y="111.5" ></text>
</g>
<g >
<title>SearchSysCache4 (1,000,000 samples, 0.08%)</title><rect x="708.6" y="373" width="0.9" height="15.0" fill="rgb(232,222,1)" rx="2" ry="2" />
<text  x="711.55" y="383.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="992.0" y="213" width="0.9" height="15.0" fill="rgb(225,24,44)" rx="2" ry="2" />
<text  x="994.97" y="223.5" ></text>
</g>
<g >
<title>_bt_getbuf (1,000,000 samples, 0.08%)</title><rect x="587.7" y="421" width="0.9" height="15.0" fill="rgb(228,137,2)" rx="2" ry="2" />
<text  x="590.74" y="431.5" ></text>
</g>
<g >
<title>lru_add_drain_cpu (1,000,000 samples, 0.08%)</title><rect x="13.6" y="885" width="0.9" height="15.0" fill="rgb(205,53,30)" rx="2" ry="2" />
<text  x="16.63" y="895.5" ></text>
</g>
<g >
<title>table_open (108,000,000 samples, 8.31%)</title><rect x="502.3" y="613" width="98.2" height="15.0" fill="rgb(205,112,52)" rx="2" ry="2" />
<text  x="505.35" y="623.5" >table_open</text>
</g>
<g >
<title>list_make1_impl (1,000,000 samples, 0.08%)</title><rect x="851.2" y="469" width="0.9" height="15.0" fill="rgb(233,177,37)" rx="2" ry="2" />
<text  x="854.17" y="479.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="819.4" y="469" width="0.9" height="15.0" fill="rgb(214,206,12)" rx="2" ry="2" />
<text  x="822.38" y="479.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (3,000,000 samples, 0.23%)</title><rect x="483.3" y="421" width="2.7" height="15.0" fill="rgb(249,204,30)" rx="2" ry="2" />
<text  x="486.27" y="431.5" ></text>
</g>
<g >
<title>new_list (3,000,000 samples, 0.23%)</title><rect x="795.8" y="453" width="2.7" height="15.0" fill="rgb(239,149,3)" rx="2" ry="2" />
<text  x="798.76" y="463.5" ></text>
</g>
<g >
<title>clauselist_selectivity (2,000,000 samples, 0.15%)</title><rect x="688.6" y="421" width="1.8" height="15.0" fill="rgb(242,112,52)" rx="2" ry="2" />
<text  x="691.57" y="431.5" ></text>
</g>
<g >
<title>create_seqscan_plan (6,000,000 samples, 0.46%)</title><rect x="27.3" y="581" width="5.4" height="15.0" fill="rgb(247,136,48)" rx="2" ry="2" />
<text  x="30.26" y="591.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (75,000,000 samples, 5.77%)</title><rect x="184.4" y="453" width="68.1" height="15.0" fill="rgb(225,151,54)" rx="2" ry="2" />
<text  x="187.41" y="463.5" >entry_S..</text>
</g>
<g >
<title>mem_cgroup_charge (1,000,000 samples, 0.08%)</title><rect x="311.6" y="421" width="0.9" height="15.0" fill="rgb(250,112,46)" rx="2" ry="2" />
<text  x="314.59" y="431.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (1,000,000 samples, 0.08%)</title><rect x="351.6" y="469" width="0.9" height="15.0" fill="rgb(245,127,53)" rx="2" ry="2" />
<text  x="354.56" y="479.5" ></text>
</g>
<g >
<title>SearchSysCache4 (2,000,000 samples, 0.15%)</title><rect x="798.5" y="469" width="1.8" height="15.0" fill="rgb(240,219,38)" rx="2" ry="2" />
<text  x="801.48" y="479.5" ></text>
</g>
<g >
<title>table_close (3,000,000 samples, 0.23%)</title><rect x="590.5" y="533" width="2.7" height="15.0" fill="rgb(230,179,24)" rx="2" ry="2" />
<text  x="593.46" y="543.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="131.7" y="437" width="0.9" height="15.0" fill="rgb(227,229,32)" rx="2" ry="2" />
<text  x="134.72" y="447.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,000,000 samples, 0.08%)</title><rect x="676.8" y="389" width="0.9" height="15.0" fill="rgb(210,227,9)" rx="2" ry="2" />
<text  x="679.76" y="399.5" ></text>
</g>
<g >
<title>proc_exit_prepare (1,000,000 samples, 0.08%)</title><rect x="1051.9" y="869" width="0.9" height="15.0" fill="rgb(219,94,3)" rx="2" ry="2" />
<text  x="1054.92" y="879.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="31.8" y="421" width="0.9" height="15.0" fill="rgb(216,192,30)" rx="2" ry="2" />
<text  x="34.80" y="431.5" ></text>
</g>
<g >
<title>systable_getnext (14,000,000 samples, 1.08%)</title><rect x="62.7" y="437" width="12.7" height="15.0" fill="rgb(220,72,37)" rx="2" ry="2" />
<text  x="65.69" y="447.5" ></text>
</g>
<g >
<title>__fget_light (2,000,000 samples, 0.15%)</title><rect x="186.2" y="405" width="1.8" height="15.0" fill="rgb(234,10,27)" rx="2" ry="2" />
<text  x="189.23" y="415.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="692.2" y="325" width="0.9" height="15.0" fill="rgb(234,3,33)" rx="2" ry="2" />
<text  x="695.20" y="335.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (4,000,000 samples, 0.31%)</title><rect x="315.2" y="357" width="3.7" height="15.0" fill="rgb(236,93,37)" rx="2" ry="2" />
<text  x="318.22" y="367.5" ></text>
</g>
<g >
<title>pagecache_get_page (2,000,000 samples, 0.15%)</title><rect x="244.4" y="357" width="1.8" height="15.0" fill="rgb(219,61,44)" rx="2" ry="2" />
<text  x="247.36" y="367.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (3,000,000 samples, 0.23%)</title><rect x="99.0" y="517" width="2.7" height="15.0" fill="rgb(227,123,22)" rx="2" ry="2" />
<text  x="102.02" y="527.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="612.3" y="453" width="0.9" height="15.0" fill="rgb(229,166,10)" rx="2" ry="2" />
<text  x="615.26" y="463.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (1,000,000 samples, 0.08%)</title><rect x="608.6" y="469" width="0.9" height="15.0" fill="rgb(246,154,32)" rx="2" ry="2" />
<text  x="611.63" y="479.5" ></text>
</g>
<g >
<title>bms_free (1,000,000 samples, 0.08%)</title><rect x="623.2" y="405" width="0.9" height="15.0" fill="rgb(225,86,54)" rx="2" ry="2" />
<text  x="626.16" y="415.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (5,000,000 samples, 0.38%)</title><rect x="1180.0" y="869" width="4.5" height="15.0" fill="rgb(237,148,25)" rx="2" ry="2" />
<text  x="1183.01" y="879.5" ></text>
</g>
<g >
<title>SIGetDataEntries (1,000,000 samples, 0.08%)</title><rect x="151.7" y="501" width="0.9" height="15.0" fill="rgb(228,125,34)" rx="2" ry="2" />
<text  x="154.71" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="31.8" y="533" width="0.9" height="15.0" fill="rgb(245,211,47)" rx="2" ry="2" />
<text  x="34.80" y="543.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (1,000,000 samples, 0.08%)</title><rect x="922.9" y="277" width="0.9" height="15.0" fill="rgb(215,114,22)" rx="2" ry="2" />
<text  x="925.93" y="287.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3,000,000 samples, 0.23%)</title><rect x="1187.3" y="933" width="2.7" height="15.0" fill="rgb(223,222,39)" rx="2" ry="2" />
<text  x="1190.27" y="943.5" ></text>
</g>
<g >
<title>btendscan (1,000,000 samples, 0.08%)</title><rect x="392.4" y="373" width="0.9" height="15.0" fill="rgb(206,135,21)" rx="2" ry="2" />
<text  x="395.43" y="383.5" ></text>
</g>
<g >
<title>pgstat_entry_ref_hash_insert (1,000,000 samples, 0.08%)</title><rect x="1051.0" y="773" width="0.9" height="15.0" fill="rgb(236,118,33)" rx="2" ry="2" />
<text  x="1054.02" y="783.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (2,000,000 samples, 0.15%)</title><rect x="101.7" y="565" width="1.9" height="15.0" fill="rgb(252,188,26)" rx="2" ry="2" />
<text  x="104.75" y="575.5" ></text>
</g>
<g >
<title>__d_lookup_rcu (6,000,000 samples, 0.46%)</title><rect x="1070.1" y="869" width="5.4" height="15.0" fill="rgb(219,124,43)" rx="2" ry="2" />
<text  x="1073.09" y="879.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="701.3" y="341" width="0.9" height="15.0" fill="rgb(248,145,8)" rx="2" ry="2" />
<text  x="704.29" y="351.5" ></text>
</g>
<g >
<title>adjust_appendrel_attrs (4,000,000 samples, 0.31%)</title><rect x="98.1" y="581" width="3.6" height="15.0" fill="rgb(207,192,34)" rx="2" ry="2" />
<text  x="101.11" y="591.5" ></text>
</g>
<g >
<title>btgettuple (6,000,000 samples, 0.46%)</title><rect x="284.3" y="501" width="5.5" height="15.0" fill="rgb(215,179,12)" rx="2" ry="2" />
<text  x="287.33" y="511.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="57.2" y="405" width="0.9" height="15.0" fill="rgb(223,58,4)" rx="2" ry="2" />
<text  x="60.24" y="415.5" ></text>
</g>
<g >
<title>CleanUpLock (4,000,000 samples, 0.31%)</title><rect x="940.2" y="245" width="3.6" height="15.0" fill="rgb(235,109,15)" rx="2" ry="2" />
<text  x="943.19" y="255.5" ></text>
</g>
<g >
<title>contain_mutable_functions_walker (1,000,000 samples, 0.08%)</title><rect x="887.5" y="517" width="0.9" height="15.0" fill="rgb(233,97,47)" rx="2" ry="2" />
<text  x="890.51" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="679.5" y="293" width="0.9" height="15.0" fill="rgb(228,196,31)" rx="2" ry="2" />
<text  x="682.48" y="303.5" ></text>
</g>
<g >
<title>get_op_opfamily_strategy (1,000,000 samples, 0.08%)</title><rect x="697.7" y="421" width="0.9" height="15.0" fill="rgb(220,16,9)" rx="2" ry="2" />
<text  x="700.65" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="702.2" y="325" width="0.9" height="15.0" fill="rgb(221,115,6)" rx="2" ry="2" />
<text  x="705.19" y="335.5" ></text>
</g>
<g >
<title>_bt_getbuf (86,000,000 samples, 6.62%)</title><rect x="177.1" y="565" width="78.2" height="15.0" fill="rgb(218,165,7)" rx="2" ry="2" />
<text  x="180.14" y="575.5" >_bt_getbuf</text>
</g>
<g >
<title>_SPI_prepare_plan (1,000,000 samples, 0.08%)</title><rect x="962.0" y="133" width="0.9" height="15.0" fill="rgb(243,195,43)" rx="2" ry="2" />
<text  x="964.99" y="143.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="958.4" y="181" width="0.9" height="15.0" fill="rgb(253,126,3)" rx="2" ry="2" />
<text  x="961.36" y="191.5" ></text>
</g>
<g >
<title>GetCatalogSnapshot (1,000,000 samples, 0.08%)</title><rect x="50.9" y="421" width="0.9" height="15.0" fill="rgb(244,221,8)" rx="2" ry="2" />
<text  x="53.88" y="431.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="277.1" y="469" width="0.9" height="15.0" fill="rgb(250,173,0)" rx="2" ry="2" />
<text  x="280.07" y="479.5" ></text>
</g>
<g >
<title>ExplainQuery (1,132,000,000 samples, 87.14%)</title><rect x="18.2" y="789" width="1028.3" height="15.0" fill="rgb(228,162,39)" rx="2" ry="2" />
<text  x="21.18" y="799.5" >ExplainQuery</text>
</g>
<g >
<title>BTreeTupleIsPivot (1,000,000 samples, 0.08%)</title><rect x="69.0" y="325" width="1.0" height="15.0" fill="rgb(222,117,33)" rx="2" ry="2" />
<text  x="72.05" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="598.6" y="437" width="0.9" height="15.0" fill="rgb(220,112,42)" rx="2" ry="2" />
<text  x="601.64" y="447.5" ></text>
</g>
<g >
<title>predicate_classify (1,000,000 samples, 0.08%)</title><rect x="902.0" y="517" width="0.9" height="15.0" fill="rgb(213,113,37)" rx="2" ry="2" />
<text  x="905.04" y="527.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (1,000,000 samples, 0.08%)</title><rect x="62.7" y="357" width="0.9" height="15.0" fill="rgb(215,211,9)" rx="2" ry="2" />
<text  x="65.69" y="367.5" ></text>
</g>
<g >
<title>_bt_drop_lock_and_maybe_pin (1,000,000 samples, 0.08%)</title><rect x="536.0" y="453" width="0.9" height="15.0" fill="rgb(210,190,16)" rx="2" ry="2" />
<text  x="538.96" y="463.5" ></text>
</g>
<g >
<title>palloc0 (1,000,000 samples, 0.08%)</title><rect x="863.9" y="533" width="0.9" height="15.0" fill="rgb(250,115,35)" rx="2" ry="2" />
<text  x="866.89" y="543.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (2,000,000 samples, 0.15%)</title><rect x="1039.2" y="357" width="1.8" height="15.0" fill="rgb(253,150,27)" rx="2" ry="2" />
<text  x="1042.21" y="367.5" ></text>
</g>
<g >
<title>lappend_oid (3,000,000 samples, 0.23%)</title><rect x="677.7" y="421" width="2.7" height="15.0" fill="rgb(220,135,33)" rx="2" ry="2" />
<text  x="680.67" y="431.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="434.2" y="389" width="1.8" height="15.0" fill="rgb(242,184,25)" rx="2" ry="2" />
<text  x="437.22" y="399.5" ></text>
</g>
<g >
<title>palloc (2,000,000 samples, 0.15%)</title><rect x="668.6" y="357" width="1.8" height="15.0" fill="rgb(228,198,22)" rx="2" ry="2" />
<text  x="671.58" y="367.5" ></text>
</g>
<g >
<title>transformTopLevelStmt (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="837" width="0.9" height="15.0" fill="rgb(236,136,51)" rx="2" ry="2" />
<text  x="1052.20" y="847.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,000,000 samples, 0.08%)</title><rect x="836.6" y="485" width="0.9" height="15.0" fill="rgb(222,109,41)" rx="2" ry="2" />
<text  x="839.64" y="495.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,000,000 samples, 0.08%)</title><rect x="65.4" y="309" width="0.9" height="15.0" fill="rgb(215,176,29)" rx="2" ry="2" />
<text  x="68.41" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32 (1,000,000 samples, 0.08%)</title><rect x="1051.9" y="757" width="0.9" height="15.0" fill="rgb(232,129,48)" rx="2" ry="2" />
<text  x="1054.92" y="767.5" ></text>
</g>
<g >
<title>errseq_sample (2,000,000 samples, 0.15%)</title><rect x="1062.8" y="869" width="1.8" height="15.0" fill="rgb(207,119,54)" rx="2" ry="2" />
<text  x="1065.83" y="879.5" ></text>
</g>
<g >
<title>_bt_first (9,000,000 samples, 0.69%)</title><rect x="143.5" y="501" width="8.2" height="15.0" fill="rgb(240,212,50)" rx="2" ry="2" />
<text  x="146.53" y="511.5" ></text>
</g>
<g >
<title>index_beginscan_internal (2,000,000 samples, 0.15%)</title><rect x="324.3" y="469" width="1.8" height="15.0" fill="rgb(237,166,9)" rx="2" ry="2" />
<text  x="327.30" y="479.5" ></text>
</g>
<g >
<title>_bt_compare (3,000,000 samples, 0.23%)</title><rect x="69.0" y="341" width="2.8" height="15.0" fill="rgb(219,110,27)" rx="2" ry="2" />
<text  x="72.05" y="351.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,000,000 samples, 0.08%)</title><rect x="342.5" y="357" width="0.9" height="15.0" fill="rgb(232,178,17)" rx="2" ry="2" />
<text  x="345.47" y="367.5" ></text>
</g>
<g >
<title>check_functions_in_node (1,000,000 samples, 0.08%)</title><rect x="1021.9" y="469" width="1.0" height="15.0" fill="rgb(223,51,26)" rx="2" ry="2" />
<text  x="1024.95" y="479.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="127.2" y="453" width="0.9" height="15.0" fill="rgb(240,155,15)" rx="2" ry="2" />
<text  x="130.18" y="463.5" ></text>
</g>
<g >
<title>relation_open (3,000,000 samples, 0.23%)</title><rect x="891.1" y="549" width="2.8" height="15.0" fill="rgb(239,196,43)" rx="2" ry="2" />
<text  x="894.14" y="559.5" ></text>
</g>
<g >
<title>bms_next_member (1,000,000 samples, 0.08%)</title><rect x="830.3" y="469" width="0.9" height="15.0" fill="rgb(213,124,37)" rx="2" ry="2" />
<text  x="833.28" y="479.5" ></text>
</g>
<g >
<title>_bt_binsrch (1,000,000 samples, 0.08%)</title><rect x="338.8" y="421" width="0.9" height="15.0" fill="rgb(223,105,4)" rx="2" ry="2" />
<text  x="341.84" y="431.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="131.7" y="453" width="0.9" height="15.0" fill="rgb(248,199,8)" rx="2" ry="2" />
<text  x="134.72" y="463.5" ></text>
</g>
<g >
<title>index_getnext_tid (6,000,000 samples, 0.46%)</title><rect x="338.8" y="469" width="5.5" height="15.0" fill="rgb(248,5,23)" rx="2" ry="2" />
<text  x="341.84" y="479.5" ></text>
</g>
<g >
<title>ext4_reserve_inode_write (3,000,000 samples, 0.23%)</title><rect x="248.9" y="293" width="2.7" height="15.0" fill="rgb(240,67,4)" rx="2" ry="2" />
<text  x="251.91" y="303.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="689.5" y="277" width="0.9" height="15.0" fill="rgb(211,142,26)" rx="2" ry="2" />
<text  x="692.48" y="287.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,000,000 samples, 0.08%)</title><rect x="542.3" y="373" width="0.9" height="15.0" fill="rgb(214,20,1)" rx="2" ry="2" />
<text  x="545.32" y="383.5" ></text>
</g>
<g >
<title>heapam_estimate_rel_size (15,000,000 samples, 1.15%)</title><rect x="257.1" y="549" width="13.6" height="15.0" fill="rgb(228,200,15)" rx="2" ry="2" />
<text  x="260.08" y="559.5" ></text>
</g>
<g >
<title>make_restrictinfo (3,000,000 samples, 0.23%)</title><rect x="124.5" y="581" width="2.7" height="15.0" fill="rgb(217,115,39)" rx="2" ry="2" />
<text  x="127.46" y="591.5" ></text>
</g>
<g >
<title>setup_eclass_member_iterator (1,000,000 samples, 0.08%)</title><rect x="873.9" y="581" width="0.9" height="15.0" fill="rgb(228,214,16)" rx="2" ry="2" />
<text  x="876.88" y="591.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (1,000,000 samples, 0.08%)</title><rect x="544.1" y="421" width="0.9" height="15.0" fill="rgb(224,140,42)" rx="2" ry="2" />
<text  x="547.13" y="431.5" ></text>
</g>
<g >
<title>alloc_pages_vma (2,000,000 samples, 0.15%)</title><rect x="781.2" y="341" width="1.8" height="15.0" fill="rgb(244,205,30)" rx="2" ry="2" />
<text  x="784.22" y="351.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (2,000,000 samples, 0.15%)</title><rect x="30.0" y="533" width="1.8" height="15.0" fill="rgb(218,64,28)" rx="2" ry="2" />
<text  x="32.98" y="543.5" ></text>
</g>
<g >
<title>makeTargetEntry (1,000,000 samples, 0.08%)</title><rect x="256.2" y="565" width="0.9" height="15.0" fill="rgb(239,200,47)" rx="2" ry="2" />
<text  x="259.17" y="575.5" ></text>
</g>
<g >
<title>ExecDropSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="519.6" y="517" width="0.9" height="15.0" fill="rgb(223,186,43)" rx="2" ry="2" />
<text  x="522.61" y="527.5" ></text>
</g>
<g >
<title>pgstat_shutdown_hook (1,000,000 samples, 0.08%)</title><rect x="1051.9" y="837" width="0.9" height="15.0" fill="rgb(231,21,4)" rx="2" ry="2" />
<text  x="1054.92" y="847.5" ></text>
</g>
<g >
<title>dopr (1,000,000 samples, 0.08%)</title><rect x="261.6" y="357" width="0.9" height="15.0" fill="rgb(242,94,30)" rx="2" ry="2" />
<text  x="264.62" y="367.5" ></text>
</g>
<g >
<title>ReadBuffer (3,000,000 samples, 0.23%)</title><rect x="935.7" y="181" width="2.7" height="15.0" fill="rgb(206,124,10)" rx="2" ry="2" />
<text  x="938.65" y="191.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="669.5" y="181" width="0.9" height="15.0" fill="rgb(240,13,42)" rx="2" ry="2" />
<text  x="672.49" y="191.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="1012.0" y="485" width="0.9" height="15.0" fill="rgb(220,48,4)" rx="2" ry="2" />
<text  x="1014.96" y="495.5" ></text>
</g>
<g >
<title>LockBuffer (1,000,000 samples, 0.08%)</title><rect x="444.2" y="357" width="0.9" height="15.0" fill="rgb(232,134,46)" rx="2" ry="2" />
<text  x="447.21" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (1,000,000 samples, 0.08%)</title><rect x="963.8" y="197" width="0.9" height="15.0" fill="rgb(220,174,9)" rx="2" ry="2" />
<text  x="966.81" y="207.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (3,000,000 samples, 0.23%)</title><rect x="935.7" y="213" width="2.7" height="15.0" fill="rgb(253,193,44)" rx="2" ry="2" />
<text  x="938.65" y="223.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="360.6" y="389" width="0.9" height="15.0" fill="rgb(215,79,5)" rx="2" ry="2" />
<text  x="363.64" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,000,000 samples, 0.15%)</title><rect x="668.6" y="341" width="1.8" height="15.0" fill="rgb(231,5,22)" rx="2" ry="2" />
<text  x="671.58" y="351.5" ></text>
</g>
<g >
<title>systable_endscan (5,000,000 samples, 0.38%)</title><rect x="279.8" y="549" width="4.5" height="15.0" fill="rgb(222,154,26)" rx="2" ry="2" />
<text  x="282.79" y="559.5" ></text>
</g>
<g >
<title>table_close (3,000,000 samples, 0.23%)</title><rect x="545.0" y="533" width="2.8" height="15.0" fill="rgb(218,180,5)" rx="2" ry="2" />
<text  x="548.04" y="543.5" ></text>
</g>
<g >
<title>relation_excluded_by_constraints (30,000,000 samples, 2.31%)</title><rect x="877.5" y="597" width="27.3" height="15.0" fill="rgb(219,84,39)" rx="2" ry="2" />
<text  x="880.51" y="607.5" >r..</text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="320.7" y="453" width="1.8" height="15.0" fill="rgb(246,153,45)" rx="2" ry="2" />
<text  x="323.67" y="463.5" ></text>
</g>
<g >
<title>build_simple_rel (443,000,000 samples, 34.10%)</title><rect x="94.5" y="613" width="402.4" height="15.0" fill="rgb(240,97,33)" rx="2" ry="2" />
<text  x="97.48" y="623.5" >build_simple_rel</text>
</g>
<g >
<title>bms_next_member (1,000,000 samples, 0.08%)</title><rect x="857.5" y="517" width="0.9" height="15.0" fill="rgb(228,192,39)" rx="2" ry="2" />
<text  x="860.53" y="527.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (1,000,000 samples, 0.08%)</title><rect x="61.8" y="389" width="0.9" height="15.0" fill="rgb(213,175,36)" rx="2" ry="2" />
<text  x="64.78" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,000,000 samples, 0.23%)</title><rect x="47.2" y="421" width="2.8" height="15.0" fill="rgb(205,48,4)" rx="2" ry="2" />
<text  x="50.24" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="800.3" y="341" width="0.9" height="15.0" fill="rgb(208,23,20)" rx="2" ry="2" />
<text  x="803.30" y="351.5" ></text>
</g>
<g >
<title>get_oprrest (1,000,000 samples, 0.08%)</title><rect x="806.7" y="421" width="0.9" height="15.0" fill="rgb(254,189,48)" rx="2" ry="2" />
<text  x="809.66" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="851.2" y="341" width="0.9" height="15.0" fill="rgb(205,163,23)" rx="2" ry="2" />
<text  x="854.17" y="351.5" ></text>
</g>
<g >
<title>pull_varnos_walker (3,000,000 samples, 0.23%)</title><rect x="645.0" y="389" width="2.7" height="15.0" fill="rgb(215,38,10)" rx="2" ry="2" />
<text  x="647.97" y="399.5" ></text>
</g>
<g >
<title>do_softirq (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="741" width="1.0" height="15.0" fill="rgb(238,163,28)" rx="2" ry="2" />
<text  x="1187.55" y="751.5" ></text>
</g>
<g >
<title>get_hash_entry (2,000,000 samples, 0.15%)</title><rect x="562.3" y="421" width="1.8" height="15.0" fill="rgb(207,49,17)" rx="2" ry="2" />
<text  x="565.30" y="431.5" ></text>
</g>
<g >
<title>ReleaseBuffer (1,000,000 samples, 0.08%)</title><rect x="938.4" y="213" width="0.9" height="15.0" fill="rgb(238,104,23)" rx="2" ry="2" />
<text  x="941.38" y="223.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="597" width="1.0" height="15.0" fill="rgb(222,5,22)" rx="2" ry="2" />
<text  x="1187.55" y="607.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="832.1" y="421" width="0.9" height="15.0" fill="rgb(243,86,11)" rx="2" ry="2" />
<text  x="835.09" y="431.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="312.5" y="485" width="0.9" height="15.0" fill="rgb(240,62,42)" rx="2" ry="2" />
<text  x="315.49" y="495.5" ></text>
</g>
<g >
<title>index_beginscan_internal (19,000,000 samples, 1.46%)</title><rect x="974.7" y="277" width="17.3" height="15.0" fill="rgb(243,131,19)" rx="2" ry="2" />
<text  x="977.71" y="287.5" ></text>
</g>
<g >
<title>SearchCatCache3 (36,000,000 samples, 2.77%)</title><rect x="913.8" y="357" width="32.8" height="15.0" fill="rgb(224,125,17)" rx="2" ry="2" />
<text  x="916.85" y="367.5" >Se..</text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="495.1" y="517" width="0.9" height="15.0" fill="rgb(254,162,28)" rx="2" ry="2" />
<text  x="498.08" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="563.2" y="293" width="0.9" height="15.0" fill="rgb(211,68,45)" rx="2" ry="2" />
<text  x="566.21" y="303.5" ></text>
</g>
<g >
<title>SearchSysCache1 (4,000,000 samples, 0.31%)</title><rect x="109.9" y="533" width="3.7" height="15.0" fill="rgb(228,157,14)" rx="2" ry="2" />
<text  x="112.92" y="543.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="915.7" y="181" width="0.9" height="15.0" fill="rgb(207,148,54)" rx="2" ry="2" />
<text  x="918.67" y="191.5" ></text>
</g>
<g >
<title>__x64_sys_close (2,000,000 samples, 0.15%)</title><rect x="169.9" y="405" width="1.8" height="15.0" fill="rgb(222,194,13)" rx="2" ry="2" />
<text  x="172.88" y="415.5" ></text>
</g>
<g >
<title>fix_expr_common (1,000,000 samples, 0.08%)</title><rect x="41.8" y="597" width="0.9" height="15.0" fill="rgb(251,62,19)" rx="2" ry="2" />
<text  x="44.79" y="607.5" ></text>
</g>
<g >
<title>table_open (1,000,000 samples, 0.08%)</title><rect x="547.8" y="533" width="0.9" height="15.0" fill="rgb(248,163,38)" rx="2" ry="2" />
<text  x="550.77" y="543.5" ></text>
</g>
<g >
<title>lappend_oid (3,000,000 samples, 0.23%)</title><rect x="795.8" y="469" width="2.7" height="15.0" fill="rgb(211,133,30)" rx="2" ry="2" />
<text  x="798.76" y="479.5" ></text>
</g>
<g >
<title>ReadBuffer (2,000,000 samples, 0.15%)</title><rect x="999.2" y="181" width="1.9" height="15.0" fill="rgb(248,200,49)" rx="2" ry="2" />
<text  x="1002.24" y="191.5" ></text>
</g>
<g >
<title>RelationBuildDesc (101,000,000 samples, 7.78%)</title><rect x="508.7" y="565" width="91.8" height="15.0" fill="rgb(251,44,36)" rx="2" ry="2" />
<text  x="511.71" y="575.5" >RelationBu..</text>
</g>
<g >
<title>SearchCatCache1 (2,000,000 samples, 0.15%)</title><rect x="1019.2" y="485" width="1.8" height="15.0" fill="rgb(205,189,20)" rx="2" ry="2" />
<text  x="1022.22" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3,000,000 samples, 0.23%)</title><rect x="795.8" y="421" width="2.7" height="15.0" fill="rgb(216,162,28)" rx="2" ry="2" />
<text  x="798.76" y="431.5" ></text>
</g>
<g >
<title>task_work_run (2,000,000 samples, 0.15%)</title><rect x="267.1" y="293" width="1.8" height="15.0" fill="rgb(214,155,1)" rx="2" ry="2" />
<text  x="270.07" y="303.5" ></text>
</g>
<g >
<title>index_getnext_tid (12,000,000 samples, 0.92%)</title><rect x="929.3" y="277" width="10.9" height="15.0" fill="rgb(238,31,14)" rx="2" ry="2" />
<text  x="932.29" y="287.5" ></text>
</g>
<g >
<title>mdopenfork (1,000,000 samples, 0.08%)</title><rect x="176.2" y="549" width="0.9" height="15.0" fill="rgb(216,125,43)" rx="2" ry="2" />
<text  x="179.24" y="559.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="127.2" y="517" width="0.9" height="15.0" fill="rgb(234,166,30)" rx="2" ry="2" />
<text  x="130.18" y="527.5" ></text>
</g>
<g >
<title>_bt_readpage (3,000,000 samples, 0.23%)</title><rect x="487.8" y="421" width="2.7" height="15.0" fill="rgb(227,53,50)" rx="2" ry="2" />
<text  x="490.81" y="431.5" ></text>
</g>
<g >
<title>table_relation_size (15,000,000 samples, 1.15%)</title><rect x="257.1" y="501" width="13.6" height="15.0" fill="rgb(239,77,45)" rx="2" ry="2" />
<text  x="260.08" y="511.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="467.8" y="341" width="0.9" height="15.0" fill="rgb(226,130,24)" rx="2" ry="2" />
<text  x="470.83" y="351.5" ></text>
</g>
<g >
<title>_bt_binsrch (4,000,000 samples, 0.31%)</title><rect x="532.3" y="453" width="3.7" height="15.0" fill="rgb(212,70,44)" rx="2" ry="2" />
<text  x="535.32" y="463.5" ></text>
</g>
<g >
<title>ScanKeyInit (1,000,000 samples, 0.08%)</title><rect x="471.5" y="517" width="0.9" height="15.0" fill="rgb(242,4,32)" rx="2" ry="2" />
<text  x="474.46" y="527.5" ></text>
</g>
<g >
<title>LockAcquireExtended (6,000,000 samples, 0.46%)</title><rect x="152.6" y="517" width="5.5" height="15.0" fill="rgb(219,146,2)" rx="2" ry="2" />
<text  x="155.62" y="527.5" ></text>
</g>
<g >
<title>LockAcquireExtended (8,000,000 samples, 0.62%)</title><rect x="293.4" y="501" width="7.3" height="15.0" fill="rgb(215,5,13)" rx="2" ry="2" />
<text  x="296.42" y="511.5" ></text>
</g>
<g >
<title>btgettuple (9,000,000 samples, 0.69%)</title><rect x="446.9" y="389" width="8.2" height="15.0" fill="rgb(219,52,23)" rx="2" ry="2" />
<text  x="449.94" y="399.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (1,000,000 samples, 0.08%)</title><rect x="569.6" y="517" width="0.9" height="15.0" fill="rgb(212,21,0)" rx="2" ry="2" />
<text  x="572.57" y="527.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (22,000,000 samples, 1.69%)</title><rect x="103.6" y="565" width="19.9" height="15.0" fill="rgb(225,223,25)" rx="2" ry="2" />
<text  x="106.56" y="575.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (1,000,000 samples, 0.08%)</title><rect x="393.3" y="325" width="0.9" height="15.0" fill="rgb(240,28,10)" rx="2" ry="2" />
<text  x="396.34" y="335.5" ></text>
</g>
<g >
<title>check_mergejoinable (5,000,000 samples, 0.38%)</title><rect x="823.0" y="485" width="4.6" height="15.0" fill="rgb(251,170,1)" rx="2" ry="2" />
<text  x="826.01" y="495.5" ></text>
</g>
<g >
<title>makeString (1,000,000 samples, 0.08%)</title><rect x="497.8" y="597" width="0.9" height="15.0" fill="rgb(248,141,25)" rx="2" ry="2" />
<text  x="500.81" y="607.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="485.1" y="341" width="0.9" height="15.0" fill="rgb(250,92,31)" rx="2" ry="2" />
<text  x="488.09" y="351.5" ></text>
</g>
<g >
<title>makeVar (1,000,000 samples, 0.08%)</title><rect x="500.5" y="565" width="0.9" height="15.0" fill="rgb(208,28,41)" rx="2" ry="2" />
<text  x="503.53" y="575.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (1,000,000 samples, 0.08%)</title><rect x="646.8" y="261" width="0.9" height="15.0" fill="rgb(209,125,5)" rx="2" ry="2" />
<text  x="649.78" y="271.5" ></text>
</g>
<g >
<title>RehashCatCache (2,000,000 samples, 0.15%)</title><rect x="358.8" y="389" width="1.8" height="15.0" fill="rgb(232,9,2)" rx="2" ry="2" />
<text  x="361.82" y="399.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (1,000,000 samples, 0.08%)</title><rect x="436.0" y="357" width="0.9" height="15.0" fill="rgb(222,193,52)" rx="2" ry="2" />
<text  x="439.04" y="367.5" ></text>
</g>
<g >
<title>RelationBuildPartitionDesc (55,000,000 samples, 4.23%)</title><rect x="43.6" y="517" width="50.0" height="15.0" fill="rgb(205,226,2)" rx="2" ry="2" />
<text  x="46.61" y="527.5" >Relat..</text>
</g>
<g >
<title>table_index_fetch_end (1,000,000 samples, 0.08%)</title><rect x="928.4" y="277" width="0.9" height="15.0" fill="rgb(238,55,34)" rx="2" ry="2" />
<text  x="931.38" y="287.5" ></text>
</g>
<g >
<title>get_restriction_variable (40,000,000 samples, 3.08%)</title><rect x="912.0" y="421" width="36.4" height="15.0" fill="rgb(242,21,48)" rx="2" ry="2" />
<text  x="915.03" y="431.5" >get..</text>
</g>
<g >
<title>RelationIdGetRelation (1,000,000 samples, 0.08%)</title><rect x="291.6" y="533" width="0.9" height="15.0" fill="rgb(220,157,9)" rx="2" ry="2" />
<text  x="294.60" y="543.5" ></text>
</g>
<g >
<title>exec_prepare_plan (1,000,000 samples, 0.08%)</title><rect x="962.0" y="165" width="0.9" height="15.0" fill="rgb(215,13,13)" rx="2" ry="2" />
<text  x="964.99" y="175.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="546.0" y="453" width="0.9" height="15.0" fill="rgb(231,181,15)" rx="2" ry="2" />
<text  x="548.95" y="463.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="613.2" y="357" width="0.9" height="15.0" fill="rgb(208,33,16)" rx="2" ry="2" />
<text  x="616.17" y="367.5" ></text>
</g>
<g >
<title>pg_vsnprintf (4,000,000 samples, 0.31%)</title><rect x="162.6" y="469" width="3.6" height="15.0" fill="rgb(220,173,13)" rx="2" ry="2" />
<text  x="165.61" y="479.5" ></text>
</g>
<g >
<title>AllocateRelationDesc (8,000,000 samples, 0.62%)</title><rect x="509.6" y="549" width="7.3" height="15.0" fill="rgb(211,192,49)" rx="2" ry="2" />
<text  x="512.62" y="559.5" ></text>
</g>
<g >
<title>nocachegetattr (1,000,000 samples, 0.08%)</title><rect x="75.4" y="453" width="0.9" height="15.0" fill="rgb(247,32,54)" rx="2" ry="2" />
<text  x="78.40" y="463.5" ></text>
</g>
<g >
<title>__mmap (1,000,000 samples, 0.08%)</title><rect x="1089.2" y="1013" width="0.9" height="15.0" fill="rgb(227,124,50)" rx="2" ry="2" />
<text  x="1092.17" y="1023.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="969.3" y="277" width="0.9" height="15.0" fill="rgb(229,95,11)" rx="2" ry="2" />
<text  x="972.26" y="287.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (1,000,000 samples, 0.08%)</title><rect x="962.9" y="181" width="0.9" height="15.0" fill="rgb(237,219,7)" rx="2" ry="2" />
<text  x="965.90" y="191.5" ></text>
</g>
<g >
<title>__libc_pread64 (77,000,000 samples, 5.93%)</title><rect x="182.6" y="469" width="69.9" height="15.0" fill="rgb(230,61,19)" rx="2" ry="2" />
<text  x="185.59" y="479.5" >__libc_..</text>
</g>
<g >
<title>btendscan (2,000,000 samples, 0.15%)</title><rect x="282.5" y="517" width="1.8" height="15.0" fill="rgb(253,180,52)" rx="2" ry="2" />
<text  x="285.52" y="527.5" ></text>
</g>
<g >
<title>ExecInitExprRec (2,000,000 samples, 0.15%)</title><rect x="963.8" y="309" width="1.8" height="15.0" fill="rgb(217,148,1)" rx="2" ry="2" />
<text  x="966.81" y="319.5" ></text>
</g>
<g >
<title>mdnblocks (18,000,000 samples, 1.39%)</title><rect x="159.9" y="549" width="16.3" height="15.0" fill="rgb(230,163,29)" rx="2" ry="2" />
<text  x="162.88" y="559.5" ></text>
</g>
<g >
<title>pgstat_count_io_op_n (1,000,000 samples, 0.08%)</title><rect x="342.5" y="309" width="0.9" height="15.0" fill="rgb(238,159,15)" rx="2" ry="2" />
<text  x="345.47" y="319.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,000,000 samples, 0.15%)</title><rect x="334.3" y="389" width="1.8" height="15.0" fill="rgb(207,32,45)" rx="2" ry="2" />
<text  x="337.30" y="399.5" ></text>
</g>
<g >
<title>__fput (2,000,000 samples, 0.15%)</title><rect x="173.5" y="373" width="1.8" height="15.0" fill="rgb(243,205,54)" rx="2" ry="2" />
<text  x="176.51" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="919.3" y="149" width="0.9" height="15.0" fill="rgb(213,194,16)" rx="2" ry="2" />
<text  x="922.30" y="159.5" ></text>
</g>
<g >
<title>bms_difference (1,000,000 samples, 0.08%)</title><rect x="827.6" y="453" width="0.9" height="15.0" fill="rgb(233,133,47)" rx="2" ry="2" />
<text  x="830.55" y="463.5" ></text>
</g>
<g >
<title>prep_new_page (21,000,000 samples, 1.62%)</title><rect x="223.5" y="133" width="19.0" height="15.0" fill="rgb(242,181,36)" rx="2" ry="2" />
<text  x="226.47" y="143.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="31.8" y="437" width="0.9" height="15.0" fill="rgb(229,226,26)" rx="2" ry="2" />
<text  x="34.80" y="447.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="441.5" y="325" width="0.9" height="15.0" fill="rgb(254,18,9)" rx="2" ry="2" />
<text  x="444.49" y="335.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="155.3" y="485" width="1.0" height="15.0" fill="rgb(240,35,53)" rx="2" ry="2" />
<text  x="158.34" y="495.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (1,000,000 samples, 0.08%)</title><rect x="454.2" y="341" width="0.9" height="15.0" fill="rgb(245,9,31)" rx="2" ry="2" />
<text  x="457.20" y="351.5" ></text>
</g>
<g >
<title>PageGetItem (1,000,000 samples, 0.08%)</title><rect x="70.0" y="325" width="0.9" height="15.0" fill="rgb(211,8,19)" rx="2" ry="2" />
<text  x="72.95" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (1,000,000 samples, 0.08%)</title><rect x="569.6" y="485" width="0.9" height="15.0" fill="rgb(214,217,7)" rx="2" ry="2" />
<text  x="572.57" y="495.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (1,000,000 samples, 0.08%)</title><rect x="518.7" y="469" width="0.9" height="15.0" fill="rgb(224,143,43)" rx="2" ry="2" />
<text  x="521.70" y="479.5" ></text>
</g>
<g >
<title>reconsider_outer_join_clauses (1,000,000 samples, 0.08%)</title><rect x="1045.6" y="661" width="0.9" height="15.0" fill="rgb(233,91,35)" rx="2" ry="2" />
<text  x="1048.57" y="671.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,000,000 samples, 0.08%)</title><rect x="288.0" y="341" width="0.9" height="15.0" fill="rgb(233,87,33)" rx="2" ry="2" />
<text  x="290.97" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="914.8" y="261" width="1.8" height="15.0" fill="rgb(239,212,28)" rx="2" ry="2" />
<text  x="917.76" y="271.5" ></text>
</g>
<g >
<title>LockAcquireExtended (4,000,000 samples, 0.31%)</title><rect x="422.4" y="357" width="3.6" height="15.0" fill="rgb(213,22,27)" rx="2" ry="2" />
<text  x="425.41" y="367.5" ></text>
</g>
<g >
<title>RelationInitPhysicalAddr (1,000,000 samples, 0.08%)</title><rect x="470.6" y="517" width="0.9" height="15.0" fill="rgb(208,39,10)" rx="2" ry="2" />
<text  x="473.55" y="527.5" ></text>
</g>
<g >
<title>check_index_only (2,000,000 samples, 0.15%)</title><rect x="684.9" y="469" width="1.9" height="15.0" fill="rgb(222,79,15)" rx="2" ry="2" />
<text  x="687.93" y="479.5" ></text>
</g>
<g >
<title>check_functions_in_node (2,000,000 samples, 0.15%)</title><rect x="823.9" y="421" width="1.8" height="15.0" fill="rgb(245,223,29)" rx="2" ry="2" />
<text  x="826.92" y="431.5" ></text>
</g>
<g >
<title>BufTableHashCode (1,000,000 samples, 0.08%)</title><rect x="286.2" y="373" width="0.9" height="15.0" fill="rgb(245,156,45)" rx="2" ry="2" />
<text  x="289.15" y="383.5" ></text>
</g>
<g >
<title>BufTableLookup (1,000,000 samples, 0.08%)</title><rect x="287.1" y="373" width="0.9" height="15.0" fill="rgb(221,202,12)" rx="2" ry="2" />
<text  x="290.06" y="383.5" ></text>
</g>
<g >
<title>process_backlog (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="661" width="1.0" height="15.0" fill="rgb(214,76,5)" rx="2" ry="2" />
<text  x="1187.55" y="671.5" ></text>
</g>
<g >
<title>ReadBufferExtended (4,000,000 samples, 0.31%)</title><rect x="285.2" y="421" width="3.7" height="15.0" fill="rgb(220,7,6)" rx="2" ry="2" />
<text  x="288.24" y="431.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="23.6" y="629" width="0.9" height="15.0" fill="rgb(233,194,10)" rx="2" ry="2" />
<text  x="26.63" y="639.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="592.3" y="421" width="0.9" height="15.0" fill="rgb(224,61,41)" rx="2" ry="2" />
<text  x="595.28" y="431.5" ></text>
</g>
<g >
<title>text_to_cstring (1,000,000 samples, 0.08%)</title><rect x="92.7" y="501" width="0.9" height="15.0" fill="rgb(221,86,14)" rx="2" ry="2" />
<text  x="95.66" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="21.8" y="565" width="0.9" height="15.0" fill="rgb(221,58,37)" rx="2" ry="2" />
<text  x="24.81" y="575.5" ></text>
</g>
<g >
<title>restriction_selectivity (5,000,000 samples, 0.38%)</title><rect x="714.9" y="373" width="4.6" height="15.0" fill="rgb(219,8,39)" rx="2" ry="2" />
<text  x="717.91" y="383.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,000,000 samples, 0.08%)</title><rect x="456.9" y="373" width="0.9" height="15.0" fill="rgb(206,177,24)" rx="2" ry="2" />
<text  x="459.93" y="383.5" ></text>
</g>
<g >
<title>systrim.constprop.0 (1,000,000 samples, 0.08%)</title><rect x="1088.3" y="997" width="0.9" height="15.0" fill="rgb(223,4,41)" rx="2" ry="2" />
<text  x="1091.26" y="1007.5" ></text>
</g>
<g >
<title>table_slot_create (2,000,000 samples, 0.15%)</title><rect x="57.2" y="421" width="1.9" height="15.0" fill="rgb(251,184,46)" rx="2" ry="2" />
<text  x="60.24" y="431.5" ></text>
</g>
<g >
<title>BufferAlloc (1,000,000 samples, 0.08%)</title><rect x="936.6" y="133" width="0.9" height="15.0" fill="rgb(224,102,36)" rx="2" ry="2" />
<text  x="939.56" y="143.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (48,000,000 samples, 3.70%)</title><rect x="968.4" y="341" width="43.6" height="15.0" fill="rgb(218,212,41)" rx="2" ry="2" />
<text  x="971.35" y="351.5" >Sear..</text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="351.6" y="485" width="0.9" height="15.0" fill="rgb(227,165,5)" rx="2" ry="2" />
<text  x="354.56" y="495.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="450.6" y="229" width="0.9" height="15.0" fill="rgb(250,152,51)" rx="2" ry="2" />
<text  x="453.57" y="239.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="965" width="0.9" height="15.0" fill="rgb(252,207,17)" rx="2" ry="2" />
<text  x="1093.08" y="975.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (1,000,000 samples, 0.08%)</title><rect x="938.4" y="181" width="0.9" height="15.0" fill="rgb(253,17,7)" rx="2" ry="2" />
<text  x="941.38" y="191.5" ></text>
</g>
<g >
<title>clause_selectivity_ext (1,000,000 samples, 0.08%)</title><rect x="688.6" y="389" width="0.9" height="15.0" fill="rgb(239,21,50)" rx="2" ry="2" />
<text  x="691.57" y="399.5" ></text>
</g>
<g >
<title>relation_open (4,000,000 samples, 0.31%)</title><rect x="1029.2" y="421" width="3.6" height="15.0" fill="rgb(210,167,1)" rx="2" ry="2" />
<text  x="1032.21" y="431.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,000,000 samples, 0.08%)</title><rect x="868.4" y="501" width="0.9" height="15.0" fill="rgb(247,44,34)" rx="2" ry="2" />
<text  x="871.43" y="511.5" ></text>
</g>
<g >
<title>CleanUpLock (1,000,000 samples, 0.08%)</title><rect x="480.5" y="437" width="1.0" height="15.0" fill="rgb(247,102,36)" rx="2" ry="2" />
<text  x="483.55" y="447.5" ></text>
</g>
<g >
<title>LockTagHashCode (1,000,000 samples, 0.08%)</title><rect x="992.9" y="229" width="0.9" height="15.0" fill="rgb(239,201,25)" rx="2" ry="2" />
<text  x="995.88" y="239.5" ></text>
</g>
<g >
<title>_readPartitionBoundSpec (13,000,000 samples, 1.00%)</title><rect x="80.9" y="437" width="11.8" height="15.0" fill="rgb(253,25,45)" rx="2" ry="2" />
<text  x="83.85" y="447.5" ></text>
</g>
<g >
<title>fmgr_info (1,000,000 samples, 0.08%)</title><rect x="688.6" y="341" width="0.9" height="15.0" fill="rgb(219,29,13)" rx="2" ry="2" />
<text  x="691.57" y="351.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="919.3" y="181" width="0.9" height="15.0" fill="rgb(218,47,27)" rx="2" ry="2" />
<text  x="922.30" y="191.5" ></text>
</g>
<g >
<title>table_open (3,000,000 samples, 0.23%)</title><rect x="891.1" y="565" width="2.8" height="15.0" fill="rgb(227,69,24)" rx="2" ry="2" />
<text  x="894.14" y="575.5" ></text>
</g>
<g >
<title>btrescan (1,000,000 samples, 0.08%)</title><rect x="56.3" y="405" width="0.9" height="15.0" fill="rgb(216,115,48)" rx="2" ry="2" />
<text  x="59.33" y="415.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="296.1" y="485" width="1.0" height="15.0" fill="rgb(235,144,14)" rx="2" ry="2" />
<text  x="299.14" y="495.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="679.5" y="373" width="0.9" height="15.0" fill="rgb(234,224,4)" rx="2" ry="2" />
<text  x="682.48" y="383.5" ></text>
</g>
<g >
<title>expand_table (1,000,000 samples, 0.08%)</title><rect x="258.9" y="405" width="0.9" height="15.0" fill="rgb(224,183,5)" rx="2" ry="2" />
<text  x="261.90" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="45.4" y="373" width="0.9" height="15.0" fill="rgb(254,108,34)" rx="2" ry="2" />
<text  x="48.43" y="383.5" ></text>
</g>
<g >
<title>_bt_getroot (1,000,000 samples, 0.08%)</title><rect x="342.5" y="405" width="0.9" height="15.0" fill="rgb(247,196,50)" rx="2" ry="2" />
<text  x="345.47" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (2,000,000 samples, 0.15%)</title><rect x="781.2" y="325" width="1.8" height="15.0" fill="rgb(228,228,25)" rx="2" ry="2" />
<text  x="784.22" y="335.5" ></text>
</g>
<g >
<title>GetPrivateRefCount (1,000,000 samples, 0.08%)</title><rect x="178.1" y="453" width="0.9" height="15.0" fill="rgb(207,174,18)" rx="2" ry="2" />
<text  x="181.05" y="463.5" ></text>
</g>
<g >
<title>ReleaseBuffer (2,000,000 samples, 0.15%)</title><rect x="407.0" y="309" width="1.8" height="15.0" fill="rgb(248,47,23)" rx="2" ry="2" />
<text  x="409.97" y="319.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="1032.8" y="373" width="1.0" height="15.0" fill="rgb(248,195,48)" rx="2" ry="2" />
<text  x="1035.85" y="383.5" ></text>
</g>
<g >
<title>relation_open (1,000,000 samples, 0.08%)</title><rect x="492.4" y="485" width="0.9" height="15.0" fill="rgb(239,81,29)" rx="2" ry="2" />
<text  x="495.36" y="495.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (49,000,000 samples, 3.77%)</title><rect x="1117.3" y="917" width="44.5" height="15.0" fill="rgb(247,224,53)" rx="2" ry="2" />
<text  x="1120.33" y="927.5" >__al..</text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="766.7" y="325" width="0.9" height="15.0" fill="rgb(252,2,9)" rx="2" ry="2" />
<text  x="769.69" y="335.5" ></text>
</g>
<g >
<title>SetupLockInTable (1,000,000 samples, 0.08%)</title><rect x="547.8" y="469" width="0.9" height="15.0" fill="rgb(226,118,52)" rx="2" ry="2" />
<text  x="550.77" y="479.5" ></text>
</g>
<g >
<title>__close (8,000,000 samples, 0.62%)</title><rect x="168.1" y="453" width="7.2" height="15.0" fill="rgb(215,133,0)" rx="2" ry="2" />
<text  x="171.06" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="158.1" y="517" width="0.9" height="15.0" fill="rgb(205,116,31)" rx="2" ry="2" />
<text  x="161.07" y="527.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,000,000 samples, 0.15%)</title><rect x="416.1" y="261" width="1.8" height="15.0" fill="rgb(227,128,44)" rx="2" ry="2" />
<text  x="419.05" y="271.5" ></text>
</g>
<g >
<title>_bt_binsrch (5,000,000 samples, 0.38%)</title><rect x="582.3" y="437" width="4.5" height="15.0" fill="rgb(229,109,38)" rx="2" ry="2" />
<text  x="585.29" y="447.5" ></text>
</g>
<g >
<title>add_function_cost (1,000,000 samples, 0.08%)</title><rect x="809.4" y="405" width="0.9" height="15.0" fill="rgb(231,49,32)" rx="2" ry="2" />
<text  x="812.38" y="415.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberRelationRef (1,000,000 samples, 0.08%)</title><rect x="436.0" y="373" width="0.9" height="15.0" fill="rgb(218,88,22)" rx="2" ry="2" />
<text  x="439.04" y="383.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,000,000 samples, 0.08%)</title><rect x="72.7" y="229" width="0.9" height="15.0" fill="rgb(211,58,36)" rx="2" ry="2" />
<text  x="75.68" y="239.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="916.6" y="213" width="0.9" height="15.0" fill="rgb(220,162,54)" rx="2" ry="2" />
<text  x="919.57" y="223.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,000,000 samples, 0.23%)</title><rect x="466.9" y="437" width="2.7" height="15.0" fill="rgb(213,222,11)" rx="2" ry="2" />
<text  x="469.92" y="447.5" ></text>
</g>
<g >
<title>btgettuple (6,000,000 samples, 0.46%)</title><rect x="338.8" y="453" width="5.5" height="15.0" fill="rgb(251,211,17)" rx="2" ry="2" />
<text  x="341.84" y="463.5" ></text>
</g>
<g >
<title>index_getnext_slot (1,000,000 samples, 0.08%)</title><rect x="76.3" y="469" width="0.9" height="15.0" fill="rgb(218,71,46)" rx="2" ry="2" />
<text  x="79.31" y="479.5" ></text>
</g>
<g >
<title>pgstat_init_entry (1,000,000 samples, 0.08%)</title><rect x="254.4" y="453" width="0.9" height="15.0" fill="rgb(205,209,30)" rx="2" ry="2" />
<text  x="257.36" y="463.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="950.2" y="341" width="0.9" height="15.0" fill="rgb(217,7,25)" rx="2" ry="2" />
<text  x="953.18" y="351.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="127.2" y="421" width="0.9" height="15.0" fill="rgb(233,167,49)" rx="2" ry="2" />
<text  x="130.18" y="431.5" ></text>
</g>
<g >
<title>predicate_classify (2,000,000 samples, 0.15%)</title><rect x="899.3" y="533" width="1.8" height="15.0" fill="rgb(250,50,37)" rx="2" ry="2" />
<text  x="902.31" y="543.5" ></text>
</g>
<g >
<title>index_getattr (1,000,000 samples, 0.08%)</title><rect x="540.5" y="421" width="0.9" height="15.0" fill="rgb(241,1,38)" rx="2" ry="2" />
<text  x="543.50" y="431.5" ></text>
</g>
<g >
<title>index_beginscan (1,000,000 samples, 0.08%)</title><rect x="1028.3" y="437" width="0.9" height="15.0" fill="rgb(211,111,25)" rx="2" ry="2" />
<text  x="1031.31" y="447.5" ></text>
</g>
<g >
<title>make_pathkey_from_sortinfo (72,000,000 samples, 5.54%)</title><rect x="734.9" y="501" width="65.4" height="15.0" fill="rgb(236,65,21)" rx="2" ry="2" />
<text  x="737.90" y="511.5" >make_pa..</text>
</g>
<g >
<title>expression_tree_mutator_impl (3,000,000 samples, 0.23%)</title><rect x="99.0" y="549" width="2.7" height="15.0" fill="rgb(233,44,21)" rx="2" ry="2" />
<text  x="102.02" y="559.5" ></text>
</g>
<g >
<title>get_page_from_freelist (47,000,000 samples, 3.62%)</title><rect x="1119.1" y="901" width="42.7" height="15.0" fill="rgb(245,97,27)" rx="2" ry="2" />
<text  x="1122.15" y="911.5" >get_..</text>
</g>
<g >
<title>index_getnext_tid (15,000,000 samples, 1.15%)</title><rect x="576.8" y="501" width="13.7" height="15.0" fill="rgb(236,198,3)" rx="2" ry="2" />
<text  x="579.84" y="511.5" ></text>
</g>
<g >
<title>palloc0 (1,000,000 samples, 0.08%)</title><rect x="132.6" y="501" width="0.9" height="15.0" fill="rgb(241,123,35)" rx="2" ry="2" />
<text  x="135.63" y="511.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (2,000,000 samples, 0.15%)</title><rect x="848.4" y="453" width="1.9" height="15.0" fill="rgb(232,90,25)" rx="2" ry="2" />
<text  x="851.44" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="613.2" y="405" width="0.9" height="15.0" fill="rgb(239,113,30)" rx="2" ry="2" />
<text  x="616.17" y="415.5" ></text>
</g>
<g >
<title>BufferAlloc (1,000,000 samples, 0.08%)</title><rect x="65.4" y="293" width="0.9" height="15.0" fill="rgb(213,158,21)" rx="2" ry="2" />
<text  x="68.41" y="303.5" ></text>
</g>
<g >
<title>predicate_refuted_by_recurse (10,000,000 samples, 0.77%)</title><rect x="895.7" y="565" width="9.1" height="15.0" fill="rgb(239,176,32)" rx="2" ry="2" />
<text  x="898.68" y="575.5" ></text>
</g>
<g >
<title>alloc_pages_vma (2,000,000 samples, 0.15%)</title><rect x="434.2" y="357" width="1.8" height="15.0" fill="rgb(254,139,5)" rx="2" ry="2" />
<text  x="437.22" y="367.5" ></text>
</g>
<g >
<title>smgrnblocks (12,000,000 samples, 0.92%)</title><rect x="259.8" y="469" width="10.9" height="15.0" fill="rgb(237,81,26)" rx="2" ry="2" />
<text  x="262.81" y="479.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="120.8" y="469" width="0.9" height="15.0" fill="rgb(210,23,30)" rx="2" ry="2" />
<text  x="123.82" y="479.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="789" width="1.0" height="15.0" fill="rgb(230,5,54)" rx="2" ry="2" />
<text  x="1187.55" y="799.5" ></text>
</g>
<g >
<title>balance_dirty_pages_ratelimited (1,000,000 samples, 0.08%)</title><rect x="242.5" y="245" width="1.0" height="15.0" fill="rgb(218,120,33)" rx="2" ry="2" />
<text  x="245.55" y="255.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="714.9" y="37" width="0.9" height="15.0" fill="rgb(215,163,20)" rx="2" ry="2" />
<text  x="717.91" y="47.5" ></text>
</g>
<g >
<title>list_last_cell (1,000,000 samples, 0.08%)</title><rect x="826.6" y="453" width="1.0" height="15.0" fill="rgb(221,189,14)" rx="2" ry="2" />
<text  x="829.64" y="463.5" ></text>
</g>
<g >
<title>LockRelationOid (2,000,000 samples, 0.15%)</title><rect x="54.5" y="389" width="1.8" height="15.0" fill="rgb(209,123,29)" rx="2" ry="2" />
<text  x="57.51" y="399.5" ></text>
</g>
<g >
<title>shmem_add_to_page_cache (3,000,000 samples, 0.23%)</title><rect x="217.1" y="213" width="2.7" height="15.0" fill="rgb(230,17,7)" rx="2" ry="2" />
<text  x="220.11" y="223.5" ></text>
</g>
<g >
<title>BufferAlloc (3,000,000 samples, 0.23%)</title><rect x="286.2" y="389" width="2.7" height="15.0" fill="rgb(218,34,14)" rx="2" ry="2" />
<text  x="289.15" y="399.5" ></text>
</g>
<g >
<title>_bt_steppage (1,000,000 samples, 0.08%)</title><rect x="938.4" y="229" width="0.9" height="15.0" fill="rgb(222,170,32)" rx="2" ry="2" />
<text  x="941.38" y="239.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (2,000,000 samples, 0.15%)</title><rect x="803.9" y="437" width="1.9" height="15.0" fill="rgb(218,112,48)" rx="2" ry="2" />
<text  x="806.93" y="447.5" ></text>
</g>
<g >
<title>table_slot_create (3,000,000 samples, 0.23%)</title><rect x="377.9" y="389" width="2.7" height="15.0" fill="rgb(219,104,50)" rx="2" ry="2" />
<text  x="380.90" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,000,000 samples, 0.08%)</title><rect x="504.2" y="501" width="0.9" height="15.0" fill="rgb(227,206,49)" rx="2" ry="2" />
<text  x="507.16" y="511.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (3,000,000 samples, 0.23%)</title><rect x="444.2" y="373" width="2.7" height="15.0" fill="rgb(224,99,3)" rx="2" ry="2" />
<text  x="447.21" y="383.5" ></text>
</g>
<g >
<title>get_baserel_parampathinfo (1,000,000 samples, 0.08%)</title><rect x="811.2" y="501" width="0.9" height="15.0" fill="rgb(253,203,17)" rx="2" ry="2" />
<text  x="814.20" y="511.5" ></text>
</g>
<g >
<title>get_relation_constraints (6,000,000 samples, 0.46%)</title><rect x="888.4" y="581" width="5.5" height="15.0" fill="rgb(233,55,16)" rx="2" ry="2" />
<text  x="891.41" y="591.5" ></text>
</g>
<g >
<title>index_other_operands_eval_cost (2,000,000 samples, 0.15%)</title><rect x="808.5" y="453" width="1.8" height="15.0" fill="rgb(224,222,8)" rx="2" ry="2" />
<text  x="811.48" y="463.5" ></text>
</g>
<g >
<title>examine_simple_variable (49,000,000 samples, 3.77%)</title><rect x="967.4" y="389" width="44.6" height="15.0" fill="rgb(207,83,4)" rx="2" ry="2" />
<text  x="970.44" y="399.5" >exam..</text>
</g>
<g >
<title>__softirqentry_text_start (1,000,000 samples, 0.08%)</title><rect x="972.9" y="197" width="0.9" height="15.0" fill="rgb(214,76,49)" rx="2" ry="2" />
<text  x="975.89" y="207.5" ></text>
</g>
<g >
<title>create_range_bounds (3,000,000 samples, 0.23%)</title><rect x="77.2" y="485" width="2.7" height="15.0" fill="rgb(223,146,8)" rx="2" ry="2" />
<text  x="80.22" y="495.5" ></text>
</g>
<g >
<title>expand_table (1,000,000 samples, 0.08%)</title><rect x="599.5" y="517" width="1.0" height="15.0" fill="rgb(232,153,17)" rx="2" ry="2" />
<text  x="602.55" y="527.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="142.6" y="421" width="0.9" height="15.0" fill="rgb(230,132,19)" rx="2" ry="2" />
<text  x="145.63" y="431.5" ></text>
</g>
<g >
<title>do_filp_open (21,000,000 samples, 1.62%)</title><rect x="1056.5" y="917" width="19.0" height="15.0" fill="rgb(228,115,52)" rx="2" ry="2" />
<text  x="1059.47" y="927.5" ></text>
</g>
<g >
<title>deparse_context_for_plan_tree (7,000,000 samples, 0.54%)</title><rect x="18.2" y="725" width="6.3" height="15.0" fill="rgb(253,109,0)" rx="2" ry="2" />
<text  x="21.18" y="735.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="581" width="0.9" height="15.0" fill="rgb(229,140,52)" rx="2" ry="2" />
<text  x="1052.20" y="591.5" ></text>
</g>
<g >
<title>kmem_cache_free (1,000,000 samples, 0.08%)</title><rect x="972.9" y="165" width="0.9" height="15.0" fill="rgb(233,105,29)" rx="2" ry="2" />
<text  x="975.89" y="175.5" ></text>
</g>
<g >
<title>transformExpr (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="709" width="0.9" height="15.0" fill="rgb(207,170,11)" rx="2" ry="2" />
<text  x="1052.20" y="719.5" ></text>
</g>
<g >
<title>PinBuffer (1,000,000 samples, 0.08%)</title><rect x="417.0" y="213" width="0.9" height="15.0" fill="rgb(232,169,49)" rx="2" ry="2" />
<text  x="419.96" y="223.5" ></text>
</g>
<g >
<title>lappend_oid (1,000,000 samples, 0.08%)</title><rect x="129.9" y="565" width="0.9" height="15.0" fill="rgb(254,225,44)" rx="2" ry="2" />
<text  x="132.91" y="575.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (1,000,000 samples, 0.08%)</title><rect x="1170.0" y="917" width="0.9" height="15.0" fill="rgb(228,142,39)" rx="2" ry="2" />
<text  x="1173.02" y="927.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="728.5" y="485" width="0.9" height="15.0" fill="rgb(246,11,45)" rx="2" ry="2" />
<text  x="731.54" y="495.5" ></text>
</g>
<g >
<title>add_base_rels_to_query (57,000,000 samples, 4.39%)</title><rect x="42.7" y="613" width="51.8" height="15.0" fill="rgb(227,159,28)" rx="2" ry="2" />
<text  x="45.70" y="623.5" >add_b..</text>
</g>
<g >
<title>dlist_delete (1,000,000 samples, 0.08%)</title><rect x="522.3" y="453" width="0.9" height="15.0" fill="rgb(215,213,14)" rx="2" ry="2" />
<text  x="525.33" y="463.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="326.1" y="373" width="0.9" height="15.0" fill="rgb(243,139,44)" rx="2" ry="2" />
<text  x="329.12" y="383.5" ></text>
</g>
<g >
<title>index_open (2,000,000 samples, 0.15%)</title><rect x="920.2" y="293" width="1.8" height="15.0" fill="rgb(226,17,32)" rx="2" ry="2" />
<text  x="923.21" y="303.5" ></text>
</g>
<g >
<title>clauselist_selectivity_ext (2,000,000 samples, 0.15%)</title><rect x="688.6" y="405" width="1.8" height="15.0" fill="rgb(251,194,7)" rx="2" ry="2" />
<text  x="691.57" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="150.8" y="437" width="0.9" height="15.0" fill="rgb(236,222,18)" rx="2" ry="2" />
<text  x="153.80" y="447.5" ></text>
</g>
<g >
<title>pg_strtok (1,000,000 samples, 0.08%)</title><rect x="91.8" y="421" width="0.9" height="15.0" fill="rgb(252,167,33)" rx="2" ry="2" />
<text  x="94.76" y="431.5" ></text>
</g>
<g >
<title>index_getnext_slot (1,000,000 samples, 0.08%)</title><rect x="972.0" y="309" width="0.9" height="15.0" fill="rgb(230,136,38)" rx="2" ry="2" />
<text  x="974.99" y="319.5" ></text>
</g>
<g >
<title>LockRelationOid (2,000,000 samples, 0.15%)</title><rect x="920.2" y="261" width="1.8" height="15.0" fill="rgb(226,221,9)" rx="2" ry="2" />
<text  x="923.21" y="271.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="278.0" y="469" width="0.9" height="15.0" fill="rgb(235,58,20)" rx="2" ry="2" />
<text  x="280.98" y="479.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (1,000,000 samples, 0.08%)</title><rect x="407.9" y="277" width="0.9" height="15.0" fill="rgb(220,141,0)" rx="2" ry="2" />
<text  x="410.88" y="287.5" ></text>
</g>
<g >
<title>pgstat_release_all_entry_refs (1,000,000 samples, 0.08%)</title><rect x="1051.9" y="805" width="0.9" height="15.0" fill="rgb(209,25,39)" rx="2" ry="2" />
<text  x="1054.92" y="815.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,000,000 samples, 0.08%)</title><rect x="175.3" y="501" width="0.9" height="15.0" fill="rgb(242,97,24)" rx="2" ry="2" />
<text  x="178.33" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="360.6" y="341" width="0.9" height="15.0" fill="rgb(238,59,11)" rx="2" ry="2" />
<text  x="363.64" y="351.5" ></text>
</g>
<g >
<title>tag_hash (2,000,000 samples, 0.15%)</title><rect x="394.2" y="213" width="1.9" height="15.0" fill="rgb(234,205,12)" rx="2" ry="2" />
<text  x="397.25" y="223.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="892.0" y="517" width="1.9" height="15.0" fill="rgb(208,51,13)" rx="2" ry="2" />
<text  x="895.05" y="527.5" ></text>
</g>
<g >
<title>LockAcquireExtended (3,000,000 samples, 0.23%)</title><rect x="374.3" y="341" width="2.7" height="15.0" fill="rgb(242,162,1)" rx="2" ry="2" />
<text  x="377.26" y="351.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="421.5" y="341" width="0.9" height="15.0" fill="rgb(232,90,50)" rx="2" ry="2" />
<text  x="424.50" y="351.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (17,000,000 samples, 1.31%)</title><rect x="1028.3" y="485" width="15.4" height="15.0" fill="rgb(215,179,44)" rx="2" ry="2" />
<text  x="1031.31" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="800.3" y="373" width="0.9" height="15.0" fill="rgb(219,25,44)" rx="2" ry="2" />
<text  x="803.30" y="383.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,000,000 samples, 0.15%)</title><rect x="992.0" y="245" width="1.8" height="15.0" fill="rgb(231,146,42)" rx="2" ry="2" />
<text  x="994.97" y="255.5" ></text>
</g>
<g >
<title>__rint_c (1,000,000 samples, 0.08%)</title><rect x="687.7" y="437" width="0.9" height="15.0" fill="rgb(207,133,52)" rx="2" ry="2" />
<text  x="690.66" y="447.5" ></text>
</g>
<g >
<title>pull_varnos_walker (4,000,000 samples, 0.31%)</title><rect x="764.0" y="437" width="3.6" height="15.0" fill="rgb(236,132,11)" rx="2" ry="2" />
<text  x="766.96" y="447.5" ></text>
</g>
<g >
<title>index_close (3,000,000 samples, 0.23%)</title><rect x="328.8" y="485" width="2.8" height="15.0" fill="rgb(207,143,7)" rx="2" ry="2" />
<text  x="331.85" y="495.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (2,000,000 samples, 0.15%)</title><rect x="566.8" y="501" width="1.9" height="15.0" fill="rgb(248,217,10)" rx="2" ry="2" />
<text  x="569.84" y="511.5" ></text>
</g>
<g >
<title>RelationHasSysCache (1,000,000 samples, 0.08%)</title><rect x="273.4" y="501" width="0.9" height="15.0" fill="rgb(252,87,42)" rx="2" ry="2" />
<text  x="276.43" y="511.5" ></text>
</g>
<g >
<title>bms_add_members (1,000,000 samples, 0.08%)</title><rect x="615.0" y="469" width="0.9" height="15.0" fill="rgb(225,67,4)" rx="2" ry="2" />
<text  x="617.99" y="479.5" ></text>
</g>
<g >
<title>bms_intersect (19,000,000 samples, 1.46%)</title><rect x="767.6" y="437" width="17.3" height="15.0" fill="rgb(236,177,39)" rx="2" ry="2" />
<text  x="770.60" y="447.5" ></text>
</g>
<g >
<title>sync_mm_rss (1,000,000 samples, 0.08%)</title><rect x="1170.9" y="933" width="0.9" height="15.0" fill="rgb(221,58,5)" rx="2" ry="2" />
<text  x="1173.92" y="943.5" ></text>
</g>
<g >
<title>_bt_search (9,000,000 samples, 0.69%)</title><rect x="582.3" y="453" width="8.2" height="15.0" fill="rgb(233,18,12)" rx="2" ry="2" />
<text  x="585.29" y="463.5" ></text>
</g>
<g >
<title>pull_varnos (3,000,000 samples, 0.23%)</title><rect x="645.0" y="421" width="2.7" height="15.0" fill="rgb(221,12,33)" rx="2" ry="2" />
<text  x="647.97" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="311.6" y="469" width="0.9" height="15.0" fill="rgb(252,9,52)" rx="2" ry="2" />
<text  x="314.59" y="479.5" ></text>
</g>
<g >
<title>IndexScanEnd (1,000,000 samples, 0.08%)</title><rect x="481.5" y="469" width="0.9" height="15.0" fill="rgb(234,211,31)" rx="2" ry="2" />
<text  x="484.45" y="479.5" ></text>
</g>
<g >
<title>UnpinBuffer (1,000,000 samples, 0.08%)</title><rect x="938.4" y="197" width="0.9" height="15.0" fill="rgb(234,165,12)" rx="2" ry="2" />
<text  x="941.38" y="207.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,000,000 samples, 0.08%)</title><rect x="398.8" y="309" width="0.9" height="15.0" fill="rgb(222,217,9)" rx="2" ry="2" />
<text  x="401.79" y="319.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (1,000,000 samples, 0.08%)</title><rect x="557.8" y="405" width="0.9" height="15.0" fill="rgb(207,204,29)" rx="2" ry="2" />
<text  x="560.76" y="415.5" ></text>
</g>
<g >
<title>BufTableHashCode (1,000,000 samples, 0.08%)</title><rect x="65.4" y="277" width="0.9" height="15.0" fill="rgb(245,105,37)" rx="2" ry="2" />
<text  x="68.41" y="287.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (62,000,000 samples, 4.77%)</title><rect x="188.0" y="341" width="56.4" height="15.0" fill="rgb(223,51,27)" rx="2" ry="2" />
<text  x="191.04" y="351.5" >copy_..</text>
</g>
<g >
<title>ExecInitFunc (1,000,000 samples, 0.08%)</title><rect x="963.8" y="293" width="0.9" height="15.0" fill="rgb(244,212,22)" rx="2" ry="2" />
<text  x="966.81" y="303.5" ></text>
</g>
<g >
<title>LockBuffer (1,000,000 samples, 0.08%)</title><rect x="74.5" y="309" width="0.9" height="15.0" fill="rgb(214,103,53)" rx="2" ry="2" />
<text  x="77.50" y="319.5" ></text>
</g>
<g >
<title>hash_seq_search (1,000,000 samples, 0.08%)</title><rect x="1048.3" y="757" width="0.9" height="15.0" fill="rgb(222,190,0)" rx="2" ry="2" />
<text  x="1051.29" y="767.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="714.9" y="229" width="0.9" height="15.0" fill="rgb(239,215,6)" rx="2" ry="2" />
<text  x="717.91" y="239.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="925.7" y="245" width="0.9" height="15.0" fill="rgb(209,96,32)" rx="2" ry="2" />
<text  x="928.66" y="255.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="963.8" y="245" width="0.9" height="15.0" fill="rgb(244,121,23)" rx="2" ry="2" />
<text  x="966.81" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="702.2" y="293" width="0.9" height="15.0" fill="rgb(244,221,13)" rx="2" ry="2" />
<text  x="705.19" y="303.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (1,000,000 samples, 0.08%)</title><rect x="516.9" y="533" width="0.9" height="15.0" fill="rgb(226,56,15)" rx="2" ry="2" />
<text  x="519.88" y="543.5" ></text>
</g>
<g >
<title>bms_add_members (1,000,000 samples, 0.08%)</title><rect x="650.4" y="389" width="0.9" height="15.0" fill="rgb(223,98,43)" rx="2" ry="2" />
<text  x="653.42" y="399.5" ></text>
</g>
<g >
<title>_fdvec_resize (1,000,000 samples, 0.08%)</title><rect x="175.3" y="517" width="0.9" height="15.0" fill="rgb(250,89,19)" rx="2" ry="2" />
<text  x="178.33" y="527.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (1,000,000 samples, 0.08%)</title><rect x="828.5" y="437" width="0.9" height="15.0" fill="rgb(241,218,47)" rx="2" ry="2" />
<text  x="831.46" y="447.5" ></text>
</g>
<g >
<title>dclist_init (2,000,000 samples, 0.15%)</title><rect x="423.3" y="325" width="1.8" height="15.0" fill="rgb(209,41,8)" rx="2" ry="2" />
<text  x="426.32" y="335.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="546.9" y="453" width="0.9" height="15.0" fill="rgb(226,165,33)" rx="2" ry="2" />
<text  x="549.86" y="463.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3,000,000 samples, 0.23%)</title><rect x="369.7" y="277" width="2.7" height="15.0" fill="rgb(211,60,8)" rx="2" ry="2" />
<text  x="372.72" y="287.5" ></text>
</g>
<g >
<title>pull_varnos (1,000,000 samples, 0.08%)</title><rect x="947.5" y="389" width="0.9" height="15.0" fill="rgb(223,217,5)" rx="2" ry="2" />
<text  x="950.46" y="399.5" ></text>
</g>
<g >
<title>btgettuple (8,000,000 samples, 0.62%)</title><rect x="996.5" y="261" width="7.3" height="15.0" fill="rgb(230,22,13)" rx="2" ry="2" />
<text  x="999.51" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="796.7" y="389" width="1.8" height="15.0" fill="rgb(240,195,11)" rx="2" ry="2" />
<text  x="799.67" y="399.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="714.9" y="117" width="0.9" height="15.0" fill="rgb(214,43,30)" rx="2" ry="2" />
<text  x="717.91" y="127.5" ></text>
</g>
<g >
<title>match_index_to_operand (1,000,000 samples, 0.08%)</title><rect x="852.1" y="469" width="0.9" height="15.0" fill="rgb(210,121,15)" rx="2" ry="2" />
<text  x="855.08" y="479.5" ></text>
</g>
<g >
<title>tag_hash (2,000,000 samples, 0.15%)</title><rect x="280.7" y="469" width="1.8" height="15.0" fill="rgb(235,44,22)" rx="2" ry="2" />
<text  x="283.70" y="479.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,000,000 samples, 0.08%)</title><rect x="477.8" y="405" width="0.9" height="15.0" fill="rgb(242,164,11)" rx="2" ry="2" />
<text  x="480.82" y="415.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="496.9" y="581" width="0.9" height="15.0" fill="rgb(247,213,41)" rx="2" ry="2" />
<text  x="499.90" y="591.5" ></text>
</g>
<g >
<title>btoidcmp (1,000,000 samples, 0.08%)</title><rect x="541.4" y="389" width="0.9" height="15.0" fill="rgb(241,199,7)" rx="2" ry="2" />
<text  x="544.41" y="399.5" ></text>
</g>
<g >
<title>adjust_appendrel_attrs_mutator (3,000,000 samples, 0.23%)</title><rect x="99.0" y="501" width="2.7" height="15.0" fill="rgb(208,59,39)" rx="2" ry="2" />
<text  x="102.02" y="511.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="947.5" y="341" width="0.9" height="15.0" fill="rgb(234,127,40)" rx="2" ry="2" />
<text  x="950.46" y="351.5" ></text>
</g>
<g >
<title>RelationGetSmgr (2,000,000 samples, 0.15%)</title><rect x="258.0" y="469" width="1.8" height="15.0" fill="rgb(246,207,10)" rx="2" ry="2" />
<text  x="260.99" y="479.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,000,000 samples, 0.08%)</title><rect x="526.9" y="389" width="0.9" height="15.0" fill="rgb(252,215,30)" rx="2" ry="2" />
<text  x="529.87" y="399.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="45.4" y="421" width="0.9" height="15.0" fill="rgb(235,68,50)" rx="2" ry="2" />
<text  x="48.43" y="431.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (3,000,000 samples, 0.23%)</title><rect x="37.3" y="549" width="2.7" height="15.0" fill="rgb(210,8,50)" rx="2" ry="2" />
<text  x="40.25" y="559.5" ></text>
</g>
<g >
<title>nodeRead (12,000,000 samples, 0.92%)</title><rect x="80.9" y="421" width="10.9" height="15.0" fill="rgb(244,12,30)" rx="2" ry="2" />
<text  x="83.85" y="431.5" ></text>
</g>
<g >
<title>palloc0 (1,000,000 samples, 0.08%)</title><rect x="479.6" y="437" width="0.9" height="15.0" fill="rgb(251,17,19)" rx="2" ry="2" />
<text  x="482.64" y="447.5" ></text>
</g>
<g >
<title>pg_plan_query (1,124,000,000 samples, 86.53%)</title><rect x="25.4" y="757" width="1021.1" height="15.0" fill="rgb(242,64,39)" rx="2" ry="2" />
<text  x="28.44" y="767.5" >pg_plan_query</text>
</g>
<g >
<title>alloc_pages_vma (2,000,000 samples, 0.15%)</title><rect x="432.4" y="357" width="1.8" height="15.0" fill="rgb(222,21,50)" rx="2" ry="2" />
<text  x="435.40" y="367.5" ></text>
</g>
<g >
<title>BufTableHashCode (1,000,000 samples, 0.08%)</title><rect x="934.7" y="117" width="1.0" height="15.0" fill="rgb(243,120,47)" rx="2" ry="2" />
<text  x="937.74" y="127.5" ></text>
</g>
<g >
<title>hash_bytes (2,000,000 samples, 0.15%)</title><rect x="442.4" y="341" width="1.8" height="15.0" fill="rgb(207,138,4)" rx="2" ry="2" />
<text  x="445.39" y="351.5" ></text>
</g>
<g >
<title>examine_variable (3,000,000 samples, 0.23%)</title><rect x="715.8" y="277" width="2.7" height="15.0" fill="rgb(219,16,53)" rx="2" ry="2" />
<text  x="718.82" y="287.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (2,000,000 samples, 0.15%)</title><rect x="1019.2" y="469" width="1.8" height="15.0" fill="rgb(231,84,23)" rx="2" ry="2" />
<text  x="1022.22" y="479.5" ></text>
</g>
<g >
<title>AllocSetFree (1,000,000 samples, 0.08%)</title><rect x="928.4" y="229" width="0.9" height="15.0" fill="rgb(250,208,44)" rx="2" ry="2" />
<text  x="931.38" y="239.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="827.6" y="389" width="0.9" height="15.0" fill="rgb(234,85,4)" rx="2" ry="2" />
<text  x="830.55" y="399.5" ></text>
</g>
<g >
<title>relation_open (4,000,000 samples, 0.31%)</title><rect x="133.5" y="533" width="3.7" height="15.0" fill="rgb(242,162,43)" rx="2" ry="2" />
<text  x="136.54" y="543.5" ></text>
</g>
<g >
<title>lappend (1,000,000 samples, 0.08%)</title><rect x="123.5" y="581" width="1.0" height="15.0" fill="rgb(208,66,7)" rx="2" ry="2" />
<text  x="126.55" y="591.5" ></text>
</g>
<g >
<title>SetupLockInTable (1,000,000 samples, 0.08%)</title><rect x="327.0" y="421" width="0.9" height="15.0" fill="rgb(242,113,31)" rx="2" ry="2" />
<text  x="330.03" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,000,000 samples, 0.08%)</title><rect x="74.5" y="261" width="0.9" height="15.0" fill="rgb(234,186,12)" rx="2" ry="2" />
<text  x="77.50" y="271.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (1,000,000 samples, 0.08%)</title><rect x="149.9" y="469" width="0.9" height="15.0" fill="rgb(205,39,18)" rx="2" ry="2" />
<text  x="152.89" y="479.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="375.2" y="309" width="0.9" height="15.0" fill="rgb(226,118,33)" rx="2" ry="2" />
<text  x="378.17" y="319.5" ></text>
</g>
<g >
<title>RelationHasSysCache (1,000,000 samples, 0.08%)</title><rect x="917.5" y="261" width="0.9" height="15.0" fill="rgb(242,183,10)" rx="2" ry="2" />
<text  x="920.48" y="271.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="952.9" y="213" width="0.9" height="15.0" fill="rgb(205,53,6)" rx="2" ry="2" />
<text  x="955.91" y="223.5" ></text>
</g>
<g >
<title>GetRelationPath (2,000,000 samples, 0.15%)</title><rect x="261.6" y="421" width="1.8" height="15.0" fill="rgb(216,11,44)" rx="2" ry="2" />
<text  x="264.62" y="431.5" ></text>
</g>
<g >
<title>_bt_search (1,000,000 samples, 0.08%)</title><rect x="42.7" y="293" width="0.9" height="15.0" fill="rgb(228,48,28)" rx="2" ry="2" />
<text  x="45.70" y="303.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="456.9" y="325" width="0.9" height="15.0" fill="rgb(241,180,20)" rx="2" ry="2" />
<text  x="459.93" y="335.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,000,000 samples, 0.08%)</title><rect x="417.0" y="197" width="0.9" height="15.0" fill="rgb(243,67,3)" rx="2" ry="2" />
<text  x="419.96" y="207.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,000,000 samples, 0.15%)</title><rect x="326.1" y="437" width="1.8" height="15.0" fill="rgb(212,34,42)" rx="2" ry="2" />
<text  x="329.12" y="447.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="452.4" y="245" width="0.9" height="15.0" fill="rgb(219,148,9)" rx="2" ry="2" />
<text  x="455.39" y="255.5" ></text>
</g>
<g >
<title>create_tidscan_paths (6,000,000 samples, 0.46%)</title><rect x="854.8" y="565" width="5.5" height="15.0" fill="rgb(233,2,7)" rx="2" ry="2" />
<text  x="857.80" y="575.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,000,000 samples, 0.23%)</title><rect x="47.2" y="389" width="2.8" height="15.0" fill="rgb(226,73,4)" rx="2" ry="2" />
<text  x="50.24" y="399.5" ></text>
</g>
<g >
<title>_bt_getroot (1,000,000 samples, 0.08%)</title><rect x="490.5" y="405" width="0.9" height="15.0" fill="rgb(250,143,19)" rx="2" ry="2" />
<text  x="493.54" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="425.1" y="325" width="0.9" height="15.0" fill="rgb(245,152,39)" rx="2" ry="2" />
<text  x="428.13" y="335.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="100.8" y="453" width="0.9" height="15.0" fill="rgb(226,50,22)" rx="2" ry="2" />
<text  x="103.84" y="463.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="714.9" y="53" width="0.9" height="15.0" fill="rgb(249,182,2)" rx="2" ry="2" />
<text  x="717.91" y="63.5" ></text>
</g>
<g >
<title>ReadBufferExtended (3,000,000 samples, 0.23%)</title><rect x="147.2" y="421" width="2.7" height="15.0" fill="rgb(226,102,42)" rx="2" ry="2" />
<text  x="150.17" y="431.5" ></text>
</g>
<g >
<title>lappend (1,000,000 samples, 0.08%)</title><rect x="837.5" y="517" width="1.0" height="15.0" fill="rgb(247,164,13)" rx="2" ry="2" />
<text  x="840.54" y="527.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="679.5" y="309" width="0.9" height="15.0" fill="rgb(235,68,15)" rx="2" ry="2" />
<text  x="682.48" y="319.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="395.2" y="197" width="0.9" height="15.0" fill="rgb(252,30,32)" rx="2" ry="2" />
<text  x="398.16" y="207.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="467.8" y="293" width="0.9" height="15.0" fill="rgb(244,128,12)" rx="2" ry="2" />
<text  x="470.83" y="303.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="613.2" y="485" width="0.9" height="15.0" fill="rgb(222,7,31)" rx="2" ry="2" />
<text  x="616.17" y="495.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,000,000 samples, 0.08%)</title><rect x="407.0" y="277" width="0.9" height="15.0" fill="rgb(227,179,42)" rx="2" ry="2" />
<text  x="409.97" y="287.5" ></text>
</g>
<g >
<title>security_vm_enough_memory_mm (1,000,000 samples, 0.08%)</title><rect x="1089.2" y="917" width="0.9" height="15.0" fill="rgb(218,45,28)" rx="2" ry="2" />
<text  x="1092.17" y="927.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,000,000 samples, 0.08%)</title><rect x="266.2" y="309" width="0.9" height="15.0" fill="rgb(229,118,3)" rx="2" ry="2" />
<text  x="269.17" y="319.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,000,000 samples, 0.15%)</title><rect x="999.2" y="165" width="1.9" height="15.0" fill="rgb(212,7,32)" rx="2" ry="2" />
<text  x="1002.24" y="175.5" ></text>
</g>
<g >
<title>contain_volatile_functions_checker (1,000,000 samples, 0.08%)</title><rect x="807.6" y="357" width="0.9" height="15.0" fill="rgb(253,127,46)" rx="2" ry="2" />
<text  x="810.57" y="367.5" ></text>
</g>
<g >
<title>BufferAlloc (1,000,000 samples, 0.08%)</title><rect x="542.3" y="357" width="0.9" height="15.0" fill="rgb(210,74,39)" rx="2" ry="2" />
<text  x="545.32" y="367.5" ></text>
</g>
<g >
<title>_bt_checkpage (2,000,000 samples, 0.15%)</title><rect x="588.6" y="421" width="1.9" height="15.0" fill="rgb(237,204,24)" rx="2" ry="2" />
<text  x="591.65" y="431.5" ></text>
</g>
<g >
<title>_mdnblocks (2,000,000 samples, 0.15%)</title><rect x="160.8" y="533" width="1.8" height="15.0" fill="rgb(213,30,52)" rx="2" ry="2" />
<text  x="163.79" y="543.5" ></text>
</g>
<g >
<title>fmgr_info_copy (1,000,000 samples, 0.08%)</title><rect x="400.6" y="309" width="0.9" height="15.0" fill="rgb(243,31,48)" rx="2" ry="2" />
<text  x="403.61" y="319.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="123.5" y="565" width="1.0" height="15.0" fill="rgb(221,215,19)" rx="2" ry="2" />
<text  x="126.55" y="575.5" ></text>
</g>
<g >
<title>systable_beginscan (1,000,000 samples, 0.08%)</title><rect x="463.3" y="453" width="0.9" height="15.0" fill="rgb(217,166,45)" rx="2" ry="2" />
<text  x="466.29" y="463.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="505.1" y="549" width="0.9" height="15.0" fill="rgb(214,22,18)" rx="2" ry="2" />
<text  x="508.07" y="559.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="308.0" y="517" width="1.8" height="15.0" fill="rgb(225,216,19)" rx="2" ry="2" />
<text  x="310.95" y="527.5" ></text>
</g>
<g >
<title>btoidcmp (1,000,000 samples, 0.08%)</title><rect x="447.8" y="325" width="1.0" height="15.0" fill="rgb(230,226,9)" rx="2" ry="2" />
<text  x="450.84" y="335.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="594.1" y="453" width="0.9" height="15.0" fill="rgb(236,119,38)" rx="2" ry="2" />
<text  x="597.10" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="565" width="0.9" height="15.0" fill="rgb(253,41,47)" rx="2" ry="2" />
<text  x="1052.20" y="575.5" ></text>
</g>
<g >
<title>clear_page_orig (3,000,000 samples, 0.23%)</title><rect x="369.7" y="197" width="2.7" height="15.0" fill="rgb(237,132,10)" rx="2" ry="2" />
<text  x="372.72" y="207.5" ></text>
</g>
<g >
<title>_equalList (1,000,000 samples, 0.08%)</title><rect x="644.1" y="405" width="0.9" height="15.0" fill="rgb(223,84,53)" rx="2" ry="2" />
<text  x="647.06" y="415.5" ></text>
</g>
<g >
<title>SearchCatCache1 (34,000,000 samples, 2.62%)</title><rect x="44.5" y="485" width="30.9" height="15.0" fill="rgb(225,11,53)" rx="2" ry="2" />
<text  x="47.52" y="495.5" >Se..</text>
</g>
<g >
<title>addRangeClause (1,000,000 samples, 0.08%)</title><rect x="906.6" y="517" width="0.9" height="15.0" fill="rgb(241,153,6)" rx="2" ry="2" />
<text  x="909.58" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="701.3" y="245" width="0.9" height="15.0" fill="rgb(234,22,11)" rx="2" ry="2" />
<text  x="704.29" y="255.5" ></text>
</g>
<g >
<title>stringToNodeInternal (14,000,000 samples, 1.08%)</title><rect x="79.9" y="485" width="12.8" height="15.0" fill="rgb(233,153,16)" rx="2" ry="2" />
<text  x="82.95" y="495.5" ></text>
</g>
<g >
<title>fix_scan_expr (7,000,000 samples, 0.54%)</title><rect x="36.3" y="629" width="6.4" height="15.0" fill="rgb(214,216,22)" rx="2" ry="2" />
<text  x="39.34" y="639.5" ></text>
</g>
<g >
<title>generate_join_implied_equalities (15,000,000 samples, 1.15%)</title><rect x="699.5" y="437" width="13.6" height="15.0" fill="rgb(230,12,29)" rx="2" ry="2" />
<text  x="702.47" y="447.5" ></text>
</g>
<g >
<title>memcpy@plt (1,000,000 samples, 0.08%)</title><rect x="670.4" y="373" width="0.9" height="15.0" fill="rgb(225,204,5)" rx="2" ry="2" />
<text  x="673.40" y="383.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="807.6" y="309" width="0.9" height="15.0" fill="rgb(251,139,14)" rx="2" ry="2" />
<text  x="810.57" y="319.5" ></text>
</g>
<g >
<title>index_fetch_heap (3,000,000 samples, 0.23%)</title><rect x="574.1" y="501" width="2.7" height="15.0" fill="rgb(243,138,31)" rx="2" ry="2" />
<text  x="577.11" y="511.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (1,000,000 samples, 0.08%)</title><rect x="63.6" y="357" width="0.9" height="15.0" fill="rgb(229,109,51)" rx="2" ry="2" />
<text  x="66.60" y="367.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="915.7" y="149" width="0.9" height="15.0" fill="rgb(231,199,42)" rx="2" ry="2" />
<text  x="918.67" y="159.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="1001.1" y="133" width="0.9" height="15.0" fill="rgb(215,104,44)" rx="2" ry="2" />
<text  x="1004.05" y="143.5" ></text>
</g>
<g >
<title>lru_cache_add (1,000,000 samples, 0.08%)</title><rect x="216.2" y="213" width="0.9" height="15.0" fill="rgb(211,194,32)" rx="2" ry="2" />
<text  x="219.20" y="223.5" ></text>
</g>
<g >
<title>ReadBuffer (1,000,000 samples, 0.08%)</title><rect x="544.1" y="405" width="0.9" height="15.0" fill="rgb(231,121,54)" rx="2" ry="2" />
<text  x="547.13" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="329.8" y="421" width="0.9" height="15.0" fill="rgb(220,167,9)" rx="2" ry="2" />
<text  x="332.75" y="431.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,000,000 samples, 0.08%)</title><rect x="592.3" y="469" width="0.9" height="15.0" fill="rgb(208,12,7)" rx="2" ry="2" />
<text  x="595.28" y="479.5" ></text>
</g>
<g >
<title>get_restriction_variable (68,000,000 samples, 5.23%)</title><rect x="950.2" y="421" width="61.8" height="15.0" fill="rgb(251,189,44)" rx="2" ry="2" />
<text  x="953.18" y="431.5" >get_re..</text>
</g>
<g >
<title>clauselist_selectivity_ext (129,000,000 samples, 9.93%)</title><rect x="905.7" y="533" width="117.2" height="15.0" fill="rgb(237,29,43)" rx="2" ry="2" />
<text  x="908.67" y="543.5" >clauselist_sel..</text>
</g>
<g >
<title>ReleaseAndReadBuffer (1,000,000 samples, 0.08%)</title><rect x="1039.2" y="341" width="0.9" height="15.0" fill="rgb(206,39,25)" rx="2" ry="2" />
<text  x="1042.21" y="351.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (2,000,000 samples, 0.15%)</title><rect x="282.5" y="485" width="1.8" height="15.0" fill="rgb(206,67,21)" rx="2" ry="2" />
<text  x="285.52" y="495.5" ></text>
</g>
<g >
<title>IncrBufferRefCount (1,000,000 samples, 0.08%)</title><rect x="526.0" y="421" width="0.9" height="15.0" fill="rgb(219,87,40)" rx="2" ry="2" />
<text  x="528.97" y="431.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="435.1" y="277" width="0.9" height="15.0" fill="rgb(223,115,54)" rx="2" ry="2" />
<text  x="438.13" y="287.5" ></text>
</g>
<g >
<title>UnlockRelationId (1,000,000 samples, 0.08%)</title><rect x="344.3" y="469" width="0.9" height="15.0" fill="rgb(239,54,9)" rx="2" ry="2" />
<text  x="347.29" y="479.5" ></text>
</g>
<g >
<title>SearchSysCache3 (2,000,000 samples, 0.15%)</title><rect x="803.9" y="469" width="1.9" height="15.0" fill="rgb(213,67,45)" rx="2" ry="2" />
<text  x="806.93" y="479.5" ></text>
</g>
<g >
<title>tas (2,000,000 samples, 0.15%)</title><rect x="179.9" y="469" width="1.8" height="15.0" fill="rgb(233,162,21)" rx="2" ry="2" />
<text  x="182.87" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="31.8" y="501" width="0.9" height="15.0" fill="rgb(220,43,52)" rx="2" ry="2" />
<text  x="34.80" y="511.5" ></text>
</g>
<g >
<title>RelationGetStatExtList (34,000,000 samples, 2.62%)</title><rect x="271.6" y="565" width="30.9" height="15.0" fill="rgb(214,100,15)" rx="2" ry="2" />
<text  x="274.62" y="575.5" >Re..</text>
</g>
<g >
<title>tts_buffer_heap_clear (1,000,000 samples, 0.08%)</title><rect x="568.7" y="485" width="0.9" height="15.0" fill="rgb(247,62,13)" rx="2" ry="2" />
<text  x="571.66" y="495.5" ></text>
</g>
<g >
<title>CreateTemplateTupleDesc (3,000,000 samples, 0.23%)</title><rect x="310.7" y="501" width="2.7" height="15.0" fill="rgb(245,98,10)" rx="2" ry="2" />
<text  x="313.68" y="511.5" ></text>
</g>
<g >
<title>palloc0 (1,000,000 samples, 0.08%)</title><rect x="800.3" y="469" width="0.9" height="15.0" fill="rgb(233,216,46)" rx="2" ry="2" />
<text  x="803.30" y="479.5" ></text>
</g>
<g >
<title>contain_volatile_functions_checker (2,000,000 samples, 0.15%)</title><rect x="848.4" y="421" width="1.9" height="15.0" fill="rgb(238,147,49)" rx="2" ry="2" />
<text  x="851.44" y="431.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (1,000,000 samples, 0.08%)</title><rect x="998.3" y="197" width="0.9" height="15.0" fill="rgb(243,100,28)" rx="2" ry="2" />
<text  x="1001.33" y="207.5" ></text>
</g>
<g >
<title>__ext4_mark_inode_dirty (6,000,000 samples, 0.46%)</title><rect x="246.2" y="309" width="5.4" height="15.0" fill="rgb(254,143,12)" rx="2" ry="2" />
<text  x="249.18" y="319.5" ></text>
</g>
<g >
<title>BufferAlloc (3,000,000 samples, 0.23%)</title><rect x="177.1" y="501" width="2.8" height="15.0" fill="rgb(215,202,23)" rx="2" ry="2" />
<text  x="180.14" y="511.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="102.7" y="501" width="0.9" height="15.0" fill="rgb(217,32,37)" rx="2" ry="2" />
<text  x="105.66" y="511.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (3,000,000 samples, 0.23%)</title><rect x="935.7" y="197" width="2.7" height="15.0" fill="rgb(228,4,7)" rx="2" ry="2" />
<text  x="938.65" y="207.5" ></text>
</g>
<g >
<title>pg_strtok (4,000,000 samples, 0.31%)</title><rect x="87.2" y="357" width="3.6" height="15.0" fill="rgb(251,70,12)" rx="2" ry="2" />
<text  x="90.21" y="367.5" ></text>
</g>
<g >
<title>mdread (78,000,000 samples, 6.00%)</title><rect x="182.6" y="485" width="70.8" height="15.0" fill="rgb(226,173,19)" rx="2" ry="2" />
<text  x="185.59" y="495.5" >mdread</text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="894.8" y="549" width="0.9" height="15.0" fill="rgb(250,169,18)" rx="2" ry="2" />
<text  x="897.77" y="559.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="955.6" y="213" width="0.9" height="15.0" fill="rgb(218,44,33)" rx="2" ry="2" />
<text  x="958.64" y="223.5" ></text>
</g>
<g >
<title>pfree (1,000,000 samples, 0.08%)</title><rect x="322.5" y="501" width="0.9" height="15.0" fill="rgb(235,63,19)" rx="2" ry="2" />
<text  x="325.49" y="511.5" ></text>
</g>
<g >
<title>systable_beginscan (6,000,000 samples, 0.46%)</title><rect x="917.5" y="309" width="5.4" height="15.0" fill="rgb(247,101,7)" rx="2" ry="2" />
<text  x="920.48" y="319.5" ></text>
</g>
<g >
<title>bms_del_member (1,000,000 samples, 0.08%)</title><rect x="734.0" y="517" width="0.9" height="15.0" fill="rgb(252,143,18)" rx="2" ry="2" />
<text  x="736.99" y="527.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (1,000,000 samples, 0.08%)</title><rect x="503.3" y="549" width="0.9" height="15.0" fill="rgb(218,121,1)" rx="2" ry="2" />
<text  x="506.26" y="559.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="474.2" y="325" width="0.9" height="15.0" fill="rgb(215,116,39)" rx="2" ry="2" />
<text  x="477.19" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="360.6" y="325" width="0.9" height="15.0" fill="rgb(208,159,18)" rx="2" ry="2" />
<text  x="363.64" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="800.3" y="325" width="0.9" height="15.0" fill="rgb(250,3,11)" rx="2" ry="2" />
<text  x="803.30" y="335.5" ></text>
</g>
<g >
<title>BasicOpenFilePerm (1,000,000 samples, 0.08%)</title><rect x="166.2" y="501" width="1.0" height="15.0" fill="rgb(240,226,0)" rx="2" ry="2" />
<text  x="169.24" y="511.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (3,000,000 samples, 0.23%)</title><rect x="1187.3" y="869" width="2.7" height="15.0" fill="rgb(217,203,26)" rx="2" ry="2" />
<text  x="1190.27" y="879.5" ></text>
</g>
<g >
<title>lookup_fast (1,000,000 samples, 0.08%)</title><rect x="1069.2" y="853" width="0.9" height="15.0" fill="rgb(248,198,5)" rx="2" ry="2" />
<text  x="1072.18" y="863.5" ></text>
</g>
<g >
<title>lookup_type_cache (1,000,000 samples, 0.08%)</title><rect x="822.1" y="469" width="0.9" height="15.0" fill="rgb(247,141,5)" rx="2" ry="2" />
<text  x="825.10" y="479.5" ></text>
</g>
<g >
<title>exprType (1,000,000 samples, 0.08%)</title><rect x="716.7" y="261" width="0.9" height="15.0" fill="rgb(229,1,18)" rx="2" ry="2" />
<text  x="719.73" y="271.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="993.8" y="261" width="0.9" height="15.0" fill="rgb(219,84,22)" rx="2" ry="2" />
<text  x="996.79" y="271.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (2,000,000 samples, 0.15%)</title><rect x="267.1" y="309" width="1.8" height="15.0" fill="rgb(239,24,43)" rx="2" ry="2" />
<text  x="270.07" y="319.5" ></text>
</g>
<g >
<title>plpgsql_estate_setup (1,000,000 samples, 0.08%)</title><rect x="962.9" y="245" width="0.9" height="15.0" fill="rgb(235,68,41)" rx="2" ry="2" />
<text  x="965.90" y="255.5" ></text>
</g>
<g >
<title>prep_new_page (2,000,000 samples, 0.15%)</title><rect x="781.2" y="293" width="1.8" height="15.0" fill="rgb(235,73,41)" rx="2" ry="2" />
<text  x="784.22" y="303.5" ></text>
</g>
<g >
<title>table_index_fetch_end (1,000,000 samples, 0.08%)</title><rect x="61.8" y="405" width="0.9" height="15.0" fill="rgb(246,63,50)" rx="2" ry="2" />
<text  x="64.78" y="415.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,000,000 samples, 0.08%)</title><rect x="474.2" y="421" width="0.9" height="15.0" fill="rgb(223,88,8)" rx="2" ry="2" />
<text  x="477.19" y="431.5" ></text>
</g>
<g >
<title>UnpinBuffer (1,000,000 samples, 0.08%)</title><rect x="536.0" y="421" width="0.9" height="15.0" fill="rgb(252,59,48)" rx="2" ry="2" />
<text  x="538.96" y="431.5" ></text>
</g>
<g >
<title>ConditionVariableBroadcast (2,000,000 samples, 0.15%)</title><rect x="179.9" y="485" width="1.8" height="15.0" fill="rgb(213,225,40)" rx="2" ry="2" />
<text  x="182.87" y="495.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="436.9" y="373" width="1.0" height="15.0" fill="rgb(216,65,32)" rx="2" ry="2" />
<text  x="439.94" y="383.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (1,000,000 samples, 0.08%)</title><rect x="827.6" y="437" width="0.9" height="15.0" fill="rgb(221,83,12)" rx="2" ry="2" />
<text  x="830.55" y="447.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,000,000 samples, 0.08%)</title><rect x="936.6" y="101" width="0.9" height="15.0" fill="rgb(236,152,24)" rx="2" ry="2" />
<text  x="939.56" y="111.5" ></text>
</g>
<g >
<title>BufferAlloc (4,000,000 samples, 0.31%)</title><rect x="394.2" y="261" width="3.7" height="15.0" fill="rgb(222,81,6)" rx="2" ry="2" />
<text  x="397.25" y="271.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="453" width="0.9" height="15.0" fill="rgb(231,101,24)" rx="2" ry="2" />
<text  x="1052.20" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="714.9" y="213" width="0.9" height="15.0" fill="rgb(216,25,17)" rx="2" ry="2" />
<text  x="717.91" y="223.5" ></text>
</g>
<g >
<title>_bt_binsrch (6,000,000 samples, 0.46%)</title><rect x="401.5" y="325" width="5.5" height="15.0" fill="rgb(207,184,9)" rx="2" ry="2" />
<text  x="404.52" y="335.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (6,000,000 samples, 0.46%)</title><rect x="36.3" y="581" width="5.5" height="15.0" fill="rgb(239,15,52)" rx="2" ry="2" />
<text  x="39.34" y="591.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="1003.8" y="213" width="0.9" height="15.0" fill="rgb(219,209,29)" rx="2" ry="2" />
<text  x="1006.78" y="223.5" ></text>
</g>
<g >
<title>LockRelationOid (1,000,000 samples, 0.08%)</title><rect x="373.4" y="373" width="0.9" height="15.0" fill="rgb(252,185,16)" rx="2" ry="2" />
<text  x="376.36" y="383.5" ></text>
</g>
<g >
<title>GetNonHistoricCatalogSnapshot (1,000,000 samples, 0.08%)</title><rect x="323.4" y="469" width="0.9" height="15.0" fill="rgb(212,74,17)" rx="2" ry="2" />
<text  x="326.39" y="479.5" ></text>
</g>
<g >
<title>CatCacheCopyKeys (1,000,000 samples, 0.08%)</title><rect x="969.3" y="293" width="0.9" height="15.0" fill="rgb(247,45,30)" rx="2" ry="2" />
<text  x="972.26" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="701.3" y="293" width="0.9" height="15.0" fill="rgb(235,12,20)" rx="2" ry="2" />
<text  x="704.29" y="303.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (1,000,000 samples, 0.08%)</title><rect x="1002.0" y="197" width="0.9" height="15.0" fill="rgb(251,224,13)" rx="2" ry="2" />
<text  x="1004.96" y="207.5" ></text>
</g>
<g >
<title>touch_atime (6,000,000 samples, 0.46%)</title><rect x="246.2" y="357" width="5.4" height="15.0" fill="rgb(209,57,5)" rx="2" ry="2" />
<text  x="249.18" y="367.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (1,000,000 samples, 0.08%)</title><rect x="801.2" y="485" width="0.9" height="15.0" fill="rgb(219,229,52)" rx="2" ry="2" />
<text  x="804.21" y="495.5" ></text>
</g>
<g >
<title>LockAcquireExtended (1,000,000 samples, 0.08%)</title><rect x="292.5" y="517" width="0.9" height="15.0" fill="rgb(214,166,43)" rx="2" ry="2" />
<text  x="295.51" y="527.5" ></text>
</g>
<g >
<title>FunctionCall0Coll (1,000,000 samples, 0.08%)</title><rect x="349.7" y="453" width="0.9" height="15.0" fill="rgb(225,27,27)" rx="2" ry="2" />
<text  x="352.74" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,000,000 samples, 0.38%)</title><rect x="12.7" y="965" width="4.6" height="15.0" fill="rgb(225,14,14)" rx="2" ry="2" />
<text  x="15.73" y="975.5" ></text>
</g>
<g >
<title>adjust_rowcount_for_semijoins (1,000,000 samples, 0.08%)</title><rect x="609.5" y="501" width="0.9" height="15.0" fill="rgb(227,209,38)" rx="2" ry="2" />
<text  x="612.54" y="511.5" ></text>
</g>
<g >
<title>GrantLockLocal (1,000,000 samples, 0.08%)</title><rect x="1006.5" y="245" width="0.9" height="15.0" fill="rgb(226,222,8)" rx="2" ry="2" />
<text  x="1009.51" y="255.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (3,000,000 samples, 0.23%)</title><rect x="555.0" y="341" width="2.8" height="15.0" fill="rgb(240,81,28)" rx="2" ry="2" />
<text  x="558.03" y="351.5" ></text>
</g>
<g >
<title>alloc_pages_vma (2,000,000 samples, 0.15%)</title><rect x="52.7" y="309" width="1.8" height="15.0" fill="rgb(206,161,18)" rx="2" ry="2" />
<text  x="55.69" y="319.5" ></text>
</g>
<g >
<title>_bt_first (1,000,000 samples, 0.08%)</title><rect x="577.7" y="485" width="1.0" height="15.0" fill="rgb(249,98,26)" rx="2" ry="2" />
<text  x="580.74" y="495.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,000,000 samples, 0.08%)</title><rect x="343.4" y="373" width="0.9" height="15.0" fill="rgb(236,176,54)" rx="2" ry="2" />
<text  x="346.38" y="383.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (4,000,000 samples, 0.31%)</title><rect x="62.7" y="373" width="3.6" height="15.0" fill="rgb(225,67,16)" rx="2" ry="2" />
<text  x="65.69" y="383.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="102.7" y="517" width="0.9" height="15.0" fill="rgb(211,147,17)" rx="2" ry="2" />
<text  x="105.66" y="527.5" ></text>
</g>
<g >
<title>dlist_push_tail (1,000,000 samples, 0.08%)</title><rect x="154.4" y="485" width="0.9" height="15.0" fill="rgb(248,83,20)" rx="2" ry="2" />
<text  x="157.43" y="495.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (3,000,000 samples, 0.23%)</title><rect x="823.0" y="453" width="2.7" height="15.0" fill="rgb(228,223,3)" rx="2" ry="2" />
<text  x="826.01" y="463.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="158.1" y="389" width="0.9" height="15.0" fill="rgb(233,160,12)" rx="2" ry="2" />
<text  x="161.07" y="399.5" ></text>
</g>
<g >
<title>BufferAlloc (3,000,000 samples, 0.23%)</title><rect x="417.9" y="229" width="2.7" height="15.0" fill="rgb(209,45,44)" rx="2" ry="2" />
<text  x="420.87" y="239.5" ></text>
</g>
<g >
<title>lappend (2,000,000 samples, 0.15%)</title><rect x="893.9" y="581" width="1.8" height="15.0" fill="rgb(237,205,41)" rx="2" ry="2" />
<text  x="896.86" y="591.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (2,000,000 samples, 0.15%)</title><rect x="324.3" y="357" width="1.8" height="15.0" fill="rgb(241,171,21)" rx="2" ry="2" />
<text  x="327.30" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (1,000,000 samples, 0.08%)</title><rect x="17.3" y="837" width="0.9" height="15.0" fill="rgb(234,157,48)" rx="2" ry="2" />
<text  x="20.27" y="847.5" ></text>
</g>
<g >
<title>relation_open (108,000,000 samples, 8.31%)</title><rect x="502.3" y="597" width="98.2" height="15.0" fill="rgb(215,102,32)" rx="2" ry="2" />
<text  x="505.35" y="607.5" >relation_open</text>
</g>
<g >
<title>_bt_getbuf (2,000,000 samples, 0.15%)</title><rect x="1037.4" y="341" width="1.8" height="15.0" fill="rgb(250,79,22)" rx="2" ry="2" />
<text  x="1040.39" y="351.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="922.0" y="277" width="0.9" height="15.0" fill="rgb(239,225,54)" rx="2" ry="2" />
<text  x="925.02" y="287.5" ></text>
</g>
<g >
<title>PageIsNew (1,000,000 samples, 0.08%)</title><rect x="288.9" y="405" width="0.9" height="15.0" fill="rgb(251,216,38)" rx="2" ry="2" />
<text  x="291.88" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="10.9" y="949" width="0.9" height="15.0" fill="rgb(213,16,17)" rx="2" ry="2" />
<text  x="13.91" y="959.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (1,000,000 samples, 0.08%)</title><rect x="398.8" y="325" width="0.9" height="15.0" fill="rgb(206,210,24)" rx="2" ry="2" />
<text  x="401.79" y="335.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="504.2" y="549" width="0.9" height="15.0" fill="rgb(205,97,32)" rx="2" ry="2" />
<text  x="507.16" y="559.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="706.7" y="357" width="0.9" height="15.0" fill="rgb(248,224,30)" rx="2" ry="2" />
<text  x="709.74" y="367.5" ></text>
</g>
<g >
<title>pgstat_lock_entry (1,000,000 samples, 0.08%)</title><rect x="1050.1" y="837" width="0.9" height="15.0" fill="rgb(210,107,3)" rx="2" ry="2" />
<text  x="1053.11" y="847.5" ></text>
</g>
<g >
<title>BufTableHashCode (1,000,000 samples, 0.08%)</title><rect x="1039.2" y="261" width="0.9" height="15.0" fill="rgb(233,42,31)" rx="2" ry="2" />
<text  x="1042.21" y="271.5" ></text>
</g>
<g >
<title>relation_close (3,000,000 samples, 0.23%)</title><rect x="590.5" y="517" width="2.7" height="15.0" fill="rgb(247,148,37)" rx="2" ry="2" />
<text  x="593.46" y="527.5" ></text>
</g>
<g >
<title>ObjectIdGetDatum (1,000,000 samples, 0.08%)</title><rect x="853.0" y="453" width="0.9" height="15.0" fill="rgb(217,125,51)" rx="2" ry="2" />
<text  x="855.99" y="463.5" ></text>
</g>
<g >
<title>bms_make_singleton (3,000,000 samples, 0.23%)</title><rect x="645.0" y="357" width="2.7" height="15.0" fill="rgb(214,18,50)" rx="2" ry="2" />
<text  x="647.97" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="686.8" y="437" width="0.9" height="15.0" fill="rgb(231,179,1)" rx="2" ry="2" />
<text  x="689.75" y="447.5" ></text>
</g>
<g >
<title>get_ecmember_indexes (5,000,000 samples, 0.38%)</title><rect x="839.4" y="501" width="4.5" height="15.0" fill="rgb(211,44,14)" rx="2" ry="2" />
<text  x="842.36" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="142.6" y="469" width="0.9" height="15.0" fill="rgb(250,98,27)" rx="2" ry="2" />
<text  x="145.63" y="479.5" ></text>
</g>
<g >
<title>_bt_search (12,000,000 samples, 0.92%)</title><rect x="409.7" y="325" width="10.9" height="15.0" fill="rgb(247,76,54)" rx="2" ry="2" />
<text  x="412.69" y="335.5" ></text>
</g>
<g >
<title>ExecInterpExpr (13,000,000 samples, 1.00%)</title><rect x="952.0" y="293" width="11.8" height="15.0" fill="rgb(252,211,15)" rx="2" ry="2" />
<text  x="955.00" y="303.5" ></text>
</g>
<g >
<title>ReadBuffer (2,000,000 samples, 0.15%)</title><rect x="1037.4" y="325" width="1.8" height="15.0" fill="rgb(210,165,36)" rx="2" ry="2" />
<text  x="1040.39" y="335.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="825.7" y="437" width="0.9" height="15.0" fill="rgb(233,145,38)" rx="2" ry="2" />
<text  x="828.74" y="447.5" ></text>
</g>
<g >
<title>__libc_lseek64 (1,000,000 samples, 0.08%)</title><rect x="160.8" y="517" width="0.9" height="15.0" fill="rgb(243,118,7)" rx="2" ry="2" />
<text  x="163.79" y="527.5" ></text>
</g>
<g >
<title>__strlen_sse2 (1,000,000 samples, 0.08%)</title><rect x="1083.7" y="997" width="0.9" height="15.0" fill="rgb(228,184,54)" rx="2" ry="2" />
<text  x="1086.72" y="1007.5" ></text>
</g>
<g >
<title>sysmalloc (5,000,000 samples, 0.38%)</title><rect x="1185.5" y="1013" width="4.5" height="15.0" fill="rgb(240,172,42)" rx="2" ry="2" />
<text  x="1188.46" y="1023.5" ></text>
</g>
<g >
<title>relation_open (5,000,000 samples, 0.38%)</title><rect x="474.2" y="469" width="4.5" height="15.0" fill="rgb(207,74,28)" rx="2" ry="2" />
<text  x="477.19" y="479.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (1,132,000,000 samples, 87.14%)</title><rect x="18.2" y="805" width="1028.3" height="15.0" fill="rgb(237,17,36)" rx="2" ry="2" />
<text  x="21.18" y="815.5" >standard_ProcessUtility</text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,000,000 samples, 0.08%)</title><rect x="505.1" y="501" width="0.9" height="15.0" fill="rgb(217,184,16)" rx="2" ry="2" />
<text  x="508.07" y="511.5" ></text>
</g>
<g >
<title>LockRelationOid (6,000,000 samples, 0.46%)</title><rect x="422.4" y="373" width="5.5" height="15.0" fill="rgb(230,136,54)" rx="2" ry="2" />
<text  x="425.41" y="383.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="1002.0" y="165" width="0.9" height="15.0" fill="rgb(219,15,32)" rx="2" ry="2" />
<text  x="1004.96" y="175.5" ></text>
</g>
<g >
<title>check_functions_in_node (2,000,000 samples, 0.15%)</title><rect x="848.4" y="437" width="1.9" height="15.0" fill="rgb(254,193,0)" rx="2" ry="2" />
<text  x="851.44" y="447.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="474.2" y="229" width="0.9" height="15.0" fill="rgb(215,51,42)" rx="2" ry="2" />
<text  x="477.19" y="239.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (1,000,000 samples, 0.08%)</title><rect x="497.8" y="533" width="0.9" height="15.0" fill="rgb(245,80,39)" rx="2" ry="2" />
<text  x="500.81" y="543.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (1,000,000 samples, 0.08%)</title><rect x="357.9" y="389" width="0.9" height="15.0" fill="rgb(253,73,31)" rx="2" ry="2" />
<text  x="360.91" y="399.5" ></text>
</g>
<g >
<title>bms_copy (1,000,000 samples, 0.08%)</title><rect x="819.4" y="485" width="0.9" height="15.0" fill="rgb(233,174,30)" rx="2" ry="2" />
<text  x="822.38" y="495.5" ></text>
</g>
<g >
<title>btendscan (1,000,000 samples, 0.08%)</title><rect x="60.9" y="405" width="0.9" height="15.0" fill="rgb(248,71,52)" rx="2" ry="2" />
<text  x="63.87" y="415.5" ></text>
</g>
<g >
<title>uint32_hash (1,000,000 samples, 0.08%)</title><rect x="822.1" y="453" width="0.9" height="15.0" fill="rgb(205,91,1)" rx="2" ry="2" />
<text  x="825.10" y="463.5" ></text>
</g>
<g >
<title>ExecEvalExprSwitchContext (13,000,000 samples, 1.00%)</title><rect x="952.0" y="325" width="11.8" height="15.0" fill="rgb(206,5,12)" rx="2" ry="2" />
<text  x="955.00" y="335.5" ></text>
</g>
<g >
<title>systable_getnext (1,000,000 samples, 0.08%)</title><rect x="42.7" y="373" width="0.9" height="15.0" fill="rgb(219,36,28)" rx="2" ry="2" />
<text  x="45.70" y="383.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (5,000,000 samples, 0.38%)</title><rect x="959.3" y="261" width="4.5" height="15.0" fill="rgb(207,157,16)" rx="2" ry="2" />
<text  x="962.27" y="271.5" ></text>
</g>
<g >
<title>LockRelationOid (1,000,000 samples, 0.08%)</title><rect x="290.7" y="533" width="0.9" height="15.0" fill="rgb(205,110,31)" rx="2" ry="2" />
<text  x="293.69" y="543.5" ></text>
</g>
<g >
<title>btgettuple (6,000,000 samples, 0.46%)</title><rect x="486.0" y="453" width="5.4" height="15.0" fill="rgb(252,217,28)" rx="2" ry="2" />
<text  x="489.00" y="463.5" ></text>
</g>
<g >
<title>PageGetSpecialPointer (1,000,000 samples, 0.08%)</title><rect x="73.6" y="325" width="0.9" height="15.0" fill="rgb(209,221,32)" rx="2" ry="2" />
<text  x="76.59" y="335.5" ></text>
</g>
<g >
<title>UnlockRelationId (4,000,000 samples, 0.31%)</title><rect x="520.5" y="501" width="3.6" height="15.0" fill="rgb(208,38,40)" rx="2" ry="2" />
<text  x="523.52" y="511.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="347.9" y="453" width="0.9" height="15.0" fill="rgb(233,113,34)" rx="2" ry="2" />
<text  x="350.92" y="463.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="479.6" y="453" width="0.9" height="15.0" fill="rgb(253,47,14)" rx="2" ry="2" />
<text  x="482.64" y="463.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="766.7" y="261" width="0.9" height="15.0" fill="rgb(243,29,49)" rx="2" ry="2" />
<text  x="769.69" y="271.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (1,000,000 samples, 0.08%)</title><rect x="575.0" y="421" width="0.9" height="15.0" fill="rgb(247,78,50)" rx="2" ry="2" />
<text  x="578.02" y="431.5" ></text>
</g>
<g >
<title>grouping_planner (1,105,000,000 samples, 85.07%)</title><rect x="42.7" y="693" width="1003.8" height="15.0" fill="rgb(207,187,38)" rx="2" ry="2" />
<text  x="45.70" y="703.5" >grouping_planner</text>
</g>
<g >
<title>MemoryContextAlloc (1,000,000 samples, 0.08%)</title><rect x="1007.4" y="245" width="0.9" height="15.0" fill="rgb(232,165,43)" rx="2" ry="2" />
<text  x="1010.41" y="255.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (2,000,000 samples, 0.15%)</title><rect x="324.3" y="309" width="1.8" height="15.0" fill="rgb(251,148,14)" rx="2" ry="2" />
<text  x="327.30" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (73,000,000 samples, 5.62%)</title><rect x="185.3" y="421" width="66.3" height="15.0" fill="rgb(238,37,38)" rx="2" ry="2" />
<text  x="188.32" y="431.5" >__x64_s..</text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="564.1" y="437" width="0.9" height="15.0" fill="rgb(244,125,43)" rx="2" ry="2" />
<text  x="567.12" y="447.5" ></text>
</g>
<g >
<title>systable_endscan (3,000,000 samples, 0.23%)</title><rect x="1032.8" y="453" width="2.8" height="15.0" fill="rgb(240,157,30)" rx="2" ry="2" />
<text  x="1035.85" y="463.5" ></text>
</g>
<g >
<title>relation_open (3,000,000 samples, 0.23%)</title><rect x="593.2" y="517" width="2.7" height="15.0" fill="rgb(239,171,12)" rx="2" ry="2" />
<text  x="596.19" y="527.5" ></text>
</g>
<g >
<title>__memset_sse2_unaligned_erms (1,000,000 samples, 0.08%)</title><rect x="254.4" y="437" width="0.9" height="15.0" fill="rgb(209,45,10)" rx="2" ry="2" />
<text  x="257.36" y="447.5" ></text>
</g>
<g >
<title>calc_bucket (1,000,000 samples, 0.08%)</title><rect x="595.0" y="453" width="0.9" height="15.0" fill="rgb(209,19,6)" rx="2" ry="2" />
<text  x="598.00" y="463.5" ></text>
</g>
<g >
<title>dlist_push_tail (1,000,000 samples, 0.08%)</title><rect x="506.0" y="533" width="0.9" height="15.0" fill="rgb(206,205,49)" rx="2" ry="2" />
<text  x="508.98" y="543.5" ></text>
</g>
<g >
<title>bms_add_member (1,000,000 samples, 0.08%)</title><rect x="868.4" y="517" width="0.9" height="15.0" fill="rgb(253,132,41)" rx="2" ry="2" />
<text  x="871.43" y="527.5" ></text>
</g>
<g >
<title>copyObjectImpl (3,000,000 samples, 0.23%)</title><rect x="874.8" y="533" width="2.7" height="15.0" fill="rgb(246,95,4)" rx="2" ry="2" />
<text  x="877.79" y="543.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="122.6" y="501" width="0.9" height="15.0" fill="rgb(239,87,3)" rx="2" ry="2" />
<text  x="125.64" y="511.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="851.2" y="325" width="0.9" height="15.0" fill="rgb(250,63,34)" rx="2" ry="2" />
<text  x="854.17" y="335.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="390.6" y="309" width="0.9" height="15.0" fill="rgb(210,110,42)" rx="2" ry="2" />
<text  x="393.62" y="319.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="1000.1" y="101" width="1.0" height="15.0" fill="rgb(253,9,42)" rx="2" ry="2" />
<text  x="1003.15" y="111.5" ></text>
</g>
<g >
<title>systable_beginscan (22,000,000 samples, 1.69%)</title><rect x="548.7" y="533" width="20.0" height="15.0" fill="rgb(215,8,43)" rx="2" ry="2" />
<text  x="551.68" y="543.5" ></text>
</g>
<g >
<title>bms_next_member (2,000,000 samples, 0.15%)</title><rect x="855.7" y="533" width="1.8" height="15.0" fill="rgb(227,64,30)" rx="2" ry="2" />
<text  x="858.71" y="543.5" ></text>
</g>
<g >
<title>lru_cache_add (1,000,000 samples, 0.08%)</title><rect x="468.7" y="373" width="0.9" height="15.0" fill="rgb(224,4,31)" rx="2" ry="2" />
<text  x="471.74" y="383.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="717.6" y="245" width="0.9" height="15.0" fill="rgb(214,163,6)" rx="2" ry="2" />
<text  x="720.64" y="255.5" ></text>
</g>
<g >
<title>pull_varnos_walker (1,000,000 samples, 0.08%)</title><rect x="717.6" y="229" width="0.9" height="15.0" fill="rgb(207,105,6)" rx="2" ry="2" />
<text  x="720.64" y="239.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="706.7" y="389" width="0.9" height="15.0" fill="rgb(208,58,32)" rx="2" ry="2" />
<text  x="709.74" y="399.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="159.0" y="501" width="0.9" height="15.0" fill="rgb(216,30,22)" rx="2" ry="2" />
<text  x="161.98" y="511.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="571.4" y="437" width="0.9" height="15.0" fill="rgb(225,92,13)" rx="2" ry="2" />
<text  x="574.39" y="447.5" ></text>
</g>
<g >
<title>tag_hash (2,000,000 samples, 0.15%)</title><rect x="298.9" y="469" width="1.8" height="15.0" fill="rgb(212,182,51)" rx="2" ry="2" />
<text  x="301.87" y="479.5" ></text>
</g>
<g >
<title>_bt_lockbuf (1,000,000 samples, 0.08%)</title><rect x="454.2" y="325" width="0.9" height="15.0" fill="rgb(207,115,18)" rx="2" ry="2" />
<text  x="457.20" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (4,000,000 samples, 0.31%)</title><rect x="363.4" y="309" width="3.6" height="15.0" fill="rgb(227,8,8)" rx="2" ry="2" />
<text  x="366.36" y="319.5" ></text>
</g>
<g >
<title>_bt_lockbuf (1,000,000 samples, 0.08%)</title><rect x="74.5" y="325" width="0.9" height="15.0" fill="rgb(248,39,7)" rx="2" ry="2" />
<text  x="77.50" y="335.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (1,000,000 samples, 0.08%)</title><rect x="332.5" y="421" width="0.9" height="15.0" fill="rgb(207,92,50)" rx="2" ry="2" />
<text  x="335.48" y="431.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="474.2" y="389" width="0.9" height="15.0" fill="rgb(248,79,47)" rx="2" ry="2" />
<text  x="477.19" y="399.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (1,000,000 samples, 0.08%)</title><rect x="42.7" y="389" width="0.9" height="15.0" fill="rgb(238,164,14)" rx="2" ry="2" />
<text  x="45.70" y="399.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (3,000,000 samples, 0.23%)</title><rect x="1022.9" y="533" width="2.7" height="15.0" fill="rgb(227,151,49)" rx="2" ry="2" />
<text  x="1025.86" y="543.5" ></text>
</g>
<g >
<title>get_relation_statistics (35,000,000 samples, 2.69%)</title><rect x="271.6" y="581" width="31.8" height="15.0" fill="rgb(206,201,41)" rx="2" ry="2" />
<text  x="274.62" y="591.5" >ge..</text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="689.5" y="261" width="0.9" height="15.0" fill="rgb(245,84,40)" rx="2" ry="2" />
<text  x="692.48" y="271.5" ></text>
</g>
<g >
<title>index_close (2,000,000 samples, 0.15%)</title><rect x="1032.8" y="437" width="1.9" height="15.0" fill="rgb(207,19,29)" rx="2" ry="2" />
<text  x="1035.85" y="447.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="1000.1" y="85" width="1.0" height="15.0" fill="rgb(236,32,7)" rx="2" ry="2" />
<text  x="1003.15" y="95.5" ></text>
</g>
<g >
<title>murmurhash32 (1,000,000 samples, 0.08%)</title><rect x="799.4" y="389" width="0.9" height="15.0" fill="rgb(209,225,29)" rx="2" ry="2" />
<text  x="802.39" y="399.5" ></text>
</g>
<g >
<title>eclass_member_iterator_strict_next (20,000,000 samples, 1.54%)</title><rect x="624.1" y="421" width="18.1" height="15.0" fill="rgb(211,18,44)" rx="2" ry="2" />
<text  x="627.07" y="431.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (3,000,000 samples, 0.23%)</title><rect x="1046.5" y="821" width="2.7" height="15.0" fill="rgb(209,119,8)" rx="2" ry="2" />
<text  x="1049.47" y="831.5" ></text>
</g>
<g >
<title>palloc (2,000,000 samples, 0.15%)</title><rect x="119.0" y="485" width="1.8" height="15.0" fill="rgb(237,27,17)" rx="2" ry="2" />
<text  x="122.01" y="495.5" ></text>
</g>
<g >
<title>clear_page_orig (2,000,000 samples, 0.15%)</title><rect x="664.9" y="213" width="1.9" height="15.0" fill="rgb(219,199,13)" rx="2" ry="2" />
<text  x="667.95" y="223.5" ></text>
</g>
<g >
<title>index_beginscan (19,000,000 samples, 1.46%)</title><rect x="974.7" y="293" width="17.3" height="15.0" fill="rgb(230,82,48)" rx="2" ry="2" />
<text  x="977.71" y="303.5" ></text>
</g>
<g >
<title>table_close (1,000,000 samples, 0.08%)</title><rect x="289.8" y="549" width="0.9" height="15.0" fill="rgb(205,78,27)" rx="2" ry="2" />
<text  x="292.78" y="559.5" ></text>
</g>
<g >
<title>do_brk_flags (2,000,000 samples, 0.15%)</title><rect x="14.5" y="933" width="1.9" height="15.0" fill="rgb(214,103,31)" rx="2" ry="2" />
<text  x="17.54" y="943.5" ></text>
</g>
<g >
<title>_bt_binsrch (1,000,000 samples, 0.08%)</title><rect x="541.4" y="437" width="0.9" height="15.0" fill="rgb(209,3,42)" rx="2" ry="2" />
<text  x="544.41" y="447.5" ></text>
</g>
<g >
<title>IncrBufferRefCount (1,000,000 samples, 0.08%)</title><rect x="332.5" y="389" width="0.9" height="15.0" fill="rgb(230,189,54)" rx="2" ry="2" />
<text  x="335.48" y="399.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (1,000,000 samples, 0.08%)</title><rect x="536.9" y="453" width="0.9" height="15.0" fill="rgb(237,83,38)" rx="2" ry="2" />
<text  x="539.87" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="714.9" y="85" width="0.9" height="15.0" fill="rgb(246,24,52)" rx="2" ry="2" />
<text  x="717.91" y="95.5" ></text>
</g>
<g >
<title>ReadBuffer_common (3,000,000 samples, 0.23%)</title><rect x="417.9" y="245" width="2.7" height="15.0" fill="rgb(236,202,44)" rx="2" ry="2" />
<text  x="420.87" y="255.5" ></text>
</g>
<g >
<title>check_functions_in_node (5,000,000 samples, 0.38%)</title><rect x="880.2" y="549" width="4.6" height="15.0" fill="rgb(253,176,54)" rx="2" ry="2" />
<text  x="883.24" y="559.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (1,000,000 samples, 0.08%)</title><rect x="524.1" y="453" width="1.0" height="15.0" fill="rgb(236,69,32)" rx="2" ry="2" />
<text  x="527.15" y="463.5" ></text>
</g>
<g >
<title>unmap_page_range (13,000,000 samples, 1.00%)</title><rect x="1172.7" y="885" width="11.8" height="15.0" fill="rgb(230,132,42)" rx="2" ry="2" />
<text  x="1175.74" y="895.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="132.6" y="325" width="0.9" height="15.0" fill="rgb(247,33,26)" rx="2" ry="2" />
<text  x="135.63" y="335.5" ></text>
</g>
<g >
<title>_bt_first (6,000,000 samples, 0.46%)</title><rect x="338.8" y="437" width="5.5" height="15.0" fill="rgb(212,46,8)" rx="2" ry="2" />
<text  x="341.84" y="447.5" ></text>
</g>
<g >
<title>_bt_fix_scankey_strategy (1,000,000 samples, 0.08%)</title><rect x="930.2" y="213" width="0.9" height="15.0" fill="rgb(249,197,42)" rx="2" ry="2" />
<text  x="933.20" y="223.5" ></text>
</g>
<g >
<title>PinBuffer (2,000,000 samples, 0.15%)</title><rect x="334.3" y="341" width="1.8" height="15.0" fill="rgb(244,152,19)" rx="2" ry="2" />
<text  x="337.30" y="351.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="922.0" y="245" width="0.9" height="15.0" fill="rgb(254,85,3)" rx="2" ry="2" />
<text  x="925.02" y="255.5" ></text>
</g>
<g >
<title>check_memoizable (3,000,000 samples, 0.23%)</title><rect x="820.3" y="485" width="2.7" height="15.0" fill="rgb(210,61,17)" rx="2" ry="2" />
<text  x="823.28" y="495.5" ></text>
</g>
<g >
<title>cost_qual_eval_node (2,000,000 samples, 0.15%)</title><rect x="30.0" y="549" width="1.8" height="15.0" fill="rgb(210,221,4)" rx="2" ry="2" />
<text  x="32.98" y="559.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (46,000,000 samples, 3.54%)</title><rect x="969.3" y="325" width="41.7" height="15.0" fill="rgb(245,51,54)" rx="2" ry="2" />
<text  x="972.26" y="335.5" >Sea..</text>
</g>
<g >
<title>relation_open (1,000,000 samples, 0.08%)</title><rect x="547.8" y="517" width="0.9" height="15.0" fill="rgb(224,172,43)" rx="2" ry="2" />
<text  x="550.77" y="527.5" ></text>
</g>
<g >
<title>alloc_empty_file (6,000,000 samples, 0.46%)</title><rect x="1056.5" y="885" width="5.4" height="15.0" fill="rgb(209,15,19)" rx="2" ry="2" />
<text  x="1059.47" y="895.5" ></text>
</g>
<g >
<title>bms_next_member (8,000,000 samples, 0.62%)</title><rect x="784.9" y="437" width="7.2" height="15.0" fill="rgb(211,62,0)" rx="2" ry="2" />
<text  x="787.86" y="447.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="396.1" y="229" width="0.9" height="15.0" fill="rgb(230,73,48)" rx="2" ry="2" />
<text  x="399.07" y="239.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="809.4" y="389" width="0.9" height="15.0" fill="rgb(224,55,47)" rx="2" ry="2" />
<text  x="812.38" y="399.5" ></text>
</g>
<g >
<title>ExecDropSingleTupleTableSlot (2,000,000 samples, 0.15%)</title><rect x="381.5" y="389" width="1.8" height="15.0" fill="rgb(224,163,5)" rx="2" ry="2" />
<text  x="384.53" y="399.5" ></text>
</g>
<g >
<title>_find_next_bit.constprop.0 (1,000,000 samples, 0.08%)</title><rect x="1055.6" y="901" width="0.9" height="15.0" fill="rgb(252,228,10)" rx="2" ry="2" />
<text  x="1058.56" y="911.5" ></text>
</g>
<g >
<title>eqsel (42,000,000 samples, 3.23%)</title><rect x="910.2" y="453" width="38.2" height="15.0" fill="rgb(226,182,40)" rx="2" ry="2" />
<text  x="913.22" y="463.5" >eqsel</text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="485" width="0.9" height="15.0" fill="rgb(248,93,40)" rx="2" ry="2" />
<text  x="1052.20" y="495.5" ></text>
</g>
<g >
<title>evaluate_expr (16,000,000 samples, 1.23%)</title><rect x="952.0" y="341" width="14.5" height="15.0" fill="rgb(223,148,42)" rx="2" ry="2" />
<text  x="955.00" y="351.5" ></text>
</g>
<g >
<title>filemap_map_pages (1,000,000 samples, 0.08%)</title><rect x="142.6" y="405" width="0.9" height="15.0" fill="rgb(222,69,24)" rx="2" ry="2" />
<text  x="145.63" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="467.8" y="357" width="0.9" height="15.0" fill="rgb(240,141,31)" rx="2" ry="2" />
<text  x="470.83" y="367.5" ></text>
</g>
<g >
<title>index_getnext_tid (23,000,000 samples, 1.77%)</title><rect x="399.7" y="373" width="20.9" height="15.0" fill="rgb(225,24,2)" rx="2" ry="2" />
<text  x="402.70" y="383.5" ></text>
</g>
<g >
<title>get_common_eclass_indexes (1,000,000 samples, 0.08%)</title><rect x="712.2" y="421" width="0.9" height="15.0" fill="rgb(249,70,6)" rx="2" ry="2" />
<text  x="715.19" y="431.5" ></text>
</g>
<g >
<title>_bt_first (13,000,000 samples, 1.00%)</title><rect x="578.7" y="469" width="11.8" height="15.0" fill="rgb(253,202,1)" rx="2" ry="2" />
<text  x="581.65" y="479.5" ></text>
</g>
<g >
<title>psprintf (2,000,000 samples, 0.15%)</title><rect x="261.6" y="405" width="1.8" height="15.0" fill="rgb(214,213,29)" rx="2" ry="2" />
<text  x="264.62" y="415.5" ></text>
</g>
<g >
<title>index_close (3,000,000 samples, 0.23%)</title><rect x="279.8" y="533" width="2.7" height="15.0" fill="rgb(254,207,21)" rx="2" ry="2" />
<text  x="282.79" y="543.5" ></text>
</g>
<g >
<title>_bt_first (10,000,000 samples, 0.77%)</title><rect x="66.3" y="373" width="9.1" height="15.0" fill="rgb(254,53,0)" rx="2" ry="2" />
<text  x="69.32" y="383.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,000,000 samples, 0.08%)</title><rect x="714.9" y="245" width="0.9" height="15.0" fill="rgb(214,203,21)" rx="2" ry="2" />
<text  x="717.91" y="255.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,000,000 samples, 0.08%)</title><rect x="997.4" y="197" width="0.9" height="15.0" fill="rgb(219,144,34)" rx="2" ry="2" />
<text  x="1000.42" y="207.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="695.8" y="373" width="0.9" height="15.0" fill="rgb(252,130,53)" rx="2" ry="2" />
<text  x="698.84" y="383.5" ></text>
</g>
<g >
<title>index_getnext_tid (9,000,000 samples, 0.69%)</title><rect x="143.5" y="533" width="8.2" height="15.0" fill="rgb(209,76,3)" rx="2" ry="2" />
<text  x="146.53" y="543.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,000,000 samples, 0.08%)</title><rect x="694.9" y="309" width="0.9" height="15.0" fill="rgb(243,38,31)" rx="2" ry="2" />
<text  x="697.93" y="319.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (1,000,000 samples, 0.08%)</title><rect x="407.9" y="261" width="0.9" height="15.0" fill="rgb(215,21,49)" rx="2" ry="2" />
<text  x="410.88" y="271.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,000,000 samples, 0.23%)</title><rect x="47.2" y="325" width="2.8" height="15.0" fill="rgb(229,100,16)" rx="2" ry="2" />
<text  x="50.24" y="335.5" ></text>
</g>
<g >
<title>clear_page_orig (4,000,000 samples, 0.31%)</title><rect x="315.2" y="341" width="3.7" height="15.0" fill="rgb(221,98,32)" rx="2" ry="2" />
<text  x="318.22" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,000,000 samples, 0.08%)</title><rect x="926.6" y="213" width="0.9" height="15.0" fill="rgb(251,156,17)" rx="2" ry="2" />
<text  x="929.57" y="223.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="278.9" y="501" width="0.9" height="15.0" fill="rgb(239,144,38)" rx="2" ry="2" />
<text  x="281.88" y="511.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,000,000 samples, 0.15%)</title><rect x="71.8" y="293" width="1.8" height="15.0" fill="rgb(252,83,43)" rx="2" ry="2" />
<text  x="74.77" y="303.5" ></text>
</g>
<g >
<title>TerminateBufferIO (2,000,000 samples, 0.15%)</title><rect x="179.9" y="501" width="1.8" height="15.0" fill="rgb(231,87,46)" rx="2" ry="2" />
<text  x="182.87" y="511.5" ></text>
</g>
<g >
<title>transformExprRecurse (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="661" width="0.9" height="15.0" fill="rgb(216,97,38)" rx="2" ry="2" />
<text  x="1052.20" y="671.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="825.7" y="421" width="0.9" height="15.0" fill="rgb(249,78,33)" rx="2" ry="2" />
<text  x="828.74" y="431.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,000,000 samples, 0.08%)</title><rect x="121.7" y="469" width="0.9" height="15.0" fill="rgb(240,172,37)" rx="2" ry="2" />
<text  x="124.73" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (3,000,000 samples, 0.23%)</title><rect x="1187.3" y="917" width="2.7" height="15.0" fill="rgb(252,182,41)" rx="2" ry="2" />
<text  x="1190.27" y="927.5" ></text>
</g>
<g >
<title>find_get_entry (1,000,000 samples, 0.08%)</title><rect x="249.8" y="197" width="0.9" height="15.0" fill="rgb(242,170,36)" rx="2" ry="2" />
<text  x="252.82" y="207.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (3,000,000 samples, 0.23%)</title><rect x="248.9" y="261" width="2.7" height="15.0" fill="rgb(251,67,6)" rx="2" ry="2" />
<text  x="251.91" y="271.5" ></text>
</g>
<g >
<title>smgropen (2,000,000 samples, 0.15%)</title><rect x="158.1" y="549" width="1.8" height="15.0" fill="rgb(247,224,14)" rx="2" ry="2" />
<text  x="161.07" y="559.5" ></text>
</g>
<g >
<title>set_rel_pathlist (285,000,000 samples, 21.94%)</title><rect x="601.4" y="629" width="258.9" height="15.0" fill="rgb(208,33,29)" rx="2" ry="2" />
<text  x="604.36" y="639.5" >set_rel_pathlist</text>
</g>
<g >
<title>LockRelease (1,000,000 samples, 0.08%)</title><rect x="480.5" y="453" width="1.0" height="15.0" fill="rgb(220,122,19)" rx="2" ry="2" />
<text  x="483.55" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,000,000 samples, 0.15%)</title><rect x="308.0" y="501" width="1.8" height="15.0" fill="rgb(228,219,5)" rx="2" ry="2" />
<text  x="310.95" y="511.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="455.1" y="357" width="0.9" height="15.0" fill="rgb(227,178,29)" rx="2" ry="2" />
<text  x="458.11" y="367.5" ></text>
</g>
<g >
<title>LockTagHashCode (1,000,000 samples, 0.08%)</title><rect x="294.3" y="485" width="0.9" height="15.0" fill="rgb(248,167,37)" rx="2" ry="2" />
<text  x="297.33" y="495.5" ></text>
</g>
<g >
<title>ReleaseLruFile (5,000,000 samples, 0.38%)</title><rect x="264.3" y="373" width="4.6" height="15.0" fill="rgb(249,61,15)" rx="2" ry="2" />
<text  x="267.35" y="383.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="693" width="1.0" height="15.0" fill="rgb(248,108,52)" rx="2" ry="2" />
<text  x="1187.55" y="703.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="420.6" y="309" width="0.9" height="15.0" fill="rgb(236,161,36)" rx="2" ry="2" />
<text  x="423.59" y="319.5" ></text>
</g>
<g >
<title>ReadBuffer_common (4,000,000 samples, 0.31%)</title><rect x="139.0" y="437" width="3.6" height="15.0" fill="rgb(228,180,50)" rx="2" ry="2" />
<text  x="141.99" y="447.5" ></text>
</g>
<g >
<title>list_last_cell (1,000,000 samples, 0.08%)</title><rect x="893.9" y="565" width="0.9" height="15.0" fill="rgb(230,117,36)" rx="2" ry="2" />
<text  x="896.86" y="575.5" ></text>
</g>
<g >
<title>cost_bitmap_heap_scan (1,000,000 samples, 0.08%)</title><rect x="608.6" y="517" width="0.9" height="15.0" fill="rgb(207,159,51)" rx="2" ry="2" />
<text  x="611.63" y="527.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (1,000,000 samples, 0.08%)</title><rect x="66.3" y="357" width="0.9" height="15.0" fill="rgb(207,57,52)" rx="2" ry="2" />
<text  x="69.32" y="367.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="475.1" y="421" width="0.9" height="15.0" fill="rgb(251,73,47)" rx="2" ry="2" />
<text  x="478.10" y="431.5" ></text>
</g>
<g >
<title>check_functions_in_node (1,000,000 samples, 0.08%)</title><rect x="689.5" y="341" width="0.9" height="15.0" fill="rgb(232,34,43)" rx="2" ry="2" />
<text  x="692.48" y="351.5" ></text>
</g>
<g >
<title>LockRelease (1,000,000 samples, 0.08%)</title><rect x="995.6" y="261" width="0.9" height="15.0" fill="rgb(246,95,54)" rx="2" ry="2" />
<text  x="998.60" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="1052.8" y="981" width="0.9" height="15.0" fill="rgb(228,24,38)" rx="2" ry="2" />
<text  x="1055.83" y="991.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,000,000 samples, 0.08%)</title><rect x="445.1" y="309" width="0.9" height="15.0" fill="rgb(213,49,4)" rx="2" ry="2" />
<text  x="448.12" y="319.5" ></text>
</g>
<g >
<title>index_getattr (1,000,000 samples, 0.08%)</title><rect x="340.7" y="389" width="0.9" height="15.0" fill="rgb(252,201,5)" rx="2" ry="2" />
<text  x="343.65" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="127.2" y="485" width="0.9" height="15.0" fill="rgb(225,71,53)" rx="2" ry="2" />
<text  x="130.18" y="495.5" ></text>
</g>
<g >
<title>__memset_sse2_unaligned_erms (1,000,000 samples, 0.08%)</title><rect x="561.4" y="405" width="0.9" height="15.0" fill="rgb(245,180,42)" rx="2" ry="2" />
<text  x="564.39" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="832.1" y="437" width="0.9" height="15.0" fill="rgb(213,14,3)" rx="2" ry="2" />
<text  x="835.09" y="447.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,000,000 samples, 0.23%)</title><rect x="1012.9" y="437" width="2.7" height="15.0" fill="rgb(244,91,43)" rx="2" ry="2" />
<text  x="1015.86" y="447.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (1,000,000 samples, 0.08%)</title><rect x="963.8" y="261" width="0.9" height="15.0" fill="rgb(233,167,24)" rx="2" ry="2" />
<text  x="966.81" y="271.5" ></text>
</g>
<g >
<title>text_to_cstring (1,000,000 samples, 0.08%)</title><rect x="93.6" y="517" width="0.9" height="15.0" fill="rgb(219,226,9)" rx="2" ry="2" />
<text  x="96.57" y="527.5" ></text>
</g>
<g >
<title>lappend (1,000,000 samples, 0.08%)</title><rect x="725.8" y="437" width="0.9" height="15.0" fill="rgb(227,168,6)" rx="2" ry="2" />
<text  x="728.81" y="447.5" ></text>
</g>
<g >
<title>table_slot_create (2,000,000 samples, 0.15%)</title><rect x="566.8" y="517" width="1.9" height="15.0" fill="rgb(242,16,42)" rx="2" ry="2" />
<text  x="569.84" y="527.5" ></text>
</g>
<g >
<title>index_getnext_slot (6,000,000 samples, 0.46%)</title><rect x="284.3" y="533" width="5.5" height="15.0" fill="rgb(232,220,1)" rx="2" ry="2" />
<text  x="287.33" y="543.5" ></text>
</g>
<g >
<title>ReadBuffer_common (4,000,000 samples, 0.31%)</title><rect x="450.6" y="277" width="3.6" height="15.0" fill="rgb(205,50,46)" rx="2" ry="2" />
<text  x="453.57" y="287.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="1039.2" y="245" width="0.9" height="15.0" fill="rgb(220,128,5)" rx="2" ry="2" />
<text  x="1042.21" y="255.5" ></text>
</g>
<g >
<title>BTreeTupleGetDownLink (1,000,000 samples, 0.08%)</title><rect x="931.1" y="213" width="0.9" height="15.0" fill="rgb(225,43,53)" rx="2" ry="2" />
<text  x="934.11" y="223.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="131.7" y="501" width="0.9" height="15.0" fill="rgb(215,195,38)" rx="2" ry="2" />
<text  x="134.72" y="511.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,000,000 samples, 0.15%)</title><rect x="684.9" y="421" width="1.9" height="15.0" fill="rgb(236,8,35)" rx="2" ry="2" />
<text  x="687.93" y="431.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="74.5" y="277" width="0.9" height="15.0" fill="rgb(237,7,9)" rx="2" ry="2" />
<text  x="77.50" y="287.5" ></text>
</g>
<g >
<title>get_relation_info (405,000,000 samples, 31.18%)</title><rect x="128.1" y="597" width="367.9" height="15.0" fill="rgb(211,81,29)" rx="2" ry="2" />
<text  x="131.09" y="607.5" >get_relation_info</text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="28.2" y="533" width="0.9" height="15.0" fill="rgb(227,153,24)" rx="2" ry="2" />
<text  x="31.17" y="543.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="1041.9" y="373" width="0.9" height="15.0" fill="rgb(233,160,20)" rx="2" ry="2" />
<text  x="1044.93" y="383.5" ></text>
</g>
<g >
<title>index_getattr (1,000,000 samples, 0.08%)</title><rect x="535.1" y="421" width="0.9" height="15.0" fill="rgb(212,117,29)" rx="2" ry="2" />
<text  x="538.05" y="431.5" ></text>
</g>
<g >
<title>generic_file_buffered_read (70,000,000 samples, 5.39%)</title><rect x="188.0" y="373" width="63.6" height="15.0" fill="rgb(213,162,31)" rx="2" ry="2" />
<text  x="191.04" y="383.5" >generi..</text>
</g>
<g >
<title>parseNodeString (12,000,000 samples, 0.92%)</title><rect x="80.9" y="389" width="10.9" height="15.0" fill="rgb(215,204,34)" rx="2" ry="2" />
<text  x="83.85" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="919.3" y="229" width="0.9" height="15.0" fill="rgb(235,52,4)" rx="2" ry="2" />
<text  x="922.30" y="239.5" ></text>
</g>
<g >
<title>bms_copy (1,000,000 samples, 0.08%)</title><rect x="125.4" y="533" width="0.9" height="15.0" fill="rgb(242,197,12)" rx="2" ry="2" />
<text  x="128.37" y="543.5" ></text>
</g>
<g >
<title>ReadBufferExtended (3,000,000 samples, 0.23%)</title><rect x="935.7" y="165" width="2.7" height="15.0" fill="rgb(222,194,9)" rx="2" ry="2" />
<text  x="938.65" y="175.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,000,000 samples, 0.08%)</title><rect x="1039.2" y="293" width="0.9" height="15.0" fill="rgb(225,143,39)" rx="2" ry="2" />
<text  x="1042.21" y="303.5" ></text>
</g>
<g >
<title>__find_get_block (2,000,000 samples, 0.15%)</title><rect x="248.9" y="229" width="1.8" height="15.0" fill="rgb(207,109,7)" rx="2" ry="2" />
<text  x="251.91" y="239.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="819.4" y="437" width="0.9" height="15.0" fill="rgb(244,199,40)" rx="2" ry="2" />
<text  x="822.38" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,000,000 samples, 0.15%)</title><rect x="664.9" y="261" width="1.9" height="15.0" fill="rgb(249,99,22)" rx="2" ry="2" />
<text  x="667.95" y="271.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="824.8" y="373" width="0.9" height="15.0" fill="rgb(220,218,45)" rx="2" ry="2" />
<text  x="827.83" y="383.5" ></text>
</g>
<g >
<title>clauselist_selectivity_ext (6,000,000 samples, 0.46%)</title><rect x="690.4" y="389" width="5.4" height="15.0" fill="rgb(236,68,7)" rx="2" ry="2" />
<text  x="693.38" y="399.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="546.9" y="469" width="0.9" height="15.0" fill="rgb(230,66,8)" rx="2" ry="2" />
<text  x="549.86" y="479.5" ></text>
</g>
<g >
<title>palloc0 (7,000,000 samples, 0.54%)</title><rect x="510.5" y="533" width="6.4" height="15.0" fill="rgb(218,79,30)" rx="2" ry="2" />
<text  x="513.52" y="543.5" ></text>
</g>
<g >
<title>lappend (1,000,000 samples, 0.08%)</title><rect x="24.5" y="693" width="0.9" height="15.0" fill="rgb(211,91,28)" rx="2" ry="2" />
<text  x="27.53" y="703.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="439.7" y="389" width="0.9" height="15.0" fill="rgb(231,167,19)" rx="2" ry="2" />
<text  x="442.67" y="399.5" ></text>
</g>
<g >
<title>__fput (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="917" width="1.0" height="15.0" fill="rgb(209,54,23)" rx="2" ry="2" />
<text  x="1187.55" y="927.5" ></text>
</g>
<g >
<title>expand_partitioned_rtentry (557,000,000 samples, 42.88%)</title><rect x="94.5" y="629" width="506.0" height="15.0" fill="rgb(231,226,5)" rx="2" ry="2" />
<text  x="97.48" y="639.5" >expand_partitioned_rtentry</text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="645.9" y="261" width="0.9" height="15.0" fill="rgb(211,167,0)" rx="2" ry="2" />
<text  x="648.87" y="271.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,000,000 samples, 0.08%)</title><rect x="972.9" y="245" width="0.9" height="15.0" fill="rgb(234,23,17)" rx="2" ry="2" />
<text  x="975.89" y="255.5" ></text>
</g>
<g >
<title>_bt_getroot (2,000,000 samples, 0.15%)</title><rect x="542.3" y="437" width="1.8" height="15.0" fill="rgb(226,37,26)" rx="2" ry="2" />
<text  x="545.32" y="447.5" ></text>
</g>
<g >
<title>GetNonHistoricCatalogSnapshot (1,000,000 samples, 0.08%)</title><rect x="548.7" y="501" width="0.9" height="15.0" fill="rgb(254,178,3)" rx="2" ry="2" />
<text  x="551.68" y="511.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="595.0" y="469" width="0.9" height="15.0" fill="rgb(216,88,32)" rx="2" ry="2" />
<text  x="598.00" y="479.5" ></text>
</g>
<g >
<title>exc_page_fault (6,000,000 samples, 0.46%)</title><rect x="553.2" y="453" width="5.5" height="15.0" fill="rgb(228,109,33)" rx="2" ry="2" />
<text  x="556.22" y="463.5" ></text>
</g>
<g >
<title>pgstat_init_relation (1,000,000 samples, 0.08%)</title><rect x="492.4" y="469" width="0.9" height="15.0" fill="rgb(207,111,54)" rx="2" ry="2" />
<text  x="495.36" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="360.6" y="309" width="0.9" height="15.0" fill="rgb(207,3,39)" rx="2" ry="2" />
<text  x="363.64" y="319.5" ></text>
</g>
<g >
<title>bms_intersect (2,000,000 samples, 0.15%)</title><rect x="701.3" y="373" width="1.8" height="15.0" fill="rgb(219,36,35)" rx="2" ry="2" />
<text  x="704.29" y="383.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (2,000,000 samples, 0.15%)</title><rect x="411.5" y="277" width="1.8" height="15.0" fill="rgb(243,85,2)" rx="2" ry="2" />
<text  x="414.51" y="287.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (1,000,000 samples, 0.08%)</title><rect x="965.6" y="325" width="0.9" height="15.0" fill="rgb(246,14,16)" rx="2" ry="2" />
<text  x="968.63" y="335.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="887.5" y="485" width="0.9" height="15.0" fill="rgb(212,190,45)" rx="2" ry="2" />
<text  x="890.51" y="495.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="475.1" y="373" width="0.9" height="15.0" fill="rgb(216,189,17)" rx="2" ry="2" />
<text  x="478.10" y="383.5" ></text>
</g>
<g >
<title>BlockNumberIsValid (1,000,000 samples, 0.08%)</title><rect x="56.3" y="389" width="0.9" height="15.0" fill="rgb(229,112,43)" rx="2" ry="2" />
<text  x="59.33" y="399.5" ></text>
</g>
<g >
<title>UnpinBuffer (2,000,000 samples, 0.15%)</title><rect x="407.0" y="293" width="1.8" height="15.0" fill="rgb(235,209,28)" rx="2" ry="2" />
<text  x="409.97" y="303.5" ></text>
</g>
<g >
<title>pgstat_assoc_relation (2,000,000 samples, 0.15%)</title><rect x="253.4" y="517" width="1.9" height="15.0" fill="rgb(213,224,17)" rx="2" ry="2" />
<text  x="256.45" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="432.4" y="405" width="1.8" height="15.0" fill="rgb(234,55,47)" rx="2" ry="2" />
<text  x="435.40" y="415.5" ></text>
</g>
<g >
<title>index_getnext_slot (6,000,000 samples, 0.46%)</title><rect x="1035.6" y="437" width="5.4" height="15.0" fill="rgb(248,30,11)" rx="2" ry="2" />
<text  x="1038.57" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="991.1" y="229" width="0.9" height="15.0" fill="rgb(251,200,0)" rx="2" ry="2" />
<text  x="994.06" y="239.5" ></text>
</g>
<g >
<title>pstrdup (1,000,000 samples, 0.08%)</title><rect x="501.4" y="597" width="0.9" height="15.0" fill="rgb(251,162,51)" rx="2" ry="2" />
<text  x="504.44" y="607.5" ></text>
</g>
<g >
<title>LockAcquireExtended (7,000,000 samples, 0.54%)</title><rect x="303.4" y="533" width="6.4" height="15.0" fill="rgb(234,145,5)" rx="2" ry="2" />
<text  x="306.41" y="543.5" ></text>
</g>
<g >
<title>palloc (2,000,000 samples, 0.15%)</title><rect x="275.3" y="485" width="1.8" height="15.0" fill="rgb(229,88,6)" rx="2" ry="2" />
<text  x="278.25" y="495.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="692.2" y="309" width="0.9" height="15.0" fill="rgb(212,64,31)" rx="2" ry="2" />
<text  x="695.20" y="319.5" ></text>
</g>
<g >
<title>PostgresMain (1,140,000,000 samples, 87.76%)</title><rect x="17.3" y="901" width="1035.5" height="15.0" fill="rgb(248,7,15)" rx="2" ry="2" />
<text  x="20.27" y="911.5" >PostgresMain</text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="253.4" y="453" width="1.0" height="15.0" fill="rgb(252,199,12)" rx="2" ry="2" />
<text  x="256.45" y="463.5" ></text>
</g>
<g >
<title>__do_munmap (2,000,000 samples, 0.15%)</title><rect x="12.7" y="933" width="1.8" height="15.0" fill="rgb(243,94,44)" rx="2" ry="2" />
<text  x="15.73" y="943.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="483.3" y="325" width="0.9" height="15.0" fill="rgb(217,31,49)" rx="2" ry="2" />
<text  x="486.27" y="335.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,000,000 samples, 0.08%)</title><rect x="279.8" y="437" width="0.9" height="15.0" fill="rgb(217,122,37)" rx="2" ry="2" />
<text  x="282.79" y="447.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,000,000 samples, 0.08%)</title><rect x="331.6" y="469" width="0.9" height="15.0" fill="rgb(219,13,12)" rx="2" ry="2" />
<text  x="334.57" y="479.5" ></text>
</g>
<g >
<title>add_base_rels_to_query (57,000,000 samples, 4.39%)</title><rect x="42.7" y="645" width="51.8" height="15.0" fill="rgb(221,51,33)" rx="2" ry="2" />
<text  x="45.70" y="655.5" >add_b..</text>
</g>
<g >
<title>systable_beginscan (8,000,000 samples, 0.62%)</title><rect x="272.5" y="549" width="7.3" height="15.0" fill="rgb(251,181,38)" rx="2" ry="2" />
<text  x="275.53" y="559.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (3,000,000 samples, 0.23%)</title><rect x="874.8" y="565" width="2.7" height="15.0" fill="rgb(253,137,34)" rx="2" ry="2" />
<text  x="877.79" y="575.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,000,000 samples, 0.08%)</title><rect x="397.0" y="197" width="0.9" height="15.0" fill="rgb(247,119,52)" rx="2" ry="2" />
<text  x="399.97" y="207.5" ></text>
</g>
<g >
<title>LockRelationOid (2,000,000 samples, 0.15%)</title><rect x="326.1" y="453" width="1.8" height="15.0" fill="rgb(208,205,18)" rx="2" ry="2" />
<text  x="329.12" y="463.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="563.2" y="309" width="0.9" height="15.0" fill="rgb(213,44,25)" rx="2" ry="2" />
<text  x="566.21" y="319.5" ></text>
</g>
<g >
<title>exit_mmap (14,000,000 samples, 1.08%)</title><rect x="1171.8" y="917" width="12.7" height="15.0" fill="rgb(214,23,20)" rx="2" ry="2" />
<text  x="1174.83" y="927.5" ></text>
</g>
<g >
<title>table_block_relation_estimate_size (15,000,000 samples, 1.15%)</title><rect x="257.1" y="533" width="13.6" height="15.0" fill="rgb(231,151,0)" rx="2" ry="2" />
<text  x="260.08" y="543.5" ></text>
</g>
<g >
<title>PageGetItem (1,000,000 samples, 0.08%)</title><rect x="405.2" y="293" width="0.9" height="15.0" fill="rgb(238,159,37)" rx="2" ry="2" />
<text  x="408.15" y="303.5" ></text>
</g>
<g >
<title>index_getnext_tid (1,000,000 samples, 0.08%)</title><rect x="42.7" y="341" width="0.9" height="15.0" fill="rgb(215,215,33)" rx="2" ry="2" />
<text  x="45.70" y="351.5" ></text>
</g>
<g >
<title>UnlockRelationId (7,000,000 samples, 0.54%)</title><rect x="385.2" y="373" width="6.3" height="15.0" fill="rgb(227,70,19)" rx="2" ry="2" />
<text  x="388.17" y="383.5" ></text>
</g>
<g >
<title>RelationHasSysCache (1,000,000 samples, 0.08%)</title><rect x="323.4" y="453" width="0.9" height="15.0" fill="rgb(233,5,44)" rx="2" ry="2" />
<text  x="326.39" y="463.5" ></text>
</g>
<g >
<title>SearchSysCache3 (36,000,000 samples, 2.77%)</title><rect x="913.8" y="373" width="32.8" height="15.0" fill="rgb(216,14,22)" rx="2" ry="2" />
<text  x="916.85" y="383.5" >Se..</text>
</g>
<g >
<title>make_seqscan (2,000,000 samples, 0.15%)</title><rect x="27.3" y="565" width="1.8" height="15.0" fill="rgb(212,99,52)" rx="2" ry="2" />
<text  x="30.26" y="575.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="612.3" y="485" width="0.9" height="15.0" fill="rgb(250,79,54)" rx="2" ry="2" />
<text  x="615.26" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="613.2" y="501" width="0.9" height="15.0" fill="rgb(237,151,2)" rx="2" ry="2" />
<text  x="616.17" y="511.5" ></text>
</g>
<g >
<title>expand_single_inheritance_child (6,000,000 samples, 0.46%)</title><rect x="496.9" y="613" width="5.4" height="15.0" fill="rgb(254,142,38)" rx="2" ry="2" />
<text  x="499.90" y="623.5" ></text>
</g>
<g >
<title>bms_equal (3,000,000 samples, 0.23%)</title><rect x="737.6" y="469" width="2.7" height="15.0" fill="rgb(220,115,33)" rx="2" ry="2" />
<text  x="740.62" y="479.5" ></text>
</g>
<g >
<title>systable_getnext (12,000,000 samples, 0.92%)</title><rect x="444.2" y="437" width="10.9" height="15.0" fill="rgb(206,96,21)" rx="2" ry="2" />
<text  x="447.21" y="447.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberTupleDesc (1,000,000 samples, 0.08%)</title><rect x="377.9" y="325" width="0.9" height="15.0" fill="rgb(252,75,27)" rx="2" ry="2" />
<text  x="380.90" y="335.5" ></text>
</g>
<g >
<title>SetupLockInTable (1,000,000 samples, 0.08%)</title><rect x="295.2" y="485" width="0.9" height="15.0" fill="rgb(252,178,16)" rx="2" ry="2" />
<text  x="298.23" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="142.6" y="437" width="0.9" height="15.0" fill="rgb(254,227,5)" rx="2" ry="2" />
<text  x="145.63" y="447.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,000,000 samples, 0.08%)</title><rect x="883.9" y="485" width="0.9" height="15.0" fill="rgb(232,2,23)" rx="2" ry="2" />
<text  x="886.87" y="495.5" ></text>
</g>
<g >
<title>palloc (2,000,000 samples, 0.15%)</title><rect x="783.0" y="405" width="1.9" height="15.0" fill="rgb(253,197,16)" rx="2" ry="2" />
<text  x="786.04" y="415.5" ></text>
</g>
<g >
<title>get_parameterized_baserel_size (14,000,000 samples, 1.08%)</title><rect x="713.1" y="437" width="12.7" height="15.0" fill="rgb(208,153,32)" rx="2" ry="2" />
<text  x="716.09" y="447.5" ></text>
</g>
<g >
<title>_bt_getroot (3,000,000 samples, 0.23%)</title><rect x="147.2" y="469" width="2.7" height="15.0" fill="rgb(253,151,3)" rx="2" ry="2" />
<text  x="150.17" y="479.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="497.8" y="565" width="0.9" height="15.0" fill="rgb(208,6,29)" rx="2" ry="2" />
<text  x="500.81" y="575.5" ></text>
</g>
<g >
<title>jbd2_journal_dirty_metadata (1,000,000 samples, 0.08%)</title><rect x="247.1" y="261" width="0.9" height="15.0" fill="rgb(229,80,13)" rx="2" ry="2" />
<text  x="250.09" y="271.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="669.5" y="261" width="0.9" height="15.0" fill="rgb(228,143,32)" rx="2" ry="2" />
<text  x="672.49" y="271.5" ></text>
</g>
<g >
<title>parse_analyze_fixedparams (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="853" width="0.9" height="15.0" fill="rgb(253,176,41)" rx="2" ry="2" />
<text  x="1052.20" y="863.5" ></text>
</g>
<g >
<title>adjust_appendrel_attrs_mutator (3,000,000 samples, 0.23%)</title><rect x="99.0" y="533" width="2.7" height="15.0" fill="rgb(223,133,33)" rx="2" ry="2" />
<text  x="102.02" y="543.5" ></text>
</g>
<g >
<title>pg_nextpower2_32 (1,000,000 samples, 0.08%)</title><rect x="123.5" y="549" width="1.0" height="15.0" fill="rgb(246,117,13)" rx="2" ry="2" />
<text  x="126.55" y="559.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="572.3" y="469" width="0.9" height="15.0" fill="rgb(224,29,10)" rx="2" ry="2" />
<text  x="575.29" y="479.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (1,000,000 samples, 0.08%)</title><rect x="76.3" y="405" width="0.9" height="15.0" fill="rgb(213,191,45)" rx="2" ry="2" />
<text  x="79.31" y="415.5" ></text>
</g>
<g >
<title>generate_join_implied_equalities_normal (14,000,000 samples, 1.08%)</title><rect x="699.5" y="421" width="12.7" height="15.0" fill="rgb(234,80,31)" rx="2" ry="2" />
<text  x="702.47" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="915.7" y="197" width="0.9" height="15.0" fill="rgb(235,56,41)" rx="2" ry="2" />
<text  x="918.67" y="207.5" ></text>
</g>
<g >
<title>systable_endscan (4,000,000 samples, 0.31%)</title><rect x="440.6" y="437" width="3.6" height="15.0" fill="rgb(218,31,14)" rx="2" ry="2" />
<text  x="443.58" y="447.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,000,000 samples, 0.08%)</title><rect x="587.7" y="389" width="0.9" height="15.0" fill="rgb(225,173,24)" rx="2" ry="2" />
<text  x="590.74" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,000,000 samples, 0.08%)</title><rect x="74.5" y="245" width="0.9" height="15.0" fill="rgb(207,111,40)" rx="2" ry="2" />
<text  x="77.50" y="255.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="562.3" y="357" width="1.8" height="15.0" fill="rgb(219,105,32)" rx="2" ry="2" />
<text  x="565.30" y="367.5" ></text>
</g>
<g >
<title>element_alloc (2,000,000 samples, 0.15%)</title><rect x="562.3" y="405" width="1.8" height="15.0" fill="rgb(247,90,46)" rx="2" ry="2" />
<text  x="565.30" y="415.5" ></text>
</g>
<g >
<title>build_index_pathkeys (76,000,000 samples, 5.85%)</title><rect x="615.9" y="469" width="69.0" height="15.0" fill="rgb(208,210,23)" rx="2" ry="2" />
<text  x="618.90" y="479.5" >build_i..</text>
</g>
<g >
<title>_bt_moveright (1,000,000 samples, 0.08%)</title><rect x="343.4" y="405" width="0.9" height="15.0" fill="rgb(247,197,49)" rx="2" ry="2" />
<text  x="346.38" y="415.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="360.6" y="357" width="0.9" height="15.0" fill="rgb(251,67,23)" rx="2" ry="2" />
<text  x="363.64" y="367.5" ></text>
</g>
<g >
<title>table_close (1,000,000 samples, 0.08%)</title><rect x="491.4" y="501" width="1.0" height="15.0" fill="rgb(215,214,30)" rx="2" ry="2" />
<text  x="494.45" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="919.3" y="245" width="0.9" height="15.0" fill="rgb(253,104,42)" rx="2" ry="2" />
<text  x="922.30" y="255.5" ></text>
</g>
<g >
<title>systable_getnext (6,000,000 samples, 0.46%)</title><rect x="1035.6" y="453" width="5.4" height="15.0" fill="rgb(249,55,0)" rx="2" ry="2" />
<text  x="1038.57" y="463.5" ></text>
</g>
<g >
<title>shmem_exit (1,000,000 samples, 0.08%)</title><rect x="1051.9" y="853" width="0.9" height="15.0" fill="rgb(205,139,44)" rx="2" ry="2" />
<text  x="1054.92" y="863.5" ></text>
</g>
<g >
<title>mem_cgroup_charge (1,000,000 samples, 0.08%)</title><rect x="666.8" y="293" width="0.9" height="15.0" fill="rgb(223,28,29)" rx="2" ry="2" />
<text  x="669.77" y="303.5" ></text>
</g>
<g >
<title>_bt_metaversion (4,000,000 samples, 0.31%)</title><rect x="285.2" y="469" width="3.7" height="15.0" fill="rgb(206,15,5)" rx="2" ry="2" />
<text  x="288.24" y="479.5" ></text>
</g>
<g >
<title>index_fetch_heap (6,000,000 samples, 0.46%)</title><rect x="525.1" y="501" width="5.4" height="15.0" fill="rgb(210,200,45)" rx="2" ry="2" />
<text  x="528.06" y="511.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (1,000,000 samples, 0.08%)</title><rect x="12.7" y="917" width="0.9" height="15.0" fill="rgb(230,159,5)" rx="2" ry="2" />
<text  x="15.73" y="927.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,000,000 samples, 0.08%)</title><rect x="720.4" y="373" width="0.9" height="15.0" fill="rgb(230,194,41)" rx="2" ry="2" />
<text  x="723.36" y="383.5" ></text>
</g>
<g >
<title>add_base_rels_to_query (57,000,000 samples, 4.39%)</title><rect x="42.7" y="629" width="51.8" height="15.0" fill="rgb(207,113,15)" rx="2" ry="2" />
<text  x="45.70" y="639.5" >add_b..</text>
</g>
<g >
<title>release_pages (4,000,000 samples, 0.31%)</title><rect x="1180.9" y="853" width="3.6" height="15.0" fill="rgb(226,29,21)" rx="2" ry="2" />
<text  x="1183.92" y="863.5" ></text>
</g>
<g >
<title>get_ecmember_indexes_strict (28,000,000 samples, 2.16%)</title><rect x="648.6" y="405" width="25.4" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text  x="651.60" y="415.5" >g..</text>
</g>
<g >
<title>index_open (2,000,000 samples, 0.15%)</title><rect x="277.1" y="533" width="1.8" height="15.0" fill="rgb(209,40,46)" rx="2" ry="2" />
<text  x="280.07" y="543.5" ></text>
</g>
<g >
<title>LockTagHashCode (1,000,000 samples, 0.08%)</title><rect x="133.5" y="485" width="0.9" height="15.0" fill="rgb(209,186,8)" rx="2" ry="2" />
<text  x="136.54" y="495.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (1,000,000 samples, 0.08%)</title><rect x="688.6" y="325" width="0.9" height="15.0" fill="rgb(233,97,54)" rx="2" ry="2" />
<text  x="691.57" y="335.5" ></text>
</g>
<g >
<title>shmem_fault (32,000,000 samples, 2.46%)</title><rect x="213.5" y="245" width="29.0" height="15.0" fill="rgb(233,212,23)" rx="2" ry="2" />
<text  x="216.48" y="255.5" >sh..</text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="389" width="0.9" height="15.0" fill="rgb(246,157,44)" rx="2" ry="2" />
<text  x="1052.20" y="399.5" ></text>
</g>
<g >
<title>_bt_binsrch (1,000,000 samples, 0.08%)</title><rect x="143.5" y="485" width="0.9" height="15.0" fill="rgb(214,101,13)" rx="2" ry="2" />
<text  x="146.53" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,000,000 samples, 0.15%)</title><rect x="432.4" y="373" width="1.8" height="15.0" fill="rgb(239,75,9)" rx="2" ry="2" />
<text  x="435.40" y="383.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (3,000,000 samples, 0.23%)</title><rect x="1046.5" y="853" width="2.7" height="15.0" fill="rgb(244,128,7)" rx="2" ry="2" />
<text  x="1049.47" y="863.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (2,000,000 samples, 0.15%)</title><rect x="684.9" y="389" width="1.9" height="15.0" fill="rgb(248,81,31)" rx="2" ry="2" />
<text  x="687.93" y="399.5" ></text>
</g>
<g >
<title>palloc0 (1,000,000 samples, 0.08%)</title><rect x="127.2" y="581" width="0.9" height="15.0" fill="rgb(228,144,40)" rx="2" ry="2" />
<text  x="130.18" y="591.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,000,000 samples, 0.08%)</title><rect x="490.5" y="341" width="0.9" height="15.0" fill="rgb(244,78,34)" rx="2" ry="2" />
<text  x="493.54" y="351.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="934.7" y="85" width="1.0" height="15.0" fill="rgb(238,38,18)" rx="2" ry="2" />
<text  x="937.74" y="95.5" ></text>
</g>
<g >
<title>oper (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="613" width="0.9" height="15.0" fill="rgb(239,141,18)" rx="2" ry="2" />
<text  x="1052.20" y="623.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,000,000 samples, 0.08%)</title><rect x="544.1" y="389" width="0.9" height="15.0" fill="rgb(251,90,8)" rx="2" ry="2" />
<text  x="547.13" y="399.5" ></text>
</g>
<g >
<title>index_open (5,000,000 samples, 0.38%)</title><rect x="474.2" y="485" width="4.5" height="15.0" fill="rgb(222,139,11)" rx="2" ry="2" />
<text  x="477.19" y="495.5" ></text>
</g>
<g >
<title>estimate_expression_value (1,000,000 samples, 0.08%)</title><rect x="912.0" y="405" width="0.9" height="15.0" fill="rgb(239,93,42)" rx="2" ry="2" />
<text  x="915.03" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="432.4" y="421" width="1.8" height="15.0" fill="rgb(224,101,49)" rx="2" ry="2" />
<text  x="435.40" y="431.5" ></text>
</g>
<g >
<title>pgstat_prep_pending_entry (1,000,000 samples, 0.08%)</title><rect x="1051.0" y="821" width="0.9" height="15.0" fill="rgb(207,15,19)" rx="2" ry="2" />
<text  x="1054.02" y="831.5" ></text>
</g>
<g >
<title>bms_intersect (22,000,000 samples, 1.69%)</title><rect x="651.3" y="389" width="20.0" height="15.0" fill="rgb(238,77,28)" rx="2" ry="2" />
<text  x="654.32" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="432.4" y="389" width="1.8" height="15.0" fill="rgb(240,103,20)" rx="2" ry="2" />
<text  x="435.40" y="399.5" ></text>
</g>
<g >
<title>do_dentry_open (7,000,000 samples, 0.54%)</title><rect x="1061.9" y="885" width="6.4" height="15.0" fill="rgb(222,33,35)" rx="2" ry="2" />
<text  x="1064.92" y="895.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,000,000 samples, 0.15%)</title><rect x="920.2" y="245" width="1.8" height="15.0" fill="rgb(235,0,35)" rx="2" ry="2" />
<text  x="923.21" y="255.5" ></text>
</g>
<g >
<title>ExecFetchSlotHeapTuple (1,000,000 samples, 0.08%)</title><rect x="361.5" y="405" width="1.0" height="15.0" fill="rgb(219,177,30)" rx="2" ry="2" />
<text  x="364.55" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="21.8" y="597" width="0.9" height="15.0" fill="rgb(226,228,13)" rx="2" ry="2" />
<text  x="24.81" y="607.5" ></text>
</g>
<g >
<title>BufTableHashCode (1,000,000 samples, 0.08%)</title><rect x="1037.4" y="261" width="0.9" height="15.0" fill="rgb(216,92,46)" rx="2" ry="2" />
<text  x="1040.39" y="271.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="807.6" y="325" width="0.9" height="15.0" fill="rgb(232,36,10)" rx="2" ry="2" />
<text  x="810.57" y="335.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,000,000 samples, 0.08%)</title><rect x="926.6" y="197" width="0.9" height="15.0" fill="rgb(221,24,7)" rx="2" ry="2" />
<text  x="929.57" y="207.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (2,000,000 samples, 0.15%)</title><rect x="796.7" y="405" width="1.8" height="15.0" fill="rgb(252,108,33)" rx="2" ry="2" />
<text  x="799.67" y="415.5" ></text>
</g>
<g >
<title>pgstat_count_io_op_n (1,000,000 samples, 0.08%)</title><rect x="937.5" y="117" width="0.9" height="15.0" fill="rgb(218,139,5)" rx="2" ry="2" />
<text  x="940.47" y="127.5" ></text>
</g>
<g >
<title>pgstat_prep_database_pending (1,000,000 samples, 0.08%)</title><rect x="1051.0" y="837" width="0.9" height="15.0" fill="rgb(218,72,8)" rx="2" ry="2" />
<text  x="1054.02" y="847.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="708.6" y="341" width="0.9" height="15.0" fill="rgb(221,37,24)" rx="2" ry="2" />
<text  x="711.55" y="351.5" ></text>
</g>
<g >
<title>index_rescan (1,000,000 samples, 0.08%)</title><rect x="56.3" y="421" width="0.9" height="15.0" fill="rgb(216,64,3)" rx="2" ry="2" />
<text  x="59.33" y="431.5" ></text>
</g>
<g >
<title>fmtint (1,000,000 samples, 0.08%)</title><rect x="261.6" y="341" width="0.9" height="15.0" fill="rgb(226,124,32)" rx="2" ry="2" />
<text  x="264.62" y="351.5" ></text>
</g>
<g >
<title>table_open (7,000,000 samples, 0.54%)</title><rect x="422.4" y="405" width="6.4" height="15.0" fill="rgb(239,165,34)" rx="2" ry="2" />
<text  x="425.41" y="415.5" ></text>
</g>
<g >
<title>SetupLockInTable (4,000,000 samples, 0.31%)</title><rect x="304.3" y="517" width="3.7" height="15.0" fill="rgb(239,42,10)" rx="2" ry="2" />
<text  x="307.32" y="527.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,000,000 samples, 0.23%)</title><rect x="664.9" y="357" width="2.8" height="15.0" fill="rgb(244,35,29)" rx="2" ry="2" />
<text  x="667.95" y="367.5" ></text>
</g>
<g >
<title>_bt_checkpage (1,000,000 samples, 0.08%)</title><rect x="149.9" y="453" width="0.9" height="15.0" fill="rgb(220,77,35)" rx="2" ry="2" />
<text  x="152.89" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="52.7" y="357" width="1.8" height="15.0" fill="rgb(233,34,46)" rx="2" ry="2" />
<text  x="55.69" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,000,000 samples, 0.08%)</title><rect x="458.7" y="357" width="1.0" height="15.0" fill="rgb(236,149,1)" rx="2" ry="2" />
<text  x="461.75" y="367.5" ></text>
</g>
<g >
<title>BufferAlloc (1,000,000 samples, 0.08%)</title><rect x="1039.2" y="277" width="0.9" height="15.0" fill="rgb(222,62,52)" rx="2" ry="2" />
<text  x="1042.21" y="287.5" ></text>
</g>
<g >
<title>_bt_first (6,000,000 samples, 0.46%)</title><rect x="1035.6" y="389" width="5.4" height="15.0" fill="rgb(248,51,46)" rx="2" ry="2" />
<text  x="1038.57" y="399.5" ></text>
</g>
<g >
<title>int2gt (1,000,000 samples, 0.08%)</title><rect x="339.7" y="373" width="1.0" height="15.0" fill="rgb(245,53,21)" rx="2" ry="2" />
<text  x="342.75" y="383.5" ></text>
</g>
<g >
<title>OidFunctionCall4Coll (112,000,000 samples, 8.62%)</title><rect x="910.2" y="485" width="101.8" height="15.0" fill="rgb(246,110,29)" rx="2" ry="2" />
<text  x="913.22" y="495.5" >OidFunctionC..</text>
</g>
<g >
<title>expression_tree_walker_impl (4,000,000 samples, 0.31%)</title><rect x="884.8" y="549" width="3.6" height="15.0" fill="rgb(234,195,28)" rx="2" ry="2" />
<text  x="887.78" y="559.5" ></text>
</g>
<g >
<title>PointerGetDatum (1,000,000 samples, 0.08%)</title><rect x="1018.3" y="453" width="0.9" height="15.0" fill="rgb(241,29,0)" rx="2" ry="2" />
<text  x="1021.31" y="463.5" ></text>
</g>
<g >
<title>predicate_refuted_by_recurse (9,000,000 samples, 0.69%)</title><rect x="896.6" y="549" width="8.2" height="15.0" fill="rgb(251,123,28)" rx="2" ry="2" />
<text  x="899.59" y="559.5" ></text>
</g>
<g >
<title>get_relation_statistics (1,000,000 samples, 0.08%)</title><rect x="42.7" y="565" width="0.9" height="15.0" fill="rgb(224,116,30)" rx="2" ry="2" />
<text  x="45.70" y="575.5" ></text>
</g>
<g >
<title>ReleaseBuffer (1,000,000 samples, 0.08%)</title><rect x="536.0" y="437" width="0.9" height="15.0" fill="rgb(208,92,47)" rx="2" ry="2" />
<text  x="538.96" y="447.5" ></text>
</g>
<g >
<title>get_oprrest (3,000,000 samples, 0.23%)</title><rect x="693.1" y="373" width="2.7" height="15.0" fill="rgb(220,17,52)" rx="2" ry="2" />
<text  x="696.11" y="383.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="389.7" y="341" width="1.8" height="15.0" fill="rgb(230,225,44)" rx="2" ry="2" />
<text  x="392.71" y="351.5" ></text>
</g>
<g >
<title>ReadBuffer (4,000,000 samples, 0.31%)</title><rect x="139.0" y="469" width="3.6" height="15.0" fill="rgb(246,15,22)" rx="2" ry="2" />
<text  x="141.99" y="479.5" ></text>
</g>
<g >
<title>PageIsNew (1,000,000 samples, 0.08%)</title><rect x="543.2" y="389" width="0.9" height="15.0" fill="rgb(210,183,9)" rx="2" ry="2" />
<text  x="546.23" y="399.5" ></text>
</g>
<g >
<title>make_colname_unique (1,000,000 samples, 0.08%)</title><rect x="20.0" y="677" width="0.9" height="15.0" fill="rgb(208,68,0)" rx="2" ry="2" />
<text  x="22.99" y="687.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,000,000 samples, 0.15%)</title><rect x="320.7" y="405" width="1.8" height="15.0" fill="rgb(213,81,36)" rx="2" ry="2" />
<text  x="323.67" y="415.5" ></text>
</g>
<g >
<title>scalarineqsel_wrapper (69,000,000 samples, 5.31%)</title><rect x="949.3" y="437" width="62.7" height="15.0" fill="rgb(249,153,51)" rx="2" ry="2" />
<text  x="952.28" y="447.5" >scalar..</text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="851.2" y="309" width="0.9" height="15.0" fill="rgb(239,15,51)" rx="2" ry="2" />
<text  x="854.17" y="319.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (1,000,000 samples, 0.08%)</title><rect x="490.5" y="293" width="0.9" height="15.0" fill="rgb(228,218,42)" rx="2" ry="2" />
<text  x="493.54" y="303.5" ></text>
</g>
<g >
<title>ReadBuffer_common (2,000,000 samples, 0.15%)</title><rect x="71.8" y="277" width="1.8" height="15.0" fill="rgb(216,63,22)" rx="2" ry="2" />
<text  x="74.77" y="287.5" ></text>
</g>
<g >
<title>LockRelationOid (2,000,000 samples, 0.15%)</title><rect x="1041.0" y="421" width="1.8" height="15.0" fill="rgb(240,201,28)" rx="2" ry="2" />
<text  x="1044.02" y="431.5" ></text>
</g>
<g >
<title>lappend (2,000,000 samples, 0.15%)</title><rect x="813.0" y="549" width="1.8" height="15.0" fill="rgb(227,56,36)" rx="2" ry="2" />
<text  x="816.02" y="559.5" ></text>
</g>
<g >
<title>_bt_getbuf (2,000,000 samples, 0.15%)</title><rect x="933.8" y="197" width="1.9" height="15.0" fill="rgb(209,126,33)" rx="2" ry="2" />
<text  x="936.83" y="207.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="159.0" y="517" width="0.9" height="15.0" fill="rgb(254,75,1)" rx="2" ry="2" />
<text  x="161.98" y="527.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="444.2" y="325" width="0.9" height="15.0" fill="rgb(211,163,30)" rx="2" ry="2" />
<text  x="447.21" y="335.5" ></text>
</g>
<g >
<title>readDatum (2,000,000 samples, 0.15%)</title><rect x="85.4" y="309" width="1.8" height="15.0" fill="rgb(220,161,53)" rx="2" ry="2" />
<text  x="88.40" y="319.5" ></text>
</g>
<g >
<title>ReadBufferExtended (4,000,000 samples, 0.31%)</title><rect x="394.2" y="293" width="3.7" height="15.0" fill="rgb(237,126,15)" rx="2" ry="2" />
<text  x="397.25" y="303.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (4,000,000 samples, 0.31%)</title><rect x="109.9" y="501" width="3.7" height="15.0" fill="rgb(249,217,25)" rx="2" ry="2" />
<text  x="112.92" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="509.6" y="421" width="0.9" height="15.0" fill="rgb(251,155,25)" rx="2" ry="2" />
<text  x="512.62" y="431.5" ></text>
</g>
<g >
<title>is_dummy_rel (1,000,000 samples, 0.08%)</title><rect x="600.5" y="645" width="0.9" height="15.0" fill="rgb(234,184,48)" rx="2" ry="2" />
<text  x="603.45" y="655.5" ></text>
</g>
<g >
<title>add_function_cost (1,000,000 samples, 0.08%)</title><rect x="608.6" y="437" width="0.9" height="15.0" fill="rgb(230,215,36)" rx="2" ry="2" />
<text  x="611.63" y="447.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="294.3" y="469" width="0.9" height="15.0" fill="rgb(249,42,0)" rx="2" ry="2" />
<text  x="297.33" y="479.5" ></text>
</g>
<g >
<title>ReadBufferExtended (3,000,000 samples, 0.23%)</title><rect x="417.9" y="261" width="2.7" height="15.0" fill="rgb(248,26,41)" rx="2" ry="2" />
<text  x="420.87" y="271.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="1030.1" y="341" width="0.9" height="15.0" fill="rgb(254,180,51)" rx="2" ry="2" />
<text  x="1033.12" y="351.5" ></text>
</g>
<g >
<title>add_child_rel_equivalences (15,000,000 samples, 1.15%)</title><rect x="861.2" y="597" width="13.6" height="15.0" fill="rgb(222,108,14)" rx="2" ry="2" />
<text  x="864.16" y="607.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="71.8" y="229" width="0.9" height="15.0" fill="rgb(207,121,23)" rx="2" ry="2" />
<text  x="74.77" y="239.5" ></text>
</g>
<g >
<title>PageIsNew (2,000,000 samples, 0.15%)</title><rect x="588.6" y="405" width="1.9" height="15.0" fill="rgb(217,129,53)" rx="2" ry="2" />
<text  x="591.65" y="415.5" ></text>
</g>
<g >
<title>AllocSetFree (1,000,000 samples, 0.08%)</title><rect x="573.2" y="469" width="0.9" height="15.0" fill="rgb(235,25,13)" rx="2" ry="2" />
<text  x="576.20" y="479.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,000,000 samples, 0.08%)</title><rect x="43.6" y="501" width="0.9" height="15.0" fill="rgb(242,142,27)" rx="2" ry="2" />
<text  x="46.61" y="511.5" ></text>
</g>
<g >
<title>PartitionDirectoryLookup (56,000,000 samples, 4.31%)</title><rect x="43.6" y="549" width="50.9" height="15.0" fill="rgb(215,44,33)" rx="2" ry="2" />
<text  x="46.61" y="559.5" >Parti..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1,000,000 samples, 0.08%)</title><rect x="13.6" y="853" width="0.9" height="15.0" fill="rgb(231,196,36)" rx="2" ry="2" />
<text  x="16.63" y="863.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="179.0" y="485" width="0.9" height="15.0" fill="rgb(239,93,12)" rx="2" ry="2" />
<text  x="181.96" y="495.5" ></text>
</g>
<g >
<title>copy_page_to_iter (62,000,000 samples, 4.77%)</title><rect x="188.0" y="357" width="56.4" height="15.0" fill="rgb(239,128,47)" rx="2" ry="2" />
<text  x="191.04" y="367.5" >copy_..</text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="390.6" y="325" width="0.9" height="15.0" fill="rgb(218,14,1)" rx="2" ry="2" />
<text  x="393.62" y="335.5" ></text>
</g>
<g >
<title>index_getattr (1,000,000 samples, 0.08%)</title><rect x="413.3" y="277" width="0.9" height="15.0" fill="rgb(225,224,25)" rx="2" ry="2" />
<text  x="416.33" y="287.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,000,000 samples, 0.08%)</title><rect x="444.2" y="293" width="0.9" height="15.0" fill="rgb(211,202,35)" rx="2" ry="2" />
<text  x="447.21" y="303.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="443.3" y="325" width="0.9" height="15.0" fill="rgb(242,116,33)" rx="2" ry="2" />
<text  x="446.30" y="335.5" ></text>
</g>
<g >
<title>tomoyo_file_open (2,000,000 samples, 0.15%)</title><rect x="1066.5" y="853" width="1.8" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1069.46" y="863.5" ></text>
</g>
<g >
<title>ext4_inode_table (1,000,000 samples, 0.08%)</title><rect x="250.7" y="245" width="0.9" height="15.0" fill="rgb(234,179,49)" rx="2" ry="2" />
<text  x="253.72" y="255.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="158.1" y="421" width="0.9" height="15.0" fill="rgb(219,206,14)" rx="2" ry="2" />
<text  x="161.07" y="431.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (1,000,000 samples, 0.08%)</title><rect x="883.9" y="469" width="0.9" height="15.0" fill="rgb(205,126,51)" rx="2" ry="2" />
<text  x="886.87" y="479.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="1033.8" y="373" width="0.9" height="15.0" fill="rgb(235,9,14)" rx="2" ry="2" />
<text  x="1036.76" y="383.5" ></text>
</g>
<g >
<title>systable_beginscan (2,000,000 samples, 0.15%)</title><rect x="517.8" y="533" width="1.8" height="15.0" fill="rgb(220,212,49)" rx="2" ry="2" />
<text  x="520.79" y="543.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,000,000 samples, 0.15%)</title><rect x="324.3" y="341" width="1.8" height="15.0" fill="rgb(247,110,18)" rx="2" ry="2" />
<text  x="327.30" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (5,000,000 samples, 0.38%)</title><rect x="314.3" y="469" width="4.6" height="15.0" fill="rgb(229,203,50)" rx="2" ry="2" />
<text  x="317.31" y="479.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="916.6" y="197" width="0.9" height="15.0" fill="rgb(231,209,30)" rx="2" ry="2" />
<text  x="919.57" y="207.5" ></text>
</g>
<g >
<title>func_volatile (3,000,000 samples, 0.23%)</title><rect x="882.1" y="517" width="2.7" height="15.0" fill="rgb(250,136,33)" rx="2" ry="2" />
<text  x="885.06" y="527.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="132.6" y="309" width="0.9" height="15.0" fill="rgb(235,168,37)" rx="2" ry="2" />
<text  x="135.63" y="319.5" ></text>
</g>
<g >
<title>_bt_getbuf (2,000,000 samples, 0.15%)</title><rect x="71.8" y="325" width="1.8" height="15.0" fill="rgb(238,192,0)" rx="2" ry="2" />
<text  x="74.77" y="335.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="952.9" y="245" width="0.9" height="15.0" fill="rgb(233,109,6)" rx="2" ry="2" />
<text  x="955.91" y="255.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="992.0" y="229" width="0.9" height="15.0" fill="rgb(254,226,27)" rx="2" ry="2" />
<text  x="994.97" y="239.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="1024.7" y="485" width="0.9" height="15.0" fill="rgb(247,187,51)" rx="2" ry="2" />
<text  x="1027.67" y="495.5" ></text>
</g>
<g >
<title>RelationHasSysCache (1,000,000 samples, 0.08%)</title><rect x="548.7" y="485" width="0.9" height="15.0" fill="rgb(238,199,37)" rx="2" ry="2" />
<text  x="551.68" y="495.5" ></text>
</g>
<g >
<title>tcp_write_xmit (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="821" width="1.0" height="15.0" fill="rgb(252,91,26)" rx="2" ry="2" />
<text  x="1187.55" y="831.5" ></text>
</g>
<g >
<title>PinBuffer (1,000,000 samples, 0.08%)</title><rect x="490.5" y="309" width="0.9" height="15.0" fill="rgb(220,113,42)" rx="2" ry="2" />
<text  x="493.54" y="319.5" ></text>
</g>
<g >
<title>shmem_getpage_gfp (32,000,000 samples, 2.46%)</title><rect x="213.5" y="229" width="29.0" height="15.0" fill="rgb(230,146,27)" rx="2" ry="2" />
<text  x="216.48" y="239.5" >sh..</text>
</g>
<g >
<title>ResourceOwnerEnlargeRelationRefs (1,000,000 samples, 0.08%)</title><rect x="300.7" y="485" width="0.9" height="15.0" fill="rgb(230,103,46)" rx="2" ry="2" />
<text  x="303.69" y="495.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (1,000,000 samples, 0.08%)</title><rect x="1171.8" y="885" width="0.9" height="15.0" fill="rgb(254,3,38)" rx="2" ry="2" />
<text  x="1174.83" y="895.5" ></text>
</g>
<g >
<title>get_hash_entry (1,000,000 samples, 0.08%)</title><rect x="327.0" y="389" width="0.9" height="15.0" fill="rgb(254,27,19)" rx="2" ry="2" />
<text  x="330.03" y="399.5" ></text>
</g>
<g >
<title>TidRangeQualFromRestrictInfoList (1,000,000 samples, 0.08%)</title><rect x="854.8" y="549" width="0.9" height="15.0" fill="rgb(205,61,39)" rx="2" ry="2" />
<text  x="857.80" y="559.5" ></text>
</g>
<g >
<title>btbeginscan (3,000,000 samples, 0.23%)</title><rect x="369.7" y="357" width="2.7" height="15.0" fill="rgb(212,208,53)" rx="2" ry="2" />
<text  x="372.72" y="367.5" ></text>
</g>
<g >
<title>put_cpu_partial (1,000,000 samples, 0.08%)</title><rect x="972.9" y="149" width="0.9" height="15.0" fill="rgb(249,165,50)" rx="2" ry="2" />
<text  x="975.89" y="159.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="645.9" y="229" width="0.9" height="15.0" fill="rgb(242,222,0)" rx="2" ry="2" />
<text  x="648.87" y="239.5" ></text>
</g>
<g >
<title>match_eclass_clauses_to_index (32,000,000 samples, 2.46%)</title><rect x="814.8" y="549" width="29.1" height="15.0" fill="rgb(226,45,24)" rx="2" ry="2" />
<text  x="817.83" y="559.5" >ma..</text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="563.2" y="261" width="0.9" height="15.0" fill="rgb(232,181,7)" rx="2" ry="2" />
<text  x="566.21" y="271.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (2,000,000 samples, 0.15%)</title><rect x="872.1" y="565" width="1.8" height="15.0" fill="rgb(212,167,18)" rx="2" ry="2" />
<text  x="875.06" y="575.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitializeWithInfo (1,000,000 samples, 0.08%)</title><rect x="400.6" y="325" width="0.9" height="15.0" fill="rgb(248,44,8)" rx="2" ry="2" />
<text  x="403.61" y="335.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (1,000,000 samples, 0.08%)</title><rect x="938.4" y="165" width="0.9" height="15.0" fill="rgb(211,122,19)" rx="2" ry="2" />
<text  x="941.38" y="175.5" ></text>
</g>
<g >
<title>oideq (1,000,000 samples, 0.08%)</title><rect x="581.4" y="421" width="0.9" height="15.0" fill="rgb(215,218,47)" rx="2" ry="2" />
<text  x="584.38" y="431.5" ></text>
</g>
<g >
<title>index_getnext_tid (9,000,000 samples, 0.69%)</title><rect x="446.9" y="405" width="8.2" height="15.0" fill="rgb(213,86,32)" rx="2" ry="2" />
<text  x="449.94" y="415.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="330.7" y="421" width="0.9" height="15.0" fill="rgb(205,74,0)" rx="2" ry="2" />
<text  x="333.66" y="431.5" ></text>
</g>
<g >
<title>systable_beginscan (1,000,000 samples, 0.08%)</title><rect x="42.7" y="533" width="0.9" height="15.0" fill="rgb(238,139,7)" rx="2" ry="2" />
<text  x="45.70" y="543.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="474.2" y="245" width="0.9" height="15.0" fill="rgb(239,79,12)" rx="2" ry="2" />
<text  x="477.19" y="255.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="454.2" y="293" width="0.9" height="15.0" fill="rgb(233,7,33)" rx="2" ry="2" />
<text  x="457.20" y="303.5" ></text>
</g>
<g >
<title>GetCatalogSnapshot (1,000,000 samples, 0.08%)</title><rect x="273.4" y="533" width="0.9" height="15.0" fill="rgb(231,124,44)" rx="2" ry="2" />
<text  x="276.43" y="543.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="801.2" y="453" width="0.9" height="15.0" fill="rgb(229,219,38)" rx="2" ry="2" />
<text  x="804.21" y="463.5" ></text>
</g>
<g >
<title>table_open (4,000,000 samples, 0.31%)</title><rect x="345.2" y="501" width="3.6" height="15.0" fill="rgb(232,92,21)" rx="2" ry="2" />
<text  x="348.20" y="511.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (2,000,000 samples, 0.15%)</title><rect x="171.7" y="405" width="1.8" height="15.0" fill="rgb(207,56,31)" rx="2" ry="2" />
<text  x="174.69" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="1032.8" y="357" width="1.0" height="15.0" fill="rgb(207,0,0)" rx="2" ry="2" />
<text  x="1035.85" y="367.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="926.6" y="245" width="0.9" height="15.0" fill="rgb(249,69,3)" rx="2" ry="2" />
<text  x="929.57" y="255.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="916.6" y="245" width="0.9" height="15.0" fill="rgb(233,89,43)" rx="2" ry="2" />
<text  x="919.57" y="255.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="934.7" y="69" width="1.0" height="15.0" fill="rgb(254,112,32)" rx="2" ry="2" />
<text  x="937.74" y="79.5" ></text>
</g>
<g >
<title>table_slot_callbacks (1,000,000 samples, 0.08%)</title><rect x="58.1" y="405" width="1.0" height="15.0" fill="rgb(214,150,52)" rx="2" ry="2" />
<text  x="61.14" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="45.4" y="357" width="0.9" height="15.0" fill="rgb(233,182,38)" rx="2" ry="2" />
<text  x="48.43" y="367.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="683.1" y="357" width="0.9" height="15.0" fill="rgb(250,30,41)" rx="2" ry="2" />
<text  x="686.12" y="367.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (1,000,000 samples, 0.08%)</title><rect x="26.4" y="549" width="0.9" height="15.0" fill="rgb(205,118,53)" rx="2" ry="2" />
<text  x="29.35" y="559.5" ></text>
</g>
<g >
<title>get_hash_entry (2,000,000 samples, 0.15%)</title><rect x="460.6" y="341" width="1.8" height="15.0" fill="rgb(214,135,27)" rx="2" ry="2" />
<text  x="463.56" y="351.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="809.4" y="373" width="0.9" height="15.0" fill="rgb(215,62,31)" rx="2" ry="2" />
<text  x="812.38" y="383.5" ></text>
</g>
<g >
<title>UnlockRelationId (2,000,000 samples, 0.15%)</title><rect x="329.8" y="469" width="1.8" height="15.0" fill="rgb(207,224,43)" rx="2" ry="2" />
<text  x="332.75" y="479.5" ></text>
</g>
<g >
<title>restriction_selectivity (2,000,000 samples, 0.15%)</title><rect x="691.3" y="357" width="1.8" height="15.0" fill="rgb(242,221,19)" rx="2" ry="2" />
<text  x="694.29" y="367.5" ></text>
</g>
<g >
<title>ReadBuffer (1,000,000 samples, 0.08%)</title><rect x="587.7" y="405" width="0.9" height="15.0" fill="rgb(241,121,6)" rx="2" ry="2" />
<text  x="590.74" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="295.2" y="469" width="0.9" height="15.0" fill="rgb(248,37,8)" rx="2" ry="2" />
<text  x="298.23" y="479.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,000,000 samples, 0.08%)</title><rect x="490.5" y="357" width="0.9" height="15.0" fill="rgb(241,129,12)" rx="2" ry="2" />
<text  x="493.54" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="612.3" y="469" width="0.9" height="15.0" fill="rgb(253,12,28)" rx="2" ry="2" />
<text  x="615.26" y="479.5" ></text>
</g>
<g >
<title>CatalogCacheCreateEntry (4,000,000 samples, 0.31%)</title><rect x="357.9" y="405" width="3.6" height="15.0" fill="rgb(206,3,33)" rx="2" ry="2" />
<text  x="360.91" y="415.5" ></text>
</g>
<g >
<title>systable_beginscan (13,000,000 samples, 1.00%)</title><rect x="368.8" y="405" width="11.8" height="15.0" fill="rgb(215,137,3)" rx="2" ry="2" />
<text  x="371.81" y="415.5" ></text>
</g>
<g >
<title>index_open (1,000,000 samples, 0.08%)</title><rect x="367.9" y="405" width="0.9" height="15.0" fill="rgb(224,125,50)" rx="2" ry="2" />
<text  x="370.91" y="415.5" ></text>
</g>
<g >
<title>memcpy@GLIBC_2.2.5 (1,000,000 samples, 0.08%)</title><rect x="469.6" y="501" width="1.0" height="15.0" fill="rgb(211,36,42)" rx="2" ry="2" />
<text  x="472.65" y="511.5" ></text>
</g>
<g >
<title>bms_add_member (2,000,000 samples, 0.15%)</title><rect x="863.0" y="565" width="1.8" height="15.0" fill="rgb(229,178,5)" rx="2" ry="2" />
<text  x="865.98" y="575.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="26.4" y="421" width="0.9" height="15.0" fill="rgb(253,13,34)" rx="2" ry="2" />
<text  x="29.35" y="431.5" ></text>
</g>
<g >
<title>get_restriction_variable (1,000,000 samples, 0.08%)</title><rect x="691.3" y="277" width="0.9" height="15.0" fill="rgb(248,99,0)" rx="2" ry="2" />
<text  x="694.29" y="287.5" ></text>
</g>
<g >
<title>_bt_compare (1,000,000 samples, 0.08%)</title><rect x="414.2" y="309" width="0.9" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" />
<text  x="417.23" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_free (1,000,000 samples, 0.08%)</title><rect x="1171.8" y="869" width="0.9" height="15.0" fill="rgb(238,40,46)" rx="2" ry="2" />
<text  x="1174.83" y="879.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (2,000,000 samples, 0.15%)</title><rect x="334.3" y="421" width="1.8" height="15.0" fill="rgb(243,102,12)" rx="2" ry="2" />
<text  x="337.30" y="431.5" ></text>
</g>
<g >
<title>get_attavgwidth (18,000,000 samples, 1.39%)</title><rect x="1027.4" y="533" width="16.3" height="15.0" fill="rgb(248,80,2)" rx="2" ry="2" />
<text  x="1030.40" y="543.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="809.4" y="357" width="0.9" height="15.0" fill="rgb(219,138,14)" rx="2" ry="2" />
<text  x="812.38" y="367.5" ></text>
</g>
<g >
<title>IncrTupleDescRefCount (1,000,000 samples, 0.08%)</title><rect x="377.9" y="341" width="0.9" height="15.0" fill="rgb(228,27,17)" rx="2" ry="2" />
<text  x="380.90" y="351.5" ></text>
</g>
<g >
<title>bms_add_members (2,000,000 samples, 0.15%)</title><rect x="872.1" y="581" width="1.8" height="15.0" fill="rgb(217,174,39)" rx="2" ry="2" />
<text  x="875.06" y="591.5" ></text>
</g>
<g >
<title>adjust_appendrel_attrs (3,000,000 samples, 0.23%)</title><rect x="874.8" y="597" width="2.7" height="15.0" fill="rgb(222,42,20)" rx="2" ry="2" />
<text  x="877.79" y="607.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (1,000,000 samples, 0.08%)</title><rect x="497.8" y="581" width="0.9" height="15.0" fill="rgb(216,202,31)" rx="2" ry="2" />
<text  x="500.81" y="591.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="558.7" y="469" width="0.9" height="15.0" fill="rgb(240,146,30)" rx="2" ry="2" />
<text  x="561.67" y="479.5" ></text>
</g>
<g >
<title>index_endscan (1,000,000 samples, 0.08%)</title><rect x="1034.7" y="437" width="0.9" height="15.0" fill="rgb(251,92,41)" rx="2" ry="2" />
<text  x="1037.67" y="447.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="599.5" y="549" width="1.0" height="15.0" fill="rgb(245,77,35)" rx="2" ry="2" />
<text  x="602.55" y="559.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlargeCatCacheRefs (1,000,000 samples, 0.08%)</title><rect x="681.3" y="389" width="0.9" height="15.0" fill="rgb(252,139,22)" rx="2" ry="2" />
<text  x="684.30" y="399.5" ></text>
</g>
<g >
<title>_bt_getbuf (1,000,000 samples, 0.08%)</title><rect x="490.5" y="389" width="0.9" height="15.0" fill="rgb(243,68,27)" rx="2" ry="2" />
<text  x="493.54" y="399.5" ></text>
</g>
<g >
<title>CreateExprContextInternal (1,000,000 samples, 0.08%)</title><rect x="962.9" y="197" width="0.9" height="15.0" fill="rgb(207,77,6)" rx="2" ry="2" />
<text  x="965.90" y="207.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="934.7" y="101" width="1.0" height="15.0" fill="rgb(218,169,27)" rx="2" ry="2" />
<text  x="937.74" y="111.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="311.6" y="437" width="0.9" height="15.0" fill="rgb(221,33,6)" rx="2" ry="2" />
<text  x="314.59" y="447.5" ></text>
</g>
<g >
<title>__d_lookup_rcu (1,000,000 samples, 0.08%)</title><rect x="1069.2" y="837" width="0.9" height="15.0" fill="rgb(222,204,2)" rx="2" ry="2" />
<text  x="1072.18" y="847.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (1,000,000 samples, 0.08%)</title><rect x="468.7" y="357" width="0.9" height="15.0" fill="rgb(250,24,23)" rx="2" ry="2" />
<text  x="471.74" y="367.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,000,000 samples, 0.15%)</title><rect x="64.5" y="325" width="1.8" height="15.0" fill="rgb(205,90,47)" rx="2" ry="2" />
<text  x="67.50" y="335.5" ></text>
</g>
<g >
<title>RelationGetNumberOfBlocksInFork (15,000,000 samples, 1.15%)</title><rect x="257.1" y="517" width="13.6" height="15.0" fill="rgb(252,74,46)" rx="2" ry="2" />
<text  x="260.08" y="527.5" ></text>
</g>
<g >
<title>index_getnext_slot (30,000,000 samples, 2.31%)</title><rect x="393.3" y="389" width="27.3" height="15.0" fill="rgb(217,209,36)" rx="2" ry="2" />
<text  x="396.34" y="399.5" >i..</text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="279.8" y="485" width="0.9" height="15.0" fill="rgb(242,112,41)" rx="2" ry="2" />
<text  x="282.79" y="495.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="102.7" y="533" width="0.9" height="15.0" fill="rgb(213,80,9)" rx="2" ry="2" />
<text  x="105.66" y="543.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,000,000 samples, 0.15%)</title><rect x="460.6" y="357" width="1.8" height="15.0" fill="rgb(221,220,39)" rx="2" ry="2" />
<text  x="463.56" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="474.2" y="357" width="0.9" height="15.0" fill="rgb(253,218,2)" rx="2" ry="2" />
<text  x="477.19" y="367.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="456.9" y="341" width="0.9" height="15.0" fill="rgb(232,157,22)" rx="2" ry="2" />
<text  x="459.93" y="351.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="397.0" y="245" width="0.9" height="15.0" fill="rgb(210,165,27)" rx="2" ry="2" />
<text  x="399.97" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1,000,000 samples, 0.08%)</title><rect x="468.7" y="341" width="0.9" height="15.0" fill="rgb(238,83,25)" rx="2" ry="2" />
<text  x="471.74" y="351.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="645.9" y="213" width="0.9" height="15.0" fill="rgb(225,19,4)" rx="2" ry="2" />
<text  x="648.87" y="223.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="373" width="0.9" height="15.0" fill="rgb(235,30,26)" rx="2" ry="2" />
<text  x="1052.20" y="383.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberLock (1,000,000 samples, 0.08%)</title><rect x="1006.5" y="229" width="0.9" height="15.0" fill="rgb(217,103,46)" rx="2" ry="2" />
<text  x="1009.51" y="239.5" ></text>
</g>
<g >
<title>LockRelease (4,000,000 samples, 0.31%)</title><rect x="940.2" y="261" width="3.6" height="15.0" fill="rgb(226,197,7)" rx="2" ry="2" />
<text  x="943.19" y="271.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="20.9" y="677" width="0.9" height="15.0" fill="rgb(225,176,39)" rx="2" ry="2" />
<text  x="23.90" y="687.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (3,000,000 samples, 0.23%)</title><rect x="574.1" y="469" width="2.7" height="15.0" fill="rgb(248,58,49)" rx="2" ry="2" />
<text  x="577.11" y="479.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2,000,000 samples, 0.15%)</title><rect x="1180.9" y="837" width="1.8" height="15.0" fill="rgb(218,209,23)" rx="2" ry="2" />
<text  x="1183.92" y="847.5" ></text>
</g>
<g >
<title>ext4_inode_csum (1,000,000 samples, 0.08%)</title><rect x="248.0" y="261" width="0.9" height="15.0" fill="rgb(245,68,18)" rx="2" ry="2" />
<text  x="251.00" y="271.5" ></text>
</g>
<g >
<title>_bt_getroot (1,000,000 samples, 0.08%)</title><rect x="42.7" y="277" width="0.9" height="15.0" fill="rgb(251,55,33)" rx="2" ry="2" />
<text  x="45.70" y="287.5" ></text>
</g>
<g >
<title>index_beginscan_internal (1,000,000 samples, 0.08%)</title><rect x="1028.3" y="421" width="0.9" height="15.0" fill="rgb(221,69,50)" rx="2" ry="2" />
<text  x="1031.31" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="127.2" y="469" width="0.9" height="15.0" fill="rgb(231,164,15)" rx="2" ry="2" />
<text  x="130.18" y="479.5" ></text>
</g>
<g >
<title>ReadBuffer_common (3,000,000 samples, 0.23%)</title><rect x="935.7" y="149" width="2.7" height="15.0" fill="rgb(252,5,19)" rx="2" ry="2" />
<text  x="938.65" y="159.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (25,000,000 samples, 1.92%)</title><rect x="219.8" y="165" width="22.7" height="15.0" fill="rgb(223,67,0)" rx="2" ry="2" />
<text  x="222.84" y="175.5" >_..</text>
</g>
<g >
<title>BufferAlloc (2,000,000 samples, 0.15%)</title><rect x="1037.4" y="277" width="1.8" height="15.0" fill="rgb(242,194,38)" rx="2" ry="2" />
<text  x="1040.39" y="287.5" ></text>
</g>
<g >
<title>lru_cache_add (1,000,000 samples, 0.08%)</title><rect x="509.6" y="405" width="0.9" height="15.0" fill="rgb(242,127,48)" rx="2" ry="2" />
<text  x="512.62" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,000,000 samples, 0.08%)</title><rect x="1116.4" y="933" width="0.9" height="15.0" fill="rgb(232,11,24)" rx="2" ry="2" />
<text  x="1119.42" y="943.5" ></text>
</g>
<g >
<title>CachedPlanIsSimplyValid (1,000,000 samples, 0.08%)</title><rect x="961.1" y="149" width="0.9" height="15.0" fill="rgb(237,139,50)" rx="2" ry="2" />
<text  x="964.09" y="159.5" ></text>
</g>
<g >
<title>index_endscan (2,000,000 samples, 0.15%)</title><rect x="282.5" y="533" width="1.8" height="15.0" fill="rgb(214,181,23)" rx="2" ry="2" />
<text  x="285.52" y="543.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="42.7" y="437" width="0.9" height="15.0" fill="rgb(231,66,25)" rx="2" ry="2" />
<text  x="45.70" y="447.5" ></text>
</g>
<g >
<title>UnlockRelationId (4,000,000 samples, 0.31%)</title><rect x="940.2" y="277" width="3.6" height="15.0" fill="rgb(212,201,39)" rx="2" ry="2" />
<text  x="943.19" y="287.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (7,000,000 samples, 0.54%)</title><rect x="332.5" y="437" width="6.3" height="15.0" fill="rgb(226,135,11)" rx="2" ry="2" />
<text  x="335.48" y="447.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,000,000 samples, 0.15%)</title><rect x="1030.1" y="389" width="1.8" height="15.0" fill="rgb(211,155,49)" rx="2" ry="2" />
<text  x="1033.12" y="399.5" ></text>
</g>
<g >
<title>index_close (7,000,000 samples, 0.54%)</title><rect x="385.2" y="389" width="6.3" height="15.0" fill="rgb(228,63,31)" rx="2" ry="2" />
<text  x="388.17" y="399.5" ></text>
</g>
<g >
<title>_bt_search (1,000,000 samples, 0.08%)</title><rect x="288.9" y="469" width="0.9" height="15.0" fill="rgb(252,7,27)" rx="2" ry="2" />
<text  x="291.88" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="613.2" y="421" width="0.9" height="15.0" fill="rgb(247,67,48)" rx="2" ry="2" />
<text  x="616.17" y="431.5" ></text>
</g>
<g >
<title>__virt_addr_valid (1,000,000 samples, 0.08%)</title><rect x="1079.2" y="869" width="0.9" height="15.0" fill="rgb(247,197,0)" rx="2" ry="2" />
<text  x="1082.18" y="879.5" ></text>
</g>
<g >
<title>get_hash_entry (1,000,000 samples, 0.08%)</title><rect x="298.0" y="453" width="0.9" height="15.0" fill="rgb(233,188,38)" rx="2" ry="2" />
<text  x="300.96" y="463.5" ></text>
</g>
<g >
<title>index_endscan (1,000,000 samples, 0.08%)</title><rect x="481.5" y="485" width="0.9" height="15.0" fill="rgb(234,181,34)" rx="2" ry="2" />
<text  x="484.45" y="495.5" ></text>
</g>
<g >
<title>set_append_references (7,000,000 samples, 0.54%)</title><rect x="36.3" y="661" width="6.4" height="15.0" fill="rgb(212,142,10)" rx="2" ry="2" />
<text  x="39.34" y="671.5" ></text>
</g>
<g >
<title>contain_mutable_functions_walker (1,000,000 samples, 0.08%)</title><rect x="887.5" y="469" width="0.9" height="15.0" fill="rgb(236,106,38)" rx="2" ry="2" />
<text  x="890.51" y="479.5" ></text>
</g>
<g >
<title>LockRelationOid (2,000,000 samples, 0.15%)</title><rect x="133.5" y="517" width="1.9" height="15.0" fill="rgb(247,31,49)" rx="2" ry="2" />
<text  x="136.54" y="527.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="286.2" y="357" width="0.9" height="15.0" fill="rgb(234,193,32)" rx="2" ry="2" />
<text  x="289.15" y="367.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (4,000,000 samples, 0.31%)</title><rect x="779.4" y="421" width="3.6" height="15.0" fill="rgb(253,71,31)" rx="2" ry="2" />
<text  x="782.41" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (31,000,000 samples, 2.39%)</title><rect x="1055.6" y="965" width="28.1" height="15.0" fill="rgb(229,185,53)" rx="2" ry="2" />
<text  x="1058.56" y="975.5" >d..</text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="475.1" y="389" width="0.9" height="15.0" fill="rgb(215,40,6)" rx="2" ry="2" />
<text  x="478.10" y="399.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,000,000 samples, 0.15%)</title><rect x="684.9" y="405" width="1.9" height="15.0" fill="rgb(233,126,14)" rx="2" ry="2" />
<text  x="687.93" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="702.2" y="261" width="0.9" height="15.0" fill="rgb(217,13,14)" rx="2" ry="2" />
<text  x="705.19" y="271.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="495.1" y="373" width="0.9" height="15.0" fill="rgb(230,161,40)" rx="2" ry="2" />
<text  x="498.08" y="383.5" ></text>
</g>
<g >
<title>SearchCatCache3 (17,000,000 samples, 1.31%)</title><rect x="1028.3" y="501" width="15.4" height="15.0" fill="rgb(228,132,31)" rx="2" ry="2" />
<text  x="1031.31" y="511.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4,000,000 samples, 0.31%)</title><rect x="940.2" y="229" width="3.6" height="15.0" fill="rgb(233,82,47)" rx="2" ry="2" />
<text  x="943.19" y="239.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (1,000,000 samples, 0.08%)</title><rect x="427.9" y="373" width="0.9" height="15.0" fill="rgb(219,184,34)" rx="2" ry="2" />
<text  x="430.86" y="383.5" ></text>
</g>
<g >
<title>exec_stmt_block (2,000,000 samples, 0.15%)</title><rect x="961.1" y="229" width="1.8" height="15.0" fill="rgb(211,198,28)" rx="2" ry="2" />
<text  x="964.09" y="239.5" ></text>
</g>
<g >
<title>hash_bytes (2,000,000 samples, 0.15%)</title><rect x="280.7" y="453" width="1.8" height="15.0" fill="rgb(231,184,31)" rx="2" ry="2" />
<text  x="283.70" y="463.5" ></text>
</g>
<g >
<title>make_restrictinfo_internal (3,000,000 samples, 0.23%)</title><rect x="124.5" y="565" width="2.7" height="15.0" fill="rgb(245,31,18)" rx="2" ry="2" />
<text  x="127.46" y="575.5" ></text>
</g>
<g >
<title>bitmap_scan_cost_est (2,000,000 samples, 0.15%)</title><rect x="608.6" y="533" width="1.8" height="15.0" fill="rgb(251,93,7)" rx="2" ry="2" />
<text  x="611.63" y="543.5" ></text>
</g>
<g >
<title>filp_close (1,000,000 samples, 0.08%)</title><rect x="265.3" y="293" width="0.9" height="15.0" fill="rgb(210,50,54)" rx="2" ry="2" />
<text  x="268.26" y="303.5" ></text>
</g>
<g >
<title>clear_page_orig (2,000,000 samples, 0.15%)</title><rect x="214.4" y="213" width="1.8" height="15.0" fill="rgb(238,124,14)" rx="2" ry="2" />
<text  x="217.39" y="223.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,000,000 samples, 0.23%)</title><rect x="369.7" y="245" width="2.7" height="15.0" fill="rgb(226,56,38)" rx="2" ry="2" />
<text  x="372.72" y="255.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (2,000,000 samples, 0.15%)</title><rect x="869.3" y="517" width="1.9" height="15.0" fill="rgb(209,58,37)" rx="2" ry="2" />
<text  x="872.34" y="527.5" ></text>
</g>
<g >
<title>makeVar (1,000,000 samples, 0.08%)</title><rect x="890.2" y="565" width="0.9" height="15.0" fill="rgb(217,216,25)" rx="2" ry="2" />
<text  x="893.23" y="575.5" ></text>
</g>
<g >
<title>ext4_get_inode_loc (3,000,000 samples, 0.23%)</title><rect x="248.9" y="277" width="2.7" height="15.0" fill="rgb(239,72,51)" rx="2" ry="2" />
<text  x="251.91" y="287.5" ></text>
</g>
<g >
<title>index_fetch_heap (3,000,000 samples, 0.23%)</title><rect x="444.2" y="405" width="2.7" height="15.0" fill="rgb(244,4,15)" rx="2" ry="2" />
<text  x="447.21" y="415.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,000,000 samples, 0.08%)</title><rect x="541.4" y="405" width="0.9" height="15.0" fill="rgb(231,86,9)" rx="2" ry="2" />
<text  x="544.41" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (5,000,000 samples, 0.38%)</title><rect x="1185.5" y="981" width="4.5" height="15.0" fill="rgb(208,97,47)" rx="2" ry="2" />
<text  x="1188.46" y="991.5" ></text>
</g>
<g >
<title>pgstat_init_relation (1,000,000 samples, 0.08%)</title><rect x="494.2" y="549" width="0.9" height="15.0" fill="rgb(243,76,26)" rx="2" ry="2" />
<text  x="497.17" y="559.5" ></text>
</g>
<g >
<title>SearchSysCache2 (83,000,000 samples, 6.39%)</title><rect x="353.4" y="469" width="75.4" height="15.0" fill="rgb(252,13,54)" rx="2" ry="2" />
<text  x="356.37" y="479.5" >SearchSy..</text>
</g>
<g >
<title>tag_hash (2,000,000 samples, 0.15%)</title><rect x="156.3" y="485" width="1.8" height="15.0" fill="rgb(240,120,23)" rx="2" ry="2" />
<text  x="159.25" y="495.5" ></text>
</g>
<g >
<title>OidFunctionCall4Coll (4,000,000 samples, 0.31%)</title><rect x="714.9" y="357" width="3.6" height="15.0" fill="rgb(210,50,18)" rx="2" ry="2" />
<text  x="717.91" y="367.5" ></text>
</g>
<g >
<title>index_getnext_tid (10,000,000 samples, 0.77%)</title><rect x="66.3" y="405" width="9.1" height="15.0" fill="rgb(219,116,13)" rx="2" ry="2" />
<text  x="69.32" y="415.5" ></text>
</g>
<g >
<title>get_hash_entry (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="549" width="0.9" height="15.0" fill="rgb(230,52,9)" rx="2" ry="2" />
<text  x="1052.20" y="559.5" ></text>
</g>
<g >
<title>int4hashfast (1,000,000 samples, 0.08%)</title><rect x="1023.8" y="421" width="0.9" height="15.0" fill="rgb(237,138,45)" rx="2" ry="2" />
<text  x="1026.76" y="431.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (2,000,000 samples, 0.15%)</title><rect x="320.7" y="469" width="1.8" height="15.0" fill="rgb(237,120,28)" rx="2" ry="2" />
<text  x="323.67" y="479.5" ></text>
</g>
<g >
<title>index_beginscan (1,000,000 samples, 0.08%)</title><rect x="518.7" y="517" width="0.9" height="15.0" fill="rgb(208,96,44)" rx="2" ry="2" />
<text  x="521.70" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="45.4" y="405" width="0.9" height="15.0" fill="rgb(251,115,52)" rx="2" ry="2" />
<text  x="48.43" y="415.5" ></text>
</g>
<g >
<title>Int16GetDatum (1,000,000 samples, 0.08%)</title><rect x="707.6" y="373" width="1.0" height="15.0" fill="rgb(238,149,40)" rx="2" ry="2" />
<text  x="710.64" y="383.5" ></text>
</g>
<g >
<title>BufferDescriptorGetContentLock (1,000,000 samples, 0.08%)</title><rect x="1040.1" y="309" width="0.9" height="15.0" fill="rgb(212,49,32)" rx="2" ry="2" />
<text  x="1043.12" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,000,000 samples, 0.08%)</title><rect x="397.0" y="229" width="0.9" height="15.0" fill="rgb(230,4,4)" rx="2" ry="2" />
<text  x="399.97" y="239.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="132.6" y="341" width="0.9" height="15.0" fill="rgb(251,61,21)" rx="2" ry="2" />
<text  x="135.63" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="669.5" y="293" width="0.9" height="15.0" fill="rgb(232,24,30)" rx="2" ry="2" />
<text  x="672.49" y="303.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (2,000,000 samples, 0.15%)</title><rect x="538.7" y="421" width="1.8" height="15.0" fill="rgb(252,216,49)" rx="2" ry="2" />
<text  x="541.68" y="431.5" ></text>
</g>
<g >
<title>int4eqfast (1,000,000 samples, 0.08%)</title><rect x="682.2" y="357" width="0.9" height="15.0" fill="rgb(238,199,13)" rx="2" ry="2" />
<text  x="685.21" y="367.5" ></text>
</g>
<g >
<title>_bt_getbuf (1,000,000 samples, 0.08%)</title><rect x="342.5" y="389" width="0.9" height="15.0" fill="rgb(223,173,5)" rx="2" ry="2" />
<text  x="345.47" y="399.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (2,000,000 samples, 0.15%)</title><rect x="383.3" y="389" width="1.9" height="15.0" fill="rgb(216,139,25)" rx="2" ry="2" />
<text  x="386.35" y="399.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (1,000,000 samples, 0.08%)</title><rect x="668.6" y="325" width="0.9" height="15.0" fill="rgb(250,43,13)" rx="2" ry="2" />
<text  x="671.58" y="335.5" ></text>
</g>
<g >
<title>SetupLockInTable (4,000,000 samples, 0.31%)</title><rect x="422.4" y="341" width="3.6" height="15.0" fill="rgb(206,208,24)" rx="2" ry="2" />
<text  x="425.41" y="351.5" ></text>
</g>
<g >
<title>lru_add_drain (1,000,000 samples, 0.08%)</title><rect x="13.6" y="901" width="0.9" height="15.0" fill="rgb(233,55,9)" rx="2" ry="2" />
<text  x="16.63" y="911.5" ></text>
</g>
<g >
<title>LockRelationOid (7,000,000 samples, 0.54%)</title><rect x="303.4" y="549" width="6.4" height="15.0" fill="rgb(238,8,26)" rx="2" ry="2" />
<text  x="306.41" y="559.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="301.6" y="501" width="0.9" height="15.0" fill="rgb(249,141,27)" rx="2" ry="2" />
<text  x="304.59" y="511.5" ></text>
</g>
<g >
<title>SetupLockInTable (3,000,000 samples, 0.23%)</title><rect x="153.5" y="501" width="2.8" height="15.0" fill="rgb(241,33,23)" rx="2" ry="2" />
<text  x="156.53" y="511.5" ></text>
</g>
<g >
<title>predicate_refuted_by_simple_clause (2,000,000 samples, 0.15%)</title><rect x="902.9" y="517" width="1.9" height="15.0" fill="rgb(253,88,38)" rx="2" ry="2" />
<text  x="905.95" y="527.5" ></text>
</g>
<g >
<title>mem_cgroup_from_task (1,000,000 samples, 0.08%)</title><rect x="1169.1" y="933" width="0.9" height="15.0" fill="rgb(247,51,30)" rx="2" ry="2" />
<text  x="1172.11" y="943.5" ></text>
</g>
<g >
<title>BackendStartup (1,140,000,000 samples, 87.76%)</title><rect x="17.3" y="933" width="1035.5" height="15.0" fill="rgb(248,19,48)" rx="2" ry="2" />
<text  x="20.27" y="943.5" >BackendStartup</text>
</g>
<g >
<title>index_beginscan (1,000,000 samples, 0.08%)</title><rect x="919.3" y="293" width="0.9" height="15.0" fill="rgb(229,196,41)" rx="2" ry="2" />
<text  x="922.30" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="766.7" y="373" width="0.9" height="15.0" fill="rgb(216,109,48)" rx="2" ry="2" />
<text  x="769.69" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,000,000 samples, 0.38%)</title><rect x="512.3" y="485" width="4.6" height="15.0" fill="rgb(232,147,15)" rx="2" ry="2" />
<text  x="515.34" y="495.5" ></text>
</g>
<g >
<title>bms_equal (3,000,000 samples, 0.23%)</title><rect x="620.4" y="421" width="2.8" height="15.0" fill="rgb(252,127,17)" rx="2" ry="2" />
<text  x="623.44" y="431.5" ></text>
</g>
<g >
<title>list_next_fn (2,000,000 samples, 0.15%)</title><rect x="896.6" y="533" width="1.8" height="15.0" fill="rgb(238,224,9)" rx="2" ry="2" />
<text  x="899.59" y="543.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="421.5" y="309" width="0.9" height="15.0" fill="rgb(218,187,23)" rx="2" ry="2" />
<text  x="424.50" y="319.5" ></text>
</g>
<g >
<title>select_equality_operator (2,000,000 samples, 0.15%)</title><rect x="707.6" y="405" width="1.9" height="15.0" fill="rgb(233,111,24)" rx="2" ry="2" />
<text  x="710.64" y="415.5" ></text>
</g>
<g >
<title>bms_del_member (1,000,000 samples, 0.08%)</title><rect x="732.2" y="533" width="0.9" height="15.0" fill="rgb(242,0,10)" rx="2" ry="2" />
<text  x="735.17" y="543.5" ></text>
</g>
<g >
<title>proc_exit (1,000,000 samples, 0.08%)</title><rect x="1051.9" y="885" width="0.9" height="15.0" fill="rgb(241,52,50)" rx="2" ry="2" />
<text  x="1054.92" y="895.5" ></text>
</g>
<g >
<title>list_nth (2,000,000 samples, 0.15%)</title><rect x="761.2" y="453" width="1.9" height="15.0" fill="rgb(207,126,51)" rx="2" ry="2" />
<text  x="764.24" y="463.5" ></text>
</g>
<g >
<title>UnlockRelationId (1,000,000 samples, 0.08%)</title><rect x="480.5" y="469" width="1.0" height="15.0" fill="rgb(226,59,50)" rx="2" ry="2" />
<text  x="483.55" y="479.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (1,000,000 samples, 0.08%)</title><rect x="331.6" y="453" width="0.9" height="15.0" fill="rgb(241,34,24)" rx="2" ry="2" />
<text  x="334.57" y="463.5" ></text>
</g>
<g >
<title>set_baserel_size_estimates (155,000,000 samples, 11.93%)</title><rect x="904.8" y="565" width="140.8" height="15.0" fill="rgb(226,90,49)" rx="2" ry="2" />
<text  x="907.77" y="575.5" >set_baserel_size_..</text>
</g>
<g >
<title>UnregisterSnapshot (1,000,000 samples, 0.08%)</title><rect x="994.7" y="293" width="0.9" height="15.0" fill="rgb(236,52,5)" rx="2" ry="2" />
<text  x="997.70" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="915.7" y="229" width="0.9" height="15.0" fill="rgb(217,136,54)" rx="2" ry="2" />
<text  x="918.67" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="916.6" y="277" width="0.9" height="15.0" fill="rgb(244,93,3)" rx="2" ry="2" />
<text  x="919.57" y="287.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,000,000 samples, 0.08%)</title><rect x="585.0" y="405" width="0.9" height="15.0" fill="rgb(254,25,53)" rx="2" ry="2" />
<text  x="588.01" y="415.5" ></text>
</g>
<g >
<title>dostr (1,000,000 samples, 0.08%)</title><rect x="164.4" y="421" width="0.9" height="15.0" fill="rgb(245,132,14)" rx="2" ry="2" />
<text  x="167.43" y="431.5" ></text>
</g>
<g >
<title>eval_const_expressions (22,000,000 samples, 1.69%)</title><rect x="103.6" y="581" width="19.9" height="15.0" fill="rgb(234,155,3)" rx="2" ry="2" />
<text  x="106.56" y="591.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="629" width="1.0" height="15.0" fill="rgb(234,15,40)" rx="2" ry="2" />
<text  x="1187.55" y="639.5" ></text>
</g>
<g >
<title>index_rescan (1,000,000 samples, 0.08%)</title><rect x="565.9" y="517" width="0.9" height="15.0" fill="rgb(211,120,39)" rx="2" ry="2" />
<text  x="568.94" y="527.5" ></text>
</g>
<g >
<title>palloc (3,000,000 samples, 0.23%)</title><rect x="466.9" y="485" width="2.7" height="15.0" fill="rgb(217,71,5)" rx="2" ry="2" />
<text  x="469.92" y="495.5" ></text>
</g>
<g >
<title>pull_varnos (1,000,000 samples, 0.08%)</title><rect x="868.4" y="565" width="0.9" height="15.0" fill="rgb(212,8,42)" rx="2" ry="2" />
<text  x="871.43" y="575.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="375.2" y="325" width="1.8" height="15.0" fill="rgb(234,140,32)" rx="2" ry="2" />
<text  x="378.17" y="335.5" ></text>
</g>
<g >
<title>fmgr_info (1,000,000 samples, 0.08%)</title><rect x="718.5" y="357" width="1.0" height="15.0" fill="rgb(249,72,33)" rx="2" ry="2" />
<text  x="721.55" y="367.5" ></text>
</g>
<g >
<title>transformAExprOp (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="645" width="0.9" height="15.0" fill="rgb(229,109,41)" rx="2" ry="2" />
<text  x="1052.20" y="655.5" ></text>
</g>
<g >
<title>_bt_binsrch (1,000,000 samples, 0.08%)</title><rect x="996.5" y="229" width="0.9" height="15.0" fill="rgb(243,192,24)" rx="2" ry="2" />
<text  x="999.51" y="239.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,000,000 samples, 0.08%)</title><rect x="871.2" y="517" width="0.9" height="15.0" fill="rgb(254,118,41)" rx="2" ry="2" />
<text  x="874.15" y="527.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="474.2" y="309" width="0.9" height="15.0" fill="rgb(243,125,53)" rx="2" ry="2" />
<text  x="477.19" y="319.5" ></text>
</g>
<g >
<title>clear_page_orig (43,000,000 samples, 3.31%)</title><rect x="1122.8" y="853" width="39.0" height="15.0" fill="rgb(232,93,5)" rx="2" ry="2" />
<text  x="1125.78" y="863.5" >cle..</text>
</g>
<g >
<title>add_base_rels_to_query (57,000,000 samples, 4.39%)</title><rect x="42.7" y="661" width="51.8" height="15.0" fill="rgb(210,221,37)" rx="2" ry="2" />
<text  x="45.70" y="671.5" >add_b..</text>
</g>
<g >
<title>ReadBufferExtended (3,000,000 samples, 0.23%)</title><rect x="483.3" y="389" width="2.7" height="15.0" fill="rgb(228,0,25)" rx="2" ry="2" />
<text  x="486.27" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,000,000 samples, 0.23%)</title><rect x="466.9" y="405" width="2.7" height="15.0" fill="rgb(220,175,33)" rx="2" ry="2" />
<text  x="469.92" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="851.2" y="389" width="0.9" height="15.0" fill="rgb(242,54,18)" rx="2" ry="2" />
<text  x="854.17" y="399.5" ></text>
</g>
<g >
<title>table_index_fetch_begin (1,000,000 samples, 0.08%)</title><rect x="372.4" y="373" width="1.0" height="15.0" fill="rgb(254,96,38)" rx="2" ry="2" />
<text  x="375.45" y="383.5" ></text>
</g>
<g >
<title>match_clauses_to_index (11,000,000 samples, 0.85%)</title><rect x="843.9" y="533" width="10.0" height="15.0" fill="rgb(248,114,36)" rx="2" ry="2" />
<text  x="846.90" y="543.5" ></text>
</g>
<g >
<title>_bt_checkpage (1,000,000 samples, 0.08%)</title><rect x="288.9" y="421" width="0.9" height="15.0" fill="rgb(250,14,20)" rx="2" ry="2" />
<text  x="291.88" y="431.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="1039.2" y="213" width="0.9" height="15.0" fill="rgb(221,84,16)" rx="2" ry="2" />
<text  x="1042.21" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,000,000 samples, 0.08%)</title><rect x="504.2" y="517" width="0.9" height="15.0" fill="rgb(210,9,8)" rx="2" ry="2" />
<text  x="507.16" y="527.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="1024.7" y="501" width="0.9" height="15.0" fill="rgb(239,132,7)" rx="2" ry="2" />
<text  x="1027.67" y="511.5" ></text>
</g>
<g >
<title>copy_plpgsql_datums (2,000,000 samples, 0.15%)</title><rect x="959.3" y="245" width="1.8" height="15.0" fill="rgb(228,1,19)" rx="2" ry="2" />
<text  x="962.27" y="255.5" ></text>
</g>
<g >
<title>SearchCatCache4 (5,000,000 samples, 0.38%)</title><rect x="680.4" y="405" width="4.5" height="15.0" fill="rgb(214,207,31)" rx="2" ry="2" />
<text  x="683.39" y="415.5" ></text>
</g>
<g >
<title>get_ecmember_indexes (3,000,000 samples, 0.23%)</title><rect x="709.5" y="389" width="2.7" height="15.0" fill="rgb(249,105,54)" rx="2" ry="2" />
<text  x="712.46" y="399.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (1,000,000 samples, 0.08%)</title><rect x="783.9" y="373" width="1.0" height="15.0" fill="rgb(250,96,0)" rx="2" ry="2" />
<text  x="786.95" y="383.5" ></text>
</g>
<g >
<title>systable_endscan (6,000,000 samples, 0.46%)</title><rect x="568.7" y="533" width="5.4" height="15.0" fill="rgb(213,124,15)" rx="2" ry="2" />
<text  x="571.66" y="543.5" ></text>
</g>
<g >
<title>index_getnext_tid (6,000,000 samples, 0.46%)</title><rect x="486.0" y="469" width="5.4" height="15.0" fill="rgb(210,153,11)" rx="2" ry="2" />
<text  x="489.00" y="479.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,000,000 samples, 0.08%)</title><rect x="1001.1" y="101" width="0.9" height="15.0" fill="rgb(230,207,1)" rx="2" ry="2" />
<text  x="1004.05" y="111.5" ></text>
</g>
<g >
<title>palloc (3,000,000 samples, 0.23%)</title><rect x="795.8" y="437" width="2.7" height="15.0" fill="rgb(209,199,3)" rx="2" ry="2" />
<text  x="798.76" y="447.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (1,000,000 samples, 0.08%)</title><rect x="392.4" y="341" width="0.9" height="15.0" fill="rgb(218,71,24)" rx="2" ry="2" />
<text  x="395.43" y="351.5" ></text>
</g>
<g >
<title>FileSize (1,000,000 samples, 0.08%)</title><rect x="259.8" y="421" width="0.9" height="15.0" fill="rgb(212,189,22)" rx="2" ry="2" />
<text  x="262.81" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="851.2" y="357" width="0.9" height="15.0" fill="rgb(227,112,10)" rx="2" ry="2" />
<text  x="854.17" y="367.5" ></text>
</g>
<g >
<title>index_beginscan (3,000,000 samples, 0.23%)</title><rect x="130.8" y="549" width="2.7" height="15.0" fill="rgb(247,219,30)" rx="2" ry="2" />
<text  x="133.82" y="559.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,000,000 samples, 0.08%)</title><rect x="544.1" y="373" width="0.9" height="15.0" fill="rgb(244,145,24)" rx="2" ry="2" />
<text  x="547.13" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="495.1" y="405" width="0.9" height="15.0" fill="rgb(254,87,2)" rx="2" ry="2" />
<text  x="498.08" y="415.5" ></text>
</g>
<g >
<title>BufferAlloc (3,000,000 samples, 0.23%)</title><rect x="483.3" y="357" width="2.7" height="15.0" fill="rgb(227,46,46)" rx="2" ry="2" />
<text  x="486.27" y="367.5" ></text>
</g>
<g >
<title>exec_eval_expr (2,000,000 samples, 0.15%)</title><rect x="961.1" y="181" width="1.8" height="15.0" fill="rgb(219,47,43)" rx="2" ry="2" />
<text  x="964.09" y="191.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="131.7" y="389" width="0.9" height="15.0" fill="rgb(222,154,35)" rx="2" ry="2" />
<text  x="134.72" y="399.5" ></text>
</g>
<g >
<title>calc_bucket (1,000,000 samples, 0.08%)</title><rect x="451.5" y="213" width="0.9" height="15.0" fill="rgb(238,106,42)" rx="2" ry="2" />
<text  x="454.48" y="223.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (1,000,000 samples, 0.08%)</title><rect x="473.3" y="437" width="0.9" height="15.0" fill="rgb(243,104,14)" rx="2" ry="2" />
<text  x="476.28" y="447.5" ></text>
</g>
<g >
<title>pgstat_prep_pending_entry (2,000,000 samples, 0.15%)</title><rect x="253.4" y="485" width="1.9" height="15.0" fill="rgb(247,106,29)" rx="2" ry="2" />
<text  x="256.45" y="495.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="31.8" y="469" width="0.9" height="15.0" fill="rgb(253,10,5)" rx="2" ry="2" />
<text  x="34.80" y="479.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="286.2" y="341" width="0.9" height="15.0" fill="rgb(250,217,46)" rx="2" ry="2" />
<text  x="289.15" y="351.5" ></text>
</g>
<g >
<title>contain_volatile_functions (2,000,000 samples, 0.15%)</title><rect x="848.4" y="469" width="1.9" height="15.0" fill="rgb(207,3,38)" rx="2" ry="2" />
<text  x="851.44" y="479.5" ></text>
</g>
<g >
<title>apply_child_basequals (34,000,000 samples, 2.62%)</title><rect x="96.3" y="597" width="30.9" height="15.0" fill="rgb(242,92,9)" rx="2" ry="2" />
<text  x="99.30" y="607.5" >ap..</text>
</g>
<g >
<title>ReadBuffer (2,000,000 samples, 0.15%)</title><rect x="64.5" y="341" width="1.8" height="15.0" fill="rgb(216,62,11)" rx="2" ry="2" />
<text  x="67.50" y="351.5" ></text>
</g>
<g >
<title>get_cheapest_path_for_pathkeys (1,000,000 samples, 0.08%)</title><rect x="605.9" y="565" width="0.9" height="15.0" fill="rgb(209,228,31)" rx="2" ry="2" />
<text  x="608.90" y="575.5" ></text>
</g>
<g >
<title>_bt_binsrch (4,000,000 samples, 0.31%)</title><rect x="410.6" y="309" width="3.6" height="15.0" fill="rgb(240,173,2)" rx="2" ry="2" />
<text  x="413.60" y="319.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="613.2" y="373" width="0.9" height="15.0" fill="rgb(209,105,28)" rx="2" ry="2" />
<text  x="616.17" y="383.5" ></text>
</g>
<g >
<title>relation_open (1,000,000 samples, 0.08%)</title><rect x="42.7" y="501" width="0.9" height="15.0" fill="rgb(246,72,38)" rx="2" ry="2" />
<text  x="45.70" y="511.5" ></text>
</g>
<g >
<title>_bt_checkkeys (2,000,000 samples, 0.15%)</title><rect x="339.7" y="405" width="1.9" height="15.0" fill="rgb(245,220,53)" rx="2" ry="2" />
<text  x="342.75" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,000,000 samples, 0.08%)</title><rect x="288.0" y="325" width="0.9" height="15.0" fill="rgb(239,66,45)" rx="2" ry="2" />
<text  x="290.97" y="335.5" ></text>
</g>
<g >
<title>LockRelease (2,000,000 samples, 0.15%)</title><rect x="1032.8" y="405" width="1.9" height="15.0" fill="rgb(231,114,44)" rx="2" ry="2" />
<text  x="1035.85" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="92.7" y="469" width="0.9" height="15.0" fill="rgb(223,23,49)" rx="2" ry="2" />
<text  x="95.66" y="479.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="806.7" y="405" width="0.9" height="15.0" fill="rgb(220,11,0)" rx="2" ry="2" />
<text  x="809.66" y="415.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (2,000,000 samples, 0.15%)</title><rect x="350.6" y="501" width="1.9" height="15.0" fill="rgb(211,125,50)" rx="2" ry="2" />
<text  x="353.65" y="511.5" ></text>
</g>
<g >
<title>check_functions_in_node (1,000,000 samples, 0.08%)</title><rect x="807.6" y="373" width="0.9" height="15.0" fill="rgb(249,178,51)" rx="2" ry="2" />
<text  x="810.57" y="383.5" ></text>
</g>
<g >
<title>btendscan (1,000,000 samples, 0.08%)</title><rect x="138.1" y="549" width="0.9" height="15.0" fill="rgb(208,7,16)" rx="2" ry="2" />
<text  x="141.08" y="559.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="922.0" y="261" width="0.9" height="15.0" fill="rgb(233,158,22)" rx="2" ry="2" />
<text  x="925.02" y="271.5" ></text>
</g>
<g >
<title>_bt_binsrch (2,000,000 samples, 0.15%)</title><rect x="578.7" y="453" width="1.8" height="15.0" fill="rgb(221,163,20)" rx="2" ry="2" />
<text  x="581.65" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="781.2" y="373" width="1.8" height="15.0" fill="rgb(244,42,26)" rx="2" ry="2" />
<text  x="784.22" y="383.5" ></text>
</g>
<g >
<title>BufTableHashCode (1,000,000 samples, 0.08%)</title><rect x="1000.1" y="117" width="1.0" height="15.0" fill="rgb(253,40,52)" rx="2" ry="2" />
<text  x="1003.15" y="127.5" ></text>
</g>
<g >
<title>BufferGetBlock (1,000,000 samples, 0.08%)</title><rect x="488.7" y="389" width="0.9" height="15.0" fill="rgb(252,210,10)" rx="2" ry="2" />
<text  x="491.72" y="399.5" ></text>
</g>
<g >
<title>_bt_readpage (2,000,000 samples, 0.15%)</title><rect x="339.7" y="421" width="1.9" height="15.0" fill="rgb(222,118,30)" rx="2" ry="2" />
<text  x="342.75" y="431.5" ></text>
</g>
<g >
<title>list_free (1,000,000 samples, 0.08%)</title><rect x="496.0" y="597" width="0.9" height="15.0" fill="rgb(214,211,30)" rx="2" ry="2" />
<text  x="498.99" y="607.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (1,000,000 samples, 0.08%)</title><rect x="708.6" y="325" width="0.9" height="15.0" fill="rgb(239,49,17)" rx="2" ry="2" />
<text  x="711.55" y="335.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,000,000 samples, 0.08%)</title><rect x="476.0" y="437" width="0.9" height="15.0" fill="rgb(228,136,41)" rx="2" ry="2" />
<text  x="479.00" y="447.5" ></text>
</g>
<g >
<title>generate_bitmap_or_paths (2,000,000 samples, 0.15%)</title><rect x="728.5" y="549" width="1.9" height="15.0" fill="rgb(235,30,48)" rx="2" ry="2" />
<text  x="731.54" y="559.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (1,000,000 samples, 0.08%)</title><rect x="686.8" y="453" width="0.9" height="15.0" fill="rgb(253,112,16)" rx="2" ry="2" />
<text  x="689.75" y="463.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (2,000,000 samples, 0.15%)</title><rect x="1057.4" y="837" width="1.8" height="15.0" fill="rgb(251,92,24)" rx="2" ry="2" />
<text  x="1060.37" y="847.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="981" width="0.9" height="15.0" fill="rgb(212,195,34)" rx="2" ry="2" />
<text  x="1093.08" y="991.5" ></text>
</g>
<g >
<title>create_hashjoin_plan (10,000,000 samples, 0.77%)</title><rect x="25.4" y="661" width="9.1" height="15.0" fill="rgb(235,211,9)" rx="2" ry="2" />
<text  x="28.44" y="671.5" ></text>
</g>
<g >
<title>clear_page_orig (2,000,000 samples, 0.15%)</title><rect x="781.2" y="261" width="1.8" height="15.0" fill="rgb(234,210,45)" rx="2" ry="2" />
<text  x="784.22" y="271.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref (1,000,000 samples, 0.08%)</title><rect x="1051.0" y="805" width="0.9" height="15.0" fill="rgb(216,45,39)" rx="2" ry="2" />
<text  x="1054.02" y="815.5" ></text>
</g>
<g >
<title>prep_new_page (2,000,000 samples, 0.15%)</title><rect x="515.1" y="405" width="1.8" height="15.0" fill="rgb(243,159,20)" rx="2" ry="2" />
<text  x="518.07" y="415.5" ></text>
</g>
<g >
<title>fmgr_info (1,000,000 samples, 0.08%)</title><rect x="271.6" y="533" width="0.9" height="15.0" fill="rgb(213,108,17)" rx="2" ry="2" />
<text  x="274.62" y="543.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="564.1" y="421" width="0.9" height="15.0" fill="rgb(250,42,22)" rx="2" ry="2" />
<text  x="567.12" y="431.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,000,000 samples, 0.08%)</title><rect x="863.9" y="549" width="0.9" height="15.0" fill="rgb(229,63,5)" rx="2" ry="2" />
<text  x="866.89" y="559.5" ></text>
</g>
<g >
<title>BufTableHashCode (2,000,000 samples, 0.15%)</title><rect x="394.2" y="245" width="1.9" height="15.0" fill="rgb(240,94,29)" rx="2" ry="2" />
<text  x="397.25" y="255.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,000,000 samples, 0.38%)</title><rect x="363.4" y="357" width="4.5" height="15.0" fill="rgb(246,190,47)" rx="2" ry="2" />
<text  x="366.36" y="367.5" ></text>
</g>
<g >
<title>index_close (4,000,000 samples, 0.31%)</title><rect x="440.6" y="421" width="3.6" height="15.0" fill="rgb(212,135,44)" rx="2" ry="2" />
<text  x="443.58" y="431.5" ></text>
</g>
<g >
<title>set_opfuncid (1,000,000 samples, 0.08%)</title><rect x="824.8" y="405" width="0.9" height="15.0" fill="rgb(220,213,35)" rx="2" ry="2" />
<text  x="827.83" y="415.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (1,000,000 samples, 0.08%)</title><rect x="807.6" y="389" width="0.9" height="15.0" fill="rgb(241,83,8)" rx="2" ry="2" />
<text  x="810.57" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="137.2" y="533" width="0.9" height="15.0" fill="rgb(250,128,29)" rx="2" ry="2" />
<text  x="140.17" y="543.5" ></text>
</g>
<g >
<title>_bt_search (4,000,000 samples, 0.31%)</title><rect x="71.8" y="357" width="3.6" height="15.0" fill="rgb(223,6,31)" rx="2" ry="2" />
<text  x="74.77" y="367.5" ></text>
</g>
<g >
<title>_bt_first (1,000,000 samples, 0.08%)</title><rect x="42.7" y="309" width="0.9" height="15.0" fill="rgb(252,152,40)" rx="2" ry="2" />
<text  x="45.70" y="319.5" ></text>
</g>
<g >
<title>set_plain_rel_pathlist (278,000,000 samples, 21.40%)</title><rect x="607.7" y="581" width="252.6" height="15.0" fill="rgb(216,36,11)" rx="2" ry="2" />
<text  x="610.72" y="591.5" >set_plain_rel_pathlist</text>
</g>
<g >
<title>CleanUpLock (1,000,000 samples, 0.08%)</title><rect x="455.1" y="373" width="0.9" height="15.0" fill="rgb(230,229,1)" rx="2" ry="2" />
<text  x="458.11" y="383.5" ></text>
</g>
<g >
<title>bms_next_member (1,000,000 samples, 0.08%)</title><rect x="833.0" y="485" width="0.9" height="15.0" fill="rgb(241,130,33)" rx="2" ry="2" />
<text  x="836.00" y="495.5" ></text>
</g>
<g >
<title>LockRelease (1,000,000 samples, 0.08%)</title><rect x="344.3" y="453" width="0.9" height="15.0" fill="rgb(207,177,40)" rx="2" ry="2" />
<text  x="347.29" y="463.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="475.1" y="405" width="0.9" height="15.0" fill="rgb(220,11,47)" rx="2" ry="2" />
<text  x="478.10" y="415.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="991.1" y="245" width="0.9" height="15.0" fill="rgb(218,55,18)" rx="2" ry="2" />
<text  x="994.06" y="255.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,000,000 samples, 0.08%)</title><rect x="972.9" y="277" width="0.9" height="15.0" fill="rgb(239,86,32)" rx="2" ry="2" />
<text  x="975.89" y="287.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="467.8" y="325" width="0.9" height="15.0" fill="rgb(221,102,13)" rx="2" ry="2" />
<text  x="470.83" y="335.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="702.2" y="341" width="0.9" height="15.0" fill="rgb(233,95,17)" rx="2" ry="2" />
<text  x="705.19" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (4,000,000 samples, 0.31%)</title><rect x="554.1" y="389" width="3.7" height="15.0" fill="rgb(213,195,52)" rx="2" ry="2" />
<text  x="557.13" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,000,000 samples, 0.08%)</title><rect x="444.2" y="309" width="0.9" height="15.0" fill="rgb(227,166,41)" rx="2" ry="2" />
<text  x="447.21" y="319.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (2,000,000 samples, 0.15%)</title><rect x="34.5" y="677" width="1.8" height="15.0" fill="rgb(228,163,36)" rx="2" ry="2" />
<text  x="37.53" y="687.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="92.7" y="485" width="0.9" height="15.0" fill="rgb(231,44,52)" rx="2" ry="2" />
<text  x="95.66" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="132.6" y="405" width="0.9" height="15.0" fill="rgb(206,109,42)" rx="2" ry="2" />
<text  x="135.63" y="415.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="887.5" y="501" width="0.9" height="15.0" fill="rgb(246,32,52)" rx="2" ry="2" />
<text  x="890.51" y="511.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="807.6" y="293" width="0.9" height="15.0" fill="rgb(217,103,13)" rx="2" ry="2" />
<text  x="810.57" y="303.5" ></text>
</g>
<g >
<title>LockRelationOid (2,000,000 samples, 0.15%)</title><rect x="992.0" y="261" width="1.8" height="15.0" fill="rgb(207,154,36)" rx="2" ry="2" />
<text  x="994.97" y="271.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (1,000,000 samples, 0.08%)</title><rect x="1011.0" y="325" width="1.0" height="15.0" fill="rgb(230,103,29)" rx="2" ry="2" />
<text  x="1014.05" y="335.5" ></text>
</g>
<g >
<title>index_beginscan_internal (3,000,000 samples, 0.23%)</title><rect x="51.8" y="405" width="2.7" height="15.0" fill="rgb(250,190,28)" rx="2" ry="2" />
<text  x="54.79" y="415.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (1,000,000 samples, 0.08%)</title><rect x="130.8" y="501" width="0.9" height="15.0" fill="rgb(231,154,5)" rx="2" ry="2" />
<text  x="133.82" y="511.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="608.6" y="421" width="0.9" height="15.0" fill="rgb(218,164,33)" rx="2" ry="2" />
<text  x="611.63" y="431.5" ></text>
</g>
<g >
<title>SearchCatCache1 (2,000,000 samples, 0.15%)</title><rect x="721.3" y="357" width="1.8" height="15.0" fill="rgb(207,201,50)" rx="2" ry="2" />
<text  x="724.27" y="367.5" ></text>
</g>
<g >
<title>hash_search (4,000,000 samples, 0.31%)</title><rect x="955.6" y="229" width="3.7" height="15.0" fill="rgb(240,46,2)" rx="2" ry="2" />
<text  x="958.64" y="239.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="379.7" y="325" width="0.9" height="15.0" fill="rgb(212,197,14)" rx="2" ry="2" />
<text  x="382.72" y="335.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,000,000 samples, 0.08%)</title><rect x="489.6" y="389" width="0.9" height="15.0" fill="rgb(226,117,4)" rx="2" ry="2" />
<text  x="492.63" y="399.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="421.5" y="325" width="0.9" height="15.0" fill="rgb(239,107,13)" rx="2" ry="2" />
<text  x="424.50" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="150.8" y="373" width="0.9" height="15.0" fill="rgb(250,50,24)" rx="2" ry="2" />
<text  x="153.80" y="383.5" ></text>
</g>
<g >
<title>examine_simple_variable (36,000,000 samples, 2.77%)</title><rect x="913.8" y="389" width="32.8" height="15.0" fill="rgb(248,192,8)" rx="2" ry="2" />
<text  x="916.85" y="399.5" >ex..</text>
</g>
<g >
<title>_bt_relandgetbuf (1,000,000 samples, 0.08%)</title><rect x="1002.0" y="213" width="0.9" height="15.0" fill="rgb(227,121,49)" rx="2" ry="2" />
<text  x="1004.96" y="223.5" ></text>
</g>
<g >
<title>ReadBuffer (1,000,000 samples, 0.08%)</title><rect x="445.1" y="341" width="0.9" height="15.0" fill="rgb(224,159,26)" rx="2" ry="2" />
<text  x="448.12" y="351.5" ></text>
</g>
<g >
<title>GetCatalogSnapshot (2,000,000 samples, 0.15%)</title><rect x="548.7" y="517" width="1.8" height="15.0" fill="rgb(210,100,8)" rx="2" ry="2" />
<text  x="551.68" y="527.5" ></text>
</g>
<g >
<title>clear_page_orig (3,000,000 samples, 0.23%)</title><rect x="555.0" y="325" width="2.8" height="15.0" fill="rgb(245,109,13)" rx="2" ry="2" />
<text  x="558.03" y="335.5" ></text>
</g>
<g >
<title>SearchCatCache4 (1,000,000 samples, 0.08%)</title><rect x="708.6" y="357" width="0.9" height="15.0" fill="rgb(254,13,36)" rx="2" ry="2" />
<text  x="711.55" y="367.5" ></text>
</g>
<g >
<title>build_simple_rel (57,000,000 samples, 4.39%)</title><rect x="42.7" y="597" width="51.8" height="15.0" fill="rgb(251,69,26)" rx="2" ry="2" />
<text  x="45.70" y="607.5" >build..</text>
</g>
<g >
<title>btgettuple (15,000,000 samples, 1.15%)</title><rect x="531.4" y="485" width="13.6" height="15.0" fill="rgb(222,11,47)" rx="2" ry="2" />
<text  x="534.42" y="495.5" ></text>
</g>
<g >
<title>_bt_getroot (3,000,000 samples, 0.23%)</title><rect x="415.1" y="309" width="2.8" height="15.0" fill="rgb(219,4,1)" rx="2" ry="2" />
<text  x="418.14" y="319.5" ></text>
</g>
<g >
<title>RemoveLocalLock (2,000,000 samples, 0.15%)</title><rect x="570.5" y="469" width="1.8" height="15.0" fill="rgb(242,168,18)" rx="2" ry="2" />
<text  x="573.48" y="479.5" ></text>
</g>
<g >
<title>get_opfamily_member (2,000,000 samples, 0.15%)</title><rect x="798.5" y="485" width="1.8" height="15.0" fill="rgb(226,170,39)" rx="2" ry="2" />
<text  x="801.48" y="495.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,000,000 samples, 0.15%)</title><rect x="22.7" y="645" width="1.8" height="15.0" fill="rgb(225,86,34)" rx="2" ry="2" />
<text  x="25.72" y="655.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4,000,000 samples, 0.31%)</title><rect x="304.3" y="501" width="3.7" height="15.0" fill="rgb(236,114,30)" rx="2" ry="2" />
<text  x="307.32" y="511.5" ></text>
</g>
<g >
<title>set_append_rel_size (204,000,000 samples, 15.70%)</title><rect x="860.3" y="613" width="185.3" height="15.0" fill="rgb(224,132,8)" rx="2" ry="2" />
<text  x="863.25" y="623.5" >set_append_rel_size</text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="1038.3" y="245" width="0.9" height="15.0" fill="rgb(239,157,1)" rx="2" ry="2" />
<text  x="1041.30" y="255.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="509.6" y="485" width="0.9" height="15.0" fill="rgb(225,107,17)" rx="2" ry="2" />
<text  x="512.62" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="57.2" y="357" width="0.9" height="15.0" fill="rgb(237,210,46)" rx="2" ry="2" />
<text  x="60.24" y="367.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (33,000,000 samples, 2.54%)</title><rect x="45.4" y="453" width="30.0" height="15.0" fill="rgb(245,88,47)" rx="2" ry="2" />
<text  x="48.43" y="463.5" >Se..</text>
</g>
<g >
<title>table_open (6,000,000 samples, 0.46%)</title><rect x="1005.6" y="309" width="5.4" height="15.0" fill="rgb(243,50,2)" rx="2" ry="2" />
<text  x="1008.60" y="319.5" ></text>
</g>
<g >
<title>clauselist_selectivity_ext (3,000,000 samples, 0.23%)</title><rect x="805.8" y="437" width="2.7" height="15.0" fill="rgb(252,63,25)" rx="2" ry="2" />
<text  x="808.75" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="870.2" y="501" width="1.0" height="15.0" fill="rgb(240,214,47)" rx="2" ry="2" />
<text  x="873.25" y="511.5" ></text>
</g>
<g >
<title>_bt_first (8,000,000 samples, 0.62%)</title><rect x="996.5" y="245" width="7.3" height="15.0" fill="rgb(234,213,6)" rx="2" ry="2" />
<text  x="999.51" y="255.5" ></text>
</g>
<g >
<title>_mdnblocks (1,000,000 samples, 0.08%)</title><rect x="259.8" y="437" width="0.9" height="15.0" fill="rgb(232,57,11)" rx="2" ry="2" />
<text  x="262.81" y="447.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (101,000,000 samples, 7.78%)</title><rect x="508.7" y="581" width="91.8" height="15.0" fill="rgb(223,112,17)" rx="2" ry="2" />
<text  x="511.71" y="591.5" >RelationId..</text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="819.4" y="453" width="0.9" height="15.0" fill="rgb(254,113,8)" rx="2" ry="2" />
<text  x="822.38" y="463.5" ></text>
</g>
<g >
<title>systable_endscan (4,000,000 samples, 0.31%)</title><rect x="59.1" y="437" width="3.6" height="15.0" fill="rgb(244,49,49)" rx="2" ry="2" />
<text  x="62.05" y="447.5" ></text>
</g>
<g >
<title>murmurhash32 (1,000,000 samples, 0.08%)</title><rect x="694.9" y="277" width="0.9" height="15.0" fill="rgb(214,226,40)" rx="2" ry="2" />
<text  x="697.93" y="287.5" ></text>
</g>
<g >
<title>vfs_read (70,000,000 samples, 5.39%)</title><rect x="188.0" y="405" width="63.6" height="15.0" fill="rgb(219,200,24)" rx="2" ry="2" />
<text  x="191.04" y="415.5" >vfs_read</text>
</g>
<g >
<title>_int_malloc (89,000,000 samples, 6.85%)</title><rect x="1091.0" y="1013" width="80.8" height="15.0" fill="rgb(205,129,16)" rx="2" ry="2" />
<text  x="1093.99" y="1023.5" >_int_malloc</text>
</g>
<g >
<title>ExplainOnePlan (8,000,000 samples, 0.62%)</title><rect x="18.2" y="757" width="7.2" height="15.0" fill="rgb(221,152,25)" rx="2" ry="2" />
<text  x="21.18" y="767.5" ></text>
</g>
<g >
<title>bms_copy (3,000,000 samples, 0.23%)</title><rect x="667.7" y="373" width="2.7" height="15.0" fill="rgb(210,102,6)" rx="2" ry="2" />
<text  x="670.68" y="383.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="598.6" y="453" width="0.9" height="15.0" fill="rgb(241,169,4)" rx="2" ry="2" />
<text  x="601.64" y="463.5" ></text>
</g>
<g >
<title>table_close (2,000,000 samples, 0.15%)</title><rect x="1003.8" y="309" width="1.8" height="15.0" fill="rgb(206,35,21)" rx="2" ry="2" />
<text  x="1006.78" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (31,000,000 samples, 2.39%)</title><rect x="1055.6" y="981" width="28.1" height="15.0" fill="rgb(238,19,28)" rx="2" ry="2" />
<text  x="1058.56" y="991.5" >e..</text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="125.4" y="517" width="0.9" height="15.0" fill="rgb(231,19,2)" rx="2" ry="2" />
<text  x="128.37" y="527.5" ></text>
</g>
<g >
<title>table_slot_create (2,000,000 samples, 0.15%)</title><rect x="478.7" y="485" width="1.8" height="15.0" fill="rgb(240,139,54)" rx="2" ry="2" />
<text  x="481.73" y="495.5" ></text>
</g>
<g >
<title>simplify_function (19,000,000 samples, 1.46%)</title><rect x="950.2" y="373" width="17.2" height="15.0" fill="rgb(221,83,14)" rx="2" ry="2" />
<text  x="953.18" y="383.5" ></text>
</g>
<g >
<title>refill_stock (1,000,000 samples, 0.08%)</title><rect x="1168.2" y="901" width="0.9" height="15.0" fill="rgb(217,126,30)" rx="2" ry="2" />
<text  x="1171.20" y="911.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (1,000,000 samples, 0.08%)</title><rect x="76.3" y="421" width="0.9" height="15.0" fill="rgb(220,115,52)" rx="2" ry="2" />
<text  x="79.31" y="431.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (1,000,000 samples, 0.08%)</title><rect x="397.9" y="325" width="0.9" height="15.0" fill="rgb(209,87,50)" rx="2" ry="2" />
<text  x="400.88" y="335.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,000,000 samples, 0.08%)</title><rect x="526.9" y="405" width="0.9" height="15.0" fill="rgb(248,13,2)" rx="2" ry="2" />
<text  x="529.87" y="415.5" ></text>
</g>
<g >
<title>get_ec_derive_indexes_strict (2,000,000 samples, 0.15%)</title><rect x="832.1" y="501" width="1.8" height="15.0" fill="rgb(224,116,30)" rx="2" ry="2" />
<text  x="835.09" y="511.5" ></text>
</g>
<g >
<title>_bt_readpage (1,000,000 samples, 0.08%)</title><rect x="581.4" y="453" width="0.9" height="15.0" fill="rgb(253,223,39)" rx="2" ry="2" />
<text  x="584.38" y="463.5" ></text>
</g>
<g >
<title>heap_copytuple (4,000,000 samples, 0.31%)</title><rect x="466.0" y="501" width="3.6" height="15.0" fill="rgb(226,45,25)" rx="2" ry="2" />
<text  x="469.01" y="511.5" ></text>
</g>
<g >
<title>UnlockRelationId (3,000,000 samples, 0.23%)</title><rect x="279.8" y="517" width="2.7" height="15.0" fill="rgb(240,69,6)" rx="2" ry="2" />
<text  x="282.79" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="150.8" y="453" width="0.9" height="15.0" fill="rgb(209,165,14)" rx="2" ry="2" />
<text  x="153.80" y="463.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (1,000,000 samples, 0.08%)</title><rect x="382.4" y="309" width="0.9" height="15.0" fill="rgb(236,199,29)" rx="2" ry="2" />
<text  x="385.44" y="319.5" ></text>
</g>
<g >
<title>btbeginscan (1,000,000 samples, 0.08%)</title><rect x="919.3" y="261" width="0.9" height="15.0" fill="rgb(236,178,40)" rx="2" ry="2" />
<text  x="922.30" y="271.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="562.3" y="373" width="1.8" height="15.0" fill="rgb(210,185,31)" rx="2" ry="2" />
<text  x="565.30" y="383.5" ></text>
</g>
<g >
<title>alloc_pages_vma (4,000,000 samples, 0.31%)</title><rect x="315.2" y="421" width="3.7" height="15.0" fill="rgb(208,71,21)" rx="2" ry="2" />
<text  x="318.22" y="431.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="348.8" y="469" width="0.9" height="15.0" fill="rgb(253,216,31)" rx="2" ry="2" />
<text  x="351.83" y="479.5" ></text>
</g>
<g >
<title>CatalogCacheCreateEntry (1,000,000 samples, 0.08%)</title><rect x="45.4" y="437" width="0.9" height="15.0" fill="rgb(230,169,49)" rx="2" ry="2" />
<text  x="48.43" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="52.7" y="373" width="1.8" height="15.0" fill="rgb(218,25,20)" rx="2" ry="2" />
<text  x="55.69" y="383.5" ></text>
</g>
<g >
<title>UnlockRelationId (2,000,000 samples, 0.15%)</title><rect x="1032.8" y="421" width="1.9" height="15.0" fill="rgb(251,215,6)" rx="2" ry="2" />
<text  x="1035.85" y="431.5" ></text>
</g>
<g >
<title>eclass_member_iterator_next (1,000,000 samples, 0.08%)</title><rect x="857.5" y="533" width="0.9" height="15.0" fill="rgb(253,169,34)" rx="2" ry="2" />
<text  x="860.53" y="543.5" ></text>
</g>
<g >
<title>PinBuffer (1,000,000 samples, 0.08%)</title><rect x="936.6" y="117" width="0.9" height="15.0" fill="rgb(236,5,30)" rx="2" ry="2" />
<text  x="939.56" y="127.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="546.0" y="405" width="0.9" height="15.0" fill="rgb(250,2,4)" rx="2" ry="2" />
<text  x="548.95" y="415.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="329.8" y="437" width="1.8" height="15.0" fill="rgb(236,54,34)" rx="2" ry="2" />
<text  x="332.75" y="447.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="158.1" y="533" width="1.8" height="15.0" fill="rgb(208,216,48)" rx="2" ry="2" />
<text  x="161.07" y="543.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="728.5" y="501" width="0.9" height="15.0" fill="rgb(251,51,28)" rx="2" ry="2" />
<text  x="731.54" y="511.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (1,000,000 samples, 0.08%)</title><rect x="569.6" y="501" width="0.9" height="15.0" fill="rgb(244,205,32)" rx="2" ry="2" />
<text  x="572.57" y="511.5" ></text>
</g>
<g >
<title>check_functions_in_node (1,000,000 samples, 0.08%)</title><rect x="887.5" y="453" width="0.9" height="15.0" fill="rgb(251,173,48)" rx="2" ry="2" />
<text  x="890.51" y="463.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,000,000 samples, 0.08%)</title><rect x="279.8" y="453" width="0.9" height="15.0" fill="rgb(226,32,43)" rx="2" ry="2" />
<text  x="282.79" y="463.5" ></text>
</g>
<g >
<title>eqsel_internal (41,000,000 samples, 3.16%)</title><rect x="911.1" y="437" width="37.3" height="15.0" fill="rgb(240,116,36)" rx="2" ry="2" />
<text  x="914.12" y="447.5" >eqs..</text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (1,000,000 samples, 0.08%)</title><rect x="575.0" y="437" width="0.9" height="15.0" fill="rgb(237,72,11)" rx="2" ry="2" />
<text  x="578.02" y="447.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="438.8" y="357" width="0.9" height="15.0" fill="rgb(230,24,2)" rx="2" ry="2" />
<text  x="441.76" y="367.5" ></text>
</g>
<g >
<title>mdopenfork (15,000,000 samples, 1.15%)</title><rect x="162.6" y="533" width="13.6" height="15.0" fill="rgb(217,229,14)" rx="2" ry="2" />
<text  x="165.61" y="543.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,000,000 samples, 0.08%)</title><rect x="952.0" y="261" width="0.9" height="15.0" fill="rgb(246,92,24)" rx="2" ry="2" />
<text  x="955.00" y="271.5" ></text>
</g>
<g >
<title>PinBuffer (1,000,000 samples, 0.08%)</title><rect x="453.3" y="245" width="0.9" height="15.0" fill="rgb(218,145,43)" rx="2" ry="2" />
<text  x="456.29" y="255.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,000,000 samples, 0.08%)</title><rect x="452.4" y="229" width="0.9" height="15.0" fill="rgb(221,34,38)" rx="2" ry="2" />
<text  x="455.39" y="239.5" ></text>
</g>
<g >
<title>add_function_cost (1,000,000 samples, 0.08%)</title><rect x="1023.8" y="501" width="0.9" height="15.0" fill="rgb(249,4,43)" rx="2" ry="2" />
<text  x="1026.76" y="511.5" ></text>
</g>
<g >
<title>SearchSysCache1 (34,000,000 samples, 2.62%)</title><rect x="44.5" y="501" width="30.9" height="15.0" fill="rgb(246,17,45)" rx="2" ry="2" />
<text  x="47.52" y="511.5" >Se..</text>
</g>
<g >
<title>do_syscall_64 (4,000,000 samples, 0.31%)</title><rect x="169.9" y="421" width="3.6" height="15.0" fill="rgb(219,91,0)" rx="2" ry="2" />
<text  x="172.88" y="431.5" ></text>
</g>
<g >
<title>_bt_getroot (2,000,000 samples, 0.15%)</title><rect x="71.8" y="341" width="1.8" height="15.0" fill="rgb(232,31,50)" rx="2" ry="2" />
<text  x="74.77" y="351.5" ></text>
</g>
<g >
<title>table_close (3,000,000 samples, 0.23%)</title><rect x="455.1" y="437" width="2.7" height="15.0" fill="rgb(241,210,32)" rx="2" ry="2" />
<text  x="458.11" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="800.3" y="421" width="0.9" height="15.0" fill="rgb(208,51,30)" rx="2" ry="2" />
<text  x="803.30" y="431.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="1041.9" y="341" width="0.9" height="15.0" fill="rgb(229,79,19)" rx="2" ry="2" />
<text  x="1044.93" y="351.5" ></text>
</g>
<g >
<title>bms_copy (1,000,000 samples, 0.08%)</title><rect x="702.2" y="357" width="0.9" height="15.0" fill="rgb(217,119,41)" rx="2" ry="2" />
<text  x="705.19" y="367.5" ></text>
</g>
<g >
<title>clause_selectivity_ext (119,000,000 samples, 9.16%)</title><rect x="907.5" y="517" width="108.1" height="15.0" fill="rgb(240,117,27)" rx="2" ry="2" />
<text  x="910.49" y="527.5" >clause_select..</text>
</g>
<g >
<title>equal (1,000,000 samples, 0.08%)</title><rect x="903.9" y="485" width="0.9" height="15.0" fill="rgb(226,203,25)" rx="2" ry="2" />
<text  x="906.86" y="495.5" ></text>
</g>
<g >
<title>BoolGetDatum (1,000,000 samples, 0.08%)</title><rect x="803.0" y="485" width="0.9" height="15.0" fill="rgb(221,196,42)" rx="2" ry="2" />
<text  x="806.03" y="495.5" ></text>
</g>
<g >
<title>BufTableHashCode (1,000,000 samples, 0.08%)</title><rect x="177.1" y="485" width="1.0" height="15.0" fill="rgb(227,12,36)" rx="2" ry="2" />
<text  x="180.14" y="495.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (2,000,000 samples, 0.15%)</title><rect x="1166.4" y="917" width="1.8" height="15.0" fill="rgb(211,12,8)" rx="2" ry="2" />
<text  x="1169.38" y="927.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="1030.1" y="325" width="0.9" height="15.0" fill="rgb(215,214,14)" rx="2" ry="2" />
<text  x="1033.12" y="335.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="476.9" y="437" width="1.8" height="15.0" fill="rgb(242,59,51)" rx="2" ry="2" />
<text  x="479.91" y="447.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (1,000,000 samples, 0.08%)</title><rect x="565.0" y="485" width="0.9" height="15.0" fill="rgb(207,209,26)" rx="2" ry="2" />
<text  x="568.03" y="495.5" ></text>
</g>
<g >
<title>ip_finish_output2 (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="773" width="1.0" height="15.0" fill="rgb(217,175,26)" rx="2" ry="2" />
<text  x="1187.55" y="783.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="916.6" y="261" width="0.9" height="15.0" fill="rgb(253,39,3)" rx="2" ry="2" />
<text  x="919.57" y="271.5" ></text>
</g>
<g >
<title>get_opcode (1,000,000 samples, 0.08%)</title><rect x="824.8" y="389" width="0.9" height="15.0" fill="rgb(223,51,40)" rx="2" ry="2" />
<text  x="827.83" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="434.2" y="405" width="1.8" height="15.0" fill="rgb(205,183,53)" rx="2" ry="2" />
<text  x="437.22" y="415.5" ></text>
</g>
<g >
<title>match_restriction_clauses_to_index (11,000,000 samples, 0.85%)</title><rect x="843.9" y="549" width="10.0" height="15.0" fill="rgb(219,78,0)" rx="2" ry="2" />
<text  x="846.90" y="559.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="906.6" y="485" width="0.9" height="15.0" fill="rgb(224,195,36)" rx="2" ry="2" />
<text  x="909.58" y="495.5" ></text>
</g>
<g >
<title>exc_page_fault (3,000,000 samples, 0.23%)</title><rect x="466.9" y="421" width="2.7" height="15.0" fill="rgb(241,129,49)" rx="2" ry="2" />
<text  x="469.92" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="125.4" y="501" width="0.9" height="15.0" fill="rgb(236,213,29)" rx="2" ry="2" />
<text  x="128.37" y="511.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="849.4" y="357" width="0.9" height="15.0" fill="rgb(206,9,5)" rx="2" ry="2" />
<text  x="852.35" y="367.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (3,000,000 samples, 0.23%)</title><rect x="377.9" y="373" width="2.7" height="15.0" fill="rgb(235,102,52)" rx="2" ry="2" />
<text  x="380.90" y="383.5" ></text>
</g>
<g >
<title>RelationClose (1,000,000 samples, 0.08%)</title><rect x="545.0" y="517" width="1.0" height="15.0" fill="rgb(252,83,34)" rx="2" ry="2" />
<text  x="548.04" y="527.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (2,000,000 samples, 0.15%)</title><rect x="432.4" y="341" width="1.8" height="15.0" fill="rgb(220,170,34)" rx="2" ry="2" />
<text  x="435.40" y="351.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (1,000,000 samples, 0.08%)</title><rect x="445.1" y="357" width="0.9" height="15.0" fill="rgb(250,149,6)" rx="2" ry="2" />
<text  x="448.12" y="367.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="849.4" y="373" width="0.9" height="15.0" fill="rgb(228,79,53)" rx="2" ry="2" />
<text  x="852.35" y="383.5" ></text>
</g>
<g >
<title>int4hashfast (1,000,000 samples, 0.08%)</title><rect x="112.6" y="485" width="1.0" height="15.0" fill="rgb(249,47,15)" rx="2" ry="2" />
<text  x="115.65" y="495.5" ></text>
</g>
<g >
<title>table_slot_create (1,000,000 samples, 0.08%)</title><rect x="278.9" y="533" width="0.9" height="15.0" fill="rgb(246,207,47)" rx="2" ry="2" />
<text  x="281.88" y="543.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="495.1" y="453" width="0.9" height="15.0" fill="rgb(239,23,10)" rx="2" ry="2" />
<text  x="498.08" y="463.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (10,000,000 samples, 0.77%)</title><rect x="982.0" y="165" width="9.1" height="15.0" fill="rgb(223,102,49)" rx="2" ry="2" />
<text  x="984.98" y="175.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="278.0" y="453" width="0.9" height="15.0" fill="rgb(207,12,39)" rx="2" ry="2" />
<text  x="280.98" y="463.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,000,000 samples, 0.08%)</title><rect x="160.8" y="469" width="0.9" height="15.0" fill="rgb(205,188,4)" rx="2" ry="2" />
<text  x="163.79" y="479.5" ></text>
</g>
<g >
<title>index_beginscan (4,000,000 samples, 0.31%)</title><rect x="369.7" y="389" width="3.7" height="15.0" fill="rgb(240,19,31)" rx="2" ry="2" />
<text  x="372.72" y="399.5" ></text>
</g>
<g >
<title>get_mergejoin_opfamilies (2,000,000 samples, 0.15%)</title><rect x="825.7" y="469" width="1.9" height="15.0" fill="rgb(236,45,3)" rx="2" ry="2" />
<text  x="828.74" y="479.5" ></text>
</g>
<g >
<title>chksum_update (1,000,000 samples, 0.08%)</title><rect x="248.0" y="245" width="0.9" height="15.0" fill="rgb(234,14,11)" rx="2" ry="2" />
<text  x="251.00" y="255.5" ></text>
</g>
<g >
<title>exec_stmts (2,000,000 samples, 0.15%)</title><rect x="961.1" y="213" width="1.8" height="15.0" fill="rgb(249,143,54)" rx="2" ry="2" />
<text  x="964.09" y="223.5" ></text>
</g>
<g >
<title>get_eclass_indexes_for_relids (1,000,000 samples, 0.08%)</title><rect x="712.2" y="405" width="0.9" height="15.0" fill="rgb(230,50,46)" rx="2" ry="2" />
<text  x="715.19" y="415.5" ></text>
</g>
<g >
<title>[unknown] (1,000,000 samples, 0.08%)</title><rect x="10.9" y="997" width="0.9" height="15.0" fill="rgb(226,4,20)" rx="2" ry="2" />
<text  x="13.91" y="1007.5" ></text>
</g>
<g >
<title>tcp_done (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="517" width="1.0" height="15.0" fill="rgb(238,42,15)" rx="2" ry="2" />
<text  x="1187.55" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="698.6" y="389" width="0.9" height="15.0" fill="rgb(217,51,14)" rx="2" ry="2" />
<text  x="701.56" y="399.5" ></text>
</g>
<g >
<title>RelationGetIndexList (32,000,000 samples, 2.46%)</title><rect x="129.0" y="581" width="29.1" height="15.0" fill="rgb(214,140,1)" rx="2" ry="2" />
<text  x="132.00" y="591.5" >Re..</text>
</g>
<g >
<title>PostmasterMain (1,140,000,000 samples, 87.76%)</title><rect x="17.3" y="965" width="1035.5" height="15.0" fill="rgb(232,161,10)" rx="2" ry="2" />
<text  x="20.27" y="975.5" >PostmasterMain</text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="692.2" y="293" width="0.9" height="15.0" fill="rgb(229,203,17)" rx="2" ry="2" />
<text  x="695.20" y="303.5" ></text>
</g>
<g >
<title>LockRelease (1,000,000 samples, 0.08%)</title><rect x="289.8" y="501" width="0.9" height="15.0" fill="rgb(229,76,30)" rx="2" ry="2" />
<text  x="292.78" y="511.5" ></text>
</g>
<g >
<title>SearchCatCache4 (2,000,000 samples, 0.15%)</title><rect x="798.5" y="453" width="1.8" height="15.0" fill="rgb(250,54,48)" rx="2" ry="2" />
<text  x="801.48" y="463.5" ></text>
</g>
<g >
<title>fetch_att (1,000,000 samples, 0.08%)</title><rect x="146.3" y="437" width="0.9" height="15.0" fill="rgb(240,172,0)" rx="2" ry="2" />
<text  x="149.26" y="447.5" ></text>
</g>
<g >
<title>SearchSysCache4 (5,000,000 samples, 0.38%)</title><rect x="680.4" y="421" width="4.5" height="15.0" fill="rgb(210,202,18)" rx="2" ry="2" />
<text  x="683.39" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,000,000 samples, 0.08%)</title><rect x="417.9" y="165" width="0.9" height="15.0" fill="rgb(250,222,13)" rx="2" ry="2" />
<text  x="420.87" y="175.5" ></text>
</g>
<g >
<title>ReadBuffer_common (3,000,000 samples, 0.23%)</title><rect x="147.2" y="405" width="2.7" height="15.0" fill="rgb(209,156,51)" rx="2" ry="2" />
<text  x="150.17" y="415.5" ></text>
</g>
<g >
<title>PortalRunUtility (1,132,000,000 samples, 87.14%)</title><rect x="18.2" y="837" width="1028.3" height="15.0" fill="rgb(226,60,35)" rx="2" ry="2" />
<text  x="21.18" y="847.5" >PortalRunUtility</text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="827.6" y="421" width="0.9" height="15.0" fill="rgb(211,222,49)" rx="2" ry="2" />
<text  x="830.55" y="431.5" ></text>
</g>
<g >
<title>add_paths_to_append_rel (4,000,000 samples, 0.31%)</title><rect x="603.2" y="597" width="3.6" height="15.0" fill="rgb(234,118,44)" rx="2" ry="2" />
<text  x="606.18" y="607.5" ></text>
</g>
<g >
<title>index_endscan (1,000,000 samples, 0.08%)</title><rect x="524.1" y="517" width="1.0" height="15.0" fill="rgb(242,118,43)" rx="2" ry="2" />
<text  x="527.15" y="527.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,000,000 samples, 0.23%)</title><rect x="47.2" y="373" width="2.8" height="15.0" fill="rgb(213,147,46)" rx="2" ry="2" />
<text  x="50.24" y="383.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="454.2" y="277" width="0.9" height="15.0" fill="rgb(210,215,10)" rx="2" ry="2" />
<text  x="457.20" y="287.5" ></text>
</g>
<g >
<title>index_fetch_heap (4,000,000 samples, 0.31%)</title><rect x="62.7" y="405" width="3.6" height="15.0" fill="rgb(240,30,27)" rx="2" ry="2" />
<text  x="65.69" y="415.5" ></text>
</g>
<g >
<title>UnpinBuffer (1,000,000 samples, 0.08%)</title><rect x="568.7" y="453" width="0.9" height="15.0" fill="rgb(217,128,23)" rx="2" ry="2" />
<text  x="571.66" y="463.5" ></text>
</g>
<g >
<title>rcu_core (1,000,000 samples, 0.08%)</title><rect x="972.9" y="181" width="0.9" height="15.0" fill="rgb(207,11,44)" rx="2" ry="2" />
<text  x="975.89" y="191.5" ></text>
</g>
<g >
<title>SetupLockInTable (1,000,000 samples, 0.08%)</title><rect x="437.9" y="357" width="0.9" height="15.0" fill="rgb(245,190,35)" rx="2" ry="2" />
<text  x="440.85" y="367.5" ></text>
</g>
<g >
<title>table_slot_create (1,000,000 samples, 0.08%)</title><rect x="327.9" y="485" width="0.9" height="15.0" fill="rgb(217,152,9)" rx="2" ry="2" />
<text  x="330.94" y="495.5" ></text>
</g>
<g >
<title>ReleaseSysCache (2,000,000 samples, 0.15%)</title><rect x="883.0" y="501" width="1.8" height="15.0" fill="rgb(241,128,1)" rx="2" ry="2" />
<text  x="885.96" y="511.5" ></text>
</g>
<g >
<title>genericcostestimate (8,000,000 samples, 0.62%)</title><rect x="690.4" y="421" width="7.3" height="15.0" fill="rgb(221,111,34)" rx="2" ry="2" />
<text  x="693.38" y="431.5" ></text>
</g>
<g >
<title>list_concat_copy (2,000,000 samples, 0.15%)</title><rect x="728.5" y="533" width="1.9" height="15.0" fill="rgb(226,84,1)" rx="2" ry="2" />
<text  x="731.54" y="543.5" ></text>
</g>
<g >
<title>pfree (1,000,000 samples, 0.08%)</title><rect x="391.5" y="357" width="0.9" height="15.0" fill="rgb(229,70,53)" rx="2" ry="2" />
<text  x="394.52" y="367.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,000,000 samples, 0.15%)</title><rect x="54.5" y="373" width="1.8" height="15.0" fill="rgb(227,0,35)" rx="2" ry="2" />
<text  x="57.51" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="969.3" y="229" width="0.9" height="15.0" fill="rgb(226,77,10)" rx="2" ry="2" />
<text  x="972.26" y="239.5" ></text>
</g>
<g >
<title>ExecClearTuple (1,000,000 samples, 0.08%)</title><rect x="568.7" y="501" width="0.9" height="15.0" fill="rgb(243,58,20)" rx="2" ry="2" />
<text  x="571.66" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,000,000 samples, 0.15%)</title><rect x="562.3" y="341" width="1.8" height="15.0" fill="rgb(210,46,54)" rx="2" ry="2" />
<text  x="565.30" y="351.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (2,000,000 samples, 0.15%)</title><rect x="135.4" y="517" width="1.8" height="15.0" fill="rgb(209,89,48)" rx="2" ry="2" />
<text  x="138.36" y="527.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="728.5" y="437" width="0.9" height="15.0" fill="rgb(246,155,36)" rx="2" ry="2" />
<text  x="731.54" y="447.5" ></text>
</g>
<g >
<title>hash_bytes (2,000,000 samples, 0.15%)</title><rect x="298.9" y="453" width="1.8" height="15.0" fill="rgb(235,54,1)" rx="2" ry="2" />
<text  x="301.87" y="463.5" ></text>
</g>
<g >
<title>__mod_node_page_state (1,000,000 samples, 0.08%)</title><rect x="1179.1" y="837" width="0.9" height="15.0" fill="rgb(236,137,36)" rx="2" ry="2" />
<text  x="1182.10" y="847.5" ></text>
</g>
<g >
<title>relation_open (7,000,000 samples, 0.54%)</title><rect x="422.4" y="389" width="6.4" height="15.0" fill="rgb(225,18,11)" rx="2" ry="2" />
<text  x="425.41" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (3,000,000 samples, 0.23%)</title><rect x="664.9" y="341" width="2.8" height="15.0" fill="rgb(206,168,35)" rx="2" ry="2" />
<text  x="667.95" y="351.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (3,000,000 samples, 0.23%)</title><rect x="645.0" y="405" width="2.7" height="15.0" fill="rgb(224,185,21)" rx="2" ry="2" />
<text  x="647.97" y="415.5" ></text>
</g>
<g >
<title>inet_release (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="869" width="1.0" height="15.0" fill="rgb(250,126,49)" rx="2" ry="2" />
<text  x="1187.55" y="879.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="702.2" y="309" width="0.9" height="15.0" fill="rgb(252,175,4)" rx="2" ry="2" />
<text  x="705.19" y="319.5" ></text>
</g>
<g >
<title>index_getattr (1,000,000 samples, 0.08%)</title><rect x="585.9" y="405" width="0.9" height="15.0" fill="rgb(208,87,52)" rx="2" ry="2" />
<text  x="588.92" y="415.5" ></text>
</g>
<g >
<title>genericcostestimate (5,000,000 samples, 0.38%)</title><rect x="805.8" y="469" width="4.5" height="15.0" fill="rgb(241,201,52)" rx="2" ry="2" />
<text  x="808.75" y="479.5" ></text>
</g>
<g >
<title>file_update_time (1,000,000 samples, 0.08%)</title><rect x="254.4" y="341" width="0.9" height="15.0" fill="rgb(218,94,17)" rx="2" ry="2" />
<text  x="257.36" y="351.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (3,000,000 samples, 0.23%)</title><rect x="466.9" y="453" width="2.7" height="15.0" fill="rgb(238,166,42)" rx="2" ry="2" />
<text  x="469.92" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (36,000,000 samples, 2.77%)</title><rect x="211.7" y="277" width="32.7" height="15.0" fill="rgb(243,44,31)" rx="2" ry="2" />
<text  x="214.66" y="287.5" >ha..</text>
</g>
<g >
<title>SearchCatCacheInternal (3,000,000 samples, 0.23%)</title><rect x="682.2" y="389" width="2.7" height="15.0" fill="rgb(233,95,17)" rx="2" ry="2" />
<text  x="685.21" y="399.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (1,000,000 samples, 0.08%)</title><rect x="446.0" y="357" width="0.9" height="15.0" fill="rgb(232,125,48)" rx="2" ry="2" />
<text  x="449.03" y="367.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (1,000,000 samples, 0.08%)</title><rect x="526.0" y="405" width="0.9" height="15.0" fill="rgb(225,116,35)" rx="2" ry="2" />
<text  x="528.97" y="415.5" ></text>
</g>
<g >
<title>query_planner (1,105,000,000 samples, 85.07%)</title><rect x="42.7" y="677" width="1003.8" height="15.0" fill="rgb(216,142,40)" rx="2" ry="2" />
<text  x="45.70" y="687.5" >query_planner</text>
</g>
<g >
<title>SearchSysCacheList (1,000,000 samples, 0.08%)</title><rect x="676.8" y="421" width="0.9" height="15.0" fill="rgb(238,94,16)" rx="2" ry="2" />
<text  x="679.76" y="431.5" ></text>
</g>
<g >
<title>_mdfd_getseg (1,000,000 samples, 0.08%)</title><rect x="252.5" y="469" width="0.9" height="15.0" fill="rgb(227,37,46)" rx="2" ry="2" />
<text  x="255.54" y="479.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="120.8" y="453" width="0.9" height="15.0" fill="rgb(217,155,17)" rx="2" ry="2" />
<text  x="123.82" y="463.5" ></text>
</g>
<g >
<title>int4hashfast (1,000,000 samples, 0.08%)</title><rect x="1043.7" y="437" width="1.0" height="15.0" fill="rgb(226,224,52)" rx="2" ry="2" />
<text  x="1046.75" y="447.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="65.4" y="229" width="0.9" height="15.0" fill="rgb(220,203,41)" rx="2" ry="2" />
<text  x="68.41" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (79,000,000 samples, 6.08%)</title><rect x="1100.1" y="981" width="71.7" height="15.0" fill="rgb(240,92,44)" rx="2" ry="2" />
<text  x="1103.07" y="991.5" >exc_page..</text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="53.6" y="229" width="0.9" height="15.0" fill="rgb(232,30,40)" rx="2" ry="2" />
<text  x="56.60" y="239.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.1] (1,000,000 samples, 0.08%)</title><rect x="10.9" y="981" width="0.9" height="15.0" fill="rgb(216,172,40)" rx="2" ry="2" />
<text  x="13.91" y="991.5" ></text>
</g>
<g >
<title>get_mergejoin_opfamilies (7,000,000 samples, 0.54%)</title><rect x="674.0" y="437" width="6.4" height="15.0" fill="rgb(219,196,41)" rx="2" ry="2" />
<text  x="677.03" y="447.5" ></text>
</g>
<g >
<title>LockRelationOid (6,000,000 samples, 0.46%)</title><rect x="503.3" y="581" width="5.4" height="15.0" fill="rgb(251,43,32)" rx="2" ry="2" />
<text  x="506.26" y="591.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="645.9" y="293" width="1.8" height="15.0" fill="rgb(223,68,20)" rx="2" ry="2" />
<text  x="648.87" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,000,000 samples, 0.08%)</title><rect x="1089.2" y="981" width="0.9" height="15.0" fill="rgb(217,30,36)" rx="2" ry="2" />
<text  x="1092.17" y="991.5" ></text>
</g>
<g >
<title>estimate_rel_size (15,000,000 samples, 1.15%)</title><rect x="257.1" y="581" width="13.6" height="15.0" fill="rgb(239,225,30)" rx="2" ry="2" />
<text  x="260.08" y="591.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="376.1" y="293" width="0.9" height="15.0" fill="rgb(234,194,17)" rx="2" ry="2" />
<text  x="379.08" y="303.5" ></text>
</g>
<g >
<title>clear_page_orig (2,000,000 samples, 0.15%)</title><rect x="324.3" y="293" width="1.8" height="15.0" fill="rgb(236,15,16)" rx="2" ry="2" />
<text  x="327.30" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="150.8" y="469" width="0.9" height="15.0" fill="rgb(234,47,34)" rx="2" ry="2" />
<text  x="153.80" y="479.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="177.1" y="469" width="1.0" height="15.0" fill="rgb(249,67,0)" rx="2" ry="2" />
<text  x="180.14" y="479.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,000,000 samples, 0.23%)</title><rect x="693.1" y="325" width="2.7" height="15.0" fill="rgb(246,77,28)" rx="2" ry="2" />
<text  x="696.11" y="335.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="824.8" y="357" width="0.9" height="15.0" fill="rgb(205,157,39)" rx="2" ry="2" />
<text  x="827.83" y="367.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="49.1" y="277" width="0.9" height="15.0" fill="rgb(221,225,40)" rx="2" ry="2" />
<text  x="52.06" y="287.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="645" width="1.0" height="15.0" fill="rgb(224,135,15)" rx="2" ry="2" />
<text  x="1187.55" y="655.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,000,000 samples, 0.08%)</title><rect x="1032.8" y="389" width="1.0" height="15.0" fill="rgb(243,30,0)" rx="2" ry="2" />
<text  x="1035.85" y="399.5" ></text>
</g>
<g >
<title>_bt_binsrch (2,000,000 samples, 0.15%)</title><rect x="446.9" y="357" width="1.9" height="15.0" fill="rgb(221,161,51)" rx="2" ry="2" />
<text  x="449.94" y="367.5" ></text>
</g>
<g >
<title>make_one_partition_rbound (2,000,000 samples, 0.15%)</title><rect x="77.2" y="469" width="1.8" height="15.0" fill="rgb(247,204,31)" rx="2" ry="2" />
<text  x="80.22" y="479.5" ></text>
</g>
<g >
<title>LockRelationOid (6,000,000 samples, 0.46%)</title><rect x="457.8" y="405" width="5.5" height="15.0" fill="rgb(210,107,14)" rx="2" ry="2" />
<text  x="460.84" y="415.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="127.2" y="501" width="0.9" height="15.0" fill="rgb(209,190,39)" rx="2" ry="2" />
<text  x="130.18" y="511.5" ></text>
</g>
<g >
<title>index_close (1,000,000 samples, 0.08%)</title><rect x="995.6" y="293" width="0.9" height="15.0" fill="rgb(217,54,2)" rx="2" ry="2" />
<text  x="998.60" y="303.5" ></text>
</g>
<g >
<title>btgettuple (23,000,000 samples, 1.77%)</title><rect x="399.7" y="357" width="20.9" height="15.0" fill="rgb(209,52,32)" rx="2" ry="2" />
<text  x="402.70" y="367.5" ></text>
</g>
<g >
<title>clear_page_orig (3,000,000 samples, 0.23%)</title><rect x="1187.3" y="853" width="2.7" height="15.0" fill="rgb(208,133,47)" rx="2" ry="2" />
<text  x="1190.27" y="863.5" ></text>
</g>
<g >
<title>__open64 (33,000,000 samples, 2.54%)</title><rect x="1053.7" y="997" width="30.0" height="15.0" fill="rgb(225,90,28)" rx="2" ry="2" />
<text  x="1056.74" y="1007.5" >__..</text>
</g>
<g >
<title>palloc0 (3,000,000 samples, 0.23%)</title><rect x="645.0" y="341" width="2.7" height="15.0" fill="rgb(232,111,40)" rx="2" ry="2" />
<text  x="647.97" y="351.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (1,000,000 samples, 0.08%)</title><rect x="695.8" y="405" width="0.9" height="15.0" fill="rgb(244,152,31)" rx="2" ry="2" />
<text  x="698.84" y="415.5" ></text>
</g>
<g >
<title>systable_getnext (8,000,000 samples, 0.62%)</title><rect x="996.5" y="309" width="7.3" height="15.0" fill="rgb(243,168,17)" rx="2" ry="2" />
<text  x="999.51" y="319.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,000,000 samples, 0.15%)</title><rect x="320.7" y="357" width="1.8" height="15.0" fill="rgb(220,116,12)" rx="2" ry="2" />
<text  x="323.67" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="914.8" y="245" width="1.8" height="15.0" fill="rgb(219,178,12)" rx="2" ry="2" />
<text  x="917.76" y="255.5" ></text>
</g>
<g >
<title>BufferGetPage (1,000,000 samples, 0.08%)</title><rect x="488.7" y="405" width="0.9" height="15.0" fill="rgb(217,214,26)" rx="2" ry="2" />
<text  x="491.72" y="415.5" ></text>
</g>
<g >
<title>SearchCatCacheList (1,000,000 samples, 0.08%)</title><rect x="676.8" y="405" width="0.9" height="15.0" fill="rgb(234,79,27)" rx="2" ry="2" />
<text  x="679.76" y="415.5" ></text>
</g>
<g >
<title>security_file_open (4,000,000 samples, 0.31%)</title><rect x="1064.6" y="869" width="3.7" height="15.0" fill="rgb(250,224,37)" rx="2" ry="2" />
<text  x="1067.64" y="879.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (1,000,000 samples, 0.08%)</title><rect x="328.8" y="421" width="1.0" height="15.0" fill="rgb(220,26,35)" rx="2" ry="2" />
<text  x="331.85" y="431.5" ></text>
</g>
<g >
<title>contain_vars_of_level (2,000,000 samples, 0.15%)</title><rect x="101.7" y="581" width="1.9" height="15.0" fill="rgb(216,167,33)" rx="2" ry="2" />
<text  x="104.75" y="591.5" ></text>
</g>
<g >
<title>element_alloc (1,000,000 samples, 0.08%)</title><rect x="158.1" y="485" width="0.9" height="15.0" fill="rgb(250,146,35)" rx="2" ry="2" />
<text  x="161.07" y="495.5" ></text>
</g>
<g >
<title>op_in_opfamily (1,000,000 samples, 0.08%)</title><rect x="853.0" y="469" width="0.9" height="15.0" fill="rgb(240,212,9)" rx="2" ry="2" />
<text  x="855.99" y="479.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos32 (1,000,000 samples, 0.08%)</title><rect x="765.8" y="357" width="0.9" height="15.0" fill="rgb(211,225,35)" rx="2" ry="2" />
<text  x="768.78" y="367.5" ></text>
</g>
<g >
<title>ScanPgRelation (23,000,000 samples, 1.77%)</title><rect x="472.4" y="517" width="20.9" height="15.0" fill="rgb(222,67,34)" rx="2" ry="2" />
<text  x="475.37" y="527.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="509.6" y="517" width="0.9" height="15.0" fill="rgb(219,107,31)" rx="2" ry="2" />
<text  x="512.62" y="527.5" ></text>
</g>
<g >
<title>UnlockRelationId (1,000,000 samples, 0.08%)</title><rect x="60.0" y="405" width="0.9" height="15.0" fill="rgb(223,76,29)" rx="2" ry="2" />
<text  x="62.96" y="415.5" ></text>
</g>
<g >
<title>index_getattr (1,000,000 samples, 0.08%)</title><rect x="406.1" y="293" width="0.9" height="15.0" fill="rgb(248,210,8)" rx="2" ry="2" />
<text  x="409.06" y="303.5" ></text>
</g>
<g >
<title>select_equality_operator (1,000,000 samples, 0.08%)</title><rect x="838.5" y="517" width="0.9" height="15.0" fill="rgb(216,66,46)" rx="2" ry="2" />
<text  x="841.45" y="527.5" ></text>
</g>
<g >
<title>palloc0 (4,000,000 samples, 0.31%)</title><rect x="764.0" y="389" width="3.6" height="15.0" fill="rgb(239,107,45)" rx="2" ry="2" />
<text  x="766.96" y="399.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="54.5" y="357" width="0.9" height="15.0" fill="rgb(223,63,54)" rx="2" ry="2" />
<text  x="57.51" y="367.5" ></text>
</g>
<g >
<title>ReadBuffer (2,000,000 samples, 0.15%)</title><rect x="71.8" y="309" width="1.8" height="15.0" fill="rgb(244,169,39)" rx="2" ry="2" />
<text  x="74.77" y="319.5" ></text>
</g>
<g >
<title>__getblk_gfp (2,000,000 samples, 0.15%)</title><rect x="248.9" y="245" width="1.8" height="15.0" fill="rgb(226,152,41)" rx="2" ry="2" />
<text  x="251.91" y="255.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="796.7" y="373" width="1.8" height="15.0" fill="rgb(220,201,33)" rx="2" ry="2" />
<text  x="799.67" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,000,000 samples, 0.15%)</title><rect x="324.3" y="389" width="1.8" height="15.0" fill="rgb(238,110,40)" rx="2" ry="2" />
<text  x="327.30" y="399.5" ></text>
</g>
<g >
<title>index_fetch_heap (7,000,000 samples, 0.54%)</title><rect x="393.3" y="373" width="6.4" height="15.0" fill="rgb(242,44,33)" rx="2" ry="2" />
<text  x="396.34" y="383.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (4,000,000 samples, 0.31%)</title><rect x="62.7" y="389" width="3.6" height="15.0" fill="rgb(230,220,45)" rx="2" ry="2" />
<text  x="65.69" y="399.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="595.0" y="485" width="0.9" height="15.0" fill="rgb(227,177,2)" rx="2" ry="2" />
<text  x="598.00" y="495.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="450.6" y="213" width="0.9" height="15.0" fill="rgb(245,201,44)" rx="2" ry="2" />
<text  x="453.57" y="223.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="1001.1" y="149" width="0.9" height="15.0" fill="rgb(238,146,17)" rx="2" ry="2" />
<text  x="1004.05" y="159.5" ></text>
</g>
<g >
<title>xas_find (1,000,000 samples, 0.08%)</title><rect x="142.6" y="389" width="0.9" height="15.0" fill="rgb(245,104,46)" rx="2" ry="2" />
<text  x="145.63" y="399.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (1,000,000 samples, 0.08%)</title><rect x="524.1" y="485" width="1.0" height="15.0" fill="rgb(240,161,42)" rx="2" ry="2" />
<text  x="527.15" y="495.5" ></text>
</g>
<g >
<title>get_tablespace_page_costs (2,000,000 samples, 0.15%)</title><rect x="726.7" y="517" width="1.8" height="15.0" fill="rgb(237,20,19)" rx="2" ry="2" />
<text  x="729.72" y="527.5" ></text>
</g>
<g >
<title>index_getnext_slot (1,000,000 samples, 0.08%)</title><rect x="42.7" y="357" width="0.9" height="15.0" fill="rgb(219,61,17)" rx="2" ry="2" />
<text  x="45.70" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="495.1" y="485" width="0.9" height="15.0" fill="rgb(220,172,2)" rx="2" ry="2" />
<text  x="498.08" y="495.5" ></text>
</g>
<g >
<title>index_beginscan (2,000,000 samples, 0.15%)</title><rect x="275.3" y="533" width="1.8" height="15.0" fill="rgb(238,96,41)" rx="2" ry="2" />
<text  x="278.25" y="543.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="800.3" y="293" width="0.9" height="15.0" fill="rgb(248,120,51)" rx="2" ry="2" />
<text  x="803.30" y="303.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,000,000 samples, 0.08%)</title><rect x="995.6" y="245" width="0.9" height="15.0" fill="rgb(207,141,46)" rx="2" ry="2" />
<text  x="998.60" y="255.5" ></text>
</g>
<g >
<title>transformBoolExpr (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="677" width="0.9" height="15.0" fill="rgb(227,204,7)" rx="2" ry="2" />
<text  x="1052.20" y="687.5" ></text>
</g>
<g >
<title>task_work_run (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="933" width="1.0" height="15.0" fill="rgb(222,71,35)" rx="2" ry="2" />
<text  x="1187.55" y="943.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="766.7" y="357" width="0.9" height="15.0" fill="rgb(219,222,29)" rx="2" ry="2" />
<text  x="769.69" y="367.5" ></text>
</g>
<g >
<title>bms_add_members (1,000,000 samples, 0.08%)</title><rect x="840.3" y="485" width="0.9" height="15.0" fill="rgb(221,155,32)" rx="2" ry="2" />
<text  x="843.27" y="495.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="608.6" y="405" width="0.9" height="15.0" fill="rgb(247,29,49)" rx="2" ry="2" />
<text  x="611.63" y="415.5" ></text>
</g>
<g >
<title>pfree (2,000,000 samples, 0.15%)</title><rect x="282.5" y="501" width="1.8" height="15.0" fill="rgb(253,210,46)" rx="2" ry="2" />
<text  x="285.52" y="511.5" ></text>
</g>
<g >
<title>get_opfamily_member (2,000,000 samples, 0.15%)</title><rect x="707.6" y="389" width="1.9" height="15.0" fill="rgb(234,229,14)" rx="2" ry="2" />
<text  x="710.64" y="399.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="801.2" y="469" width="0.9" height="15.0" fill="rgb(234,75,36)" rx="2" ry="2" />
<text  x="804.21" y="479.5" ></text>
</g>
<g >
<title>func_volatile (1,000,000 samples, 0.08%)</title><rect x="689.5" y="309" width="0.9" height="15.0" fill="rgb(208,84,23)" rx="2" ry="2" />
<text  x="692.48" y="319.5" ></text>
</g>
<g >
<title>LockReleaseAll (3,000,000 samples, 0.23%)</title><rect x="1046.5" y="773" width="2.7" height="15.0" fill="rgb(238,103,36)" rx="2" ry="2" />
<text  x="1049.47" y="783.5" ></text>
</g>
<g >
<title>dostr (1,000,000 samples, 0.08%)</title><rect x="262.5" y="357" width="0.9" height="15.0" fill="rgb(227,190,9)" rx="2" ry="2" />
<text  x="265.53" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="679.5" y="389" width="0.9" height="15.0" fill="rgb(223,175,10)" rx="2" ry="2" />
<text  x="682.48" y="399.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="1008.3" y="229" width="0.9" height="15.0" fill="rgb(221,161,13)" rx="2" ry="2" />
<text  x="1011.32" y="239.5" ></text>
</g>
<g >
<title>memcpy@plt (1,000,000 samples, 0.08%)</title><rect x="729.4" y="517" width="1.0" height="15.0" fill="rgb(239,141,0)" rx="2" ry="2" />
<text  x="732.45" y="527.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="132.6" y="485" width="0.9" height="15.0" fill="rgb(235,172,3)" rx="2" ry="2" />
<text  x="135.63" y="495.5" ></text>
</g>
<g >
<title>pull_varnos (1,000,000 samples, 0.08%)</title><rect x="829.4" y="453" width="0.9" height="15.0" fill="rgb(212,112,27)" rx="2" ry="2" />
<text  x="832.37" y="463.5" ></text>
</g>
<g >
<title>hash_bytes (2,000,000 samples, 0.15%)</title><rect x="156.3" y="469" width="1.8" height="15.0" fill="rgb(231,57,53)" rx="2" ry="2" />
<text  x="159.25" y="479.5" ></text>
</g>
<g >
<title>_readPartitionRangeDatum (9,000,000 samples, 0.69%)</title><rect x="82.7" y="373" width="8.1" height="15.0" fill="rgb(205,9,15)" rx="2" ry="2" />
<text  x="85.67" y="383.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (1,000,000 samples, 0.08%)</title><rect x="544.1" y="437" width="0.9" height="15.0" fill="rgb(245,46,53)" rx="2" ry="2" />
<text  x="547.13" y="447.5" ></text>
</g>
<g >
<title>_bt_getroot (4,000,000 samples, 0.31%)</title><rect x="450.6" y="341" width="3.6" height="15.0" fill="rgb(232,145,11)" rx="2" ry="2" />
<text  x="453.57" y="351.5" ></text>
</g>
<g >
<title>relation_close (4,000,000 samples, 0.31%)</title><rect x="940.2" y="293" width="3.6" height="15.0" fill="rgb(211,116,37)" rx="2" ry="2" />
<text  x="943.19" y="303.5" ></text>
</g>
<g >
<title>lseek@plt (1,000,000 samples, 0.08%)</title><rect x="161.7" y="517" width="0.9" height="15.0" fill="rgb(220,19,4)" rx="2" ry="2" />
<text  x="164.70" y="527.5" ></text>
</g>
<g >
<title>create_join_clause (17,000,000 samples, 1.31%)</title><rect x="818.5" y="517" width="15.4" height="15.0" fill="rgb(231,2,31)" rx="2" ry="2" />
<text  x="821.47" y="527.5" ></text>
</g>
<g >
<title>find_childrel_parents (2,000,000 samples, 0.15%)</title><rect x="858.4" y="533" width="1.9" height="15.0" fill="rgb(240,4,47)" rx="2" ry="2" />
<text  x="861.44" y="543.5" ></text>
</g>
<g >
<title>index_open (4,000,000 samples, 0.31%)</title><rect x="1029.2" y="437" width="3.6" height="15.0" fill="rgb(239,97,1)" rx="2" ry="2" />
<text  x="1032.21" y="447.5" ></text>
</g>
<g >
<title>systable_getnext (14,000,000 samples, 1.08%)</title><rect x="139.0" y="565" width="12.7" height="15.0" fill="rgb(223,2,16)" rx="2" ry="2" />
<text  x="141.99" y="575.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,000,000 samples, 0.23%)</title><rect x="1012.9" y="469" width="2.7" height="15.0" fill="rgb(220,164,12)" rx="2" ry="2" />
<text  x="1015.86" y="479.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="570.5" y="453" width="1.8" height="15.0" fill="rgb(210,38,3)" rx="2" ry="2" />
<text  x="573.48" y="463.5" ></text>
</g>
<g >
<title>is_notclause (1,000,000 samples, 0.08%)</title><rect x="1021.0" y="517" width="0.9" height="15.0" fill="rgb(241,140,19)" rx="2" ry="2" />
<text  x="1024.04" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="827.6" y="405" width="0.9" height="15.0" fill="rgb(234,57,9)" rx="2" ry="2" />
<text  x="830.55" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,000,000 samples, 0.15%)</title><rect x="104.5" y="533" width="1.8" height="15.0" fill="rgb(227,99,47)" rx="2" ry="2" />
<text  x="107.47" y="543.5" ></text>
</g>
<g >
<title>do_user_addr_fault (14,000,000 samples, 1.08%)</title><rect x="978.3" y="213" width="12.8" height="15.0" fill="rgb(243,84,19)" rx="2" ry="2" />
<text  x="981.34" y="223.5" ></text>
</g>
<g >
<title>ReadBuffer_common (2,000,000 samples, 0.15%)</title><rect x="334.3" y="373" width="1.8" height="15.0" fill="rgb(206,130,18)" rx="2" ry="2" />
<text  x="337.30" y="383.5" ></text>
</g>
<g >
<title>pairingheap_remove (1,000,000 samples, 0.08%)</title><rect x="384.3" y="357" width="0.9" height="15.0" fill="rgb(219,160,0)" rx="2" ry="2" />
<text  x="387.26" y="367.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,000,000 samples, 0.08%)</title><rect x="111.7" y="485" width="0.9" height="15.0" fill="rgb(217,221,53)" rx="2" ry="2" />
<text  x="114.74" y="495.5" ></text>
</g>
<g >
<title>murmurhash32 (1,000,000 samples, 0.08%)</title><rect x="1043.7" y="421" width="1.0" height="15.0" fill="rgb(217,89,47)" rx="2" ry="2" />
<text  x="1046.75" y="431.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="581" width="1.0" height="15.0" fill="rgb(234,160,23)" rx="2" ry="2" />
<text  x="1187.55" y="591.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="326.1" y="389" width="0.9" height="15.0" fill="rgb(234,227,28)" rx="2" ry="2" />
<text  x="329.12" y="399.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="894.8" y="565" width="0.9" height="15.0" fill="rgb(235,188,8)" rx="2" ry="2" />
<text  x="897.77" y="575.5" ></text>
</g>
<g >
<title>smgrread (78,000,000 samples, 6.00%)</title><rect x="182.6" y="501" width="70.8" height="15.0" fill="rgb(216,217,33)" rx="2" ry="2" />
<text  x="185.59" y="511.5" >smgrread</text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="132.6" y="373" width="0.9" height="15.0" fill="rgb(208,114,48)" rx="2" ry="2" />
<text  x="135.63" y="383.5" ></text>
</g>
<g >
<title>PointerGetDatum (1,000,000 samples, 0.08%)</title><rect x="883.9" y="453" width="0.9" height="15.0" fill="rgb(230,134,30)" rx="2" ry="2" />
<text  x="886.87" y="463.5" ></text>
</g>
<g >
<title>LockRelease (4,000,000 samples, 0.31%)</title><rect x="923.8" y="261" width="3.7" height="15.0" fill="rgb(234,204,17)" rx="2" ry="2" />
<text  x="926.84" y="271.5" ></text>
</g>
<g >
<title>add_other_rels_to_query (557,000,000 samples, 42.88%)</title><rect x="94.5" y="661" width="506.0" height="15.0" fill="rgb(239,49,6)" rx="2" ry="2" />
<text  x="97.48" y="671.5" >add_other_rels_to_query</text>
</g>
<g >
<title>ReadBuffer (2,000,000 samples, 0.15%)</title><rect x="933.8" y="181" width="1.9" height="15.0" fill="rgb(209,227,32)" rx="2" ry="2" />
<text  x="936.83" y="191.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="766.7" y="277" width="0.9" height="15.0" fill="rgb(212,149,41)" rx="2" ry="2" />
<text  x="769.69" y="287.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="278.9" y="517" width="0.9" height="15.0" fill="rgb(227,122,50)" rx="2" ry="2" />
<text  x="281.88" y="527.5" ></text>
</g>
<g >
<title>index_beginscan_internal (1,000,000 samples, 0.08%)</title><rect x="473.3" y="469" width="0.9" height="15.0" fill="rgb(226,7,22)" rx="2" ry="2" />
<text  x="476.28" y="479.5" ></text>
</g>
<g >
<title>RegisterSnapshot (1,000,000 samples, 0.08%)</title><rect x="517.8" y="517" width="0.9" height="15.0" fill="rgb(219,8,48)" rx="2" ry="2" />
<text  x="520.79" y="527.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="299.8" y="437" width="0.9" height="15.0" fill="rgb(216,168,28)" rx="2" ry="2" />
<text  x="302.78" y="447.5" ></text>
</g>
<g >
<title>prep_new_page (3,000,000 samples, 0.23%)</title><rect x="369.7" y="229" width="2.7" height="15.0" fill="rgb(214,169,50)" rx="2" ry="2" />
<text  x="372.72" y="239.5" ></text>
</g>
<g >
<title>find_get_entry (2,000,000 samples, 0.15%)</title><rect x="244.4" y="341" width="1.8" height="15.0" fill="rgb(211,29,37)" rx="2" ry="2" />
<text  x="247.36" y="351.5" ></text>
</g>
<g >
<title>net_rx_action (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="677" width="1.0" height="15.0" fill="rgb(241,64,19)" rx="2" ry="2" />
<text  x="1187.55" y="687.5" ></text>
</g>
<g >
<title>SerializationNeededForRead (1,000,000 samples, 0.08%)</title><rect x="399.7" y="309" width="0.9" height="15.0" fill="rgb(216,109,38)" rx="2" ry="2" />
<text  x="402.70" y="319.5" ></text>
</g>
<g >
<title>btoidcmp (1,000,000 samples, 0.08%)</title><rect x="585.0" y="389" width="0.9" height="15.0" fill="rgb(236,179,28)" rx="2" ry="2" />
<text  x="588.01" y="399.5" ></text>
</g>
<g >
<title>get_opfamily_member (5,000,000 samples, 0.38%)</title><rect x="680.4" y="437" width="4.5" height="15.0" fill="rgb(214,23,40)" rx="2" ry="2" />
<text  x="683.39" y="447.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="701.3" y="229" width="0.9" height="15.0" fill="rgb(210,19,14)" rx="2" ry="2" />
<text  x="704.29" y="239.5" ></text>
</g>
<g >
<title>DatumGetInt16 (1,000,000 samples, 0.08%)</title><rect x="339.7" y="357" width="1.0" height="15.0" fill="rgb(252,210,32)" rx="2" ry="2" />
<text  x="342.75" y="367.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (4,000,000 samples, 0.31%)</title><rect x="560.5" y="437" width="3.6" height="15.0" fill="rgb(212,104,54)" rx="2" ry="2" />
<text  x="563.48" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="26.4" y="533" width="0.9" height="15.0" fill="rgb(254,218,48)" rx="2" ry="2" />
<text  x="29.35" y="543.5" ></text>
</g>
<g >
<title>get_restriction_qual_cost (1,000,000 samples, 0.08%)</title><rect x="608.6" y="501" width="0.9" height="15.0" fill="rgb(239,76,18)" rx="2" ry="2" />
<text  x="611.63" y="511.5" ></text>
</g>
<g >
<title>restriction_selectivity (1,000,000 samples, 0.08%)</title><rect x="688.6" y="373" width="0.9" height="15.0" fill="rgb(236,23,12)" rx="2" ry="2" />
<text  x="691.57" y="383.5" ></text>
</g>
<g >
<title>CleanUpLock (2,000,000 samples, 0.15%)</title><rect x="590.5" y="469" width="1.8" height="15.0" fill="rgb(243,76,20)" rx="2" ry="2" />
<text  x="593.46" y="479.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="148.1" y="373" width="0.9" height="15.0" fill="rgb(222,188,23)" rx="2" ry="2" />
<text  x="151.08" y="383.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref_cached (1,000,000 samples, 0.08%)</title><rect x="1051.0" y="789" width="0.9" height="15.0" fill="rgb(245,73,27)" rx="2" ry="2" />
<text  x="1054.02" y="799.5" ></text>
</g>
<g >
<title>LockReassignOwner (1,000,000 samples, 0.08%)</title><rect x="17.3" y="805" width="0.9" height="15.0" fill="rgb(206,113,28)" rx="2" ry="2" />
<text  x="20.27" y="815.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (3,000,000 samples, 0.23%)</title><rect x="1162.7" y="917" width="2.8" height="15.0" fill="rgb(233,199,48)" rx="2" ry="2" />
<text  x="1165.75" y="927.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="509.6" y="453" width="0.9" height="15.0" fill="rgb(225,99,22)" rx="2" ry="2" />
<text  x="512.62" y="463.5" ></text>
</g>
<g >
<title>BufTableLookup (1,000,000 samples, 0.08%)</title><rect x="396.1" y="245" width="0.9" height="15.0" fill="rgb(222,226,22)" rx="2" ry="2" />
<text  x="399.07" y="255.5" ></text>
</g>
<g >
<title>index_getnext_tid (16,000,000 samples, 1.23%)</title><rect x="530.5" y="501" width="14.5" height="15.0" fill="rgb(232,72,41)" rx="2" ry="2" />
<text  x="533.51" y="511.5" ></text>
</g>
<g >
<title>pgstat_prepare_io_time (1,000,000 samples, 0.08%)</title><rect x="181.7" y="501" width="0.9" height="15.0" fill="rgb(248,184,5)" rx="2" ry="2" />
<text  x="184.69" y="511.5" ></text>
</g>
<g >
<title>OidFunctionCall4Coll (1,000,000 samples, 0.08%)</title><rect x="691.3" y="341" width="0.9" height="15.0" fill="rgb(247,99,29)" rx="2" ry="2" />
<text  x="694.29" y="351.5" ></text>
</g>
<g >
<title>lappend_oid (1,000,000 samples, 0.08%)</title><rect x="825.7" y="453" width="0.9" height="15.0" fill="rgb(253,199,34)" rx="2" ry="2" />
<text  x="828.74" y="463.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="1003.8" y="181" width="0.9" height="15.0" fill="rgb(251,60,31)" rx="2" ry="2" />
<text  x="1006.78" y="191.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,000,000 samples, 0.08%)</title><rect x="404.2" y="293" width="1.0" height="15.0" fill="rgb(254,207,37)" rx="2" ry="2" />
<text  x="407.24" y="303.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,000,000 samples, 0.08%)</title><rect x="682.2" y="373" width="0.9" height="15.0" fill="rgb(226,199,23)" rx="2" ry="2" />
<text  x="685.21" y="383.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="150.8" y="405" width="0.9" height="15.0" fill="rgb(215,104,43)" rx="2" ry="2" />
<text  x="153.80" y="415.5" ></text>
</g>
<g >
<title>inode_permission.part.0 (1,000,000 samples, 0.08%)</title><rect x="1068.3" y="869" width="0.9" height="15.0" fill="rgb(250,186,39)" rx="2" ry="2" />
<text  x="1071.28" y="879.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (1,000,000 samples, 0.08%)</title><rect x="918.4" y="277" width="0.9" height="15.0" fill="rgb(225,66,5)" rx="2" ry="2" />
<text  x="921.39" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (14,000,000 samples, 1.08%)</title><rect x="978.3" y="245" width="12.8" height="15.0" fill="rgb(235,152,25)" rx="2" ry="2" />
<text  x="981.34" y="255.5" ></text>
</g>
<g >
<title>pg_strtok (2,000,000 samples, 0.15%)</title><rect x="85.4" y="293" width="1.8" height="15.0" fill="rgb(227,160,12)" rx="2" ry="2" />
<text  x="88.40" y="303.5" ></text>
</g>
<g >
<title>__alloc_fd (1,000,000 samples, 0.08%)</title><rect x="1055.6" y="917" width="0.9" height="15.0" fill="rgb(222,177,15)" rx="2" ry="2" />
<text  x="1058.56" y="927.5" ></text>
</g>
<g >
<title>table_slot_create (1,000,000 samples, 0.08%)</title><rect x="922.0" y="293" width="0.9" height="15.0" fill="rgb(249,163,27)" rx="2" ry="2" />
<text  x="925.02" y="303.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,000,000 samples, 0.23%)</title><rect x="693.1" y="341" width="2.7" height="15.0" fill="rgb(215,88,30)" rx="2" ry="2" />
<text  x="696.11" y="351.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (3,000,000 samples, 0.23%)</title><rect x="1076.5" y="901" width="2.7" height="15.0" fill="rgb(230,36,6)" rx="2" ry="2" />
<text  x="1079.45" y="911.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="825.7" y="405" width="0.9" height="15.0" fill="rgb(231,47,40)" rx="2" ry="2" />
<text  x="828.74" y="415.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (17,000,000 samples, 1.31%)</title><rect x="1028.3" y="469" width="15.4" height="15.0" fill="rgb(214,11,11)" rx="2" ry="2" />
<text  x="1031.31" y="479.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (1,000,000 samples, 0.08%)</title><rect x="931.1" y="197" width="0.9" height="15.0" fill="rgb(231,125,1)" rx="2" ry="2" />
<text  x="934.11" y="207.5" ></text>
</g>
<g >
<title>transformExprRecurse (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="693" width="0.9" height="15.0" fill="rgb(226,22,34)" rx="2" ry="2" />
<text  x="1052.20" y="703.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="919.3" y="165" width="0.9" height="15.0" fill="rgb(234,90,37)" rx="2" ry="2" />
<text  x="922.30" y="175.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="26.4" y="389" width="0.9" height="15.0" fill="rgb(213,175,33)" rx="2" ry="2" />
<text  x="29.35" y="399.5" ></text>
</g>
<g >
<title>list_concat_copy (1,000,000 samples, 0.08%)</title><rect x="612.3" y="533" width="0.9" height="15.0" fill="rgb(231,40,49)" rx="2" ry="2" />
<text  x="615.26" y="543.5" ></text>
</g>
<g >
<title>nodeRead (12,000,000 samples, 0.92%)</title><rect x="80.9" y="405" width="10.9" height="15.0" fill="rgb(245,25,49)" rx="2" ry="2" />
<text  x="83.85" y="415.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="709" width="1.0" height="15.0" fill="rgb(251,113,21)" rx="2" ry="2" />
<text  x="1187.55" y="719.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,000,000 samples, 0.08%)</title><rect x="419.7" y="197" width="0.9" height="15.0" fill="rgb(248,119,35)" rx="2" ry="2" />
<text  x="422.68" y="207.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="919.3" y="197" width="0.9" height="15.0" fill="rgb(232,195,52)" rx="2" ry="2" />
<text  x="922.30" y="207.5" ></text>
</g>
<g >
<title>_bt_getroot (3,000,000 samples, 0.23%)</title><rect x="999.2" y="213" width="2.8" height="15.0" fill="rgb(240,178,33)" rx="2" ry="2" />
<text  x="1002.24" y="223.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (4,000,000 samples, 0.31%)</title><rect x="1080.1" y="949" width="3.6" height="15.0" fill="rgb(248,40,32)" rx="2" ry="2" />
<text  x="1083.08" y="959.5" ></text>
</g>
<g >
<title>LockRelease (4,000,000 samples, 0.31%)</title><rect x="440.6" y="389" width="3.6" height="15.0" fill="rgb(205,169,45)" rx="2" ry="2" />
<text  x="443.58" y="399.5" ></text>
</g>
<g >
<title>LockReassignCurrentOwner (1,000,000 samples, 0.08%)</title><rect x="17.3" y="821" width="0.9" height="15.0" fill="rgb(206,16,26)" rx="2" ry="2" />
<text  x="20.27" y="831.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (2,000,000 samples, 0.15%)</title><rect x="781.2" y="277" width="1.8" height="15.0" fill="rgb(244,129,49)" rx="2" ry="2" />
<text  x="784.22" y="287.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="669.5" y="165" width="0.9" height="15.0" fill="rgb(220,30,48)" rx="2" ry="2" />
<text  x="672.49" y="175.5" ></text>
</g>
<g >
<title>ext4_mark_iloc_dirty (3,000,000 samples, 0.23%)</title><rect x="246.2" y="293" width="2.7" height="15.0" fill="rgb(248,22,0)" rx="2" ry="2" />
<text  x="249.18" y="303.5" ></text>
</g>
<g >
<title>func_volatile (1,000,000 samples, 0.08%)</title><rect x="823.9" y="389" width="0.9" height="15.0" fill="rgb(249,56,10)" rx="2" ry="2" />
<text  x="826.92" y="399.5" ></text>
</g>
<g >
<title>relation_open (6,000,000 samples, 0.46%)</title><rect x="560.5" y="501" width="5.4" height="15.0" fill="rgb(242,64,38)" rx="2" ry="2" />
<text  x="563.48" y="511.5" ></text>
</g>
<g >
<title>LockRelease (2,000,000 samples, 0.15%)</title><rect x="546.0" y="485" width="1.8" height="15.0" fill="rgb(253,111,40)" rx="2" ry="2" />
<text  x="548.95" y="495.5" ></text>
</g>
<g >
<title>index_close (3,000,000 samples, 0.23%)</title><rect x="570.5" y="517" width="2.7" height="15.0" fill="rgb(215,89,14)" rx="2" ry="2" />
<text  x="573.48" y="527.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="45.4" y="341" width="0.9" height="15.0" fill="rgb(210,133,1)" rx="2" ry="2" />
<text  x="48.43" y="351.5" ></text>
</g>
<g >
<title>Int32GetDatum (1,000,000 samples, 0.08%)</title><rect x="533.2" y="405" width="0.9" height="15.0" fill="rgb(251,227,38)" rx="2" ry="2" />
<text  x="536.23" y="415.5" ></text>
</g>
<g >
<title>btbeginscan (18,000,000 samples, 1.39%)</title><rect x="975.6" y="261" width="16.4" height="15.0" fill="rgb(220,76,54)" rx="2" ry="2" />
<text  x="978.62" y="271.5" ></text>
</g>
<g >
<title>btgettuple (13,000,000 samples, 1.00%)</title><rect x="578.7" y="485" width="11.8" height="15.0" fill="rgb(235,33,49)" rx="2" ry="2" />
<text  x="581.65" y="495.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,000,000 samples, 0.15%)</title><rect x="1037.4" y="309" width="1.8" height="15.0" fill="rgb(211,78,11)" rx="2" ry="2" />
<text  x="1040.39" y="319.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="450.6" y="197" width="0.9" height="15.0" fill="rgb(253,93,20)" rx="2" ry="2" />
<text  x="453.57" y="207.5" ></text>
</g>
<g >
<title>order_qual_clauses (4,000,000 samples, 0.31%)</title><rect x="29.1" y="565" width="3.6" height="15.0" fill="rgb(209,208,54)" rx="2" ry="2" />
<text  x="32.08" y="575.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="493.3" y="501" width="0.9" height="15.0" fill="rgb(210,135,33)" rx="2" ry="2" />
<text  x="496.26" y="511.5" ></text>
</g>
<g >
<title>btgettuple (6,000,000 samples, 0.46%)</title><rect x="1035.6" y="405" width="5.4" height="15.0" fill="rgb(242,130,50)" rx="2" ry="2" />
<text  x="1038.57" y="415.5" ></text>
</g>
<g >
<title>lappend (1,000,000 samples, 0.08%)</title><rect x="122.6" y="517" width="0.9" height="15.0" fill="rgb(225,160,22)" rx="2" ry="2" />
<text  x="125.64" y="527.5" ></text>
</g>
<g >
<title>consider_index_join_outer_rels (124,000,000 samples, 9.55%)</title><rect x="614.1" y="533" width="112.6" height="15.0" fill="rgb(231,99,9)" rx="2" ry="2" />
<text  x="617.08" y="543.5" >consider_inde..</text>
</g>
<g >
<title>GetPrivateRefCountEntry (1,000,000 samples, 0.08%)</title><rect x="568.7" y="437" width="0.9" height="15.0" fill="rgb(245,158,49)" rx="2" ry="2" />
<text  x="571.66" y="447.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (1,000,000 samples, 0.08%)</title><rect x="595.0" y="501" width="0.9" height="15.0" fill="rgb(217,35,24)" rx="2" ry="2" />
<text  x="598.00" y="511.5" ></text>
</g>
<g >
<title>btbeginscan (3,000,000 samples, 0.23%)</title><rect x="51.8" y="389" width="2.7" height="15.0" fill="rgb(248,17,48)" rx="2" ry="2" />
<text  x="54.79" y="399.5" ></text>
</g>
<g >
<title>IOContextForStrategy (1,000,000 samples, 0.08%)</title><rect x="445.1" y="293" width="0.9" height="15.0" fill="rgb(228,39,45)" rx="2" ry="2" />
<text  x="448.12" y="303.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (5,000,000 samples, 0.38%)</title><rect x="139.0" y="501" width="4.5" height="15.0" fill="rgb(216,40,26)" rx="2" ry="2" />
<text  x="141.99" y="511.5" ></text>
</g>
<g >
<title>make_oper_cache_entry (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="597" width="0.9" height="15.0" fill="rgb(215,70,15)" rx="2" ry="2" />
<text  x="1052.20" y="607.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (79,000,000 samples, 6.08%)</title><rect x="1100.1" y="997" width="71.7" height="15.0" fill="rgb(234,128,51)" rx="2" ry="2" />
<text  x="1103.07" y="1007.5" >asm_exc_..</text>
</g>
<g >
<title>FunctionCall4Coll (4,000,000 samples, 0.31%)</title><rect x="714.9" y="341" width="3.6" height="15.0" fill="rgb(211,66,42)" rx="2" ry="2" />
<text  x="717.91" y="351.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="924.7" y="229" width="1.0" height="15.0" fill="rgb(236,145,1)" rx="2" ry="2" />
<text  x="927.75" y="239.5" ></text>
</g>
<g >
<title>FunctionCall4Coll (1,000,000 samples, 0.08%)</title><rect x="691.3" y="325" width="0.9" height="15.0" fill="rgb(219,150,11)" rx="2" ry="2" />
<text  x="694.29" y="335.5" ></text>
</g>
<g >
<title>relation_open (11,000,000 samples, 0.85%)</title><rect x="292.5" y="533" width="10.0" height="15.0" fill="rgb(244,184,13)" rx="2" ry="2" />
<text  x="295.51" y="543.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,000,000 samples, 0.08%)</title><rect x="972.9" y="261" width="0.9" height="15.0" fill="rgb(254,158,22)" rx="2" ry="2" />
<text  x="975.89" y="271.5" ></text>
</g>
<g >
<title>systable_getnext (18,000,000 samples, 1.39%)</title><rect x="574.1" y="533" width="16.4" height="15.0" fill="rgb(207,130,46)" rx="2" ry="2" />
<text  x="577.11" y="543.5" ></text>
</g>
<g >
<title>btbeginscan (1,000,000 samples, 0.08%)</title><rect x="473.3" y="453" width="0.9" height="15.0" fill="rgb(237,175,21)" rx="2" ry="2" />
<text  x="476.28" y="463.5" ></text>
</g>
<g >
<title>RelationBuildDesc (1,000,000 samples, 0.08%)</title><rect x="42.7" y="469" width="0.9" height="15.0" fill="rgb(233,59,25)" rx="2" ry="2" />
<text  x="45.70" y="479.5" ></text>
</g>
<g >
<title>setup_eclass_member_strict_iterator (27,000,000 samples, 2.08%)</title><rect x="767.6" y="469" width="24.5" height="15.0" fill="rgb(230,36,49)" rx="2" ry="2" />
<text  x="770.60" y="479.5" >s..</text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="594.1" y="469" width="0.9" height="15.0" fill="rgb(213,135,50)" rx="2" ry="2" />
<text  x="597.10" y="479.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (3,000,000 samples, 0.23%)</title><rect x="417.9" y="309" width="2.7" height="15.0" fill="rgb(253,37,52)" rx="2" ry="2" />
<text  x="420.87" y="319.5" ></text>
</g>
<g >
<title>ReadBuffer (3,000,000 samples, 0.23%)</title><rect x="483.3" y="405" width="2.7" height="15.0" fill="rgb(231,96,13)" rx="2" ry="2" />
<text  x="486.27" y="415.5" ></text>
</g>
<g >
<title>finish_xact_command (3,000,000 samples, 0.23%)</title><rect x="1046.5" y="869" width="2.7" height="15.0" fill="rgb(232,38,47)" rx="2" ry="2" />
<text  x="1049.47" y="879.5" ></text>
</g>
<g >
<title>RehashCatCache (2,000,000 samples, 0.15%)</title><rect x="970.2" y="293" width="1.8" height="15.0" fill="rgb(248,152,30)" rx="2" ry="2" />
<text  x="973.17" y="303.5" ></text>
</g>
<g >
<title>exec_eval_simple_expr (1,000,000 samples, 0.08%)</title><rect x="961.1" y="165" width="0.9" height="15.0" fill="rgb(251,82,22)" rx="2" ry="2" />
<text  x="964.09" y="175.5" ></text>
</g>
<g >
<title>index_open (1,000,000 samples, 0.08%)</title><rect x="42.7" y="517" width="0.9" height="15.0" fill="rgb(230,63,41)" rx="2" ry="2" />
<text  x="45.70" y="527.5" ></text>
</g>
<g >
<title>table_index_fetch_begin (1,000,000 samples, 0.08%)</title><rect x="132.6" y="533" width="0.9" height="15.0" fill="rgb(217,13,10)" rx="2" ry="2" />
<text  x="135.63" y="543.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (82,000,000 samples, 6.31%)</title><rect x="354.3" y="437" width="74.5" height="15.0" fill="rgb(228,181,28)" rx="2" ry="2" />
<text  x="357.28" y="447.5" >SearchCa..</text>
</g>
<g >
<title>handle_mm_fault (67,000,000 samples, 5.16%)</title><rect x="1111.0" y="949" width="60.8" height="15.0" fill="rgb(215,135,52)" rx="2" ry="2" />
<text  x="1113.97" y="959.5" >handle..</text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="394.2" y="197" width="1.0" height="15.0" fill="rgb(237,1,25)" rx="2" ry="2" />
<text  x="397.25" y="207.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="150.8" y="325" width="0.9" height="15.0" fill="rgb(206,219,38)" rx="2" ry="2" />
<text  x="153.80" y="335.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,000,000 samples, 0.08%)</title><rect x="691.3" y="245" width="0.9" height="15.0" fill="rgb(218,7,21)" rx="2" ry="2" />
<text  x="694.29" y="255.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,000,000 samples, 0.08%)</title><rect x="505.1" y="517" width="0.9" height="15.0" fill="rgb(242,136,18)" rx="2" ry="2" />
<text  x="508.07" y="527.5" ></text>
</g>
<g >
<title>table_close (1,000,000 samples, 0.08%)</title><rect x="344.3" y="501" width="0.9" height="15.0" fill="rgb(233,90,48)" rx="2" ry="2" />
<text  x="347.29" y="511.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="179.0" y="469" width="0.9" height="15.0" fill="rgb(206,166,6)" rx="2" ry="2" />
<text  x="181.96" y="479.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,000,000 samples, 0.08%)</title><rect x="807.6" y="277" width="0.9" height="15.0" fill="rgb(218,35,44)" rx="2" ry="2" />
<text  x="810.57" y="287.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (1,000,000 samples, 0.08%)</title><rect x="76.3" y="437" width="0.9" height="15.0" fill="rgb(251,122,50)" rx="2" ry="2" />
<text  x="79.31" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (1,000,000 samples, 0.08%)</title><rect x="322.5" y="485" width="0.9" height="15.0" fill="rgb(230,52,51)" rx="2" ry="2" />
<text  x="325.49" y="495.5" ></text>
</g>
<g >
<title>pg_nextpower2_32 (1,000,000 samples, 0.08%)</title><rect x="813.9" y="517" width="0.9" height="15.0" fill="rgb(229,19,46)" rx="2" ry="2" />
<text  x="816.93" y="527.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (1,000,000 samples, 0.08%)</title><rect x="801.2" y="437" width="0.9" height="15.0" fill="rgb(218,53,4)" rx="2" ry="2" />
<text  x="804.21" y="447.5" ></text>
</g>
<g >
<title>pg_strtok (2,000,000 samples, 0.15%)</title><rect x="83.6" y="309" width="1.8" height="15.0" fill="rgb(241,44,3)" rx="2" ry="2" />
<text  x="86.58" y="319.5" ></text>
</g>
<g >
<title>make_one_rel (490,000,000 samples, 37.72%)</title><rect x="600.5" y="661" width="445.1" height="15.0" fill="rgb(249,36,36)" rx="2" ry="2" />
<text  x="603.45" y="671.5" >make_one_rel</text>
</g>
<g >
<title>ReadBufferExtended (1,000,000 samples, 0.08%)</title><rect x="445.1" y="325" width="0.9" height="15.0" fill="rgb(246,19,38)" rx="2" ry="2" />
<text  x="448.12" y="335.5" ></text>
</g>
<g >
<title>index_close (4,000,000 samples, 0.31%)</title><rect x="923.8" y="293" width="3.7" height="15.0" fill="rgb(242,27,45)" rx="2" ry="2" />
<text  x="926.84" y="303.5" ></text>
</g>
<g >
<title>CreateTemplateTupleDesc (1,000,000 samples, 0.08%)</title><rect x="509.6" y="533" width="0.9" height="15.0" fill="rgb(254,65,41)" rx="2" ry="2" />
<text  x="512.62" y="543.5" ></text>
</g>
<g >
<title>LockRelationOid (3,000,000 samples, 0.23%)</title><rect x="374.3" y="357" width="2.7" height="15.0" fill="rgb(252,52,47)" rx="2" ry="2" />
<text  x="377.26" y="367.5" ></text>
</g>
<g >
<title>ReadBuffer_common (3,000,000 samples, 0.23%)</title><rect x="483.3" y="373" width="2.7" height="15.0" fill="rgb(230,135,25)" rx="2" ry="2" />
<text  x="486.27" y="383.5" ></text>
</g>
<g >
<title>InitIndexAmRoutine (1,000,000 samples, 0.08%)</title><rect x="349.7" y="501" width="0.9" height="15.0" fill="rgb(244,149,10)" rx="2" ry="2" />
<text  x="352.74" y="511.5" ></text>
</g>
<g >
<title>is_pseudo_constant_clause_relids (1,000,000 samples, 0.08%)</title><rect x="689.5" y="389" width="0.9" height="15.0" fill="rgb(214,121,49)" rx="2" ry="2" />
<text  x="692.48" y="399.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="441.5" y="341" width="0.9" height="15.0" fill="rgb(222,192,14)" rx="2" ry="2" />
<text  x="444.49" y="351.5" ></text>
</g>
<g >
<title>bms_union (1,000,000 samples, 0.08%)</title><rect x="819.4" y="501" width="0.9" height="15.0" fill="rgb(213,179,17)" rx="2" ry="2" />
<text  x="822.38" y="511.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="126.3" y="533" width="0.9" height="15.0" fill="rgb(228,117,51)" rx="2" ry="2" />
<text  x="129.27" y="543.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="509.6" y="437" width="0.9" height="15.0" fill="rgb(206,208,25)" rx="2" ry="2" />
<text  x="512.62" y="447.5" ></text>
</g>
<g >
<title>table_open (3,000,000 samples, 0.23%)</title><rect x="593.2" y="533" width="2.7" height="15.0" fill="rgb(210,58,37)" rx="2" ry="2" />
<text  x="596.19" y="543.5" ></text>
</g>
<g >
<title>GetCatalogSnapshot (1,000,000 samples, 0.08%)</title><rect x="472.4" y="485" width="0.9" height="15.0" fill="rgb(250,109,27)" rx="2" ry="2" />
<text  x="475.37" y="495.5" ></text>
</g>
<g >
<title>get_baserel_parampathinfo (31,000,000 samples, 2.39%)</title><rect x="698.6" y="453" width="28.1" height="15.0" fill="rgb(234,94,16)" rx="2" ry="2" />
<text  x="701.56" y="463.5" >g..</text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="714.9" y="181" width="0.9" height="15.0" fill="rgb(220,68,41)" rx="2" ry="2" />
<text  x="717.91" y="191.5" ></text>
</g>
<g >
<title>systable_endscan (4,000,000 samples, 0.31%)</title><rect x="328.8" y="501" width="3.7" height="15.0" fill="rgb(236,185,1)" rx="2" ry="2" />
<text  x="331.85" y="511.5" ></text>
</g>
<g >
<title>set_plan_references (9,000,000 samples, 0.69%)</title><rect x="34.5" y="709" width="8.2" height="15.0" fill="rgb(246,110,46)" rx="2" ry="2" />
<text  x="37.53" y="719.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (2,000,000 samples, 0.15%)</title><rect x="588.6" y="437" width="1.9" height="15.0" fill="rgb(206,149,24)" rx="2" ry="2" />
<text  x="591.65" y="447.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="766.7" y="229" width="0.9" height="15.0" fill="rgb(220,109,23)" rx="2" ry="2" />
<text  x="769.69" y="239.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="420.6" y="325" width="0.9" height="15.0" fill="rgb(205,154,53)" rx="2" ry="2" />
<text  x="423.59" y="335.5" ></text>
</g>
<g >
<title>LookupOpclassInfo (1,000,000 samples, 0.08%)</title><rect x="348.8" y="485" width="0.9" height="15.0" fill="rgb(213,177,22)" rx="2" ry="2" />
<text  x="351.83" y="495.5" ></text>
</g>
<g >
<title>UnlockRelationId (4,000,000 samples, 0.31%)</title><rect x="440.6" y="405" width="3.6" height="15.0" fill="rgb(241,129,12)" rx="2" ry="2" />
<text  x="443.58" y="415.5" ></text>
</g>
<g >
<title>index_getnext_tid (6,000,000 samples, 0.46%)</title><rect x="1035.6" y="421" width="5.4" height="15.0" fill="rgb(231,97,52)" rx="2" ry="2" />
<text  x="1038.57" y="431.5" ></text>
</g>
<g >
<title>func_volatile (1,000,000 samples, 0.08%)</title><rect x="849.4" y="405" width="0.9" height="15.0" fill="rgb(218,36,24)" rx="2" ry="2" />
<text  x="852.35" y="415.5" ></text>
</g>
<g >
<title>_bt_binsrch (3,000,000 samples, 0.23%)</title><rect x="69.0" y="357" width="2.8" height="15.0" fill="rgb(218,199,32)" rx="2" ry="2" />
<text  x="72.05" y="367.5" ></text>
</g>
<g >
<title>_bt_first (15,000,000 samples, 1.15%)</title><rect x="531.4" y="469" width="13.6" height="15.0" fill="rgb(227,133,22)" rx="2" ry="2" />
<text  x="534.42" y="479.5" ></text>
</g>
<g >
<title>_bt_getbuf (3,000,000 samples, 0.23%)</title><rect x="999.2" y="197" width="2.8" height="15.0" fill="rgb(252,124,49)" rx="2" ry="2" />
<text  x="1002.24" y="207.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (1,000,000 samples, 0.08%)</title><rect x="720.4" y="341" width="0.9" height="15.0" fill="rgb(243,208,27)" rx="2" ry="2" />
<text  x="723.36" y="351.5" ></text>
</g>
<g >
<title>_bt_initialize_more_data (1,000,000 samples, 0.08%)</title><rect x="448.8" y="357" width="0.9" height="15.0" fill="rgb(240,49,3)" rx="2" ry="2" />
<text  x="451.75" y="367.5" ></text>
</g>
<g >
<title>UnpinBuffer (1,000,000 samples, 0.08%)</title><rect x="61.8" y="341" width="0.9" height="15.0" fill="rgb(228,6,2)" rx="2" ry="2" />
<text  x="64.78" y="351.5" ></text>
</g>
<g >
<title>heap_getattr (1,000,000 samples, 0.08%)</title><rect x="75.4" y="485" width="0.9" height="15.0" fill="rgb(233,87,42)" rx="2" ry="2" />
<text  x="78.40" y="495.5" ></text>
</g>
<g >
<title>index_getnext_slot (18,000,000 samples, 1.39%)</title><rect x="574.1" y="517" width="16.4" height="15.0" fill="rgb(248,58,7)" rx="2" ry="2" />
<text  x="577.11" y="527.5" ></text>
</g>
<g >
<title>perf_iterate_sb (2,000,000 samples, 0.15%)</title><rect x="14.5" y="901" width="1.9" height="15.0" fill="rgb(231,174,19)" rx="2" ry="2" />
<text  x="17.54" y="911.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="969.3" y="149" width="0.9" height="15.0" fill="rgb(214,112,7)" rx="2" ry="2" />
<text  x="972.26" y="159.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="324.3" y="421" width="1.8" height="15.0" fill="rgb(249,203,2)" rx="2" ry="2" />
<text  x="327.30" y="431.5" ></text>
</g>
<g >
<title>bms_next_member (17,000,000 samples, 1.31%)</title><rect x="625.0" y="405" width="15.4" height="15.0" fill="rgb(224,199,20)" rx="2" ry="2" />
<text  x="627.98" y="415.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="344.3" y="421" width="0.9" height="15.0" fill="rgb(254,174,54)" rx="2" ry="2" />
<text  x="347.29" y="431.5" ></text>
</g>
<g >
<title>index_beginscan_internal (1,000,000 samples, 0.08%)</title><rect x="919.3" y="277" width="0.9" height="15.0" fill="rgb(207,197,22)" rx="2" ry="2" />
<text  x="922.30" y="287.5" ></text>
</g>
<g >
<title>makeTargetEntry (1,000,000 samples, 0.08%)</title><rect x="26.4" y="565" width="0.9" height="15.0" fill="rgb(221,4,26)" rx="2" ry="2" />
<text  x="29.35" y="575.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,000,000 samples, 0.38%)</title><rect x="314.3" y="485" width="4.6" height="15.0" fill="rgb(250,147,11)" rx="2" ry="2" />
<text  x="317.31" y="495.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,000,000 samples, 0.08%)</title><rect x="441.5" y="373" width="0.9" height="15.0" fill="rgb(220,78,14)" rx="2" ry="2" />
<text  x="444.49" y="383.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="298.0" y="469" width="0.9" height="15.0" fill="rgb(244,67,45)" rx="2" ry="2" />
<text  x="300.96" y="479.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="374.3" y="309" width="0.9" height="15.0" fill="rgb(243,97,39)" rx="2" ry="2" />
<text  x="377.26" y="319.5" ></text>
</g>
<g >
<title>PointerGetDatum (1,000,000 samples, 0.08%)</title><rect x="569.6" y="469" width="0.9" height="15.0" fill="rgb(250,25,37)" rx="2" ry="2" />
<text  x="572.57" y="479.5" ></text>
</g>
<g >
<title>ReadBuffer_common (2,000,000 samples, 0.15%)</title><rect x="416.1" y="245" width="1.8" height="15.0" fill="rgb(236,147,4)" rx="2" ry="2" />
<text  x="419.05" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="914.8" y="277" width="1.8" height="15.0" fill="rgb(248,141,42)" rx="2" ry="2" />
<text  x="917.76" y="287.5" ></text>
</g>
<g >
<title>get_hash_entry (1,000,000 samples, 0.08%)</title><rect x="375.2" y="293" width="0.9" height="15.0" fill="rgb(231,28,18)" rx="2" ry="2" />
<text  x="378.17" y="303.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,000,000 samples, 0.08%)</title><rect x="698.6" y="421" width="0.9" height="15.0" fill="rgb(233,68,7)" rx="2" ry="2" />
<text  x="701.56" y="431.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (1,000,000 samples, 0.08%)</title><rect x="481.5" y="437" width="0.9" height="15.0" fill="rgb(228,157,41)" rx="2" ry="2" />
<text  x="484.45" y="447.5" ></text>
</g>
<g >
<title>LockRelationOid (2,000,000 samples, 0.15%)</title><rect x="593.2" y="501" width="1.8" height="15.0" fill="rgb(207,147,33)" rx="2" ry="2" />
<text  x="596.19" y="511.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (1,000,000 samples, 0.08%)</title><rect x="436.0" y="389" width="0.9" height="15.0" fill="rgb(206,18,46)" rx="2" ry="2" />
<text  x="439.04" y="399.5" ></text>
</g>
<g >
<title>int4hashfast (1,000,000 samples, 0.08%)</title><rect x="684.0" y="373" width="0.9" height="15.0" fill="rgb(248,148,5)" rx="2" ry="2" />
<text  x="687.03" y="383.5" ></text>
</g>
<g >
<title>bms_add_members (1,000,000 samples, 0.08%)</title><rect x="864.8" y="565" width="0.9" height="15.0" fill="rgb(214,142,2)" rx="2" ry="2" />
<text  x="867.80" y="575.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="441.5" y="357" width="0.9" height="15.0" fill="rgb(250,212,49)" rx="2" ry="2" />
<text  x="444.49" y="367.5" ></text>
</g>
<g >
<title>SearchSysCache3 (48,000,000 samples, 3.70%)</title><rect x="968.4" y="373" width="43.6" height="15.0" fill="rgb(209,178,29)" rx="2" ry="2" />
<text  x="971.35" y="383.5" >Sear..</text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="669.5" y="245" width="0.9" height="15.0" fill="rgb(232,123,19)" rx="2" ry="2" />
<text  x="672.49" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (3,000,000 samples, 0.23%)</title><rect x="466.9" y="469" width="2.7" height="15.0" fill="rgb(252,112,29)" rx="2" ry="2" />
<text  x="469.92" y="479.5" ></text>
</g>
<g >
<title>_bt_search (4,000,000 samples, 0.31%)</title><rect x="1037.4" y="373" width="3.6" height="15.0" fill="rgb(214,171,26)" rx="2" ry="2" />
<text  x="1040.39" y="383.5" ></text>
</g>
<g >
<title>list_concat_copy (1,000,000 samples, 0.08%)</title><rect x="724.9" y="421" width="0.9" height="15.0" fill="rgb(247,56,21)" rx="2" ry="2" />
<text  x="727.90" y="431.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (1,000,000 samples, 0.08%)</title><rect x="689.5" y="357" width="0.9" height="15.0" fill="rgb(208,131,24)" rx="2" ry="2" />
<text  x="692.48" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,000,000 samples, 0.08%)</title><rect x="992.0" y="197" width="0.9" height="15.0" fill="rgb(231,58,52)" rx="2" ry="2" />
<text  x="994.97" y="207.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="562.3" y="389" width="1.8" height="15.0" fill="rgb(253,211,12)" rx="2" ry="2" />
<text  x="565.30" y="399.5" ></text>
</g>
<g >
<title>index_getnext_slot (10,000,000 samples, 0.77%)</title><rect x="482.4" y="485" width="9.0" height="15.0" fill="rgb(226,170,14)" rx="2" ry="2" />
<text  x="485.36" y="495.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (1,000,000 samples, 0.08%)</title><rect x="972.9" y="293" width="0.9" height="15.0" fill="rgb(223,45,32)" rx="2" ry="2" />
<text  x="975.89" y="303.5" ></text>
</g>
<g >
<title>ReadBuffer (3,000,000 samples, 0.23%)</title><rect x="147.2" y="437" width="2.7" height="15.0" fill="rgb(229,163,7)" rx="2" ry="2" />
<text  x="150.17" y="447.5" ></text>
</g>
<g >
<title>murmurhash32 (1,000,000 samples, 0.08%)</title><rect x="689.5" y="213" width="0.9" height="15.0" fill="rgb(252,212,8)" rx="2" ry="2" />
<text  x="692.48" y="223.5" ></text>
</g>
<g >
<title>index_beginscan_internal (3,000,000 samples, 0.23%)</title><rect x="369.7" y="373" width="2.7" height="15.0" fill="rgb(229,66,24)" rx="2" ry="2" />
<text  x="372.72" y="383.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="53.6" y="245" width="0.9" height="15.0" fill="rgb(238,68,11)" rx="2" ry="2" />
<text  x="56.60" y="255.5" ></text>
</g>
<g >
<title>InitBufferTag (1,000,000 samples, 0.08%)</title><rect x="484.2" y="341" width="0.9" height="15.0" fill="rgb(245,62,44)" rx="2" ry="2" />
<text  x="487.18" y="351.5" ></text>
</g>
<g >
<title>LockRelease (3,000,000 samples, 0.23%)</title><rect x="590.5" y="485" width="2.7" height="15.0" fill="rgb(232,119,27)" rx="2" ry="2" />
<text  x="593.46" y="495.5" ></text>
</g>
<g >
<title>relation_close (2,000,000 samples, 0.15%)</title><rect x="420.6" y="389" width="1.8" height="15.0" fill="rgb(239,175,23)" rx="2" ry="2" />
<text  x="423.59" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="21.8" y="549" width="0.9" height="15.0" fill="rgb(250,170,31)" rx="2" ry="2" />
<text  x="24.81" y="559.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (7,000,000 samples, 0.54%)</title><rect x="332.5" y="453" width="6.3" height="15.0" fill="rgb(220,223,42)" rx="2" ry="2" />
<text  x="335.48" y="463.5" ></text>
</g>
<g >
<title>CleanUpLock (1,000,000 samples, 0.08%)</title><rect x="491.4" y="437" width="1.0" height="15.0" fill="rgb(221,22,13)" rx="2" ry="2" />
<text  x="494.45" y="447.5" ></text>
</g>
<g >
<title>bms_get_singleton_member (1,000,000 samples, 0.08%)</title><rect x="719.5" y="373" width="0.9" height="15.0" fill="rgb(233,66,39)" rx="2" ry="2" />
<text  x="722.45" y="383.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (2,000,000 samples, 0.15%)</title><rect x="434.2" y="437" width="1.8" height="15.0" fill="rgb(231,210,42)" rx="2" ry="2" />
<text  x="437.22" y="447.5" ></text>
</g>
<g >
<title>dlist_delete (1,000,000 samples, 0.08%)</title><rect x="440.6" y="357" width="0.9" height="15.0" fill="rgb(210,167,41)" rx="2" ry="2" />
<text  x="443.58" y="367.5" ></text>
</g>
<g >
<title>plpgsql_create_econtext (1,000,000 samples, 0.08%)</title><rect x="962.9" y="229" width="0.9" height="15.0" fill="rgb(208,85,36)" rx="2" ry="2" />
<text  x="965.90" y="239.5" ></text>
</g>
<g >
<title>index_close (4,000,000 samples, 0.31%)</title><rect x="520.5" y="517" width="3.6" height="15.0" fill="rgb(248,181,5)" rx="2" ry="2" />
<text  x="523.52" y="527.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="829.4" y="437" width="0.9" height="15.0" fill="rgb(206,203,33)" rx="2" ry="2" />
<text  x="832.37" y="447.5" ></text>
</g>
<g >
<title>SearchSysCache3 (17,000,000 samples, 1.31%)</title><rect x="1028.3" y="517" width="15.4" height="15.0" fill="rgb(227,171,36)" rx="2" ry="2" />
<text  x="1031.31" y="527.5" ></text>
</g>
<g >
<title>PortalRun (1,132,000,000 samples, 87.14%)</title><rect x="18.2" y="869" width="1028.3" height="15.0" fill="rgb(253,225,37)" rx="2" ry="2" />
<text  x="21.18" y="879.5" >PortalRun</text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="781.2" y="405" width="1.8" height="15.0" fill="rgb(214,228,12)" rx="2" ry="2" />
<text  x="784.22" y="415.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="65.4" y="245" width="0.9" height="15.0" fill="rgb(210,112,22)" rx="2" ry="2" />
<text  x="68.41" y="255.5" ></text>
</g>
<g >
<title>index_getnext_slot (14,000,000 samples, 1.08%)</title><rect x="62.7" y="421" width="12.7" height="15.0" fill="rgb(242,84,23)" rx="2" ry="2" />
<text  x="65.69" y="431.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="389.7" y="325" width="0.9" height="15.0" fill="rgb(244,173,26)" rx="2" ry="2" />
<text  x="392.71" y="335.5" ></text>
</g>
<g >
<title>pull_varnos_walker (1,000,000 samples, 0.08%)</title><rect x="947.5" y="357" width="0.9" height="15.0" fill="rgb(248,185,42)" rx="2" ry="2" />
<text  x="950.46" y="367.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (1,000,000 samples, 0.08%)</title><rect x="342.5" y="325" width="0.9" height="15.0" fill="rgb(224,27,18)" rx="2" ry="2" />
<text  x="345.47" y="335.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (1,000,000 samples, 0.08%)</title><rect x="708.6" y="309" width="0.9" height="15.0" fill="rgb(250,218,33)" rx="2" ry="2" />
<text  x="711.55" y="319.5" ></text>
</g>
<g >
<title>RelationGetSmgr (2,000,000 samples, 0.15%)</title><rect x="158.1" y="565" width="1.8" height="15.0" fill="rgb(229,121,9)" rx="2" ry="2" />
<text  x="161.07" y="575.5" ></text>
</g>
<g >
<title>alloc_pages_vma (4,000,000 samples, 0.31%)</title><rect x="554.1" y="405" width="3.7" height="15.0" fill="rgb(229,159,36)" rx="2" ry="2" />
<text  x="557.13" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (75,000,000 samples, 5.77%)</title><rect x="184.4" y="437" width="68.1" height="15.0" fill="rgb(252,156,20)" rx="2" ry="2" />
<text  x="187.41" y="447.5" >do_sysc..</text>
</g>
<g >
<title>clear_page_orig (20,000,000 samples, 1.54%)</title><rect x="224.4" y="101" width="18.1" height="15.0" fill="rgb(235,139,31)" rx="2" ry="2" />
<text  x="227.38" y="111.5" ></text>
</g>
<g >
<title>exc_page_fault (3,000,000 samples, 0.23%)</title><rect x="369.7" y="325" width="2.7" height="15.0" fill="rgb(238,191,28)" rx="2" ry="2" />
<text  x="372.72" y="335.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="418.8" y="213" width="0.9" height="15.0" fill="rgb(212,216,11)" rx="2" ry="2" />
<text  x="421.78" y="223.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="281.6" y="437" width="0.9" height="15.0" fill="rgb(250,11,32)" rx="2" ry="2" />
<text  x="284.61" y="447.5" ></text>
</g>
<g >
<title>contain_volatile_functions_checker (1,000,000 samples, 0.08%)</title><rect x="689.5" y="325" width="0.9" height="15.0" fill="rgb(208,61,9)" rx="2" ry="2" />
<text  x="692.48" y="335.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="832.1" y="453" width="0.9" height="15.0" fill="rgb(239,158,22)" rx="2" ry="2" />
<text  x="835.09" y="463.5" ></text>
</g>
<g >
<title>SetupLockInTable (3,000,000 samples, 0.23%)</title><rect x="459.7" y="373" width="2.7" height="15.0" fill="rgb(205,68,5)" rx="2" ry="2" />
<text  x="462.65" y="383.5" ></text>
</g>
<g >
<title>make_restrictinfo_internal (3,000,000 samples, 0.23%)</title><rect x="827.6" y="469" width="2.7" height="15.0" fill="rgb(231,226,28)" rx="2" ry="2" />
<text  x="830.55" y="479.5" ></text>
</g>
<g >
<title>ExecDropSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="922.9" y="293" width="0.9" height="15.0" fill="rgb(249,189,48)" rx="2" ry="2" />
<text  x="925.93" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,000,000 samples, 0.15%)</title><rect x="645.9" y="277" width="1.8" height="15.0" fill="rgb(222,49,22)" rx="2" ry="2" />
<text  x="648.87" y="287.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="565.0" y="453" width="0.9" height="15.0" fill="rgb(212,34,39)" rx="2" ry="2" />
<text  x="568.03" y="463.5" ></text>
</g>
<g >
<title>get_relation_foreign_keys (1,000,000 samples, 0.08%)</title><rect x="270.7" y="581" width="0.9" height="15.0" fill="rgb(238,5,42)" rx="2" ry="2" />
<text  x="273.71" y="591.5" ></text>
</g>
<g >
<title>fmtint (1,000,000 samples, 0.08%)</title><rect x="165.3" y="453" width="0.9" height="15.0" fill="rgb(239,106,31)" rx="2" ry="2" />
<text  x="168.33" y="463.5" ></text>
</g>
<g >
<title>CreateExprContext (1,000,000 samples, 0.08%)</title><rect x="962.9" y="213" width="0.9" height="15.0" fill="rgb(223,121,34)" rx="2" ry="2" />
<text  x="965.90" y="223.5" ></text>
</g>
<g >
<title>[unknown] (1,188,000,000 samples, 91.45%)</title><rect x="10.0" y="1013" width="1079.2" height="15.0" fill="rgb(252,172,26)" rx="2" ry="2" />
<text  x="13.00" y="1023.5" >[unknown]</text>
</g>
<g >
<title>bms_union (1,000,000 samples, 0.08%)</title><rect x="828.5" y="453" width="0.9" height="15.0" fill="rgb(251,16,42)" rx="2" ry="2" />
<text  x="831.46" y="463.5" ></text>
</g>
<g >
<title>build_path_tlist (2,000,000 samples, 0.15%)</title><rect x="25.4" y="581" width="1.9" height="15.0" fill="rgb(238,218,24)" rx="2" ry="2" />
<text  x="28.44" y="591.5" ></text>
</g>
<g >
<title>index_open (211,000,000 samples, 16.24%)</title><rect x="303.4" y="581" width="191.7" height="15.0" fill="rgb(218,17,23)" rx="2" ry="2" />
<text  x="306.41" y="591.5" >index_open</text>
</g>
<g >
<title>bms_next_member (3,000,000 samples, 0.23%)</title><rect x="703.1" y="373" width="2.7" height="15.0" fill="rgb(206,160,26)" rx="2" ry="2" />
<text  x="706.10" y="383.5" ></text>
</g>
<g >
<title>relation_open (7,000,000 samples, 0.54%)</title><rect x="151.7" y="549" width="6.4" height="15.0" fill="rgb(239,170,4)" rx="2" ry="2" />
<text  x="154.71" y="559.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (1,000,000 samples, 0.08%)</title><rect x="1060.1" y="821" width="0.9" height="15.0" fill="rgb(248,5,52)" rx="2" ry="2" />
<text  x="1063.10" y="831.5" ></text>
</g>
<g >
<title>bms_add_member (1,000,000 samples, 0.08%)</title><rect x="698.6" y="437" width="0.9" height="15.0" fill="rgb(218,128,8)" rx="2" ry="2" />
<text  x="701.56" y="447.5" ></text>
</g>
<g >
<title>__brk (6,000,000 samples, 0.46%)</title><rect x="11.8" y="997" width="5.5" height="15.0" fill="rgb(220,76,14)" rx="2" ry="2" />
<text  x="14.82" y="1007.5" ></text>
</g>
<g >
<title>_bt_checkkeys (1,000,000 samples, 0.08%)</title><rect x="581.4" y="437" width="0.9" height="15.0" fill="rgb(211,83,18)" rx="2" ry="2" />
<text  x="584.38" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,000,000 samples, 0.15%)</title><rect x="320.7" y="485" width="1.8" height="15.0" fill="rgb(237,18,48)" rx="2" ry="2" />
<text  x="323.67" y="495.5" ></text>
</g>
<g >
<title>mmap_region (1,000,000 samples, 0.08%)</title><rect x="1089.2" y="933" width="0.9" height="15.0" fill="rgb(241,219,19)" rx="2" ry="2" />
<text  x="1092.17" y="943.5" ></text>
</g>
<g >
<title>BufTableHashCode (1,000,000 samples, 0.08%)</title><rect x="450.6" y="245" width="0.9" height="15.0" fill="rgb(231,58,17)" rx="2" ry="2" />
<text  x="453.57" y="255.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (1,000,000 samples, 0.08%)</title><rect x="142.6" y="485" width="0.9" height="15.0" fill="rgb(236,164,34)" rx="2" ry="2" />
<text  x="145.63" y="495.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="993.8" y="277" width="0.9" height="15.0" fill="rgb(247,16,20)" rx="2" ry="2" />
<text  x="996.79" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="437" width="0.9" height="15.0" fill="rgb(232,65,35)" rx="2" ry="2" />
<text  x="1052.20" y="447.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,000,000 samples, 0.08%)</title><rect x="1043.7" y="453" width="1.0" height="15.0" fill="rgb(237,21,51)" rx="2" ry="2" />
<text  x="1046.75" y="463.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (2,000,000 samples, 0.15%)</title><rect x="173.5" y="405" width="1.8" height="15.0" fill="rgb(222,218,49)" rx="2" ry="2" />
<text  x="176.51" y="415.5" ></text>
</g>
<g >
<title>bms_difference (1,000,000 samples, 0.08%)</title><rect x="125.4" y="549" width="0.9" height="15.0" fill="rgb(240,169,37)" rx="2" ry="2" />
<text  x="128.37" y="559.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="1052.8" y="949" width="0.9" height="15.0" fill="rgb(230,161,27)" rx="2" ry="2" />
<text  x="1055.83" y="959.5" ></text>
</g>
<g >
<title>fix_expr_common (3,000,000 samples, 0.23%)</title><rect x="37.3" y="533" width="2.7" height="15.0" fill="rgb(224,56,38)" rx="2" ry="2" />
<text  x="40.25" y="543.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,000,000 samples, 0.08%)</title><rect x="179.0" y="453" width="0.9" height="15.0" fill="rgb(206,94,11)" rx="2" ry="2" />
<text  x="181.96" y="463.5" ></text>
</g>
<g >
<title>create_index_path (11,000,000 samples, 0.85%)</title><rect x="802.1" y="517" width="10.0" height="15.0" fill="rgb(207,180,26)" rx="2" ry="2" />
<text  x="805.12" y="527.5" ></text>
</g>
<g >
<title>eqsel (1,000,000 samples, 0.08%)</title><rect x="691.3" y="309" width="0.9" height="15.0" fill="rgb(220,191,34)" rx="2" ry="2" />
<text  x="694.29" y="319.5" ></text>
</g>
<g >
<title>_dl_map_object (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="1013" width="0.9" height="15.0" fill="rgb(254,65,15)" rx="2" ry="2" />
<text  x="1093.08" y="1023.5" ></text>
</g>
<g >
<title>lappend (1,000,000 samples, 0.08%)</title><rect x="706.7" y="405" width="0.9" height="15.0" fill="rgb(220,26,47)" rx="2" ry="2" />
<text  x="709.74" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="301.6" y="485" width="0.9" height="15.0" fill="rgb(221,78,17)" rx="2" ry="2" />
<text  x="304.59" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_close (1,000,000 samples, 0.08%)</title><rect x="265.3" y="309" width="0.9" height="15.0" fill="rgb(219,28,20)" rx="2" ry="2" />
<text  x="268.26" y="319.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="825.7" y="357" width="0.9" height="15.0" fill="rgb(247,138,42)" rx="2" ry="2" />
<text  x="828.74" y="367.5" ></text>
</g>
<g >
<title>calc_bucket (1,000,000 samples, 0.08%)</title><rect x="565.0" y="437" width="0.9" height="15.0" fill="rgb(241,178,22)" rx="2" ry="2" />
<text  x="568.03" y="447.5" ></text>
</g>
<g >
<title>get_hash_entry (1,000,000 samples, 0.08%)</title><rect x="158.1" y="501" width="0.9" height="15.0" fill="rgb(241,158,45)" rx="2" ry="2" />
<text  x="161.07" y="511.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="679.5" y="277" width="0.9" height="15.0" fill="rgb(245,11,28)" rx="2" ry="2" />
<text  x="682.48" y="287.5" ></text>
</g>
<g >
<title>palloc0 (1,000,000 samples, 0.08%)</title><rect x="57.2" y="373" width="0.9" height="15.0" fill="rgb(211,221,40)" rx="2" ry="2" />
<text  x="60.24" y="383.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (1,000,000 samples, 0.08%)</title><rect x="63.6" y="341" width="0.9" height="15.0" fill="rgb(210,118,42)" rx="2" ry="2" />
<text  x="66.60" y="351.5" ></text>
</g>
<g >
<title>GetNonHistoricCatalogSnapshot (1,000,000 samples, 0.08%)</title><rect x="50.9" y="405" width="0.9" height="15.0" fill="rgb(208,210,40)" rx="2" ry="2" />
<text  x="53.88" y="415.5" ></text>
</g>
<g >
<title>PathNameOpenFile (6,000,000 samples, 0.46%)</title><rect x="263.4" y="421" width="5.5" height="15.0" fill="rgb(229,118,19)" rx="2" ry="2" />
<text  x="266.44" y="431.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="1029.2" y="389" width="0.9" height="15.0" fill="rgb(253,218,17)" rx="2" ry="2" />
<text  x="1032.21" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="254.4" y="405" width="0.9" height="15.0" fill="rgb(243,109,52)" rx="2" ry="2" />
<text  x="257.36" y="415.5" ></text>
</g>
<g >
<title>relation_open (2,000,000 samples, 0.15%)</title><rect x="437.9" y="405" width="1.8" height="15.0" fill="rgb(212,213,39)" rx="2" ry="2" />
<text  x="440.85" y="415.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,000,000 samples, 0.08%)</title><rect x="420.6" y="341" width="0.9" height="15.0" fill="rgb(248,90,41)" rx="2" ry="2" />
<text  x="423.59" y="351.5" ></text>
</g>
<g >
<title>clauselist_selectivity_ext (12,000,000 samples, 0.92%)</title><rect x="714.0" y="405" width="10.9" height="15.0" fill="rgb(219,175,19)" rx="2" ry="2" />
<text  x="717.00" y="415.5" ></text>
</g>
<g >
<title>PinBuffer (1,000,000 samples, 0.08%)</title><rect x="419.7" y="213" width="0.9" height="15.0" fill="rgb(227,202,6)" rx="2" ry="2" />
<text  x="422.68" y="223.5" ></text>
</g>
<g >
<title>pgstat_flush_pending_entries (2,000,000 samples, 0.15%)</title><rect x="1050.1" y="869" width="1.8" height="15.0" fill="rgb(245,105,1)" rx="2" ry="2" />
<text  x="1053.11" y="879.5" ></text>
</g>
<g >
<title>operator_predicate_proof (1,000,000 samples, 0.08%)</title><rect x="903.9" y="501" width="0.9" height="15.0" fill="rgb(248,85,50)" rx="2" ry="2" />
<text  x="906.86" y="511.5" ></text>
</g>
<g >
<title>RegisterSnapshot (1,000,000 samples, 0.08%)</title><rect x="550.5" y="517" width="0.9" height="15.0" fill="rgb(216,121,18)" rx="2" ry="2" />
<text  x="553.49" y="527.5" ></text>
</g>
<g >
<title>table_open (3,000,000 samples, 0.23%)</title><rect x="943.8" y="309" width="2.8" height="15.0" fill="rgb(226,161,15)" rx="2" ry="2" />
<text  x="946.83" y="319.5" ></text>
</g>
<g >
<title>plpgsql_call_handler (13,000,000 samples, 1.00%)</title><rect x="952.0" y="277" width="11.8" height="15.0" fill="rgb(234,35,5)" rx="2" ry="2" />
<text  x="955.00" y="287.5" ></text>
</g>
<g >
<title>new_list (2,000,000 samples, 0.15%)</title><rect x="813.0" y="533" width="1.8" height="15.0" fill="rgb(209,150,54)" rx="2" ry="2" />
<text  x="816.02" y="543.5" ></text>
</g>
<g >
<title>copyObjectImpl (1,000,000 samples, 0.08%)</title><rect x="99.9" y="485" width="0.9" height="15.0" fill="rgb(234,216,28)" rx="2" ry="2" />
<text  x="102.93" y="495.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="288.0" y="373" width="0.9" height="15.0" fill="rgb(223,130,8)" rx="2" ry="2" />
<text  x="290.97" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,000,000 samples, 0.08%)</title><rect x="179.0" y="437" width="0.9" height="15.0" fill="rgb(205,54,31)" rx="2" ry="2" />
<text  x="181.96" y="447.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="523.2" y="453" width="0.9" height="15.0" fill="rgb(245,128,40)" rx="2" ry="2" />
<text  x="526.24" y="463.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (7,000,000 samples, 0.54%)</title><rect x="36.3" y="613" width="6.4" height="15.0" fill="rgb(237,32,41)" rx="2" ry="2" />
<text  x="39.34" y="623.5" ></text>
</g>
<g >
<title>PathNameOpenFile (1,000,000 samples, 0.08%)</title><rect x="159.9" y="533" width="0.9" height="15.0" fill="rgb(223,189,0)" rx="2" ry="2" />
<text  x="162.88" y="543.5" ></text>
</g>
<g >
<title>BufTableLookup (1,000,000 samples, 0.08%)</title><rect x="544.1" y="341" width="0.9" height="15.0" fill="rgb(221,201,16)" rx="2" ry="2" />
<text  x="547.13" y="351.5" ></text>
</g>
<g >
<title>free_pgtables (1,000,000 samples, 0.08%)</title><rect x="1171.8" y="901" width="0.9" height="15.0" fill="rgb(229,172,24)" rx="2" ry="2" />
<text  x="1174.83" y="911.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (1,000,000 samples, 0.08%)</title><rect x="68.1" y="341" width="0.9" height="15.0" fill="rgb(239,128,27)" rx="2" ry="2" />
<text  x="71.14" y="351.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="613.2" y="437" width="0.9" height="15.0" fill="rgb(217,178,5)" rx="2" ry="2" />
<text  x="616.17" y="447.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (1,000,000 samples, 0.08%)</title><rect x="972.9" y="229" width="0.9" height="15.0" fill="rgb(233,30,14)" rx="2" ry="2" />
<text  x="975.89" y="239.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="849.4" y="389" width="0.9" height="15.0" fill="rgb(247,89,48)" rx="2" ry="2" />
<text  x="852.35" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (3,000,000 samples, 0.23%)</title><rect x="47.2" y="341" width="2.8" height="15.0" fill="rgb(236,111,52)" rx="2" ry="2" />
<text  x="50.24" y="351.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,000,000 samples, 0.08%)</title><rect x="251.6" y="421" width="0.9" height="15.0" fill="rgb(224,52,35)" rx="2" ry="2" />
<text  x="254.63" y="431.5" ></text>
</g>
<g >
<title>generate_implied_equalities_for_column (5,000,000 samples, 0.38%)</title><rect x="855.7" y="549" width="4.6" height="15.0" fill="rgb(219,17,33)" rx="2" ry="2" />
<text  x="858.71" y="559.5" ></text>
</g>
<g >
<title>heapam_index_fetch_begin (1,000,000 samples, 0.08%)</title><rect x="132.6" y="517" width="0.9" height="15.0" fill="rgb(243,136,40)" rx="2" ry="2" />
<text  x="135.63" y="527.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="727.6" y="485" width="0.9" height="15.0" fill="rgb(224,187,54)" rx="2" ry="2" />
<text  x="730.63" y="495.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (1,000,000 samples, 0.08%)</title><rect x="456.0" y="341" width="0.9" height="15.0" fill="rgb(225,99,3)" rx="2" ry="2" />
<text  x="459.02" y="351.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (1,000,000 samples, 0.08%)</title><rect x="417.9" y="181" width="0.9" height="15.0" fill="rgb(229,94,41)" rx="2" ry="2" />
<text  x="420.87" y="191.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="851.2" y="293" width="0.9" height="15.0" fill="rgb(227,69,51)" rx="2" ry="2" />
<text  x="854.17" y="303.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="813.0" y="517" width="0.9" height="15.0" fill="rgb(210,53,3)" rx="2" ry="2" />
<text  x="816.02" y="527.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,000,000 samples, 0.08%)</title><rect x="148.1" y="341" width="0.9" height="15.0" fill="rgb(254,210,48)" rx="2" ry="2" />
<text  x="151.08" y="351.5" ></text>
</g>
<g >
<title>index_getnext_slot (8,000,000 samples, 0.62%)</title><rect x="996.5" y="293" width="7.3" height="15.0" fill="rgb(251,125,36)" rx="2" ry="2" />
<text  x="999.51" y="303.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="36.3" y="549" width="1.0" height="15.0" fill="rgb(210,145,25)" rx="2" ry="2" />
<text  x="39.34" y="559.5" ></text>
</g>
<g >
<title>bthandler (1,000,000 samples, 0.08%)</title><rect x="349.7" y="437" width="0.9" height="15.0" fill="rgb(230,18,15)" rx="2" ry="2" />
<text  x="352.74" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,000,000 samples, 0.23%)</title><rect x="664.9" y="325" width="2.8" height="15.0" fill="rgb(209,217,22)" rx="2" ry="2" />
<text  x="667.95" y="335.5" ></text>
</g>
<g >
<title>is_pseudo_constant_clause_relids (1,000,000 samples, 0.08%)</title><rect x="1021.9" y="517" width="1.0" height="15.0" fill="rgb(220,146,54)" rx="2" ry="2" />
<text  x="1024.95" y="527.5" ></text>
</g>
<g >
<title>_copyVar (2,000,000 samples, 0.15%)</title><rect x="869.3" y="533" width="1.9" height="15.0" fill="rgb(244,41,22)" rx="2" ry="2" />
<text  x="872.34" y="543.5" ></text>
</g>
<g >
<title>alloc_pages_vma (2,000,000 samples, 0.15%)</title><rect x="664.9" y="293" width="1.9" height="15.0" fill="rgb(249,63,37)" rx="2" ry="2" />
<text  x="667.95" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="598.6" y="485" width="0.9" height="15.0" fill="rgb(225,32,8)" rx="2" ry="2" />
<text  x="601.64" y="495.5" ></text>
</g>
<g >
<title>prep_new_page (2,000,000 samples, 0.15%)</title><rect x="432.4" y="309" width="1.8" height="15.0" fill="rgb(232,181,2)" rx="2" ry="2" />
<text  x="435.40" y="319.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,000,000 samples, 0.38%)</title><rect x="363.4" y="341" width="4.5" height="15.0" fill="rgb(236,79,32)" rx="2" ry="2" />
<text  x="366.36" y="351.5" ></text>
</g>
<g >
<title>CleanUpLock (1,000,000 samples, 0.08%)</title><rect x="924.7" y="245" width="1.0" height="15.0" fill="rgb(206,105,2)" rx="2" ry="2" />
<text  x="927.75" y="255.5" ></text>
</g>
<g >
<title>generate_implied_equalities_for_column (32,000,000 samples, 2.46%)</title><rect x="814.8" y="533" width="29.1" height="15.0" fill="rgb(210,182,50)" rx="2" ry="2" />
<text  x="817.83" y="543.5" >ge..</text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="517" width="0.9" height="15.0" fill="rgb(236,34,38)" rx="2" ry="2" />
<text  x="1052.20" y="527.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (1,000,000 samples, 0.08%)</title><rect x="945.6" y="261" width="1.0" height="15.0" fill="rgb(214,166,9)" rx="2" ry="2" />
<text  x="948.64" y="271.5" ></text>
</g>
<g >
<title>systable_endscan (14,000,000 samples, 1.08%)</title><rect x="380.6" y="405" width="12.7" height="15.0" fill="rgb(214,72,40)" rx="2" ry="2" />
<text  x="383.62" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="765.8" y="373" width="0.9" height="15.0" fill="rgb(253,67,48)" rx="2" ry="2" />
<text  x="768.78" y="383.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="599.5" y="533" width="1.0" height="15.0" fill="rgb(238,89,2)" rx="2" ry="2" />
<text  x="602.55" y="543.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,000,000 samples, 0.08%)</title><rect x="720.4" y="357" width="0.9" height="15.0" fill="rgb(222,4,34)" rx="2" ry="2" />
<text  x="723.36" y="367.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="613.2" y="389" width="0.9" height="15.0" fill="rgb(253,226,2)" rx="2" ry="2" />
<text  x="616.17" y="399.5" ></text>
</g>
<g >
<title>_bt_getbuf (3,000,000 samples, 0.23%)</title><rect x="147.2" y="453" width="2.7" height="15.0" fill="rgb(214,204,42)" rx="2" ry="2" />
<text  x="150.17" y="463.5" ></text>
</g>
<g >
<title>contain_volatile_functions (3,000,000 samples, 0.23%)</title><rect x="823.0" y="469" width="2.7" height="15.0" fill="rgb(216,48,51)" rx="2" ry="2" />
<text  x="826.01" y="479.5" ></text>
</g>
<g >
<title>pull_varnos (4,000,000 samples, 0.31%)</title><rect x="764.0" y="469" width="3.6" height="15.0" fill="rgb(248,213,21)" rx="2" ry="2" />
<text  x="766.96" y="479.5" ></text>
</g>
<g >
<title>CatCacheCopyKeys (2,000,000 samples, 0.15%)</title><rect x="914.8" y="293" width="1.8" height="15.0" fill="rgb(208,38,48)" rx="2" ry="2" />
<text  x="917.76" y="303.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="612.3" y="501" width="0.9" height="15.0" fill="rgb(209,132,43)" rx="2" ry="2" />
<text  x="615.26" y="511.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="287.1" y="357" width="0.9" height="15.0" fill="rgb(234,149,9)" rx="2" ry="2" />
<text  x="290.06" y="367.5" ></text>
</g>
<g >
<title>bms_add_member (1,000,000 samples, 0.08%)</title><rect x="947.5" y="293" width="0.9" height="15.0" fill="rgb(242,195,54)" rx="2" ry="2" />
<text  x="950.46" y="303.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="800.3" y="437" width="0.9" height="15.0" fill="rgb(236,209,9)" rx="2" ry="2" />
<text  x="803.30" y="447.5" ></text>
</g>
<g >
<title>ext4_inode_csum_set (1,000,000 samples, 0.08%)</title><rect x="248.0" y="277" width="0.9" height="15.0" fill="rgb(219,30,20)" rx="2" ry="2" />
<text  x="251.00" y="287.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="20.9" y="661" width="0.9" height="15.0" fill="rgb(219,30,2)" rx="2" ry="2" />
<text  x="23.90" y="671.5" ></text>
</g>
<g >
<title>__check_object_size (1,000,000 samples, 0.08%)</title><rect x="1079.2" y="885" width="0.9" height="15.0" fill="rgb(249,49,2)" rx="2" ry="2" />
<text  x="1082.18" y="895.5" ></text>
</g>
<g >
<title>get_typavgwidth (2,000,000 samples, 0.15%)</title><rect x="1043.7" y="533" width="1.9" height="15.0" fill="rgb(245,172,0)" rx="2" ry="2" />
<text  x="1046.75" y="543.5" ></text>
</g>
<g >
<title>plpgsql_compile (7,000,000 samples, 0.54%)</title><rect x="952.9" y="261" width="6.4" height="15.0" fill="rgb(231,169,38)" rx="2" ry="2" />
<text  x="955.91" y="271.5" ></text>
</g>
<g >
<title>setup_eclass_member_strict_iterator (29,000,000 samples, 2.23%)</title><rect x="647.7" y="421" width="26.3" height="15.0" fill="rgb(227,171,32)" rx="2" ry="2" />
<text  x="650.69" y="431.5" >s..</text>
</g>
<g >
<title>all (1,299,000,000 samples, 100%)</title><rect x="10.0" y="1045" width="1180.0" height="15.0" fill="rgb(227,143,46)" rx="2" ry="2" />
<text  x="13.00" y="1055.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="702.2" y="277" width="0.9" height="15.0" fill="rgb(210,175,0)" rx="2" ry="2" />
<text  x="705.19" y="287.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,000,000 samples, 0.08%)</title><rect x="689.5" y="245" width="0.9" height="15.0" fill="rgb(210,36,19)" rx="2" ry="2" />
<text  x="692.48" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="800.3" y="453" width="0.9" height="15.0" fill="rgb(209,197,49)" rx="2" ry="2" />
<text  x="803.30" y="463.5" ></text>
</g>
<g >
<title>IsSharedRelation (1,000,000 samples, 0.08%)</title><rect x="427.0" y="341" width="0.9" height="15.0" fill="rgb(242,126,29)" rx="2" ry="2" />
<text  x="429.95" y="351.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (1,000,000 samples, 0.08%)</title><rect x="218.9" y="181" width="0.9" height="15.0" fill="rgb(251,200,26)" rx="2" ry="2" />
<text  x="221.93" y="191.5" ></text>
</g>
<g >
<title>DatumGetInt16 (1,000,000 samples, 0.08%)</title><rect x="538.7" y="405" width="0.9" height="15.0" fill="rgb(222,19,10)" rx="2" ry="2" />
<text  x="541.68" y="415.5" ></text>
</g>
<g >
<title>SearchCatCache1 (3,000,000 samples, 0.23%)</title><rect x="1012.9" y="453" width="2.7" height="15.0" fill="rgb(237,219,18)" rx="2" ry="2" />
<text  x="1015.86" y="463.5" ></text>
</g>
<g >
<title>get_eclass_for_sort_expr (63,000,000 samples, 4.85%)</title><rect x="616.8" y="437" width="57.2" height="15.0" fill="rgb(206,72,37)" rx="2" ry="2" />
<text  x="619.81" y="447.5" >get_ec..</text>
</g>
<g >
<title>__fsnotify_parent (1,000,000 samples, 0.08%)</title><rect x="1061.9" y="869" width="0.9" height="15.0" fill="rgb(207,229,3)" rx="2" ry="2" />
<text  x="1064.92" y="879.5" ></text>
</g>
<g >
<title>LockRelease (3,000,000 samples, 0.23%)</title><rect x="455.1" y="389" width="2.7" height="15.0" fill="rgb(216,107,5)" rx="2" ry="2" />
<text  x="458.11" y="399.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,000,000 samples, 0.15%)</title><rect x="781.2" y="309" width="1.8" height="15.0" fill="rgb(223,4,48)" rx="2" ry="2" />
<text  x="784.22" y="319.5" ></text>
</g>
<g >
<title>_bt_fix_scankey_strategy (1,000,000 samples, 0.08%)</title><rect x="486.9" y="405" width="0.9" height="15.0" fill="rgb(224,147,54)" rx="2" ry="2" />
<text  x="489.91" y="415.5" ></text>
</g>
<g >
<title>get_tablespace (1,000,000 samples, 0.08%)</title><rect x="695.8" y="389" width="0.9" height="15.0" fill="rgb(224,101,40)" rx="2" ry="2" />
<text  x="698.84" y="399.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="669.5" y="325" width="0.9" height="15.0" fill="rgb(226,87,54)" rx="2" ry="2" />
<text  x="672.49" y="335.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="467.8" y="373" width="0.9" height="15.0" fill="rgb(245,111,27)" rx="2" ry="2" />
<text  x="470.83" y="383.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="597.7" y="517" width="1.8" height="15.0" fill="rgb(245,23,21)" rx="2" ry="2" />
<text  x="600.73" y="527.5" ></text>
</g>
<g >
<title>create_join_clause (2,000,000 samples, 0.15%)</title><rect x="830.3" y="501" width="1.8" height="15.0" fill="rgb(238,85,24)" rx="2" ry="2" />
<text  x="833.28" y="511.5" ></text>
</g>
<g >
<title>_bt_compare (2,000,000 samples, 0.15%)</title><rect x="585.0" y="421" width="1.8" height="15.0" fill="rgb(221,102,34)" rx="2" ry="2" />
<text  x="588.01" y="431.5" ></text>
</g>
<g >
<title>GetCatalogSnapshot (1,000,000 samples, 0.08%)</title><rect x="917.5" y="293" width="0.9" height="15.0" fill="rgb(229,44,44)" rx="2" ry="2" />
<text  x="920.48" y="303.5" ></text>
</g>
<g >
<title>create_append_plan (10,000,000 samples, 0.77%)</title><rect x="25.4" y="629" width="9.1" height="15.0" fill="rgb(239,70,28)" rx="2" ry="2" />
<text  x="28.44" y="639.5" ></text>
</g>
<g >
<title>memcpy@GLIBC_2.2.5 (1,000,000 samples, 0.08%)</title><rect x="565.9" y="501" width="0.9" height="15.0" fill="rgb(242,195,38)" rx="2" ry="2" />
<text  x="568.94" y="511.5" ></text>
</g>
<g >
<title>pull_varattnos (2,000,000 samples, 0.15%)</title><rect x="684.9" y="453" width="1.9" height="15.0" fill="rgb(237,223,10)" rx="2" ry="2" />
<text  x="687.93" y="463.5" ></text>
</g>
<g >
<title>btcostestimate (7,000,000 samples, 0.54%)</title><rect x="803.9" y="485" width="6.4" height="15.0" fill="rgb(220,24,51)" rx="2" ry="2" />
<text  x="806.93" y="495.5" ></text>
</g>
<g >
<title>alloc_empty_file (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="885" width="0.9" height="15.0" fill="rgb(208,172,12)" rx="2" ry="2" />
<text  x="1093.08" y="895.5" ></text>
</g>
<g >
<title>lappend (1,000,000 samples, 0.08%)</title><rect x="496.9" y="597" width="0.9" height="15.0" fill="rgb(226,52,37)" rx="2" ry="2" />
<text  x="499.90" y="607.5" ></text>
</g>
<g >
<title>ExecClearTuple (1,000,000 samples, 0.08%)</title><rect x="519.6" y="501" width="0.9" height="15.0" fill="rgb(243,132,18)" rx="2" ry="2" />
<text  x="522.61" y="511.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,000,000 samples, 0.15%)</title><rect x="933.8" y="165" width="1.9" height="15.0" fill="rgb(254,217,24)" rx="2" ry="2" />
<text  x="936.83" y="175.5" ></text>
</g>
<g >
<title>index_close (1,000,000 samples, 0.08%)</title><rect x="480.5" y="485" width="1.0" height="15.0" fill="rgb(234,208,22)" rx="2" ry="2" />
<text  x="483.55" y="495.5" ></text>
</g>
<g >
<title>generate_orderedappend_paths (2,000,000 samples, 0.15%)</title><rect x="605.0" y="581" width="1.8" height="15.0" fill="rgb(220,172,1)" rx="2" ry="2" />
<text  x="608.00" y="591.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,000,000 samples, 0.08%)</title><rect x="16.4" y="949" width="0.9" height="15.0" fill="rgb(239,100,11)" rx="2" ry="2" />
<text  x="19.36" y="959.5" ></text>
</g>
<g >
<title>UnlockRelationId (4,000,000 samples, 0.31%)</title><rect x="923.8" y="277" width="3.7" height="15.0" fill="rgb(221,46,31)" rx="2" ry="2" />
<text  x="926.84" y="287.5" ></text>
</g>
<g >
<title>relation_close (2,000,000 samples, 0.15%)</title><rect x="546.0" y="517" width="1.8" height="15.0" fill="rgb(249,134,3)" rx="2" ry="2" />
<text  x="548.95" y="527.5" ></text>
</g>
<g >
<title>get_typlen (2,000,000 samples, 0.15%)</title><rect x="1043.7" y="517" width="1.9" height="15.0" fill="rgb(239,16,4)" rx="2" ry="2" />
<text  x="1046.75" y="527.5" ></text>
</g>
<g >
<title>dnotify_flush (1,000,000 samples, 0.08%)</title><rect x="169.9" y="373" width="0.9" height="15.0" fill="rgb(242,55,20)" rx="2" ry="2" />
<text  x="172.88" y="383.5" ></text>
</g>
<g >
<title>ReleaseLruFiles (5,000,000 samples, 0.38%)</title><rect x="264.3" y="389" width="4.6" height="15.0" fill="rgb(246,117,44)" rx="2" ry="2" />
<text  x="267.35" y="399.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="915.7" y="213" width="0.9" height="15.0" fill="rgb(207,15,9)" rx="2" ry="2" />
<text  x="918.67" y="223.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (2,000,000 samples, 0.15%)</title><rect x="566.8" y="485" width="1.9" height="15.0" fill="rgb(253,93,27)" rx="2" ry="2" />
<text  x="569.84" y="495.5" ></text>
</g>
<g >
<title>clear_page_orig (2,000,000 samples, 0.15%)</title><rect x="320.7" y="309" width="1.8" height="15.0" fill="rgb(239,144,32)" rx="2" ry="2" />
<text  x="323.67" y="319.5" ></text>
</g>
<g >
<title>get_tablespace (1,000,000 samples, 0.08%)</title><rect x="727.6" y="501" width="0.9" height="15.0" fill="rgb(222,222,13)" rx="2" ry="2" />
<text  x="730.63" y="511.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (1,000,000 samples, 0.08%)</title><rect x="260.7" y="421" width="0.9" height="15.0" fill="rgb(251,212,25)" rx="2" ry="2" />
<text  x="263.72" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="645.9" y="325" width="1.8" height="15.0" fill="rgb(225,183,45)" rx="2" ry="2" />
<text  x="648.87" y="335.5" ></text>
</g>
<g >
<title>table_block_relation_size (14,000,000 samples, 1.08%)</title><rect x="258.0" y="485" width="12.7" height="15.0" fill="rgb(218,216,41)" rx="2" ry="2" />
<text  x="260.99" y="495.5" ></text>
</g>
<g >
<title>systable_getnext (6,000,000 samples, 0.46%)</title><rect x="284.3" y="549" width="5.5" height="15.0" fill="rgb(246,48,22)" rx="2" ry="2" />
<text  x="287.33" y="559.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="1047.4" y="741" width="0.9" height="15.0" fill="rgb(243,197,31)" rx="2" ry="2" />
<text  x="1050.38" y="751.5" ></text>
</g>
<g >
<title>btbeginscan (1,000,000 samples, 0.08%)</title><rect x="436.9" y="389" width="1.0" height="15.0" fill="rgb(245,70,52)" rx="2" ry="2" />
<text  x="439.94" y="399.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref (1,000,000 samples, 0.08%)</title><rect x="254.4" y="469" width="0.9" height="15.0" fill="rgb(209,100,17)" rx="2" ry="2" />
<text  x="257.36" y="479.5" ></text>
</g>
<g >
<title>lappend (1,000,000 samples, 0.08%)</title><rect x="31.8" y="549" width="0.9" height="15.0" fill="rgb(238,103,33)" rx="2" ry="2" />
<text  x="34.80" y="559.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="608.6" y="389" width="0.9" height="15.0" fill="rgb(215,68,5)" rx="2" ry="2" />
<text  x="611.63" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,000,000 samples, 0.08%)</title><rect x="505.1" y="533" width="0.9" height="15.0" fill="rgb(234,35,9)" rx="2" ry="2" />
<text  x="508.07" y="543.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (1,000,000 samples, 0.08%)</title><rect x="497.8" y="549" width="0.9" height="15.0" fill="rgb(218,114,38)" rx="2" ry="2" />
<text  x="500.81" y="559.5" ></text>
</g>
<g >
<title>relation_open (211,000,000 samples, 16.24%)</title><rect x="303.4" y="565" width="191.7" height="15.0" fill="rgb(219,77,46)" rx="2" ry="2" />
<text  x="306.41" y="575.5" >relation_open</text>
</g>
<g >
<title>LWLockConditionalAcquire (1,000,000 samples, 0.08%)</title><rect x="1050.1" y="821" width="0.9" height="15.0" fill="rgb(218,18,13)" rx="2" ry="2" />
<text  x="1053.11" y="831.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (1,000,000 samples, 0.08%)</title><rect x="666.8" y="277" width="0.9" height="15.0" fill="rgb(219,128,51)" rx="2" ry="2" />
<text  x="669.77" y="287.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="131.7" y="485" width="0.9" height="15.0" fill="rgb(220,226,21)" rx="2" ry="2" />
<text  x="134.72" y="495.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="495.1" y="357" width="0.9" height="15.0" fill="rgb(228,100,21)" rx="2" ry="2" />
<text  x="498.08" y="367.5" ></text>
</g>
<g >
<title>DatumGetPointer (1,000,000 samples, 0.08%)</title><rect x="911.1" y="421" width="0.9" height="15.0" fill="rgb(236,148,22)" rx="2" ry="2" />
<text  x="914.12" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="311.6" y="485" width="0.9" height="15.0" fill="rgb(231,204,10)" rx="2" ry="2" />
<text  x="314.59" y="495.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="327.9" y="453" width="0.9" height="15.0" fill="rgb(226,14,7)" rx="2" ry="2" />
<text  x="330.94" y="463.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (4,000,000 samples, 0.31%)</title><rect x="482.4" y="453" width="3.6" height="15.0" fill="rgb(205,18,46)" rx="2" ry="2" />
<text  x="485.36" y="463.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="477.8" y="389" width="0.9" height="15.0" fill="rgb(229,110,51)" rx="2" ry="2" />
<text  x="480.82" y="399.5" ></text>
</g>
<g >
<title>create_plan_recurse (10,000,000 samples, 0.77%)</title><rect x="25.4" y="693" width="9.1" height="15.0" fill="rgb(209,28,4)" rx="2" ry="2" />
<text  x="28.44" y="703.5" ></text>
</g>
<g >
<title>_bt_compare (2,000,000 samples, 0.15%)</title><rect x="932.0" y="197" width="1.8" height="15.0" fill="rgb(216,30,21)" rx="2" ry="2" />
<text  x="935.02" y="207.5" ></text>
</g>
<g >
<title>FunctionCall4Coll (112,000,000 samples, 8.62%)</title><rect x="910.2" y="469" width="101.8" height="15.0" fill="rgb(252,184,39)" rx="2" ry="2" />
<text  x="913.22" y="479.5" >FunctionCall..</text>
</g>
<g >
<title>relation_open (3,000,000 samples, 0.23%)</title><rect x="374.3" y="373" width="2.7" height="15.0" fill="rgb(215,65,11)" rx="2" ry="2" />
<text  x="377.26" y="383.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="474.2" y="261" width="0.9" height="15.0" fill="rgb(211,37,7)" rx="2" ry="2" />
<text  x="477.19" y="271.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="467.8" y="309" width="0.9" height="15.0" fill="rgb(250,4,24)" rx="2" ry="2" />
<text  x="470.83" y="319.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (3,000,000 samples, 0.23%)</title><rect x="885.7" y="533" width="2.7" height="15.0" fill="rgb(224,2,48)" rx="2" ry="2" />
<text  x="888.69" y="543.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="714.9" y="197" width="0.9" height="15.0" fill="rgb(215,88,42)" rx="2" ry="2" />
<text  x="717.91" y="207.5" ></text>
</g>
<g >
<title>create_join_clause (6,000,000 samples, 0.46%)</title><rect x="701.3" y="405" width="5.4" height="15.0" fill="rgb(211,137,48)" rx="2" ry="2" />
<text  x="704.29" y="415.5" ></text>
</g>
<g >
<title>get_oprrest (3,000,000 samples, 0.23%)</title><rect x="1018.3" y="517" width="2.7" height="15.0" fill="rgb(221,38,3)" rx="2" ry="2" />
<text  x="1021.31" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,000,000 samples, 0.08%)</title><rect x="160.8" y="485" width="0.9" height="15.0" fill="rgb(222,156,13)" rx="2" ry="2" />
<text  x="163.79" y="495.5" ></text>
</g>
<g >
<title>_bt_compare (1,000,000 samples, 0.08%)</title><rect x="579.6" y="437" width="0.9" height="15.0" fill="rgb(230,121,25)" rx="2" ry="2" />
<text  x="582.56" y="447.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (79,000,000 samples, 6.08%)</title><rect x="357.0" y="421" width="71.8" height="15.0" fill="rgb(242,151,22)" rx="2" ry="2" />
<text  x="360.01" y="431.5" >SearchCa..</text>
</g>
<g >
<title>set_plain_rel_size (155,000,000 samples, 11.93%)</title><rect x="904.8" y="581" width="140.8" height="15.0" fill="rgb(248,208,28)" rx="2" ry="2" />
<text  x="907.77" y="591.5" >set_plain_rel_size</text>
</g>
<g >
<title>do_user_addr_fault (79,000,000 samples, 6.08%)</title><rect x="1100.1" y="965" width="71.7" height="15.0" fill="rgb(238,205,37)" rx="2" ry="2" />
<text  x="1103.07" y="975.5" >do_user_..</text>
</g>
<g >
<title>set_plan_refs (7,000,000 samples, 0.54%)</title><rect x="36.3" y="645" width="6.4" height="15.0" fill="rgb(245,133,0)" rx="2" ry="2" />
<text  x="39.34" y="655.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (1,000,000 samples, 0.08%)</title><rect x="45.4" y="309" width="0.9" height="15.0" fill="rgb(246,179,43)" rx="2" ry="2" />
<text  x="48.43" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="591.4" y="453" width="0.9" height="15.0" fill="rgb(218,88,16)" rx="2" ry="2" />
<text  x="594.37" y="463.5" ></text>
</g>
<g >
<title>list_startup_fn (1,000,000 samples, 0.08%)</title><rect x="898.4" y="533" width="0.9" height="15.0" fill="rgb(246,149,21)" rx="2" ry="2" />
<text  x="901.41" y="543.5" ></text>
</g>
<g >
<title>clause_selectivity_ext (6,000,000 samples, 0.46%)</title><rect x="714.0" y="389" width="5.5" height="15.0" fill="rgb(238,134,51)" rx="2" ry="2" />
<text  x="717.00" y="399.5" ></text>
</g>
<g >
<title>UnlockRelationId (3,000,000 samples, 0.23%)</title><rect x="455.1" y="405" width="2.7" height="15.0" fill="rgb(209,187,23)" rx="2" ry="2" />
<text  x="458.11" y="415.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,000,000 samples, 0.08%)</title><rect x="339.7" y="389" width="1.0" height="15.0" fill="rgb(211,112,22)" rx="2" ry="2" />
<text  x="342.75" y="399.5" ></text>
</g>
<g >
<title>memset_orig (3,000,000 samples, 0.23%)</title><rect x="1076.5" y="885" width="2.7" height="15.0" fill="rgb(207,37,42)" rx="2" ry="2" />
<text  x="1079.45" y="895.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="701.3" y="325" width="0.9" height="15.0" fill="rgb(231,35,20)" rx="2" ry="2" />
<text  x="704.29" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="324.3" y="437" width="1.8" height="15.0" fill="rgb(240,199,21)" rx="2" ry="2" />
<text  x="327.30" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,000,000 samples, 0.23%)</title><rect x="664.9" y="309" width="2.8" height="15.0" fill="rgb(251,13,27)" rx="2" ry="2" />
<text  x="667.95" y="319.5" ></text>
</g>
<g >
<title>bms_copy (1,000,000 samples, 0.08%)</title><rect x="840.3" y="469" width="0.9" height="15.0" fill="rgb(238,139,36)" rx="2" ry="2" />
<text  x="843.27" y="479.5" ></text>
</g>
<g >
<title>SetupLockInTable (1,000,000 samples, 0.08%)</title><rect x="921.1" y="229" width="0.9" height="15.0" fill="rgb(254,157,8)" rx="2" ry="2" />
<text  x="924.12" y="239.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="714.9" y="149" width="0.9" height="15.0" fill="rgb(239,131,28)" rx="2" ry="2" />
<text  x="717.91" y="159.5" ></text>
</g>
<g >
<title>relation_close (3,000,000 samples, 0.23%)</title><rect x="455.1" y="421" width="2.7" height="15.0" fill="rgb(248,137,18)" rx="2" ry="2" />
<text  x="458.11" y="431.5" ></text>
</g>
<g >
<title>find_single_rel_for_clauses (1,000,000 samples, 0.08%)</title><rect x="805.8" y="421" width="0.9" height="15.0" fill="rgb(237,200,3)" rx="2" ry="2" />
<text  x="808.75" y="431.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,000,000 samples, 0.08%)</title><rect x="593.2" y="469" width="0.9" height="15.0" fill="rgb(250,109,14)" rx="2" ry="2" />
<text  x="596.19" y="479.5" ></text>
</g>
<g >
<title>SetupLockInTable (1,000,000 samples, 0.08%)</title><rect x="347.0" y="437" width="0.9" height="15.0" fill="rgb(222,139,18)" rx="2" ry="2" />
<text  x="350.01" y="447.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="132.6" y="437" width="0.9" height="15.0" fill="rgb(234,172,29)" rx="2" ry="2" />
<text  x="135.63" y="447.5" ></text>
</g>
<g >
<title>adjust_appendrel_attrs_mutator (3,000,000 samples, 0.23%)</title><rect x="874.8" y="581" width="2.7" height="15.0" fill="rgb(210,12,43)" rx="2" ry="2" />
<text  x="877.79" y="591.5" ></text>
</g>
<g >
<title>clear_page_orig (2,000,000 samples, 0.15%)</title><rect x="432.4" y="277" width="1.8" height="15.0" fill="rgb(243,78,14)" rx="2" ry="2" />
<text  x="435.40" y="287.5" ></text>
</g>
<g >
<title>contain_volatile_functions (1,000,000 samples, 0.08%)</title><rect x="689.5" y="373" width="0.9" height="15.0" fill="rgb(254,166,11)" rx="2" ry="2" />
<text  x="692.48" y="383.5" ></text>
</g>
<g >
<title>add_eq_derive (1,000,000 samples, 0.08%)</title><rect x="818.5" y="501" width="0.9" height="15.0" fill="rgb(215,93,54)" rx="2" ry="2" />
<text  x="821.47" y="511.5" ></text>
</g>
<g >
<title>colname_is_unique (1,000,000 samples, 0.08%)</title><rect x="20.0" y="661" width="0.9" height="15.0" fill="rgb(229,14,4)" rx="2" ry="2" />
<text  x="22.99" y="671.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (35,000,000 samples, 2.69%)</title><rect x="516.9" y="549" width="31.8" height="15.0" fill="rgb(210,152,49)" rx="2" ry="2" />
<text  x="519.88" y="559.5" >Re..</text>
</g>
<g >
<title>ResourceArrayRemove (1,000,000 samples, 0.08%)</title><rect x="331.6" y="437" width="0.9" height="15.0" fill="rgb(213,40,35)" rx="2" ry="2" />
<text  x="334.57" y="447.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,000,000 samples, 0.08%)</title><rect x="79.0" y="421" width="0.9" height="15.0" fill="rgb(231,87,53)" rx="2" ry="2" />
<text  x="82.04" y="431.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="947.5" y="325" width="0.9" height="15.0" fill="rgb(218,112,17)" rx="2" ry="2" />
<text  x="950.46" y="335.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (7,000,000 samples, 0.54%)</title><rect x="393.3" y="341" width="6.4" height="15.0" fill="rgb(209,229,17)" rx="2" ry="2" />
<text  x="396.34" y="351.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (3,000,000 samples, 0.23%)</title><rect x="369.7" y="213" width="2.7" height="15.0" fill="rgb(220,226,48)" rx="2" ry="2" />
<text  x="372.72" y="223.5" ></text>
</g>
<g >
<title>copyObjectImpl (2,000,000 samples, 0.15%)</title><rect x="869.3" y="549" width="1.9" height="15.0" fill="rgb(245,151,25)" rx="2" ry="2" />
<text  x="872.34" y="559.5" ></text>
</g>
<g >
<title>nodeRead (5,000,000 samples, 0.38%)</title><rect x="82.7" y="357" width="4.5" height="15.0" fill="rgb(218,84,46)" rx="2" ry="2" />
<text  x="85.67" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (2,000,000 samples, 0.15%)</title><rect x="434.2" y="341" width="1.8" height="15.0" fill="rgb(208,97,32)" rx="2" ry="2" />
<text  x="437.22" y="351.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,000,000 samples, 0.23%)</title><rect x="514.2" y="421" width="2.7" height="15.0" fill="rgb(249,23,18)" rx="2" ry="2" />
<text  x="517.16" y="431.5" ></text>
</g>
<g >
<title>__libc_start_main (1,140,000,000 samples, 87.76%)</title><rect x="17.3" y="997" width="1035.5" height="15.0" fill="rgb(228,142,18)" rx="2" ry="2" />
<text  x="20.27" y="1007.5" >__libc_start_main</text>
</g>
<g >
<title>tcp_close (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="853" width="1.0" height="15.0" fill="rgb(212,37,37)" rx="2" ry="2" />
<text  x="1187.55" y="863.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (3,000,000 samples, 0.23%)</title><rect x="1046.5" y="805" width="2.7" height="15.0" fill="rgb(239,163,9)" rx="2" ry="2" />
<text  x="1049.47" y="815.5" ></text>
</g>
<g >
<title>index_open (2,000,000 samples, 0.15%)</title><rect x="54.5" y="421" width="1.8" height="15.0" fill="rgb(206,138,6)" rx="2" ry="2" />
<text  x="57.51" y="431.5" ></text>
</g>
<g >
<title>LockBuffer (1,000,000 samples, 0.08%)</title><rect x="526.9" y="453" width="0.9" height="15.0" fill="rgb(206,68,20)" rx="2" ry="2" />
<text  x="529.87" y="463.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="312.5" y="469" width="0.9" height="15.0" fill="rgb(209,51,37)" rx="2" ry="2" />
<text  x="315.49" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="701.3" y="261" width="0.9" height="15.0" fill="rgb(251,148,6)" rx="2" ry="2" />
<text  x="704.29" y="271.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (4,000,000 samples, 0.31%)</title><rect x="482.4" y="437" width="3.6" height="15.0" fill="rgb(221,189,35)" rx="2" ry="2" />
<text  x="485.36" y="447.5" ></text>
</g>
<g >
<title>dopr (3,000,000 samples, 0.23%)</title><rect x="162.6" y="453" width="2.7" height="15.0" fill="rgb(237,91,52)" rx="2" ry="2" />
<text  x="165.61" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,000,000 samples, 0.15%)</title><rect x="506.9" y="533" width="1.8" height="15.0" fill="rgb(214,183,53)" rx="2" ry="2" />
<text  x="509.89" y="543.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="405" width="0.9" height="15.0" fill="rgb(252,200,42)" rx="2" ry="2" />
<text  x="1052.20" y="415.5" ></text>
</g>
<g >
<title>get_loop_count (1,000,000 samples, 0.08%)</title><rect x="609.5" y="517" width="0.9" height="15.0" fill="rgb(207,24,26)" rx="2" ry="2" />
<text  x="612.54" y="527.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (7,000,000 samples, 0.54%)</title><rect x="393.3" y="357" width="6.4" height="15.0" fill="rgb(251,91,54)" rx="2" ry="2" />
<text  x="396.34" y="367.5" ></text>
</g>
<g >
<title>LockBuffer (1,000,000 samples, 0.08%)</title><rect x="1002.0" y="181" width="0.9" height="15.0" fill="rgb(254,103,26)" rx="2" ry="2" />
<text  x="1004.96" y="191.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="388.8" y="309" width="0.9" height="15.0" fill="rgb(243,163,8)" rx="2" ry="2" />
<text  x="391.80" y="319.5" ></text>
</g>
<g >
<title>hash_search (5,000,000 samples, 0.38%)</title><rect x="560.5" y="453" width="4.5" height="15.0" fill="rgb(210,9,7)" rx="2" ry="2" />
<text  x="563.48" y="463.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (3,000,000 samples, 0.23%)</title><rect x="103.6" y="549" width="2.7" height="15.0" fill="rgb(242,5,35)" rx="2" ry="2" />
<text  x="106.56" y="559.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (2,000,000 samples, 0.15%)</title><rect x="515.1" y="389" width="1.8" height="15.0" fill="rgb(217,193,8)" rx="2" ry="2" />
<text  x="518.07" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="469" width="0.9" height="15.0" fill="rgb(212,124,25)" rx="2" ry="2" />
<text  x="1052.20" y="479.5" ></text>
</g>
<g >
<title>examine_variable (49,000,000 samples, 3.77%)</title><rect x="967.4" y="405" width="44.6" height="15.0" fill="rgb(251,142,48)" rx="2" ry="2" />
<text  x="970.44" y="415.5" >exam..</text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="725.8" y="421" width="0.9" height="15.0" fill="rgb(221,219,18)" rx="2" ry="2" />
<text  x="728.81" y="431.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="1000.1" y="53" width="1.0" height="15.0" fill="rgb(206,180,49)" rx="2" ry="2" />
<text  x="1003.15" y="63.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,000,000 samples, 0.23%)</title><rect x="139.9" y="389" width="2.7" height="15.0" fill="rgb(254,52,32)" rx="2" ry="2" />
<text  x="142.90" y="399.5" ></text>
</g>
<g >
<title>set_simple_column_names (7,000,000 samples, 0.54%)</title><rect x="18.2" y="709" width="6.3" height="15.0" fill="rgb(214,51,28)" rx="2" ry="2" />
<text  x="21.18" y="719.5" ></text>
</g>
<g >
<title>pgstat_prep_relation_pending (2,000,000 samples, 0.15%)</title><rect x="253.4" y="501" width="1.9" height="15.0" fill="rgb(248,103,41)" rx="2" ry="2" />
<text  x="256.45" y="511.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (1,000,000 samples, 0.08%)</title><rect x="328.8" y="453" width="1.0" height="15.0" fill="rgb(249,156,1)" rx="2" ry="2" />
<text  x="331.85" y="463.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,000,000 samples, 0.08%)</title><rect x="714.9" y="261" width="0.9" height="15.0" fill="rgb(211,157,45)" rx="2" ry="2" />
<text  x="717.91" y="271.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,000,000 samples, 0.15%)</title><rect x="277.1" y="485" width="1.8" height="15.0" fill="rgb(233,176,6)" rx="2" ry="2" />
<text  x="280.07" y="495.5" ></text>
</g>
<g >
<title>IndexSupportInitialize (1,000,000 samples, 0.08%)</title><rect x="348.8" y="501" width="0.9" height="15.0" fill="rgb(242,53,26)" rx="2" ry="2" />
<text  x="351.83" y="511.5" ></text>
</g>
<g >
<title>is_opclause (1,000,000 samples, 0.08%)</title><rect x="690.4" y="357" width="0.9" height="15.0" fill="rgb(233,6,39)" rx="2" ry="2" />
<text  x="693.38" y="367.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="286.2" y="325" width="0.9" height="15.0" fill="rgb(218,171,52)" rx="2" ry="2" />
<text  x="289.15" y="335.5" ></text>
</g>
<g >
<title>ExecDropSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="568.7" y="517" width="0.9" height="15.0" fill="rgb(221,0,10)" rx="2" ry="2" />
<text  x="571.66" y="527.5" ></text>
</g>
<g >
<title>OverrideSearchPathMatchesCurrent (1,000,000 samples, 0.08%)</title><rect x="961.1" y="133" width="0.9" height="15.0" fill="rgb(235,122,7)" rx="2" ry="2" />
<text  x="964.09" y="143.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="509.6" y="469" width="0.9" height="15.0" fill="rgb(239,142,41)" rx="2" ry="2" />
<text  x="512.62" y="479.5" ></text>
</g>
<g >
<title>SetupLockInTable (1,000,000 samples, 0.08%)</title><rect x="1031.0" y="373" width="0.9" height="15.0" fill="rgb(221,36,18)" rx="2" ry="2" />
<text  x="1034.03" y="383.5" ></text>
</g>
<g >
<title>cost_index (10,000,000 samples, 0.77%)</title><rect x="802.1" y="501" width="9.1" height="15.0" fill="rgb(233,227,43)" rx="2" ry="2" />
<text  x="805.12" y="511.5" ></text>
</g>
<g >
<title>pull_varnos_walker (1,000,000 samples, 0.08%)</title><rect x="126.3" y="517" width="0.9" height="15.0" fill="rgb(234,146,13)" rx="2" ry="2" />
<text  x="129.27" y="527.5" ></text>
</g>
<g >
<title>get_index_paths (91,000,000 samples, 7.01%)</title><rect x="730.4" y="549" width="82.6" height="15.0" fill="rgb(235,107,19)" rx="2" ry="2" />
<text  x="733.35" y="559.5" >get_index..</text>
</g>
<g >
<title>LockAcquireExtended (5,000,000 samples, 0.38%)</title><rect x="560.5" y="469" width="4.5" height="15.0" fill="rgb(208,171,49)" rx="2" ry="2" />
<text  x="563.48" y="479.5" ></text>
</g>
<g >
<title>DatumGetObjectId (1,000,000 samples, 0.08%)</title><rect x="910.2" y="437" width="0.9" height="15.0" fill="rgb(210,128,35)" rx="2" ry="2" />
<text  x="913.22" y="447.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="823.9" y="357" width="0.9" height="15.0" fill="rgb(249,199,22)" rx="2" ry="2" />
<text  x="826.92" y="367.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="133.5" y="437" width="0.9" height="15.0" fill="rgb(220,156,39)" rx="2" ry="2" />
<text  x="136.54" y="447.5" ></text>
</g>
<g >
<title>ReadBuffer_common (4,000,000 samples, 0.31%)</title><rect x="394.2" y="277" width="3.7" height="15.0" fill="rgb(220,69,5)" rx="2" ry="2" />
<text  x="397.25" y="287.5" ></text>
</g>
<g >
<title>LockRelationOid (4,000,000 samples, 0.31%)</title><rect x="1005.6" y="277" width="3.6" height="15.0" fill="rgb(248,151,50)" rx="2" ry="2" />
<text  x="1008.60" y="287.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="417.9" y="213" width="0.9" height="15.0" fill="rgb(213,13,46)" rx="2" ry="2" />
<text  x="420.87" y="223.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="679.5" y="357" width="0.9" height="15.0" fill="rgb(247,213,50)" rx="2" ry="2" />
<text  x="682.48" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,000,000 samples, 0.15%)</title><rect x="119.0" y="469" width="1.8" height="15.0" fill="rgb(247,113,10)" rx="2" ry="2" />
<text  x="122.01" y="479.5" ></text>
</g>
<g >
<title>PageIsNew (1,000,000 samples, 0.08%)</title><rect x="149.9" y="437" width="0.9" height="15.0" fill="rgb(230,54,21)" rx="2" ry="2" />
<text  x="152.89" y="447.5" ></text>
</g>
<g >
<title>btgettuple (12,000,000 samples, 0.92%)</title><rect x="929.3" y="261" width="10.9" height="15.0" fill="rgb(248,198,48)" rx="2" ry="2" />
<text  x="932.29" y="271.5" ></text>
</g>
<g >
<title>pgstat_release_matching_entry_refs (1,000,000 samples, 0.08%)</title><rect x="1051.9" y="789" width="0.9" height="15.0" fill="rgb(211,35,43)" rx="2" ry="2" />
<text  x="1054.92" y="799.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (1,000,000 samples, 0.08%)</title><rect x="43.6" y="469" width="0.9" height="15.0" fill="rgb(232,179,11)" rx="2" ry="2" />
<text  x="46.61" y="479.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="327.0" y="405" width="0.9" height="15.0" fill="rgb(235,15,15)" rx="2" ry="2" />
<text  x="330.03" y="415.5" ></text>
</g>
<g >
<title>ReadBuffer (4,000,000 samples, 0.31%)</title><rect x="285.2" y="437" width="3.7" height="15.0" fill="rgb(251,97,47)" rx="2" ry="2" />
<text  x="288.24" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,000,000 samples, 0.15%)</title><rect x="796.7" y="341" width="1.8" height="15.0" fill="rgb(225,46,46)" rx="2" ry="2" />
<text  x="799.67" y="351.5" ></text>
</g>
<g >
<title>stringToNode (14,000,000 samples, 1.08%)</title><rect x="79.9" y="501" width="12.8" height="15.0" fill="rgb(224,5,38)" rx="2" ry="2" />
<text  x="82.95" y="511.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (1,000,000 samples, 0.08%)</title><rect x="575.9" y="453" width="0.9" height="15.0" fill="rgb(224,221,32)" rx="2" ry="2" />
<text  x="578.93" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,000,000 samples, 0.38%)</title><rect x="12.7" y="981" width="4.6" height="15.0" fill="rgb(228,228,2)" rx="2" ry="2" />
<text  x="15.73" y="991.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (5,000,000 samples, 0.38%)</title><rect x="363.4" y="405" width="4.5" height="15.0" fill="rgb(239,122,0)" rx="2" ry="2" />
<text  x="366.36" y="415.5" ></text>
</g>
<g >
<title>_bt_first (23,000,000 samples, 1.77%)</title><rect x="399.7" y="341" width="20.9" height="15.0" fill="rgb(254,79,29)" rx="2" ry="2" />
<text  x="402.70" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="127.2" y="549" width="0.9" height="15.0" fill="rgb(212,207,19)" rx="2" ry="2" />
<text  x="130.18" y="559.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="495.1" y="533" width="0.9" height="15.0" fill="rgb(253,222,7)" rx="2" ry="2" />
<text  x="498.08" y="543.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="1009.2" y="261" width="1.8" height="15.0" fill="rgb(216,146,53)" rx="2" ry="2" />
<text  x="1012.23" y="271.5" ></text>
</g>
<g >
<title>extract_strong_not_arg (1,000,000 samples, 0.08%)</title><rect x="901.1" y="517" width="0.9" height="15.0" fill="rgb(248,28,13)" rx="2" ry="2" />
<text  x="904.13" y="527.5" ></text>
</g>
<g >
<title>mdopenfork (1,000,000 samples, 0.08%)</title><rect x="268.9" y="453" width="0.9" height="15.0" fill="rgb(251,37,47)" rx="2" ry="2" />
<text  x="271.89" y="463.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (2,000,000 samples, 0.15%)</title><rect x="64.5" y="357" width="1.8" height="15.0" fill="rgb(217,19,53)" rx="2" ry="2" />
<text  x="67.50" y="367.5" ></text>
</g>
<g >
<title>index_beginscan_internal (2,000,000 samples, 0.15%)</title><rect x="275.3" y="517" width="1.8" height="15.0" fill="rgb(240,155,52)" rx="2" ry="2" />
<text  x="278.25" y="527.5" ></text>
</g>
<g >
<title>adjust_appendrel_attrs_mutator (1,000,000 samples, 0.08%)</title><rect x="871.2" y="533" width="0.9" height="15.0" fill="rgb(245,87,49)" rx="2" ry="2" />
<text  x="874.15" y="543.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="563.2" y="277" width="0.9" height="15.0" fill="rgb(214,100,54)" rx="2" ry="2" />
<text  x="566.21" y="287.5" ></text>
</g>
<g >
<title>LockRelease (1,000,000 samples, 0.08%)</title><rect x="491.4" y="453" width="1.0" height="15.0" fill="rgb(240,43,2)" rx="2" ry="2" />
<text  x="494.45" y="463.5" ></text>
</g>
<g >
<title>_bt_first (5,000,000 samples, 0.38%)</title><rect x="285.2" y="485" width="4.6" height="15.0" fill="rgb(229,161,5)" rx="2" ry="2" />
<text  x="288.24" y="495.5" ></text>
</g>
<g >
<title>__strcmp_sse2 (2,000,000 samples, 0.15%)</title><rect x="498.7" y="581" width="1.8" height="15.0" fill="rgb(231,20,15)" rx="2" ry="2" />
<text  x="501.71" y="591.5" ></text>
</g>
<g >
<title>Insert (1,000,000 samples, 0.08%)</title><rect x="167.2" y="485" width="0.9" height="15.0" fill="rgb(236,34,42)" rx="2" ry="2" />
<text  x="170.15" y="495.5" ></text>
</g>
<g >
<title>RelationInitIndexAccessInfo (1,000,000 samples, 0.08%)</title><rect x="42.7" y="453" width="0.9" height="15.0" fill="rgb(243,80,54)" rx="2" ry="2" />
<text  x="45.70" y="463.5" ></text>
</g>
<g >
<title>list_member_oid (1,000,000 samples, 0.08%)</title><rect x="368.8" y="373" width="0.9" height="15.0" fill="rgb(237,56,30)" rx="2" ry="2" />
<text  x="371.81" y="383.5" ></text>
</g>
<g >
<title>fput_many (1,000,000 samples, 0.08%)</title><rect x="243.5" y="245" width="0.9" height="15.0" fill="rgb(206,31,38)" rx="2" ry="2" />
<text  x="246.46" y="255.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="595.9" y="549" width="0.9" height="15.0" fill="rgb(240,27,20)" rx="2" ry="2" />
<text  x="598.91" y="559.5" ></text>
</g>
<g >
<title>_bt_getroot (2,000,000 samples, 0.15%)</title><rect x="586.8" y="437" width="1.8" height="15.0" fill="rgb(221,205,48)" rx="2" ry="2" />
<text  x="589.83" y="447.5" ></text>
</g>
<g >
<title>is_pseudo_constant_clause_relids (1,000,000 samples, 0.08%)</title><rect x="724.0" y="389" width="0.9" height="15.0" fill="rgb(240,137,10)" rx="2" ry="2" />
<text  x="727.00" y="399.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (2,000,000 samples, 0.15%)</title><rect x="334.3" y="325" width="1.8" height="15.0" fill="rgb(208,169,11)" rx="2" ry="2" />
<text  x="337.30" y="335.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="597.7" y="501" width="1.8" height="15.0" fill="rgb(238,205,0)" rx="2" ry="2" />
<text  x="600.73" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="728.5" y="405" width="0.9" height="15.0" fill="rgb(242,128,20)" rx="2" ry="2" />
<text  x="731.54" y="415.5" ></text>
</g>
<g >
<title>ObjectIdGetDatum (1,000,000 samples, 0.08%)</title><rect x="848.4" y="405" width="1.0" height="15.0" fill="rgb(251,53,32)" rx="2" ry="2" />
<text  x="851.44" y="415.5" ></text>
</g>
<g >
<title>PinBuffer (1,000,000 samples, 0.08%)</title><rect x="72.7" y="245" width="0.9" height="15.0" fill="rgb(242,1,17)" rx="2" ry="2" />
<text  x="75.68" y="255.5" ></text>
</g>
<g >
<title>__do_fault (32,000,000 samples, 2.46%)</title><rect x="213.5" y="261" width="29.0" height="15.0" fill="rgb(243,191,10)" rx="2" ry="2" />
<text  x="216.48" y="271.5" >__..</text>
</g>
<g >
<title>__sock_release (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="885" width="1.0" height="15.0" fill="rgb(247,203,25)" rx="2" ry="2" />
<text  x="1187.55" y="895.5" ></text>
</g>
<g >
<title>pgstat_detach_shmem (1,000,000 samples, 0.08%)</title><rect x="1051.9" y="821" width="0.9" height="15.0" fill="rgb(240,131,50)" rx="2" ry="2" />
<text  x="1054.92" y="831.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="135.4" y="501" width="1.8" height="15.0" fill="rgb(205,61,0)" rx="2" ry="2" />
<text  x="138.36" y="511.5" ></text>
</g>
<g >
<title>ScanPgRelation (52,000,000 samples, 4.00%)</title><rect x="548.7" y="549" width="47.2" height="15.0" fill="rgb(212,119,14)" rx="2" ry="2" />
<text  x="551.68" y="559.5" >Scan..</text>
</g>
<g >
<title>bms_next_member (3,000,000 samples, 0.23%)</title><rect x="671.3" y="389" width="2.7" height="15.0" fill="rgb(215,48,2)" rx="2" ry="2" />
<text  x="674.31" y="399.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="714.9" y="69" width="0.9" height="15.0" fill="rgb(236,169,53)" rx="2" ry="2" />
<text  x="717.91" y="79.5" ></text>
</g>
<g >
<title>smgropen (2,000,000 samples, 0.15%)</title><rect x="258.0" y="453" width="1.8" height="15.0" fill="rgb(211,109,26)" rx="2" ry="2" />
<text  x="260.99" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="727.6" y="469" width="0.9" height="15.0" fill="rgb(250,104,28)" rx="2" ry="2" />
<text  x="730.63" y="479.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (1,000,000 samples, 0.08%)</title><rect x="486.9" y="421" width="0.9" height="15.0" fill="rgb(240,1,43)" rx="2" ry="2" />
<text  x="489.91" y="431.5" ></text>
</g>
<g >
<title>bms_add_member (3,000,000 samples, 0.23%)</title><rect x="645.0" y="373" width="2.7" height="15.0" fill="rgb(253,70,29)" rx="2" ry="2" />
<text  x="647.97" y="383.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="526.9" y="437" width="0.9" height="15.0" fill="rgb(239,108,43)" rx="2" ry="2" />
<text  x="529.87" y="447.5" ></text>
</g>
<g >
<title>find_single_rel_for_clauses (1,000,000 samples, 0.08%)</title><rect x="719.5" y="389" width="0.9" height="15.0" fill="rgb(253,118,28)" rx="2" ry="2" />
<text  x="722.45" y="399.5" ></text>
</g>
<g >
<title>dlist_push_tail (1,000,000 samples, 0.08%)</title><rect x="1031.0" y="357" width="0.9" height="15.0" fill="rgb(243,2,49)" rx="2" ry="2" />
<text  x="1034.03" y="367.5" ></text>
</g>
<g >
<title>GrantLock (1,000,000 samples, 0.08%)</title><rect x="1041.0" y="405" width="0.9" height="15.0" fill="rgb(207,154,7)" rx="2" ry="2" />
<text  x="1044.02" y="415.5" ></text>
</g>
<g >
<title>PageGetItemId (1,000,000 samples, 0.08%)</title><rect x="996.5" y="213" width="0.9" height="15.0" fill="rgb(238,202,51)" rx="2" ry="2" />
<text  x="999.51" y="223.5" ></text>
</g>
<g >
<title>_bt_binsrch (1,000,000 samples, 0.08%)</title><rect x="486.0" y="421" width="0.9" height="15.0" fill="rgb(230,203,23)" rx="2" ry="2" />
<text  x="489.00" y="431.5" ></text>
</g>
<g >
<title>fmtint (2,000,000 samples, 0.15%)</title><rect x="163.5" y="437" width="1.8" height="15.0" fill="rgb(233,12,39)" rx="2" ry="2" />
<text  x="166.52" y="447.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="1003.8" y="229" width="0.9" height="15.0" fill="rgb(229,162,16)" rx="2" ry="2" />
<text  x="1006.78" y="239.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2,000,000 samples, 0.15%)</title><rect x="173.5" y="421" width="1.8" height="15.0" fill="rgb(248,31,9)" rx="2" ry="2" />
<text  x="176.51" y="431.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="175.3" y="485" width="0.9" height="15.0" fill="rgb(218,32,3)" rx="2" ry="2" />
<text  x="178.33" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="669.5" y="309" width="0.9" height="15.0" fill="rgb(246,15,43)" rx="2" ry="2" />
<text  x="672.49" y="319.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="442.4" y="373" width="1.8" height="15.0" fill="rgb(237,162,5)" rx="2" ry="2" />
<text  x="445.39" y="383.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (1,000,000 samples, 0.08%)</title><rect x="797.6" y="325" width="0.9" height="15.0" fill="rgb(243,161,1)" rx="2" ry="2" />
<text  x="800.58" y="335.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (1,000,000 samples, 0.08%)</title><rect x="1031.9" y="389" width="0.9" height="15.0" fill="rgb(206,19,10)" rx="2" ry="2" />
<text  x="1034.94" y="399.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="439.7" y="405" width="0.9" height="15.0" fill="rgb(252,214,49)" rx="2" ry="2" />
<text  x="442.67" y="415.5" ></text>
</g>
<g >
<title>pull_varnos (1,000,000 samples, 0.08%)</title><rect x="126.3" y="549" width="0.9" height="15.0" fill="rgb(240,132,52)" rx="2" ry="2" />
<text  x="129.27" y="559.5" ></text>
</g>
<g >
<title>_bt_search (5,000,000 samples, 0.38%)</title><rect x="450.6" y="357" width="4.5" height="15.0" fill="rgb(243,102,11)" rx="2" ry="2" />
<text  x="453.57" y="367.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="501" width="1.0" height="15.0" fill="rgb(233,31,36)" rx="2" ry="2" />
<text  x="1187.55" y="511.5" ></text>
</g>
<g >
<title>ScanKeyInit (1,000,000 samples, 0.08%)</title><rect x="271.6" y="549" width="0.9" height="15.0" fill="rgb(252,78,44)" rx="2" ry="2" />
<text  x="274.62" y="559.5" ></text>
</g>
<g >
<title>AllocateRelationDesc (9,000,000 samples, 0.69%)</title><rect x="310.7" y="517" width="8.2" height="15.0" fill="rgb(244,144,32)" rx="2" ry="2" />
<text  x="313.68" y="527.5" ></text>
</g>
<g >
<title>get_ec_source_indexes_strict (1,000,000 samples, 0.08%)</title><rect x="830.3" y="485" width="0.9" height="15.0" fill="rgb(249,181,2)" rx="2" ry="2" />
<text  x="833.28" y="495.5" ></text>
</g>
<g >
<title>clauselist_selectivity (6,000,000 samples, 0.46%)</title><rect x="690.4" y="405" width="5.4" height="15.0" fill="rgb(243,216,37)" rx="2" ry="2" />
<text  x="693.38" y="415.5" ></text>
</g>
<g >
<title>uint32_hash (1,000,000 samples, 0.08%)</title><rect x="695.8" y="357" width="0.9" height="15.0" fill="rgb(253,198,50)" rx="2" ry="2" />
<text  x="698.84" y="367.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="376.1" y="277" width="0.9" height="15.0" fill="rgb(247,25,33)" rx="2" ry="2" />
<text  x="379.08" y="287.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="995.6" y="229" width="0.9" height="15.0" fill="rgb(227,207,33)" rx="2" ry="2" />
<text  x="998.60" y="239.5" ></text>
</g>
<g >
<title>match_opclause_to_indexcol (8,000,000 samples, 0.62%)</title><rect x="846.6" y="485" width="7.3" height="15.0" fill="rgb(218,29,1)" rx="2" ry="2" />
<text  x="849.63" y="495.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (2,000,000 samples, 0.15%)</title><rect x="320.7" y="373" width="1.8" height="15.0" fill="rgb(209,176,47)" rx="2" ry="2" />
<text  x="323.67" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="495.1" y="501" width="0.9" height="15.0" fill="rgb(219,142,21)" rx="2" ry="2" />
<text  x="498.08" y="511.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="645.9" y="309" width="1.8" height="15.0" fill="rgb(209,143,26)" rx="2" ry="2" />
<text  x="648.87" y="319.5" ></text>
</g>
<g >
<title>mem_cgroup_charge (1,000,000 samples, 0.08%)</title><rect x="796.7" y="325" width="0.9" height="15.0" fill="rgb(215,64,19)" rx="2" ry="2" />
<text  x="799.67" y="335.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (1,000,000 samples, 0.08%)</title><rect x="1042.8" y="421" width="0.9" height="15.0" fill="rgb(234,34,28)" rx="2" ry="2" />
<text  x="1045.84" y="431.5" ></text>
</g>
<g >
<title>LWLockAcquire (3,000,000 samples, 0.23%)</title><rect x="386.1" y="341" width="2.7" height="15.0" fill="rgb(220,162,5)" rx="2" ry="2" />
<text  x="389.07" y="351.5" ></text>
</g>
<g >
<title>ReleaseBuffer (1,000,000 samples, 0.08%)</title><rect x="61.8" y="357" width="0.9" height="15.0" fill="rgb(208,61,44)" rx="2" ry="2" />
<text  x="64.78" y="367.5" ></text>
</g>
<g >
<title>SearchCatCache1 (37,000,000 samples, 2.85%)</title><rect x="430.6" y="485" width="33.6" height="15.0" fill="rgb(251,193,11)" rx="2" ry="2" />
<text  x="433.59" y="495.5" >Se..</text>
</g>
<g >
<title>ExecInterpExprStillValid (13,000,000 samples, 1.00%)</title><rect x="952.0" y="309" width="11.8" height="15.0" fill="rgb(239,25,38)" rx="2" ry="2" />
<text  x="955.00" y="319.5" ></text>
</g>
<g >
<title>get_ec_derive_indexes_strict (5,000,000 samples, 0.38%)</title><rect x="701.3" y="389" width="4.5" height="15.0" fill="rgb(229,0,3)" rx="2" ry="2" />
<text  x="704.29" y="399.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (1,000,000 samples, 0.08%)</title><rect x="701.3" y="357" width="0.9" height="15.0" fill="rgb(219,138,17)" rx="2" ry="2" />
<text  x="704.29" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="142.6" y="453" width="0.9" height="15.0" fill="rgb(232,128,28)" rx="2" ry="2" />
<text  x="145.63" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="45.4" y="325" width="0.9" height="15.0" fill="rgb(242,222,9)" rx="2" ry="2" />
<text  x="48.43" y="335.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="542.3" y="325" width="0.9" height="15.0" fill="rgb(223,94,24)" rx="2" ry="2" />
<text  x="545.32" y="335.5" ></text>
</g>
<g >
<title>transformSelectStmt (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="741" width="0.9" height="15.0" fill="rgb(242,6,0)" rx="2" ry="2" />
<text  x="1052.20" y="751.5" ></text>
</g>
<g >
<title>pairingheap_add (1,000,000 samples, 0.08%)</title><rect x="550.5" y="485" width="0.9" height="15.0" fill="rgb(218,72,51)" rx="2" ry="2" />
<text  x="553.49" y="495.5" ></text>
</g>
<g >
<title>SearchSysCache1 (3,000,000 samples, 0.23%)</title><rect x="693.1" y="357" width="2.7" height="15.0" fill="rgb(217,85,37)" rx="2" ry="2" />
<text  x="696.11" y="367.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,000,000 samples, 0.08%)</title><rect x="542.3" y="389" width="0.9" height="15.0" fill="rgb(206,206,26)" rx="2" ry="2" />
<text  x="545.32" y="399.5" ></text>
</g>
<g >
<title>RelationGetIndexAttOptions (85,000,000 samples, 6.54%)</title><rect x="352.5" y="501" width="77.2" height="15.0" fill="rgb(244,79,43)" rx="2" ry="2" />
<text  x="355.46" y="511.5" >Relation..</text>
</g>
<g >
<title>bms_add_members (1,000,000 samples, 0.08%)</title><rect x="873.9" y="549" width="0.9" height="15.0" fill="rgb(213,2,14)" rx="2" ry="2" />
<text  x="876.88" y="559.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="679.5" y="341" width="0.9" height="15.0" fill="rgb(247,15,30)" rx="2" ry="2" />
<text  x="682.48" y="351.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,000,000 samples, 0.31%)</title><rect x="363.4" y="293" width="3.6" height="15.0" fill="rgb(237,107,9)" rx="2" ry="2" />
<text  x="366.36" y="303.5" ></text>
</g>
<g >
<title>clauselist_selectivity (3,000,000 samples, 0.23%)</title><rect x="805.8" y="453" width="2.7" height="15.0" fill="rgb(212,17,44)" rx="2" ry="2" />
<text  x="808.75" y="463.5" ></text>
</g>
<g >
<title>PageGetItem (1,000,000 samples, 0.08%)</title><rect x="446.9" y="325" width="0.9" height="15.0" fill="rgb(238,21,33)" rx="2" ry="2" />
<text  x="449.94" y="335.5" ></text>
</g>
<g >
<title>dlist_push_tail (1,000,000 samples, 0.08%)</title><rect x="134.4" y="469" width="1.0" height="15.0" fill="rgb(244,180,30)" rx="2" ry="2" />
<text  x="137.45" y="479.5" ></text>
</g>
<g >
<title>fix_expr_common (1,000,000 samples, 0.08%)</title><rect x="36.3" y="517" width="1.0" height="15.0" fill="rgb(251,163,38)" rx="2" ry="2" />
<text  x="39.34" y="527.5" ></text>
</g>
<g >
<title>restriction_selectivity (118,000,000 samples, 9.08%)</title><rect x="908.4" y="501" width="107.2" height="15.0" fill="rgb(209,209,15)" rx="2" ry="2" />
<text  x="911.40" y="511.5" >restriction_s..</text>
</g>
<g >
<title>GetUserId (1,000,000 samples, 0.08%)</title><rect x="964.7" y="293" width="0.9" height="15.0" fill="rgb(215,89,51)" rx="2" ry="2" />
<text  x="967.72" y="303.5" ></text>
</g>
<g >
<title>btoidcmp (1,000,000 samples, 0.08%)</title><rect x="412.4" y="261" width="0.9" height="15.0" fill="rgb(221,7,35)" rx="2" ry="2" />
<text  x="415.42" y="271.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="766.7" y="309" width="0.9" height="15.0" fill="rgb(229,132,15)" rx="2" ry="2" />
<text  x="769.69" y="319.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,000,000 samples, 0.08%)</title><rect x="388.8" y="341" width="0.9" height="15.0" fill="rgb(248,65,39)" rx="2" ry="2" />
<text  x="391.80" y="351.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="129.9" y="549" width="0.9" height="15.0" fill="rgb(232,67,33)" rx="2" ry="2" />
<text  x="132.91" y="559.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="796.7" y="357" width="1.8" height="15.0" fill="rgb(250,205,45)" rx="2" ry="2" />
<text  x="799.67" y="367.5" ></text>
</g>
<g >
<title>ExecClearTuple (2,000,000 samples, 0.15%)</title><rect x="381.5" y="373" width="1.8" height="15.0" fill="rgb(229,155,28)" rx="2" ry="2" />
<text  x="384.53" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="10.9" y="933" width="0.9" height="15.0" fill="rgb(248,21,34)" rx="2" ry="2" />
<text  x="13.91" y="943.5" ></text>
</g>
<g >
<title>heapam_index_fetch_begin (1,000,000 samples, 0.08%)</title><rect x="372.4" y="357" width="1.0" height="15.0" fill="rgb(218,134,9)" rx="2" ry="2" />
<text  x="375.45" y="367.5" ></text>
</g>
<g >
<title>ReadBuffer (1,000,000 samples, 0.08%)</title><rect x="542.3" y="405" width="0.9" height="15.0" fill="rgb(232,158,6)" rx="2" ry="2" />
<text  x="545.32" y="415.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="479.6" y="469" width="0.9" height="15.0" fill="rgb(231,12,4)" rx="2" ry="2" />
<text  x="482.64" y="479.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="132.6" y="389" width="0.9" height="15.0" fill="rgb(206,92,45)" rx="2" ry="2" />
<text  x="135.63" y="399.5" ></text>
</g>
<g >
<title>SearchSysCache1 (2,000,000 samples, 0.15%)</title><rect x="1043.7" y="501" width="1.9" height="15.0" fill="rgb(245,53,29)" rx="2" ry="2" />
<text  x="1046.75" y="511.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (1,000,000 samples, 0.08%)</title><rect x="943.8" y="245" width="0.9" height="15.0" fill="rgb(244,34,0)" rx="2" ry="2" />
<text  x="946.83" y="255.5" ></text>
</g>
<g >
<title>murmurhash32 (1,000,000 samples, 0.08%)</title><rect x="676.8" y="357" width="0.9" height="15.0" fill="rgb(233,143,39)" rx="2" ry="2" />
<text  x="679.76" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="474.2" y="293" width="0.9" height="15.0" fill="rgb(206,29,43)" rx="2" ry="2" />
<text  x="477.19" y="303.5" ></text>
</g>
<g >
<title>contain_volatile_functions (1,000,000 samples, 0.08%)</title><rect x="724.0" y="373" width="0.9" height="15.0" fill="rgb(233,116,48)" rx="2" ry="2" />
<text  x="727.00" y="383.5" ></text>
</g>
<g >
<title>ServerLoop (1,140,000,000 samples, 87.76%)</title><rect x="17.3" y="949" width="1035.5" height="15.0" fill="rgb(229,184,23)" rx="2" ry="2" />
<text  x="20.27" y="959.5" >ServerLoop</text>
</g>
<g >
<title>prep_new_page (2,000,000 samples, 0.15%)</title><rect x="664.9" y="245" width="1.9" height="15.0" fill="rgb(223,172,46)" rx="2" ry="2" />
<text  x="667.95" y="255.5" ></text>
</g>
<g >
<title>clear_page_orig (3,000,000 samples, 0.23%)</title><rect x="364.3" y="245" width="2.7" height="15.0" fill="rgb(222,113,21)" rx="2" ry="2" />
<text  x="367.27" y="255.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberSnapshot (1,000,000 samples, 0.08%)</title><rect x="918.4" y="261" width="0.9" height="15.0" fill="rgb(246,30,2)" rx="2" ry="2" />
<text  x="921.39" y="271.5" ></text>
</g>
<g >
<title>btgettuple (9,000,000 samples, 0.69%)</title><rect x="143.5" y="517" width="8.2" height="15.0" fill="rgb(221,126,12)" rx="2" ry="2" />
<text  x="146.53" y="527.5" ></text>
</g>
<g >
<title>_bt_checkkeys (3,000,000 samples, 0.23%)</title><rect x="538.7" y="437" width="2.7" height="15.0" fill="rgb(227,183,35)" rx="2" ry="2" />
<text  x="541.68" y="447.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (1,000,000 samples, 0.08%)</title><rect x="1179.1" y="853" width="0.9" height="15.0" fill="rgb(209,101,17)" rx="2" ry="2" />
<text  x="1182.10" y="863.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (1,000,000 samples, 0.08%)</title><rect x="526.0" y="453" width="0.9" height="15.0" fill="rgb(252,229,1)" rx="2" ry="2" />
<text  x="528.97" y="463.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (1,000,000 samples, 0.08%)</title><rect x="526.0" y="437" width="0.9" height="15.0" fill="rgb(205,200,17)" rx="2" ry="2" />
<text  x="528.97" y="447.5" ></text>
</g>
<g >
<title>find_childrel_parents (2,000,000 samples, 0.15%)</title><rect x="835.7" y="517" width="1.8" height="15.0" fill="rgb(206,119,51)" rx="2" ry="2" />
<text  x="838.73" y="527.5" ></text>
</g>
<g >
<title>pstrdup (1,000,000 samples, 0.08%)</title><rect x="21.8" y="677" width="0.9" height="15.0" fill="rgb(236,59,10)" rx="2" ry="2" />
<text  x="24.81" y="687.5" ></text>
</g>
<g >
<title>get_ecmember_indexes (1,000,000 samples, 0.08%)</title><rect x="873.9" y="565" width="0.9" height="15.0" fill="rgb(236,21,41)" rx="2" ry="2" />
<text  x="876.88" y="575.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="31.8" y="485" width="0.9" height="15.0" fill="rgb(248,127,31)" rx="2" ry="2" />
<text  x="34.80" y="495.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,000,000 samples, 0.08%)</title><rect x="344.3" y="389" width="0.9" height="15.0" fill="rgb(254,15,8)" rx="2" ry="2" />
<text  x="347.29" y="399.5" ></text>
</g>
<g >
<title>BufferAlloc (1,000,000 samples, 0.08%)</title><rect x="544.1" y="357" width="0.9" height="15.0" fill="rgb(231,125,26)" rx="2" ry="2" />
<text  x="547.13" y="367.5" ></text>
</g>
<g >
<title>systable_getnext (13,000,000 samples, 1.00%)</title><rect x="332.5" y="501" width="11.8" height="15.0" fill="rgb(210,97,39)" rx="2" ry="2" />
<text  x="335.48" y="511.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="65.4" y="261" width="0.9" height="15.0" fill="rgb(242,207,2)" rx="2" ry="2" />
<text  x="68.41" y="271.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,000,000 samples, 0.46%)</title><rect x="553.2" y="421" width="5.5" height="15.0" fill="rgb(254,41,40)" rx="2" ry="2" />
<text  x="556.22" y="431.5" ></text>
</g>
<g >
<title>index_getnext_tid (8,000,000 samples, 0.62%)</title><rect x="996.5" y="277" width="7.3" height="15.0" fill="rgb(235,147,52)" rx="2" ry="2" />
<text  x="999.51" y="287.5" ></text>
</g>
<g >
<title>systable_beginscan (6,000,000 samples, 0.46%)</title><rect x="323.4" y="501" width="5.4" height="15.0" fill="rgb(230,96,46)" rx="2" ry="2" />
<text  x="326.39" y="511.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMaskExternal (1,000,000 samples, 0.08%)</title><rect x="698.6" y="373" width="0.9" height="15.0" fill="rgb(241,46,43)" rx="2" ry="2" />
<text  x="701.56" y="383.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (4,000,000 samples, 0.31%)</title><rect x="46.3" y="437" width="3.7" height="15.0" fill="rgb(206,201,4)" rx="2" ry="2" />
<text  x="49.34" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="360.6" y="373" width="0.9" height="15.0" fill="rgb(211,151,16)" rx="2" ry="2" />
<text  x="363.64" y="383.5" ></text>
</g>
<g >
<title>fetch_att (1,000,000 samples, 0.08%)</title><rect x="340.7" y="373" width="0.9" height="15.0" fill="rgb(249,185,29)" rx="2" ry="2" />
<text  x="343.65" y="383.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (2,000,000 samples, 0.15%)</title><rect x="528.7" y="453" width="1.8" height="15.0" fill="rgb(248,130,47)" rx="2" ry="2" />
<text  x="531.69" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (25,000,000 samples, 1.92%)</title><rect x="219.8" y="149" width="22.7" height="15.0" fill="rgb(244,65,31)" rx="2" ry="2" />
<text  x="222.84" y="159.5" >g..</text>
</g>
<g >
<title>hash_bytes_uint32 (1,000,000 samples, 0.08%)</title><rect x="695.8" y="341" width="0.9" height="15.0" fill="rgb(207,47,49)" rx="2" ry="2" />
<text  x="698.84" y="351.5" ></text>
</g>
<g >
<title>func_volatile (1,000,000 samples, 0.08%)</title><rect x="807.6" y="341" width="0.9" height="15.0" fill="rgb(211,204,40)" rx="2" ry="2" />
<text  x="810.57" y="351.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (1,000,000 samples, 0.08%)</title><rect x="21.8" y="661" width="0.9" height="15.0" fill="rgb(226,189,53)" rx="2" ry="2" />
<text  x="24.81" y="671.5" ></text>
</g>
<g >
<title>pull_varattnos (1,000,000 samples, 0.08%)</title><rect x="801.2" y="501" width="0.9" height="15.0" fill="rgb(225,54,28)" rx="2" ry="2" />
<text  x="804.21" y="511.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="288.0" y="357" width="0.9" height="15.0" fill="rgb(235,45,39)" rx="2" ry="2" />
<text  x="290.97" y="367.5" ></text>
</g>
<g >
<title>expand_function_arguments (2,000,000 samples, 0.15%)</title><rect x="113.6" y="533" width="1.8" height="15.0" fill="rgb(223,95,5)" rx="2" ry="2" />
<text  x="116.56" y="543.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="565.0" y="469" width="0.9" height="15.0" fill="rgb(225,200,21)" rx="2" ry="2" />
<text  x="568.03" y="479.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,000,000 samples, 0.08%)</title><rect x="71.8" y="213" width="0.9" height="15.0" fill="rgb(234,129,45)" rx="2" ry="2" />
<text  x="74.77" y="223.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (1,000,000 samples, 0.08%)</title><rect x="347.9" y="421" width="0.9" height="15.0" fill="rgb(235,47,34)" rx="2" ry="2" />
<text  x="350.92" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (5,000,000 samples, 0.38%)</title><rect x="363.4" y="373" width="4.5" height="15.0" fill="rgb(212,93,34)" rx="2" ry="2" />
<text  x="366.36" y="383.5" ></text>
</g>
<g >
<title>GrantLockLocal (1,000,000 samples, 0.08%)</title><rect x="22.7" y="629" width="0.9" height="15.0" fill="rgb(227,10,7)" rx="2" ry="2" />
<text  x="25.72" y="639.5" ></text>
</g>
<g >
<title>eclass_member_iterator_next (2,000,000 samples, 0.15%)</title><rect x="833.9" y="517" width="1.8" height="15.0" fill="rgb(212,125,28)" rx="2" ry="2" />
<text  x="836.91" y="527.5" ></text>
</g>
<g >
<title>cost_qual_eval (1,000,000 samples, 0.08%)</title><rect x="608.6" y="485" width="0.9" height="15.0" fill="rgb(208,19,15)" rx="2" ry="2" />
<text  x="611.63" y="495.5" ></text>
</g>
<g >
<title>PredicateLockPage (1,000,000 samples, 0.08%)</title><rect x="399.7" y="325" width="0.9" height="15.0" fill="rgb(219,172,15)" rx="2" ry="2" />
<text  x="402.70" y="335.5" ></text>
</g>
<g >
<title>index_beginscan_internal (2,000,000 samples, 0.15%)</title><rect x="130.8" y="533" width="1.8" height="15.0" fill="rgb(209,128,45)" rx="2" ry="2" />
<text  x="133.82" y="543.5" ></text>
</g>
<g >
<title>add_rtes_to_flat_rtable (2,000,000 samples, 0.15%)</title><rect x="34.5" y="693" width="1.8" height="15.0" fill="rgb(206,168,46)" rx="2" ry="2" />
<text  x="37.53" y="703.5" ></text>
</g>
<g >
<title>ScanKeyInit (1,000,000 samples, 0.08%)</title><rect x="302.5" y="565" width="0.9" height="15.0" fill="rgb(217,102,45)" rx="2" ry="2" />
<text  x="305.50" y="575.5" ></text>
</g>
<g >
<title>BufferAlloc (2,000,000 samples, 0.15%)</title><rect x="71.8" y="261" width="1.8" height="15.0" fill="rgb(233,212,51)" rx="2" ry="2" />
<text  x="74.77" y="271.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,000,000 samples, 0.08%)</title><rect x="341.6" y="389" width="0.9" height="15.0" fill="rgb(239,3,48)" rx="2" ry="2" />
<text  x="344.56" y="399.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="947.5" y="373" width="0.9" height="15.0" fill="rgb(210,86,35)" rx="2" ry="2" />
<text  x="950.46" y="383.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (1,000,000 samples, 0.08%)</title><rect x="1170.0" y="933" width="0.9" height="15.0" fill="rgb(228,116,48)" rx="2" ry="2" />
<text  x="1173.02" y="943.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="127.2" y="437" width="0.9" height="15.0" fill="rgb(211,181,52)" rx="2" ry="2" />
<text  x="130.18" y="447.5" ></text>
</g>
<g >
<title>partition_rbound_cmp (1,000,000 samples, 0.08%)</title><rect x="79.0" y="437" width="0.9" height="15.0" fill="rgb(250,18,29)" rx="2" ry="2" />
<text  x="82.04" y="447.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (1,000,000 samples, 0.08%)</title><rect x="1052.8" y="997" width="0.9" height="15.0" fill="rgb(210,93,16)" rx="2" ry="2" />
<text  x="1055.83" y="1007.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="344.3" y="437" width="0.9" height="15.0" fill="rgb(233,171,1)" rx="2" ry="2" />
<text  x="347.29" y="447.5" ></text>
</g>
<g >
<title>SearchSysCache3 (1,000,000 samples, 0.08%)</title><rect x="715.8" y="245" width="0.9" height="15.0" fill="rgb(227,89,51)" rx="2" ry="2" />
<text  x="718.82" y="255.5" ></text>
</g>
<g >
<title>pvsnprintf (4,000,000 samples, 0.31%)</title><rect x="162.6" y="485" width="3.6" height="15.0" fill="rgb(246,173,33)" rx="2" ry="2" />
<text  x="165.61" y="495.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="133.5" y="453" width="0.9" height="15.0" fill="rgb(247,69,29)" rx="2" ry="2" />
<text  x="136.54" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,000,000 samples, 0.23%)</title><rect x="1187.3" y="901" width="2.7" height="15.0" fill="rgb(237,150,23)" rx="2" ry="2" />
<text  x="1190.27" y="911.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="915.7" y="133" width="0.9" height="15.0" fill="rgb(209,111,30)" rx="2" ry="2" />
<text  x="918.67" y="143.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="385.2" y="357" width="0.9" height="15.0" fill="rgb(244,125,28)" rx="2" ry="2" />
<text  x="388.17" y="367.5" ></text>
</g>
<g >
<title>table_index_fetch_begin (1,000,000 samples, 0.08%)</title><rect x="559.6" y="501" width="0.9" height="15.0" fill="rgb(242,3,35)" rx="2" ry="2" />
<text  x="562.58" y="511.5" ></text>
</g>
<g >
<title>SearchCatCache2 (82,000,000 samples, 6.31%)</title><rect x="354.3" y="453" width="74.5" height="15.0" fill="rgb(242,10,33)" rx="2" ry="2" />
<text  x="357.28" y="463.5" >SearchCa..</text>
</g>
<g >
<title>ReadBufferExtended (4,000,000 samples, 0.31%)</title><rect x="139.0" y="453" width="3.6" height="15.0" fill="rgb(222,165,16)" rx="2" ry="2" />
<text  x="141.99" y="463.5" ></text>
</g>
<g >
<title>LockAcquireExtended (4,000,000 samples, 0.31%)</title><rect x="1005.6" y="261" width="3.6" height="15.0" fill="rgb(244,85,7)" rx="2" ry="2" />
<text  x="1008.60" y="271.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,000,000 samples, 0.08%)</title><rect x="289.8" y="485" width="0.9" height="15.0" fill="rgb(245,154,23)" rx="2" ry="2" />
<text  x="292.78" y="495.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (1,000,000 samples, 0.08%)</title><rect x="809.4" y="421" width="0.9" height="15.0" fill="rgb(217,13,33)" rx="2" ry="2" />
<text  x="812.38" y="431.5" ></text>
</g>
<g >
<title>__do_sys_brk (4,000,000 samples, 0.31%)</title><rect x="12.7" y="949" width="3.7" height="15.0" fill="rgb(224,54,29)" rx="2" ry="2" />
<text  x="15.73" y="959.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="1039.2" y="229" width="0.9" height="15.0" fill="rgb(205,116,35)" rx="2" ry="2" />
<text  x="1042.21" y="239.5" ></text>
</g>
<g >
<title>pull_varnos_walker (1,000,000 samples, 0.08%)</title><rect x="947.5" y="309" width="0.9" height="15.0" fill="rgb(245,36,39)" rx="2" ry="2" />
<text  x="950.46" y="319.5" ></text>
</g>
<g >
<title>SearchSysCache1 (2,000,000 samples, 0.15%)</title><rect x="721.3" y="373" width="1.8" height="15.0" fill="rgb(212,44,33)" rx="2" ry="2" />
<text  x="724.27" y="383.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (2,000,000 samples, 0.15%)</title><rect x="1043.7" y="469" width="1.9" height="15.0" fill="rgb(233,152,0)" rx="2" ry="2" />
<text  x="1046.75" y="479.5" ></text>
</g>
<g >
<title>list_nth_cell (1,000,000 samples, 0.08%)</title><rect x="762.1" y="437" width="1.0" height="15.0" fill="rgb(218,157,37)" rx="2" ry="2" />
<text  x="765.15" y="447.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="1023.8" y="469" width="0.9" height="15.0" fill="rgb(245,120,44)" rx="2" ry="2" />
<text  x="1026.76" y="479.5" ></text>
</g>
<g >
<title>int2gt (1,000,000 samples, 0.08%)</title><rect x="539.6" y="405" width="0.9" height="15.0" fill="rgb(220,7,7)" rx="2" ry="2" />
<text  x="542.59" y="415.5" ></text>
</g>
<g >
<title>index_open (2,000,000 samples, 0.15%)</title><rect x="437.9" y="421" width="1.8" height="15.0" fill="rgb(247,29,14)" rx="2" ry="2" />
<text  x="440.85" y="431.5" ></text>
</g>
<g >
<title>IndexScanEnd (1,000,000 samples, 0.08%)</title><rect x="391.5" y="373" width="0.9" height="15.0" fill="rgb(229,149,24)" rx="2" ry="2" />
<text  x="394.52" y="383.5" ></text>
</g>
<g >
<title>ProcReleaseLocks (3,000,000 samples, 0.23%)</title><rect x="1046.5" y="789" width="2.7" height="15.0" fill="rgb(236,117,44)" rx="2" ry="2" />
<text  x="1049.47" y="799.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (1,000,000 samples, 0.08%)</title><rect x="1024.7" y="469" width="0.9" height="15.0" fill="rgb(214,206,21)" rx="2" ry="2" />
<text  x="1027.67" y="479.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (4,000,000 samples, 0.31%)</title><rect x="764.0" y="453" width="3.6" height="15.0" fill="rgb(229,154,23)" rx="2" ry="2" />
<text  x="766.96" y="463.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (1,000,000 samples, 0.08%)</title><rect x="1036.5" y="357" width="0.9" height="15.0" fill="rgb(237,38,36)" rx="2" ry="2" />
<text  x="1039.48" y="367.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="156.3" y="501" width="1.8" height="15.0" fill="rgb(216,32,3)" rx="2" ry="2" />
<text  x="159.25" y="511.5" ></text>
</g>
<g >
<title>UnlockRelationId (1,000,000 samples, 0.08%)</title><rect x="289.8" y="517" width="0.9" height="15.0" fill="rgb(251,9,24)" rx="2" ry="2" />
<text  x="292.78" y="527.5" ></text>
</g>
<g >
<title>try_charge (1,000,000 samples, 0.08%)</title><rect x="796.7" y="309" width="0.9" height="15.0" fill="rgb(219,119,51)" rx="2" ry="2" />
<text  x="799.67" y="319.5" ></text>
</g>
<g >
<title>palloc0 (2,000,000 samples, 0.15%)</title><rect x="378.8" y="341" width="1.8" height="15.0" fill="rgb(247,128,1)" rx="2" ry="2" />
<text  x="381.81" y="351.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="495.1" y="549" width="0.9" height="15.0" fill="rgb(243,42,8)" rx="2" ry="2" />
<text  x="498.08" y="559.5" ></text>
</g>
<g >
<title>list_next_fn (1,000,000 samples, 0.08%)</title><rect x="895.7" y="549" width="0.9" height="15.0" fill="rgb(243,89,44)" rx="2" ry="2" />
<text  x="898.68" y="559.5" ></text>
</g>
<g >
<title>GetCatalogSnapshot (1,000,000 samples, 0.08%)</title><rect x="323.4" y="485" width="0.9" height="15.0" fill="rgb(235,137,24)" rx="2" ry="2" />
<text  x="326.39" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="969.3" y="245" width="0.9" height="15.0" fill="rgb(231,182,24)" rx="2" ry="2" />
<text  x="972.26" y="255.5" ></text>
</g>
<g >
<title>fault_dirty_shared_page (1,000,000 samples, 0.08%)</title><rect x="254.4" y="357" width="0.9" height="15.0" fill="rgb(234,129,37)" rx="2" ry="2" />
<text  x="257.36" y="367.5" ></text>
</g>
<g >
<title>PathNameOpenFilePerm (9,000,000 samples, 0.69%)</title><rect x="167.2" y="501" width="8.1" height="15.0" fill="rgb(250,8,8)" rx="2" ry="2" />
<text  x="170.15" y="511.5" ></text>
</g>
<g >
<title>query_or_expression_tree_walker_impl (1,000,000 samples, 0.08%)</title><rect x="868.4" y="549" width="0.9" height="15.0" fill="rgb(214,101,1)" rx="2" ry="2" />
<text  x="871.43" y="559.5" ></text>
</g>
<g >
<title>table_close (2,000,000 samples, 0.15%)</title><rect x="420.6" y="405" width="1.8" height="15.0" fill="rgb(212,158,52)" rx="2" ry="2" />
<text  x="423.59" y="415.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="150.8" y="357" width="0.9" height="15.0" fill="rgb(213,160,44)" rx="2" ry="2" />
<text  x="153.80" y="367.5" ></text>
</g>
<g >
<title>PathNameOpenFilePerm (6,000,000 samples, 0.46%)</title><rect x="263.4" y="405" width="5.5" height="15.0" fill="rgb(218,17,54)" rx="2" ry="2" />
<text  x="266.44" y="415.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (1,000,000 samples, 0.08%)</title><rect x="593.2" y="437" width="0.9" height="15.0" fill="rgb(214,67,43)" rx="2" ry="2" />
<text  x="596.19" y="447.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="611.4" y="517" width="0.9" height="15.0" fill="rgb(209,56,54)" rx="2" ry="2" />
<text  x="614.35" y="527.5" ></text>
</g>
<g >
<title>[postgres] (1,140,000,000 samples, 87.76%)</title><rect x="17.3" y="917" width="1035.5" height="15.0" fill="rgb(237,215,53)" rx="2" ry="2" />
<text  x="20.27" y="927.5" >[postgres]</text>
</g>
<g >
<title>dopr_outch (1,000,000 samples, 0.08%)</title><rect x="162.6" y="421" width="0.9" height="15.0" fill="rgb(205,23,13)" rx="2" ry="2" />
<text  x="165.61" y="431.5" ></text>
</g>
<g >
<title>ReleaseBuffer (2,000,000 samples, 0.15%)</title><rect x="381.5" y="341" width="1.8" height="15.0" fill="rgb(205,229,15)" rx="2" ry="2" />
<text  x="384.53" y="351.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (21,000,000 samples, 1.62%)</title><rect x="223.5" y="117" width="19.0" height="15.0" fill="rgb(244,94,45)" rx="2" ry="2" />
<text  x="226.47" y="127.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,000,000 samples, 0.08%)</title><rect x="992.0" y="181" width="0.9" height="15.0" fill="rgb(212,220,14)" rx="2" ry="2" />
<text  x="994.97" y="191.5" ></text>
</g>
<g >
<title>systable_beginscan (24,000,000 samples, 1.85%)</title><rect x="972.9" y="309" width="21.8" height="15.0" fill="rgb(242,167,47)" rx="2" ry="2" />
<text  x="975.89" y="319.5" >s..</text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="526.9" y="421" width="0.9" height="15.0" fill="rgb(230,170,28)" rx="2" ry="2" />
<text  x="529.87" y="431.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="504.2" y="533" width="0.9" height="15.0" fill="rgb(232,84,40)" rx="2" ry="2" />
<text  x="507.16" y="543.5" ></text>
</g>
<g >
<title>_bt_lockbuf (1,000,000 samples, 0.08%)</title><rect x="1040.1" y="341" width="0.9" height="15.0" fill="rgb(217,1,45)" rx="2" ry="2" />
<text  x="1043.12" y="351.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="254.4" y="389" width="0.9" height="15.0" fill="rgb(253,55,6)" rx="2" ry="2" />
<text  x="257.36" y="399.5" ></text>
</g>
<g >
<title>try_charge (1,000,000 samples, 0.08%)</title><rect x="1168.2" y="917" width="0.9" height="15.0" fill="rgb(224,204,16)" rx="2" ry="2" />
<text  x="1171.20" y="927.5" ></text>
</g>
<g >
<title>contain_volatile_functions (1,000,000 samples, 0.08%)</title><rect x="1021.9" y="501" width="1.0" height="15.0" fill="rgb(254,167,48)" rx="2" ry="2" />
<text  x="1024.95" y="511.5" ></text>
</g>
<g >
<title>LockRelease (2,000,000 samples, 0.15%)</title><rect x="329.8" y="453" width="1.8" height="15.0" fill="rgb(234,54,20)" rx="2" ry="2" />
<text  x="332.75" y="463.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="544.1" y="325" width="0.9" height="15.0" fill="rgb(215,128,34)" rx="2" ry="2" />
<text  x="547.13" y="335.5" ></text>
</g>
<g >
<title>index_fetch_heap (7,000,000 samples, 0.54%)</title><rect x="332.5" y="469" width="6.3" height="15.0" fill="rgb(222,150,25)" rx="2" ry="2" />
<text  x="335.48" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="26.4" y="501" width="0.9" height="15.0" fill="rgb(211,105,1)" rx="2" ry="2" />
<text  x="29.35" y="511.5" ></text>
</g>
<g >
<title>pgstat_report_stat (2,000,000 samples, 0.15%)</title><rect x="1050.1" y="885" width="1.8" height="15.0" fill="rgb(208,212,48)" rx="2" ry="2" />
<text  x="1053.11" y="895.5" ></text>
</g>
<g >
<title>element_alloc (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="533" width="0.9" height="15.0" fill="rgb(206,165,53)" rx="2" ry="2" />
<text  x="1052.20" y="543.5" ></text>
</g>
<g >
<title>prep_new_page (3,000,000 samples, 0.23%)</title><rect x="1187.3" y="885" width="2.7" height="15.0" fill="rgb(248,176,34)" rx="2" ry="2" />
<text  x="1190.27" y="895.5" ></text>
</g>
<g >
<title>_bt_getbuf (1,000,000 samples, 0.08%)</title><rect x="42.7" y="261" width="0.9" height="15.0" fill="rgb(249,120,4)" rx="2" ry="2" />
<text  x="45.70" y="271.5" ></text>
</g>
<g >
<title>_equalConst (1,000,000 samples, 0.08%)</title><rect x="903.9" y="469" width="0.9" height="15.0" fill="rgb(229,205,2)" rx="2" ry="2" />
<text  x="906.86" y="479.5" ></text>
</g>
<g >
<title>find_base_rel (1,000,000 samples, 0.08%)</title><rect x="33.6" y="597" width="0.9" height="15.0" fill="rgb(227,16,0)" rx="2" ry="2" />
<text  x="36.62" y="607.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (1,000,000 samples, 0.08%)</title><rect x="918.4" y="245" width="0.9" height="15.0" fill="rgb(242,220,40)" rx="2" ry="2" />
<text  x="921.39" y="255.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="645.9" y="181" width="0.9" height="15.0" fill="rgb(218,177,15)" rx="2" ry="2" />
<text  x="648.87" y="191.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (42,000,000 samples, 3.23%)</title><rect x="206.2" y="325" width="38.2" height="15.0" fill="rgb(223,119,0)" rx="2" ry="2" />
<text  x="209.21" y="335.5" >asm..</text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="592.3" y="437" width="0.9" height="15.0" fill="rgb(235,207,46)" rx="2" ry="2" />
<text  x="595.28" y="447.5" ></text>
</g>
<g >
<title>LockRelease (2,000,000 samples, 0.15%)</title><rect x="420.6" y="357" width="1.8" height="15.0" fill="rgb(246,209,8)" rx="2" ry="2" />
<text  x="423.59" y="367.5" ></text>
</g>
<g >
<title>get_hash_value (2,000,000 samples, 0.15%)</title><rect x="394.2" y="229" width="1.9" height="15.0" fill="rgb(239,188,5)" rx="2" ry="2" />
<text  x="397.25" y="239.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="915.7" y="165" width="0.9" height="15.0" fill="rgb(209,129,43)" rx="2" ry="2" />
<text  x="918.67" y="175.5" ></text>
</g>
<g >
<title>setup_eclass_member_iterator (5,000,000 samples, 0.38%)</title><rect x="839.4" y="517" width="4.5" height="15.0" fill="rgb(233,143,54)" rx="2" ry="2" />
<text  x="842.36" y="527.5" ></text>
</g>
<g >
<title>hrtimer_active (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="485" width="1.0" height="15.0" fill="rgb(215,144,29)" rx="2" ry="2" />
<text  x="1187.55" y="495.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="851.2" y="373" width="0.9" height="15.0" fill="rgb(244,87,30)" rx="2" ry="2" />
<text  x="854.17" y="383.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="346.1" y="437" width="0.9" height="15.0" fill="rgb(222,98,15)" rx="2" ry="2" />
<text  x="349.10" y="447.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (5,000,000 samples, 0.38%)</title><rect x="139.0" y="517" width="4.5" height="15.0" fill="rgb(249,79,45)" rx="2" ry="2" />
<text  x="141.99" y="527.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="598.6" y="389" width="0.9" height="15.0" fill="rgb(242,110,12)" rx="2" ry="2" />
<text  x="601.64" y="399.5" ></text>
</g>
<g >
<title>index_getnext_slot (13,000,000 samples, 1.00%)</title><rect x="332.5" y="485" width="11.8" height="15.0" fill="rgb(214,75,8)" rx="2" ry="2" />
<text  x="335.48" y="495.5" ></text>
</g>
<g >
<title>ExplainPrintPlan (8,000,000 samples, 0.62%)</title><rect x="18.2" y="741" width="7.2" height="15.0" fill="rgb(213,179,36)" rx="2" ry="2" />
<text  x="21.18" y="751.5" ></text>
</g>
<g >
<title>get_ec_source_indexes_strict (1,000,000 samples, 0.08%)</title><rect x="705.8" y="389" width="0.9" height="15.0" fill="rgb(234,46,39)" rx="2" ry="2" />
<text  x="708.83" y="399.5" ></text>
</g>
<g >
<title>getname_flags.part.0 (5,000,000 samples, 0.38%)</title><rect x="1075.5" y="917" width="4.6" height="15.0" fill="rgb(234,12,40)" rx="2" ry="2" />
<text  x="1078.54" y="927.5" ></text>
</g>
<g >
<title>OidFunctionCall4Coll (1,000,000 samples, 0.08%)</title><rect x="688.6" y="357" width="0.9" height="15.0" fill="rgb(205,171,37)" rx="2" ry="2" />
<text  x="691.57" y="367.5" ></text>
</g>
<g >
<title>LockRelationOid (7,000,000 samples, 0.54%)</title><rect x="151.7" y="533" width="6.4" height="15.0" fill="rgb(232,193,46)" rx="2" ry="2" />
<text  x="154.71" y="543.5" ></text>
</g>
<g >
<title>index_getnext_slot (14,000,000 samples, 1.08%)</title><rect x="139.0" y="549" width="12.7" height="15.0" fill="rgb(218,161,51)" rx="2" ry="2" />
<text  x="141.99" y="559.5" ></text>
</g>
<g >
<title>ReleaseLruFiles (8,000,000 samples, 0.62%)</title><rect x="168.1" y="485" width="7.2" height="15.0" fill="rgb(220,15,54)" rx="2" ry="2" />
<text  x="171.06" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="613.2" y="469" width="0.9" height="15.0" fill="rgb(252,212,11)" rx="2" ry="2" />
<text  x="616.17" y="479.5" ></text>
</g>
<g >
<title>prep_new_page (3,000,000 samples, 0.23%)</title><rect x="555.0" y="357" width="2.8" height="15.0" fill="rgb(239,89,22)" rx="2" ry="2" />
<text  x="558.03" y="367.5" ></text>
</g>
<g >
<title>int4hashfast (1,000,000 samples, 0.08%)</title><rect x="692.2" y="261" width="0.9" height="15.0" fill="rgb(218,69,20)" rx="2" ry="2" />
<text  x="695.20" y="271.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (1,000,000 samples, 0.08%)</title><rect x="15.5" y="885" width="0.9" height="15.0" fill="rgb(211,216,11)" rx="2" ry="2" />
<text  x="18.45" y="895.5" ></text>
</g>
<g >
<title>_bt_compare (3,000,000 samples, 0.23%)</title><rect x="411.5" y="293" width="2.7" height="15.0" fill="rgb(210,206,25)" rx="2" ry="2" />
<text  x="414.51" y="303.5" ></text>
</g>
<g >
<title>task_work_run (2,000,000 samples, 0.15%)</title><rect x="173.5" y="389" width="1.8" height="15.0" fill="rgb(217,103,21)" rx="2" ry="2" />
<text  x="176.51" y="399.5" ></text>
</g>
<g >
<title>dlist_init (2,000,000 samples, 0.15%)</title><rect x="423.3" y="309" width="1.8" height="15.0" fill="rgb(210,200,3)" rx="2" ry="2" />
<text  x="426.32" y="319.5" ></text>
</g>
<g >
<title>_bt_readpage (1,000,000 samples, 0.08%)</title><rect x="449.7" y="357" width="0.9" height="15.0" fill="rgb(241,21,38)" rx="2" ry="2" />
<text  x="452.66" y="367.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="950.2" y="325" width="0.9" height="15.0" fill="rgb(211,52,36)" rx="2" ry="2" />
<text  x="953.18" y="335.5" ></text>
</g>
<g >
<title>UnlockRelationId (2,000,000 samples, 0.15%)</title><rect x="546.0" y="501" width="1.8" height="15.0" fill="rgb(206,176,17)" rx="2" ry="2" />
<text  x="548.95" y="511.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (1,000,000 samples, 0.08%)</title><rect x="1018.3" y="469" width="0.9" height="15.0" fill="rgb(231,110,51)" rx="2" ry="2" />
<text  x="1021.31" y="479.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (15,000,000 samples, 1.15%)</title><rect x="1171.8" y="981" width="13.7" height="15.0" fill="rgb(241,77,4)" rx="2" ry="2" />
<text  x="1174.83" y="991.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="131.7" y="373" width="0.9" height="15.0" fill="rgb(241,9,12)" rx="2" ry="2" />
<text  x="134.72" y="383.5" ></text>
</g>
<g >
<title>_bt_compare (6,000,000 samples, 0.46%)</title><rect x="401.5" y="309" width="5.5" height="15.0" fill="rgb(253,191,25)" rx="2" ry="2" />
<text  x="404.52" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,000,000 samples, 0.38%)</title><rect x="1185.5" y="997" width="4.5" height="15.0" fill="rgb(227,208,28)" rx="2" ry="2" />
<text  x="1188.46" y="1007.5" ></text>
</g>
<g >
<title>BufTableLookup (1,000,000 samples, 0.08%)</title><rect x="451.5" y="245" width="0.9" height="15.0" fill="rgb(226,7,21)" rx="2" ry="2" />
<text  x="454.48" y="255.5" ></text>
</g>
<g >
<title>btoidcmp (1,000,000 samples, 0.08%)</title><rect x="534.1" y="405" width="1.0" height="15.0" fill="rgb(216,87,26)" rx="2" ry="2" />
<text  x="537.14" y="415.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitializeWithInfo (1,000,000 samples, 0.08%)</title><rect x="1036.5" y="373" width="0.9" height="15.0" fill="rgb(252,172,22)" rx="2" ry="2" />
<text  x="1039.48" y="383.5" ></text>
</g>
<g >
<title>SearchCatCache3 (1,000,000 samples, 0.08%)</title><rect x="967.4" y="373" width="1.0" height="15.0" fill="rgb(218,161,6)" rx="2" ry="2" />
<text  x="970.44" y="383.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="49.1" y="293" width="0.9" height="15.0" fill="rgb(225,67,10)" rx="2" ry="2" />
<text  x="52.06" y="303.5" ></text>
</g>
<g >
<title>mdopenfork (9,000,000 samples, 0.69%)</title><rect x="260.7" y="437" width="8.2" height="15.0" fill="rgb(253,137,41)" rx="2" ry="2" />
<text  x="263.72" y="447.5" ></text>
</g>
<g >
<title>clauselist_selectivity (12,000,000 samples, 0.92%)</title><rect x="714.0" y="421" width="10.9" height="15.0" fill="rgb(231,193,40)" rx="2" ry="2" />
<text  x="717.00" y="431.5" ></text>
</g>
<g >
<title>LockTagHashCode (1,000,000 samples, 0.08%)</title><rect x="1041.9" y="389" width="0.9" height="15.0" fill="rgb(206,49,31)" rx="2" ry="2" />
<text  x="1044.93" y="399.5" ></text>
</g>
<g >
<title>_bt_first (6,000,000 samples, 0.46%)</title><rect x="486.0" y="437" width="5.4" height="15.0" fill="rgb(238,19,19)" rx="2" ry="2" />
<text  x="489.00" y="447.5" ></text>
</g>
<g >
<title>int4hashfast (1,000,000 samples, 0.08%)</title><rect x="694.9" y="293" width="0.9" height="15.0" fill="rgb(206,103,26)" rx="2" ry="2" />
<text  x="697.93" y="303.5" ></text>
</g>
<g >
<title>UnlockRelationId (2,000,000 samples, 0.15%)</title><rect x="1003.8" y="277" width="1.8" height="15.0" fill="rgb(243,52,14)" rx="2" ry="2" />
<text  x="1006.78" y="287.5" ></text>
</g>
<g >
<title>set_plan_refs (7,000,000 samples, 0.54%)</title><rect x="36.3" y="693" width="6.4" height="15.0" fill="rgb(212,127,32)" rx="2" ry="2" />
<text  x="39.34" y="703.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitializeWithInfo (1,000,000 samples, 0.08%)</title><rect x="68.1" y="357" width="0.9" height="15.0" fill="rgb(234,22,54)" rx="2" ry="2" />
<text  x="71.14" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="969.3" y="261" width="0.9" height="15.0" fill="rgb(251,78,51)" rx="2" ry="2" />
<text  x="972.26" y="271.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="21.8" y="629" width="0.9" height="15.0" fill="rgb(246,159,20)" rx="2" ry="2" />
<text  x="24.81" y="639.5" ></text>
</g>
<g >
<title>UnlockRelationId (1,000,000 samples, 0.08%)</title><rect x="491.4" y="469" width="1.0" height="15.0" fill="rgb(234,202,0)" rx="2" ry="2" />
<text  x="494.45" y="479.5" ></text>
</g>
<g >
<title>classify_index_clause_usage (2,000,000 samples, 0.15%)</title><rect x="610.4" y="533" width="1.9" height="15.0" fill="rgb(247,105,52)" rx="2" ry="2" />
<text  x="613.45" y="543.5" ></text>
</g>
<g >
<title>_bt_compare (1,000,000 samples, 0.08%)</title><rect x="541.4" y="421" width="0.9" height="15.0" fill="rgb(209,117,51)" rx="2" ry="2" />
<text  x="544.41" y="431.5" ></text>
</g>
<g >
<title>plpgsql_HashTableLookup (4,000,000 samples, 0.31%)</title><rect x="955.6" y="245" width="3.7" height="15.0" fill="rgb(241,143,23)" rx="2" ry="2" />
<text  x="958.64" y="255.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="518.7" y="437" width="0.9" height="15.0" fill="rgb(254,23,30)" rx="2" ry="2" />
<text  x="521.70" y="447.5" ></text>
</g>
<g >
<title>estimate_expression_value (19,000,000 samples, 1.46%)</title><rect x="950.2" y="405" width="17.2" height="15.0" fill="rgb(237,210,36)" rx="2" ry="2" />
<text  x="953.18" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,000,000 samples, 0.08%)</title><rect x="397.0" y="213" width="0.9" height="15.0" fill="rgb(234,18,47)" rx="2" ry="2" />
<text  x="399.97" y="223.5" ></text>
</g>
<g >
<title>get_join_index_paths (124,000,000 samples, 9.55%)</title><rect x="614.1" y="517" width="112.6" height="15.0" fill="rgb(217,35,12)" rx="2" ry="2" />
<text  x="617.08" y="527.5" >get_join_inde..</text>
</g>
<g >
<title>ReleaseBuffer (1,000,000 samples, 0.08%)</title><rect x="519.6" y="485" width="0.9" height="15.0" fill="rgb(238,18,15)" rx="2" ry="2" />
<text  x="522.61" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (11,000,000 samples, 0.85%)</title><rect x="981.1" y="197" width="10.0" height="15.0" fill="rgb(242,198,29)" rx="2" ry="2" />
<text  x="984.07" y="207.5" ></text>
</g>
<g >
<title>transformStmt (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="805" width="0.9" height="15.0" fill="rgb(209,79,19)" rx="2" ry="2" />
<text  x="1052.20" y="815.5" ></text>
</g>
<g >
<title>__x64_sys_openat (27,000,000 samples, 2.08%)</title><rect x="1055.6" y="949" width="24.5" height="15.0" fill="rgb(230,32,20)" rx="2" ry="2" />
<text  x="1058.56" y="959.5" >_..</text>
</g>
<g >
<title>ProcessUtility (1,132,000,000 samples, 87.14%)</title><rect x="18.2" y="821" width="1028.3" height="15.0" fill="rgb(230,45,1)" rx="2" ry="2" />
<text  x="21.18" y="831.5" >ProcessUtility</text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="131.7" y="405" width="0.9" height="15.0" fill="rgb(238,224,13)" rx="2" ry="2" />
<text  x="134.72" y="415.5" ></text>
</g>
<g >
<title>LockRelationOid (1,000,000 samples, 0.08%)</title><rect x="437.9" y="389" width="0.9" height="15.0" fill="rgb(217,183,6)" rx="2" ry="2" />
<text  x="440.85" y="399.5" ></text>
</g>
<g >
<title>index_getprocinfo (1,000,000 samples, 0.08%)</title><rect x="939.3" y="229" width="0.9" height="15.0" fill="rgb(221,172,42)" rx="2" ry="2" />
<text  x="942.28" y="239.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="456.0" y="357" width="0.9" height="15.0" fill="rgb(254,35,29)" rx="2" ry="2" />
<text  x="459.02" y="367.5" ></text>
</g>
<g >
<title>LockBuffer (1,000,000 samples, 0.08%)</title><rect x="333.4" y="421" width="0.9" height="15.0" fill="rgb(228,59,32)" rx="2" ry="2" />
<text  x="336.39" y="431.5" ></text>
</g>
<g >
<title>_bt_getbuf (4,000,000 samples, 0.31%)</title><rect x="285.2" y="453" width="3.7" height="15.0" fill="rgb(236,34,1)" rx="2" ry="2" />
<text  x="288.24" y="463.5" ></text>
</g>
<g >
<title>BufferAlloc (4,000,000 samples, 0.31%)</title><rect x="450.6" y="261" width="3.6" height="15.0" fill="rgb(223,47,45)" rx="2" ry="2" />
<text  x="453.57" y="271.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="23.6" y="613" width="0.9" height="15.0" fill="rgb(232,32,24)" rx="2" ry="2" />
<text  x="26.63" y="623.5" ></text>
</g>
<g >
<title>pfree (1,000,000 samples, 0.08%)</title><rect x="481.5" y="453" width="0.9" height="15.0" fill="rgb(206,83,16)" rx="2" ry="2" />
<text  x="484.45" y="463.5" ></text>
</g>
<g >
<title>free_unref_page_list (2,000,000 samples, 0.15%)</title><rect x="1182.7" y="837" width="1.8" height="15.0" fill="rgb(228,130,43)" rx="2" ry="2" />
<text  x="1185.73" y="847.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (2,000,000 samples, 0.15%)</title><rect x="721.3" y="341" width="1.8" height="15.0" fill="rgb(211,52,53)" rx="2" ry="2" />
<text  x="724.27" y="351.5" ></text>
</g>
<g >
<title>LockBuffer (1,000,000 samples, 0.08%)</title><rect x="1040.1" y="325" width="0.9" height="15.0" fill="rgb(246,33,9)" rx="2" ry="2" />
<text  x="1043.12" y="335.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="274.3" y="533" width="1.0" height="15.0" fill="rgb(240,119,51)" rx="2" ry="2" />
<text  x="277.34" y="543.5" ></text>
</g>
<g >
<title>new_list (2,000,000 samples, 0.15%)</title><rect x="678.6" y="405" width="1.8" height="15.0" fill="rgb(245,36,21)" rx="2" ry="2" />
<text  x="681.58" y="415.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (1,000,000 samples, 0.08%)</title><rect x="332.5" y="405" width="0.9" height="15.0" fill="rgb(237,153,48)" rx="2" ry="2" />
<text  x="335.48" y="415.5" ></text>
</g>
<g >
<title>RelationGetNumberOfBlocksInFork (21,000,000 samples, 1.62%)</title><rect x="158.1" y="581" width="19.0" height="15.0" fill="rgb(233,152,38)" rx="2" ry="2" />
<text  x="161.07" y="591.5" ></text>
</g>
<g >
<title>pfree (1,000,000 samples, 0.08%)</title><rect x="573.2" y="485" width="0.9" height="15.0" fill="rgb(233,148,7)" rx="2" ry="2" />
<text  x="576.20" y="495.5" ></text>
</g>
<g >
<title>_bt_getbuf (1,000,000 samples, 0.08%)</title><rect x="288.9" y="437" width="0.9" height="15.0" fill="rgb(246,152,28)" rx="2" ry="2" />
<text  x="291.88" y="447.5" ></text>
</g>
<g >
<title>make_partition_pruneinfo (2,000,000 samples, 0.15%)</title><rect x="32.7" y="613" width="1.8" height="15.0" fill="rgb(237,76,10)" rx="2" ry="2" />
<text  x="35.71" y="623.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="781.2" y="389" width="1.8" height="15.0" fill="rgb(232,91,18)" rx="2" ry="2" />
<text  x="784.22" y="399.5" ></text>
</g>
<g >
<title>predicate_refuted_by_recurse (4,000,000 samples, 0.31%)</title><rect x="901.1" y="533" width="3.7" height="15.0" fill="rgb(226,186,46)" rx="2" ry="2" />
<text  x="904.13" y="543.5" ></text>
</g>
<g >
<title>exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="320.7" y="437" width="1.8" height="15.0" fill="rgb(243,44,20)" rx="2" ry="2" />
<text  x="323.67" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="132.6" y="453" width="0.9" height="15.0" fill="rgb(240,80,14)" rx="2" ry="2" />
<text  x="135.63" y="463.5" ></text>
</g>
<g >
<title>index_fetch_heap (4,000,000 samples, 0.31%)</title><rect x="482.4" y="469" width="3.6" height="15.0" fill="rgb(221,114,13)" rx="2" ry="2" />
<text  x="485.36" y="479.5" ></text>
</g>
<g >
<title>SearchSysCache1 (2,000,000 samples, 0.15%)</title><rect x="1019.2" y="501" width="1.8" height="15.0" fill="rgb(226,108,53)" rx="2" ry="2" />
<text  x="1022.22" y="511.5" ></text>
</g>
<g >
<title>build_index_pathkeys (72,000,000 samples, 5.54%)</title><rect x="734.9" y="517" width="65.4" height="15.0" fill="rgb(246,113,13)" rx="2" ry="2" />
<text  x="737.90" y="527.5" >build_i..</text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="131.7" y="357" width="0.9" height="15.0" fill="rgb(231,152,53)" rx="2" ry="2" />
<text  x="134.72" y="367.5" ></text>
</g>
<g >
<title>bms_next_member (20,000,000 samples, 1.54%)</title><rect x="743.1" y="453" width="18.1" height="15.0" fill="rgb(241,63,52)" rx="2" ry="2" />
<text  x="746.07" y="463.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (3,000,000 samples, 0.23%)</title><rect x="444.2" y="389" width="2.7" height="15.0" fill="rgb(245,14,0)" rx="2" ry="2" />
<text  x="447.21" y="399.5" ></text>
</g>
<g >
<title>table_open (6,000,000 samples, 0.46%)</title><rect x="457.8" y="437" width="5.5" height="15.0" fill="rgb(214,100,15)" rx="2" ry="2" />
<text  x="460.84" y="447.5" ></text>
</g>
<g >
<title>index_endscan (2,000,000 samples, 0.15%)</title><rect x="60.9" y="421" width="1.8" height="15.0" fill="rgb(251,19,19)" rx="2" ry="2" />
<text  x="63.87" y="431.5" ></text>
</g>
<g >
<title>LockTagHashCode (1,000,000 samples, 0.08%)</title><rect x="55.4" y="357" width="0.9" height="15.0" fill="rgb(236,35,35)" rx="2" ry="2" />
<text  x="58.42" y="367.5" ></text>
</g>
<g >
<title>is_andclause (1,000,000 samples, 0.08%)</title><rect x="900.2" y="517" width="0.9" height="15.0" fill="rgb(249,81,37)" rx="2" ry="2" />
<text  x="903.22" y="527.5" ></text>
</g>
<g >
<title>CleanUpLock (2,000,000 samples, 0.15%)</title><rect x="522.3" y="469" width="1.8" height="15.0" fill="rgb(211,171,46)" rx="2" ry="2" />
<text  x="525.33" y="479.5" ></text>
</g>
<g >
<title>relation_close (1,000,000 samples, 0.08%)</title><rect x="289.8" y="533" width="0.9" height="15.0" fill="rgb(221,177,16)" rx="2" ry="2" />
<text  x="292.78" y="543.5" ></text>
</g>
<g >
<title>index_beginscan_internal (2,000,000 samples, 0.15%)</title><rect x="436.0" y="405" width="1.9" height="15.0" fill="rgb(225,7,46)" rx="2" ry="2" />
<text  x="439.04" y="415.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (1,000,000 samples, 0.08%)</title><rect x="300.7" y="501" width="0.9" height="15.0" fill="rgb(221,33,11)" rx="2" ry="2" />
<text  x="303.69" y="511.5" ></text>
</g>
<g >
<title>transformWhereClause (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="725" width="0.9" height="15.0" fill="rgb(236,106,32)" rx="2" ry="2" />
<text  x="1052.20" y="735.5" ></text>
</g>
<g >
<title>BufferIsValid (1,000,000 samples, 0.08%)</title><rect x="574.1" y="421" width="0.9" height="15.0" fill="rgb(241,188,42)" rx="2" ry="2" />
<text  x="577.11" y="431.5" ></text>
</g>
<g >
<title>DatumGetPointer (1,000,000 samples, 0.08%)</title><rect x="948.4" y="437" width="0.9" height="15.0" fill="rgb(236,195,46)" rx="2" ry="2" />
<text  x="951.37" y="447.5" ></text>
</g>
<g >
<title>exc_page_fault (5,000,000 samples, 0.38%)</title><rect x="512.3" y="501" width="4.6" height="15.0" fill="rgb(222,158,49)" rx="2" ry="2" />
<text  x="515.34" y="511.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (1,000,000 samples, 0.08%)</title><rect x="151.7" y="517" width="0.9" height="15.0" fill="rgb(217,202,18)" rx="2" ry="2" />
<text  x="154.71" y="527.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="74.5" y="293" width="0.9" height="15.0" fill="rgb(224,176,20)" rx="2" ry="2" />
<text  x="77.50" y="303.5" ></text>
</g>
<g >
<title>systable_endscan (2,000,000 samples, 0.15%)</title><rect x="994.7" y="309" width="1.8" height="15.0" fill="rgb(208,115,1)" rx="2" ry="2" />
<text  x="997.70" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,000,000 samples, 0.08%)</title><rect x="1001.1" y="117" width="0.9" height="15.0" fill="rgb(214,170,11)" rx="2" ry="2" />
<text  x="1004.05" y="127.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="158.1" y="453" width="0.9" height="15.0" fill="rgb(236,119,1)" rx="2" ry="2" />
<text  x="161.07" y="463.5" ></text>
</g>
<g >
<title>eqsel_internal (1,000,000 samples, 0.08%)</title><rect x="691.3" y="293" width="0.9" height="15.0" fill="rgb(229,82,29)" rx="2" ry="2" />
<text  x="694.29" y="303.5" ></text>
</g>
<g >
<title>index_beginscan (3,000,000 samples, 0.23%)</title><rect x="51.8" y="421" width="2.7" height="15.0" fill="rgb(207,56,31)" rx="2" ry="2" />
<text  x="54.79" y="431.5" ></text>
</g>
<g >
<title>SPI_prepare_extended (1,000,000 samples, 0.08%)</title><rect x="962.0" y="149" width="0.9" height="15.0" fill="rgb(240,36,46)" rx="2" ry="2" />
<text  x="964.99" y="159.5" ></text>
</g>
<g >
<title>systable_getnext (22,000,000 samples, 1.69%)</title><rect x="525.1" y="533" width="19.9" height="15.0" fill="rgb(242,182,3)" rx="2" ry="2" />
<text  x="528.06" y="543.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,000,000 samples, 0.08%)</title><rect x="148.1" y="357" width="0.9" height="15.0" fill="rgb(247,107,12)" rx="2" ry="2" />
<text  x="151.08" y="367.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,000,000 samples, 0.08%)</title><rect x="926.6" y="229" width="0.9" height="15.0" fill="rgb(250,87,52)" rx="2" ry="2" />
<text  x="929.57" y="239.5" ></text>
</g>
<g >
<title>locks_remove_posix (1,000,000 samples, 0.08%)</title><rect x="170.8" y="373" width="0.9" height="15.0" fill="rgb(247,25,11)" rx="2" ry="2" />
<text  x="173.79" y="383.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="1041.9" y="357" width="0.9" height="15.0" fill="rgb(253,121,8)" rx="2" ry="2" />
<text  x="1044.93" y="367.5" ></text>
</g>
<g >
<title>examine_variable (39,000,000 samples, 3.00%)</title><rect x="912.9" y="405" width="35.5" height="15.0" fill="rgb(251,65,13)" rx="2" ry="2" />
<text  x="915.94" y="415.5" >exa..</text>
</g>
<g >
<title>set_base_rel_sizes (204,000,000 samples, 15.70%)</title><rect x="860.3" y="645" width="185.3" height="15.0" fill="rgb(217,8,40)" rx="2" ry="2" />
<text  x="863.25" y="655.5" >set_base_rel_sizes</text>
</g>
<g >
<title>relation_open (6,000,000 samples, 0.46%)</title><rect x="1005.6" y="293" width="5.4" height="15.0" fill="rgb(212,61,43)" rx="2" ry="2" />
<text  x="1008.60" y="303.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (43,000,000 samples, 3.31%)</title><rect x="1122.8" y="869" width="39.0" height="15.0" fill="rgb(220,167,5)" rx="2" ry="2" />
<text  x="1125.78" y="879.5" >ker..</text>
</g>
<g >
<title>systable_beginscan (5,000,000 samples, 0.38%)</title><rect x="1028.3" y="453" width="4.5" height="15.0" fill="rgb(218,158,4)" rx="2" ry="2" />
<text  x="1031.31" y="463.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (2,000,000 samples, 0.15%)</title><rect x="426.0" y="357" width="1.9" height="15.0" fill="rgb(222,197,20)" rx="2" ry="2" />
<text  x="429.04" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="728.5" y="421" width="0.9" height="15.0" fill="rgb(244,52,20)" rx="2" ry="2" />
<text  x="731.54" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="132.6" y="357" width="0.9" height="15.0" fill="rgb(217,199,31)" rx="2" ry="2" />
<text  x="135.63" y="367.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="592.3" y="453" width="0.9" height="15.0" fill="rgb(207,199,14)" rx="2" ry="2" />
<text  x="595.28" y="463.5" ></text>
</g>
<g >
<title>make_pathkey_from_sortinfo (75,000,000 samples, 5.77%)</title><rect x="616.8" y="453" width="68.1" height="15.0" fill="rgb(243,87,16)" rx="2" ry="2" />
<text  x="619.81" y="463.5" >make_pa..</text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="669.5" y="277" width="0.9" height="15.0" fill="rgb(235,0,16)" rx="2" ry="2" />
<text  x="672.49" y="287.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,000,000 samples, 0.23%)</title><rect x="466.9" y="389" width="2.7" height="15.0" fill="rgb(219,220,54)" rx="2" ry="2" />
<text  x="469.92" y="399.5" ></text>
</g>
<g >
<title>tag_hash (2,000,000 samples, 0.15%)</title><rect x="442.4" y="357" width="1.8" height="15.0" fill="rgb(207,127,30)" rx="2" ry="2" />
<text  x="445.39" y="367.5" ></text>
</g>
<g >
<title>mem_cgroup_charge (4,000,000 samples, 0.31%)</title><rect x="1165.5" y="933" width="3.6" height="15.0" fill="rgb(239,108,14)" rx="2" ry="2" />
<text  x="1168.47" y="943.5" ></text>
</g>
<g >
<title>GetNonHistoricCatalogSnapshot (1,000,000 samples, 0.08%)</title><rect x="273.4" y="517" width="0.9" height="15.0" fill="rgb(253,9,7)" rx="2" ry="2" />
<text  x="276.43" y="527.5" ></text>
</g>
<g >
<title>get_attoptions (85,000,000 samples, 6.54%)</title><rect x="352.5" y="485" width="77.2" height="15.0" fill="rgb(228,53,35)" rx="2" ry="2" />
<text  x="355.46" y="495.5" >get_atto..</text>
</g>
<g >
<title>mem_cgroup_charge (1,000,000 samples, 0.08%)</title><rect x="218.9" y="197" width="0.9" height="15.0" fill="rgb(232,64,17)" rx="2" ry="2" />
<text  x="221.93" y="207.5" ></text>
</g>
<g >
<title>SearchCatCache3 (48,000,000 samples, 3.70%)</title><rect x="968.4" y="357" width="43.6" height="15.0" fill="rgb(217,167,35)" rx="2" ry="2" />
<text  x="971.35" y="367.5" >Sear..</text>
</g>
<g >
<title>shmem_alloc_page (25,000,000 samples, 1.92%)</title><rect x="219.8" y="197" width="22.7" height="15.0" fill="rgb(242,2,45)" rx="2" ry="2" />
<text  x="222.84" y="207.5" >s..</text>
</g>
<g >
<title>pfree (1,000,000 samples, 0.08%)</title><rect x="392.4" y="357" width="0.9" height="15.0" fill="rgb(230,167,33)" rx="2" ry="2" />
<text  x="395.43" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="701.3" y="309" width="0.9" height="15.0" fill="rgb(218,156,42)" rx="2" ry="2" />
<text  x="704.29" y="319.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="701.3" y="213" width="0.9" height="15.0" fill="rgb(254,72,9)" rx="2" ry="2" />
<text  x="704.29" y="223.5" ></text>
</g>
<g >
<title>lookup_fast (6,000,000 samples, 0.46%)</title><rect x="1070.1" y="885" width="5.4" height="15.0" fill="rgb(215,150,43)" rx="2" ry="2" />
<text  x="1073.09" y="895.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (2,000,000 samples, 0.15%)</title><rect x="684.9" y="373" width="1.9" height="15.0" fill="rgb(246,16,42)" rx="2" ry="2" />
<text  x="687.93" y="383.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="916.6" y="229" width="0.9" height="15.0" fill="rgb(237,39,3)" rx="2" ry="2" />
<text  x="919.57" y="239.5" ></text>
</g>
<g >
<title>index_getnext_slot (1,000,000 samples, 0.08%)</title><rect x="129.0" y="565" width="0.9" height="15.0" fill="rgb(228,180,7)" rx="2" ry="2" />
<text  x="132.00" y="575.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="563.2" y="325" width="0.9" height="15.0" fill="rgb(228,203,0)" rx="2" ry="2" />
<text  x="566.21" y="335.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,000,000 samples, 0.08%)</title><rect x="1018.3" y="485" width="0.9" height="15.0" fill="rgb(239,217,49)" rx="2" ry="2" />
<text  x="1021.31" y="495.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="689.5" y="293" width="0.9" height="15.0" fill="rgb(210,149,4)" rx="2" ry="2" />
<text  x="692.48" y="303.5" ></text>
</g>
<g >
<title>SetupLockInTable (3,000,000 samples, 0.23%)</title><rect x="506.0" y="549" width="2.7" height="15.0" fill="rgb(223,5,7)" rx="2" ry="2" />
<text  x="508.98" y="559.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="456.9" y="357" width="0.9" height="15.0" fill="rgb(219,121,27)" rx="2" ry="2" />
<text  x="459.93" y="367.5" ></text>
</g>
<g >
<title>att_isnull (1,000,000 samples, 0.08%)</title><rect x="464.2" y="485" width="0.9" height="15.0" fill="rgb(237,8,0)" rx="2" ry="2" />
<text  x="467.20" y="495.5" ></text>
</g>
<g >
<title>relation_open (2,000,000 samples, 0.15%)</title><rect x="992.0" y="277" width="1.8" height="15.0" fill="rgb(220,116,46)" rx="2" ry="2" />
<text  x="994.97" y="287.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="805" width="1.0" height="15.0" fill="rgb(221,1,48)" rx="2" ry="2" />
<text  x="1187.55" y="815.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="645.9" y="197" width="0.9" height="15.0" fill="rgb(216,127,49)" rx="2" ry="2" />
<text  x="648.87" y="207.5" ></text>
</g>
<g >
<title>_bt_moveright (1,000,000 samples, 0.08%)</title><rect x="73.6" y="341" width="0.9" height="15.0" fill="rgb(224,228,20)" rx="2" ry="2" />
<text  x="76.59" y="351.5" ></text>
</g>
<g >
<title>xas_start (1,000,000 samples, 0.08%)</title><rect x="245.3" y="309" width="0.9" height="15.0" fill="rgb(226,197,39)" rx="2" ry="2" />
<text  x="248.27" y="319.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (1,000,000 samples, 0.08%)</title><rect x="408.8" y="325" width="0.9" height="15.0" fill="rgb(225,95,32)" rx="2" ry="2" />
<text  x="411.78" y="335.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="613.2" y="517" width="0.9" height="15.0" fill="rgb(212,190,35)" rx="2" ry="2" />
<text  x="616.17" y="527.5" ></text>
</g>
<g >
<title>do_exit (15,000,000 samples, 1.15%)</title><rect x="1171.8" y="949" width="13.7" height="15.0" fill="rgb(248,194,19)" rx="2" ry="2" />
<text  x="1174.83" y="959.5" ></text>
</g>
<g >
<title>btgettuple (1,000,000 samples, 0.08%)</title><rect x="42.7" y="325" width="0.9" height="15.0" fill="rgb(237,183,25)" rx="2" ry="2" />
<text  x="45.70" y="335.5" ></text>
</g>
<g >
<title>index_open (6,000,000 samples, 0.46%)</title><rect x="560.5" y="517" width="5.4" height="15.0" fill="rgb(223,102,15)" rx="2" ry="2" />
<text  x="563.48" y="527.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,000,000 samples, 0.08%)</title><rect x="912.0" y="373" width="0.9" height="15.0" fill="rgb(223,184,43)" rx="2" ry="2" />
<text  x="915.03" y="383.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (1,000,000 samples, 0.08%)</title><rect x="100.8" y="437" width="0.9" height="15.0" fill="rgb(250,118,12)" rx="2" ry="2" />
<text  x="103.84" y="447.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="417.9" y="197" width="0.9" height="15.0" fill="rgb(210,151,52)" rx="2" ry="2" />
<text  x="420.87" y="207.5" ></text>
</g>
<g >
<title>bms_add_member (1,000,000 samples, 0.08%)</title><rect x="836.6" y="501" width="0.9" height="15.0" fill="rgb(234,33,26)" rx="2" ry="2" />
<text  x="839.64" y="511.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (1,000,000 samples, 0.08%)</title><rect x="397.9" y="309" width="0.9" height="15.0" fill="rgb(210,39,24)" rx="2" ry="2" />
<text  x="400.88" y="319.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="320.7" y="421" width="1.8" height="15.0" fill="rgb(220,112,39)" rx="2" ry="2" />
<text  x="323.67" y="431.5" ></text>
</g>
<g >
<title>pg_vsnprintf (2,000,000 samples, 0.15%)</title><rect x="261.6" y="373" width="1.8" height="15.0" fill="rgb(232,45,33)" rx="2" ry="2" />
<text  x="264.62" y="383.5" ></text>
</g>
<g >
<title>list_copy (1,000,000 samples, 0.08%)</title><rect x="728.5" y="517" width="0.9" height="15.0" fill="rgb(233,152,23)" rx="2" ry="2" />
<text  x="731.54" y="527.5" ></text>
</g>
<g >
<title>_bt_getrootheight (86,000,000 samples, 6.62%)</title><rect x="177.1" y="581" width="78.2" height="15.0" fill="rgb(237,90,11)" rx="2" ry="2" />
<text  x="180.14" y="591.5" >_bt_getro..</text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="598.6" y="421" width="0.9" height="15.0" fill="rgb(212,151,22)" rx="2" ry="2" />
<text  x="601.64" y="431.5" ></text>
</g>
<g >
<title>FastPathUnGrantRelationLock (1,000,000 samples, 0.08%)</title><rect x="60.0" y="373" width="0.9" height="15.0" fill="rgb(252,189,46)" rx="2" ry="2" />
<text  x="62.96" y="383.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (1,000,000 samples, 0.08%)</title><rect x="525.1" y="485" width="0.9" height="15.0" fill="rgb(221,76,48)" rx="2" ry="2" />
<text  x="528.06" y="495.5" ></text>
</g>
<g >
<title>LockRelease (1,000,000 samples, 0.08%)</title><rect x="60.0" y="389" width="0.9" height="15.0" fill="rgb(218,21,32)" rx="2" ry="2" />
<text  x="62.96" y="399.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="347.0" y="421" width="0.9" height="15.0" fill="rgb(218,92,42)" rx="2" ry="2" />
<text  x="350.01" y="431.5" ></text>
</g>
<g >
<title>systable_endscan (2,000,000 samples, 0.15%)</title><rect x="480.5" y="501" width="1.9" height="15.0" fill="rgb(240,98,0)" rx="2" ry="2" />
<text  x="483.55" y="511.5" ></text>
</g>
<g >
<title>LockRelationOid (3,000,000 samples, 0.23%)</title><rect x="345.2" y="469" width="2.7" height="15.0" fill="rgb(210,214,32)" rx="2" ry="2" />
<text  x="348.20" y="479.5" ></text>
</g>
<g >
<title>_bt_search (8,000,000 samples, 0.62%)</title><rect x="931.1" y="229" width="7.3" height="15.0" fill="rgb(224,47,27)" rx="2" ry="2" />
<text  x="934.11" y="239.5" ></text>
</g>
<g >
<title>BufTableLookup (1,000,000 samples, 0.08%)</title><rect x="483.3" y="341" width="0.9" height="15.0" fill="rgb(239,110,34)" rx="2" ry="2" />
<text  x="486.27" y="351.5" ></text>
</g>
<g >
<title>btbeginscan (1,000,000 samples, 0.08%)</title><rect x="518.7" y="485" width="0.9" height="15.0" fill="rgb(210,162,28)" rx="2" ry="2" />
<text  x="521.70" y="495.5" ></text>
</g>
<g >
<title>tomoyo_domain (1,000,000 samples, 0.08%)</title><rect x="1067.4" y="837" width="0.9" height="15.0" fill="rgb(207,186,52)" rx="2" ry="2" />
<text  x="1070.37" y="847.5" ></text>
</g>
<g >
<title>set_rel_size (155,000,000 samples, 11.93%)</title><rect x="904.8" y="597" width="140.8" height="15.0" fill="rgb(229,121,52)" rx="2" ry="2" />
<text  x="907.77" y="607.5" >set_rel_size</text>
</g>
<g >
<title>tas (1,000,000 samples, 0.08%)</title><rect x="942.9" y="213" width="0.9" height="15.0" fill="rgb(251,100,41)" rx="2" ry="2" />
<text  x="945.92" y="223.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (2,000,000 samples, 0.15%)</title><rect x="432.4" y="293" width="1.8" height="15.0" fill="rgb(223,113,48)" rx="2" ry="2" />
<text  x="435.40" y="303.5" ></text>
</g>
<g >
<title>match_clause_to_index (11,000,000 samples, 0.85%)</title><rect x="843.9" y="517" width="10.0" height="15.0" fill="rgb(228,25,5)" rx="2" ry="2" />
<text  x="846.90" y="527.5" ></text>
</g>
<g >
<title>index_beginscan (2,000,000 samples, 0.15%)</title><rect x="324.3" y="485" width="1.8" height="15.0" fill="rgb(210,23,0)" rx="2" ry="2" />
<text  x="327.30" y="495.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="438.8" y="373" width="0.9" height="15.0" fill="rgb(245,115,7)" rx="2" ry="2" />
<text  x="441.76" y="383.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="509.6" y="501" width="0.9" height="15.0" fill="rgb(226,223,2)" rx="2" ry="2" />
<text  x="512.62" y="511.5" ></text>
</g>
<g >
<title>build_index_paths (88,000,000 samples, 6.77%)</title><rect x="733.1" y="533" width="79.9" height="15.0" fill="rgb(231,111,34)" rx="2" ry="2" />
<text  x="736.08" y="543.5" >build_ind..</text>
</g>
<g >
<title>check_index_only (2,000,000 samples, 0.15%)</title><rect x="800.3" y="517" width="1.8" height="15.0" fill="rgb(235,158,14)" rx="2" ry="2" />
<text  x="803.30" y="527.5" ></text>
</g>
<g >
<title>RelationBuildDesc (203,000,000 samples, 15.63%)</title><rect x="309.8" y="533" width="184.4" height="15.0" fill="rgb(246,209,21)" rx="2" ry="2" />
<text  x="312.77" y="543.5" >RelationBuildDesc</text>
</g>
<g >
<title>memcpy@GLIBC_2.2.5 (1,000,000 samples, 0.08%)</title><rect x="691.3" y="229" width="0.9" height="15.0" fill="rgb(218,220,20)" rx="2" ry="2" />
<text  x="694.29" y="239.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (1,000,000 samples, 0.08%)</title><rect x="1061.0" y="837" width="0.9" height="15.0" fill="rgb(210,53,48)" rx="2" ry="2" />
<text  x="1064.01" y="847.5" ></text>
</g>
<g >
<title>unmap_vmas (13,000,000 samples, 1.00%)</title><rect x="1172.7" y="901" width="11.8" height="15.0" fill="rgb(211,45,24)" rx="2" ry="2" />
<text  x="1175.74" y="911.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="960.2" y="229" width="0.9" height="15.0" fill="rgb(217,69,51)" rx="2" ry="2" />
<text  x="963.18" y="239.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (2,000,000 samples, 0.15%)</title><rect x="320.7" y="501" width="1.8" height="15.0" fill="rgb(237,129,24)" rx="2" ry="2" />
<text  x="323.67" y="511.5" ></text>
</g>
<g >
<title>LockAcquireExtended (6,000,000 samples, 0.46%)</title><rect x="457.8" y="389" width="5.5" height="15.0" fill="rgb(252,29,11)" rx="2" ry="2" />
<text  x="460.84" y="399.5" ></text>
</g>
<g >
<title>SetupLockInTable (1,000,000 samples, 0.08%)</title><rect x="134.4" y="485" width="1.0" height="15.0" fill="rgb(217,139,30)" rx="2" ry="2" />
<text  x="137.45" y="495.5" ></text>
</g>
<g >
<title>_int_free (4,000,000 samples, 0.31%)</title><rect x="1084.6" y="997" width="3.7" height="15.0" fill="rgb(228,169,54)" rx="2" ry="2" />
<text  x="1087.63" y="1007.5" ></text>
</g>
<g >
<title>palloc0 (1,000,000 samples, 0.08%)</title><rect x="698.6" y="405" width="0.9" height="15.0" fill="rgb(234,216,53)" rx="2" ry="2" />
<text  x="701.56" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,000,000 samples, 0.15%)</title><rect x="1009.2" y="245" width="1.8" height="15.0" fill="rgb(222,49,17)" rx="2" ry="2" />
<text  x="1012.23" y="255.5" ></text>
</g>
<g >
<title>has_unique_index (1,000,000 samples, 0.08%)</title><rect x="946.6" y="389" width="0.9" height="15.0" fill="rgb(252,115,36)" rx="2" ry="2" />
<text  x="949.55" y="399.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,000,000 samples, 0.15%)</title><rect x="474.2" y="437" width="1.8" height="15.0" fill="rgb(247,221,3)" rx="2" ry="2" />
<text  x="477.19" y="447.5" ></text>
</g>
<g >
<title>memcpy@GLIBC_2.2.5 (1,000,000 samples, 0.08%)</title><rect x="377.0" y="373" width="0.9" height="15.0" fill="rgb(240,109,33)" rx="2" ry="2" />
<text  x="379.99" y="383.5" ></text>
</g>
<g >
<title>link_path_walk.part.0 (2,000,000 samples, 0.15%)</title><rect x="1068.3" y="885" width="1.8" height="15.0" fill="rgb(222,204,9)" rx="2" ry="2" />
<text  x="1071.28" y="895.5" ></text>
</g>
<g >
<title>adjust_appendrel_attrs (3,000,000 samples, 0.23%)</title><rect x="869.3" y="581" width="2.8" height="15.0" fill="rgb(245,129,24)" rx="2" ry="2" />
<text  x="872.34" y="591.5" ></text>
</g>
<g >
<title>bms_add_member (1,000,000 samples, 0.08%)</title><rect x="800.3" y="501" width="0.9" height="15.0" fill="rgb(223,0,16)" rx="2" ry="2" />
<text  x="803.30" y="511.5" ></text>
</g>
<g >
<title>set_cheapest (1,000,000 samples, 0.08%)</title><rect x="606.8" y="581" width="0.9" height="15.0" fill="rgb(224,80,23)" rx="2" ry="2" />
<text  x="609.81" y="591.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,000,000 samples, 0.31%)</title><rect x="315.2" y="389" width="3.7" height="15.0" fill="rgb(233,215,48)" rx="2" ry="2" />
<text  x="318.22" y="399.5" ></text>
</g>
<g >
<title>choose_bitmap_and (6,000,000 samples, 0.46%)</title><rect x="608.6" y="549" width="5.5" height="15.0" fill="rgb(217,146,17)" rx="2" ry="2" />
<text  x="611.63" y="559.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (2,000,000 samples, 0.15%)</title><rect x="664.9" y="277" width="1.9" height="15.0" fill="rgb(209,212,40)" rx="2" ry="2" />
<text  x="667.95" y="287.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="312.5" y="453" width="0.9" height="15.0" fill="rgb(205,53,28)" rx="2" ry="2" />
<text  x="315.49" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,000,000 samples, 0.08%)</title><rect x="1089.2" y="997" width="0.9" height="15.0" fill="rgb(207,220,39)" rx="2" ry="2" />
<text  x="1092.17" y="1007.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="800.3" y="309" width="0.9" height="15.0" fill="rgb(234,134,31)" rx="2" ry="2" />
<text  x="803.30" y="319.5" ></text>
</g>
<g >
<title>table_slot_create (1,000,000 samples, 0.08%)</title><rect x="993.8" y="293" width="0.9" height="15.0" fill="rgb(231,135,18)" rx="2" ry="2" />
<text  x="996.79" y="303.5" ></text>
</g>
<g >
<title>PathNameOpenFile (10,000,000 samples, 0.77%)</title><rect x="166.2" y="517" width="9.1" height="15.0" fill="rgb(236,149,52)" rx="2" ry="2" />
<text  x="169.24" y="527.5" ></text>
</g>
<g >
<title>alloc_pages_vma (10,000,000 samples, 0.77%)</title><rect x="982.0" y="181" width="9.1" height="15.0" fill="rgb(241,111,43)" rx="2" ry="2" />
<text  x="984.98" y="191.5" ></text>
</g>
<g >
<title>systable_getnext (12,000,000 samples, 0.92%)</title><rect x="929.3" y="309" width="10.9" height="15.0" fill="rgb(231,159,39)" rx="2" ry="2" />
<text  x="932.29" y="319.5" ></text>
</g>
<g >
<title>hash_bytes (3,000,000 samples, 0.23%)</title><rect x="956.5" y="197" width="2.8" height="15.0" fill="rgb(248,48,45)" rx="2" ry="2" />
<text  x="959.54" y="207.5" ></text>
</g>
<g >
<title>relation_open (6,000,000 samples, 0.46%)</title><rect x="457.8" y="421" width="5.5" height="15.0" fill="rgb(214,37,18)" rx="2" ry="2" />
<text  x="460.84" y="431.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="45.4" y="389" width="0.9" height="15.0" fill="rgb(223,207,8)" rx="2" ry="2" />
<text  x="48.43" y="399.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (3,000,000 samples, 0.23%)</title><rect x="364.3" y="261" width="2.7" height="15.0" fill="rgb(214,220,19)" rx="2" ry="2" />
<text  x="367.27" y="271.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (2,000,000 samples, 0.15%)</title><rect x="932.0" y="181" width="1.8" height="15.0" fill="rgb(218,120,20)" rx="2" ry="2" />
<text  x="935.02" y="191.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="546.0" y="421" width="0.9" height="15.0" fill="rgb(216,54,38)" rx="2" ry="2" />
<text  x="548.95" y="431.5" ></text>
</g>
<g >
<title>CatalogCacheCreateEntry (3,000,000 samples, 0.23%)</title><rect x="914.8" y="309" width="2.7" height="15.0" fill="rgb(238,86,38)" rx="2" ry="2" />
<text  x="917.76" y="319.5" ></text>
</g>
<g >
<title>SysCacheGetAttr (1,000,000 samples, 0.08%)</title><rect x="428.8" y="469" width="0.9" height="15.0" fill="rgb(220,209,40)" rx="2" ry="2" />
<text  x="431.77" y="479.5" ></text>
</g>
<g >
<title>pfree (1,000,000 samples, 0.08%)</title><rect x="524.1" y="469" width="1.0" height="15.0" fill="rgb(236,129,36)" rx="2" ry="2" />
<text  x="527.15" y="479.5" ></text>
</g>
<g >
<title>list_nth (1,000,000 samples, 0.08%)</title><rect x="831.2" y="485" width="0.9" height="15.0" fill="rgb(223,115,22)" rx="2" ry="2" />
<text  x="834.19" y="495.5" ></text>
</g>
<g >
<title>BufferAlloc (4,000,000 samples, 0.31%)</title><rect x="139.0" y="421" width="3.6" height="15.0" fill="rgb(250,108,41)" rx="2" ry="2" />
<text  x="141.99" y="431.5" ></text>
</g>
<g >
<title>table_open (13,000,000 samples, 1.00%)</title><rect x="290.7" y="549" width="11.8" height="15.0" fill="rgb(211,148,29)" rx="2" ry="2" />
<text  x="293.69" y="559.5" ></text>
</g>
<g >
<title>find_inheritance_children_extended (1,000,000 samples, 0.08%)</title><rect x="76.3" y="501" width="0.9" height="15.0" fill="rgb(234,182,36)" rx="2" ry="2" />
<text  x="79.31" y="511.5" ></text>
</g>
<g >
<title>set_append_rel_pathlist (285,000,000 samples, 21.94%)</title><rect x="601.4" y="613" width="258.9" height="15.0" fill="rgb(222,163,5)" rx="2" ry="2" />
<text  x="604.36" y="623.5" >set_append_rel_pathlist</text>
</g>
<g >
<title>ReleaseAndReadBuffer (4,000,000 samples, 0.31%)</title><rect x="394.2" y="325" width="3.7" height="15.0" fill="rgb(224,84,19)" rx="2" ry="2" />
<text  x="397.25" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (42,000,000 samples, 3.23%)</title><rect x="206.2" y="309" width="38.2" height="15.0" fill="rgb(209,48,42)" rx="2" ry="2" />
<text  x="209.21" y="319.5" >exc..</text>
</g>
<g >
<title>hash_search_with_hash_value (2,000,000 samples, 0.15%)</title><rect x="258.0" y="421" width="1.8" height="15.0" fill="rgb(233,29,3)" rx="2" ry="2" />
<text  x="260.99" y="431.5" ></text>
</g>
<g >
<title>PageGetSpecialPointer (1,000,000 samples, 0.08%)</title><rect x="409.7" y="309" width="0.9" height="15.0" fill="rgb(243,183,34)" rx="2" ry="2" />
<text  x="412.69" y="319.5" ></text>
</g>
<g >
<title>index_beginscan_internal (1,000,000 samples, 0.08%)</title><rect x="518.7" y="501" width="0.9" height="15.0" fill="rgb(251,19,45)" rx="2" ry="2" />
<text  x="521.70" y="511.5" ></text>
</g>
<g >
<title>find_single_rel_for_clauses (3,000,000 samples, 0.23%)</title><rect x="1015.6" y="517" width="2.7" height="15.0" fill="rgb(248,64,20)" rx="2" ry="2" />
<text  x="1018.59" y="527.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (19,000,000 samples, 1.46%)</title><rect x="950.2" y="389" width="17.2" height="15.0" fill="rgb(241,214,49)" rx="2" ry="2" />
<text  x="953.18" y="399.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,000,000 samples, 0.08%)</title><rect x="342.5" y="341" width="0.9" height="15.0" fill="rgb(225,144,0)" rx="2" ry="2" />
<text  x="345.47" y="351.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="427.9" y="357" width="0.9" height="15.0" fill="rgb(246,129,48)" rx="2" ry="2" />
<text  x="430.86" y="367.5" ></text>
</g>
<g >
<title>planner (1,124,000,000 samples, 86.53%)</title><rect x="25.4" y="741" width="1021.1" height="15.0" fill="rgb(247,19,4)" rx="2" ry="2" />
<text  x="28.44" y="751.5" >planner</text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (3,000,000 samples, 0.23%)</title><rect x="596.8" y="549" width="2.7" height="15.0" fill="rgb(214,98,38)" rx="2" ry="2" />
<text  x="599.82" y="559.5" ></text>
</g>
<g >
<title>bms_next_member (1,000,000 samples, 0.08%)</title><rect x="833.9" y="501" width="0.9" height="15.0" fill="rgb(253,147,19)" rx="2" ry="2" />
<text  x="836.91" y="511.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,000,000 samples, 0.08%)</title><rect x="418.8" y="197" width="0.9" height="15.0" fill="rgb(235,126,46)" rx="2" ry="2" />
<text  x="421.78" y="207.5" ></text>
</g>
<g >
<title>lappend (1,000,000 samples, 0.08%)</title><rect x="867.5" y="565" width="0.9" height="15.0" fill="rgb(210,19,0)" rx="2" ry="2" />
<text  x="870.52" y="575.5" ></text>
</g>
<g >
<title>index_fetch_heap (1,000,000 samples, 0.08%)</title><rect x="76.3" y="453" width="0.9" height="15.0" fill="rgb(208,123,22)" rx="2" ry="2" />
<text  x="79.31" y="463.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="21.8" y="613" width="0.9" height="15.0" fill="rgb(240,191,40)" rx="2" ry="2" />
<text  x="24.81" y="623.5" ></text>
</g>
<g >
<title>AllocSetAlloc (2,000,000 samples, 0.15%)</title><rect x="783.0" y="389" width="1.9" height="15.0" fill="rgb(254,140,31)" rx="2" ry="2" />
<text  x="786.04" y="399.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="863.9" y="517" width="0.9" height="15.0" fill="rgb(226,165,37)" rx="2" ry="2" />
<text  x="866.89" y="527.5" ></text>
</g>
<g >
<title>cost_qual_eval (3,000,000 samples, 0.23%)</title><rect x="1022.9" y="549" width="2.7" height="15.0" fill="rgb(225,85,8)" rx="2" ry="2" />
<text  x="1025.86" y="559.5" ></text>
</g>
<g >
<title>systable_endscan (7,000,000 samples, 0.54%)</title><rect x="922.9" y="309" width="6.4" height="15.0" fill="rgb(236,120,35)" rx="2" ry="2" />
<text  x="925.93" y="319.5" ></text>
</g>
<g >
<title>nodeRead (14,000,000 samples, 1.08%)</title><rect x="79.9" y="469" width="12.8" height="15.0" fill="rgb(249,47,37)" rx="2" ry="2" />
<text  x="82.95" y="479.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="330.7" y="405" width="0.9" height="15.0" fill="rgb(237,11,4)" rx="2" ry="2" />
<text  x="333.66" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="1004.7" y="229" width="0.9" height="15.0" fill="rgb(207,36,28)" rx="2" ry="2" />
<text  x="1007.69" y="239.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="825.7" y="373" width="0.9" height="15.0" fill="rgb(212,68,46)" rx="2" ry="2" />
<text  x="828.74" y="383.5" ></text>
</g>
<g >
<title>LWLockRelease (1,000,000 samples, 0.08%)</title><rect x="303.4" y="517" width="0.9" height="15.0" fill="rgb(215,9,46)" rx="2" ry="2" />
<text  x="306.41" y="527.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (1,000,000 samples, 0.08%)</title><rect x="377.9" y="309" width="0.9" height="15.0" fill="rgb(218,135,12)" rx="2" ry="2" />
<text  x="380.90" y="319.5" ></text>
</g>
<g >
<title>get_hash_entry (1,000,000 samples, 0.08%)</title><rect x="374.3" y="293" width="0.9" height="15.0" fill="rgb(227,159,45)" rx="2" ry="2" />
<text  x="377.26" y="303.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="435.1" y="309" width="0.9" height="15.0" fill="rgb(208,136,16)" rx="2" ry="2" />
<text  x="438.13" y="319.5" ></text>
</g>
<g >
<title>_bt_compare (1,000,000 samples, 0.08%)</title><rect x="343.4" y="389" width="0.9" height="15.0" fill="rgb(225,60,49)" rx="2" ry="2" />
<text  x="346.38" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="766.7" y="293" width="0.9" height="15.0" fill="rgb(216,20,50)" rx="2" ry="2" />
<text  x="769.69" y="303.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (2,000,000 samples, 0.15%)</title><rect x="1059.2" y="837" width="1.8" height="15.0" fill="rgb(221,111,25)" rx="2" ry="2" />
<text  x="1062.19" y="847.5" ></text>
</g>
<g >
<title>contain_volatile_functions_checker (1,000,000 samples, 0.08%)</title><rect x="823.9" y="405" width="0.9" height="15.0" fill="rgb(238,89,37)" rx="2" ry="2" />
<text  x="826.92" y="415.5" ></text>
</g>
<g >
<title>do_sys_openat2 (27,000,000 samples, 2.08%)</title><rect x="1055.6" y="933" width="24.5" height="15.0" fill="rgb(220,221,20)" rx="2" ry="2" />
<text  x="1058.56" y="943.5" >d..</text>
</g>
<g >
<title>uint32_hash (1,000,000 samples, 0.08%)</title><rect x="347.9" y="437" width="0.9" height="15.0" fill="rgb(237,7,2)" rx="2" ry="2" />
<text  x="350.92" y="447.5" ></text>
</g>
<g >
<title>ReadBuffer (4,000,000 samples, 0.31%)</title><rect x="450.6" y="309" width="3.6" height="15.0" fill="rgb(231,204,51)" rx="2" ry="2" />
<text  x="453.57" y="319.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,000,000 samples, 0.08%)</title><rect x="527.8" y="421" width="0.9" height="15.0" fill="rgb(233,101,20)" rx="2" ry="2" />
<text  x="530.78" y="431.5" ></text>
</g>
<g >
<title>SetupLockInTable (1,000,000 samples, 0.08%)</title><rect x="1008.3" y="245" width="0.9" height="15.0" fill="rgb(221,182,23)" rx="2" ry="2" />
<text  x="1011.32" y="255.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (4,000,000 samples, 0.31%)</title><rect x="315.2" y="405" width="3.7" height="15.0" fill="rgb(241,213,26)" rx="2" ry="2" />
<text  x="318.22" y="415.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="565" width="1.0" height="15.0" fill="rgb(236,166,24)" rx="2" ry="2" />
<text  x="1187.55" y="575.5" ></text>
</g>
<g >
<title>is_orclause (1,000,000 samples, 0.08%)</title><rect x="902.0" y="501" width="0.9" height="15.0" fill="rgb(240,137,3)" rx="2" ry="2" />
<text  x="905.04" y="511.5" ></text>
</g>
<g >
<title>_bt_getbuf (2,000,000 samples, 0.15%)</title><rect x="542.3" y="421" width="1.8" height="15.0" fill="rgb(231,4,10)" rx="2" ry="2" />
<text  x="545.32" y="431.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (1,000,000 samples, 0.08%)</title><rect x="509.6" y="389" width="0.9" height="15.0" fill="rgb(210,177,32)" rx="2" ry="2" />
<text  x="512.62" y="399.5" ></text>
</g>
<g >
<title>CatalogCacheCreateEntry (3,000,000 samples, 0.23%)</title><rect x="969.3" y="309" width="2.7" height="15.0" fill="rgb(224,49,8)" rx="2" ry="2" />
<text  x="972.26" y="319.5" ></text>
</g>
<g >
<title>_bt_search (7,000,000 samples, 0.54%)</title><rect x="997.4" y="229" width="6.4" height="15.0" fill="rgb(242,59,13)" rx="2" ry="2" />
<text  x="1000.42" y="239.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="919.3" y="117" width="0.9" height="15.0" fill="rgb(226,187,27)" rx="2" ry="2" />
<text  x="922.30" y="127.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="137.2" y="549" width="0.9" height="15.0" fill="rgb(236,193,31)" rx="2" ry="2" />
<text  x="140.17" y="559.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="132.6" y="421" width="0.9" height="15.0" fill="rgb(239,63,36)" rx="2" ry="2" />
<text  x="135.63" y="431.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (1,000,000 samples, 0.08%)</title><rect x="453.3" y="229" width="0.9" height="15.0" fill="rgb(240,74,17)" rx="2" ry="2" />
<text  x="456.29" y="239.5" ></text>
</g>
<g >
<title>bms_next_member (3,000,000 samples, 0.23%)</title><rect x="815.7" y="517" width="2.8" height="15.0" fill="rgb(248,141,43)" rx="2" ry="2" />
<text  x="818.74" y="527.5" ></text>
</g>
<g >
<title>pull_varattnos_walker (2,000,000 samples, 0.15%)</title><rect x="684.9" y="437" width="1.9" height="15.0" fill="rgb(207,76,3)" rx="2" ry="2" />
<text  x="687.93" y="447.5" ></text>
</g>
<g >
<title>RelationInitIndexAccessInfo (134,000,000 samples, 10.32%)</title><rect x="348.8" y="517" width="121.8" height="15.0" fill="rgb(232,112,43)" rx="2" ry="2" />
<text  x="351.83" y="527.5" >RelationInitInd..</text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="501" width="0.9" height="15.0" fill="rgb(235,139,11)" rx="2" ry="2" />
<text  x="1052.20" y="511.5" ></text>
</g>
<g >
<title>BufTableLookup (1,000,000 samples, 0.08%)</title><rect x="416.1" y="213" width="0.9" height="15.0" fill="rgb(214,138,20)" rx="2" ry="2" />
<text  x="419.05" y="223.5" ></text>
</g>
<g >
<title>tcp_fin (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="533" width="1.0" height="15.0" fill="rgb(207,31,34)" rx="2" ry="2" />
<text  x="1187.55" y="543.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3,000,000 samples, 0.23%)</title><rect x="514.2" y="453" width="2.7" height="15.0" fill="rgb(243,101,7)" rx="2" ry="2" />
<text  x="517.16" y="463.5" ></text>
</g>
<g >
<title>qsort_partition_rbound_cmp (1,000,000 samples, 0.08%)</title><rect x="79.0" y="453" width="0.9" height="15.0" fill="rgb(242,195,46)" rx="2" ry="2" />
<text  x="82.04" y="463.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (1,000,000 samples, 0.08%)</title><rect x="550.5" y="501" width="0.9" height="15.0" fill="rgb(205,86,3)" rx="2" ry="2" />
<text  x="553.49" y="511.5" ></text>
</g>
<g >
<title>_bt_metaversion (1,000,000 samples, 0.08%)</title><rect x="144.4" y="485" width="1.0" height="15.0" fill="rgb(243,204,12)" rx="2" ry="2" />
<text  x="147.44" y="495.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="1037.4" y="245" width="0.9" height="15.0" fill="rgb(228,163,8)" rx="2" ry="2" />
<text  x="1040.39" y="255.5" ></text>
</g>
<g >
<title>relation_close (2,000,000 samples, 0.15%)</title><rect x="1003.8" y="293" width="1.8" height="15.0" fill="rgb(225,180,34)" rx="2" ry="2" />
<text  x="1006.78" y="303.5" ></text>
</g>
<g >
<title>set_relation_partition_info (56,000,000 samples, 4.31%)</title><rect x="43.6" y="565" width="50.9" height="15.0" fill="rgb(230,130,18)" rx="2" ry="2" />
<text  x="46.61" y="575.5" >set_r..</text>
</g>
<g >
<title>systable_beginscan (9,000,000 samples, 0.69%)</title><rect x="472.4" y="501" width="8.1" height="15.0" fill="rgb(230,200,19)" rx="2" ry="2" />
<text  x="475.37" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,000,000 samples, 0.15%)</title><rect x="434.2" y="373" width="1.8" height="15.0" fill="rgb(220,179,50)" rx="2" ry="2" />
<text  x="437.22" y="383.5" ></text>
</g>
<g >
<title>generic_permission (1,000,000 samples, 0.08%)</title><rect x="1068.3" y="853" width="0.9" height="15.0" fill="rgb(248,129,54)" rx="2" ry="2" />
<text  x="1071.28" y="863.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,000,000 samples, 0.15%)</title><rect x="135.4" y="485" width="1.8" height="15.0" fill="rgb(229,52,54)" rx="2" ry="2" />
<text  x="138.36" y="495.5" ></text>
</g>
<g >
<title>list_nth (2,000,000 samples, 0.15%)</title><rect x="640.4" y="405" width="1.8" height="15.0" fill="rgb(247,205,16)" rx="2" ry="2" />
<text  x="643.42" y="415.5" ></text>
</g>
<g >
<title>table_close (4,000,000 samples, 0.31%)</title><rect x="940.2" y="309" width="3.6" height="15.0" fill="rgb(246,96,39)" rx="2" ry="2" />
<text  x="943.19" y="319.5" ></text>
</g>
<g >
<title>alloc_pages_vma (2,000,000 samples, 0.15%)</title><rect x="320.7" y="389" width="1.8" height="15.0" fill="rgb(207,201,12)" rx="2" ry="2" />
<text  x="323.67" y="399.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="893.0" y="501" width="0.9" height="15.0" fill="rgb(222,225,45)" rx="2" ry="2" />
<text  x="895.96" y="511.5" ></text>
</g>
<g >
<title>btgettuple (10,000,000 samples, 0.77%)</title><rect x="66.3" y="389" width="9.1" height="15.0" fill="rgb(243,171,17)" rx="2" ry="2" />
<text  x="69.32" y="399.5" ></text>
</g>
<g >
<title>table_slot_create (1,000,000 samples, 0.08%)</title><rect x="439.7" y="421" width="0.9" height="15.0" fill="rgb(205,23,51)" rx="2" ry="2" />
<text  x="442.67" y="431.5" ></text>
</g>
<g >
<title>CommitTransaction (3,000,000 samples, 0.23%)</title><rect x="1046.5" y="837" width="2.7" height="15.0" fill="rgb(233,120,46)" rx="2" ry="2" />
<text  x="1049.47" y="847.5" ></text>
</g>
<g >
<title>unmap_region (1,000,000 samples, 0.08%)</title><rect x="13.6" y="917" width="0.9" height="15.0" fill="rgb(216,89,38)" rx="2" ry="2" />
<text  x="16.63" y="927.5" ></text>
</g>
<g >
<title>ReadBuffer_common (2,000,000 samples, 0.15%)</title><rect x="1037.4" y="293" width="1.8" height="15.0" fill="rgb(245,90,5)" rx="2" ry="2" />
<text  x="1040.39" y="303.5" ></text>
</g>
<g >
<title>LockRelationOid (3,000,000 samples, 0.23%)</title><rect x="474.2" y="453" width="2.7" height="15.0" fill="rgb(236,116,31)" rx="2" ry="2" />
<text  x="477.19" y="463.5" ></text>
</g>
<g >
<title>_bt_lockbuf (1,000,000 samples, 0.08%)</title><rect x="42.7" y="245" width="0.9" height="15.0" fill="rgb(219,219,1)" rx="2" ry="2" />
<text  x="45.70" y="255.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (3,000,000 samples, 0.23%)</title><rect x="574.1" y="485" width="2.7" height="15.0" fill="rgb(226,39,34)" rx="2" ry="2" />
<text  x="577.11" y="495.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (1,000,000 samples, 0.08%)</title><rect x="623.2" y="389" width="0.9" height="15.0" fill="rgb(241,175,8)" rx="2" ry="2" />
<text  x="626.16" y="399.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,000,000 samples, 0.08%)</title><rect x="800.3" y="485" width="0.9" height="15.0" fill="rgb(227,143,48)" rx="2" ry="2" />
<text  x="803.30" y="495.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (1,000,000 samples, 0.08%)</title><rect x="503.3" y="565" width="0.9" height="15.0" fill="rgb(221,198,20)" rx="2" ry="2" />
<text  x="506.26" y="575.5" ></text>
</g>
<g >
<title>systable_endscan (1,000,000 samples, 0.08%)</title><rect x="138.1" y="565" width="0.9" height="15.0" fill="rgb(232,93,40)" rx="2" ry="2" />
<text  x="141.08" y="575.5" ></text>
</g>
<g >
<title>select_rtable_names_for_explain (1,000,000 samples, 0.08%)</title><rect x="24.5" y="725" width="0.9" height="15.0" fill="rgb(234,162,51)" rx="2" ry="2" />
<text  x="27.53" y="735.5" ></text>
</g>
<g >
<title>do_sys_openat2 (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="933" width="0.9" height="15.0" fill="rgb(211,11,24)" rx="2" ry="2" />
<text  x="1093.08" y="943.5" ></text>
</g>
<g >
<title>cost_index (12,000,000 samples, 0.92%)</title><rect x="687.7" y="453" width="10.9" height="15.0" fill="rgb(224,95,24)" rx="2" ry="2" />
<text  x="690.66" y="463.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (3,000,000 samples, 0.23%)</title><rect x="369.7" y="261" width="2.7" height="15.0" fill="rgb(216,1,0)" rx="2" ry="2" />
<text  x="372.72" y="271.5" ></text>
</g>
<g >
<title>LockRelationOid (1,000,000 samples, 0.08%)</title><rect x="547.8" y="501" width="0.9" height="15.0" fill="rgb(239,152,16)" rx="2" ry="2" />
<text  x="550.77" y="511.5" ></text>
</g>
<g >
<title>btbeginscan (2,000,000 samples, 0.15%)</title><rect x="130.8" y="517" width="1.8" height="15.0" fill="rgb(207,188,22)" rx="2" ry="2" />
<text  x="133.82" y="527.5" ></text>
</g>
<g >
<title>UnlockRelationId (3,000,000 samples, 0.23%)</title><rect x="590.5" y="501" width="2.7" height="15.0" fill="rgb(216,191,20)" rx="2" ry="2" />
<text  x="593.46" y="511.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="26.4" y="469" width="0.9" height="15.0" fill="rgb(242,68,38)" rx="2" ry="2" />
<text  x="29.35" y="479.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="995.6" y="213" width="0.9" height="15.0" fill="rgb(208,133,47)" rx="2" ry="2" />
<text  x="998.60" y="223.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="701.3" y="277" width="0.9" height="15.0" fill="rgb(209,227,23)" rx="2" ry="2" />
<text  x="704.29" y="287.5" ></text>
</g>
<g >
<title>prep_new_page (43,000,000 samples, 3.31%)</title><rect x="1122.8" y="885" width="39.0" height="15.0" fill="rgb(214,14,37)" rx="2" ry="2" />
<text  x="1125.78" y="895.5" >pre..</text>
</g>
<g >
<title>btbeginscan (2,000,000 samples, 0.15%)</title><rect x="324.3" y="453" width="1.8" height="15.0" fill="rgb(217,198,7)" rx="2" ry="2" />
<text  x="327.30" y="463.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="132.6" y="469" width="0.9" height="15.0" fill="rgb(217,149,53)" rx="2" ry="2" />
<text  x="135.63" y="479.5" ></text>
</g>
<g >
<title>build_implied_join_equality (11,000,000 samples, 0.85%)</title><rect x="820.3" y="501" width="10.0" height="15.0" fill="rgb(224,194,44)" rx="2" ry="2" />
<text  x="823.28" y="511.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (1,000,000 samples, 0.08%)</title><rect x="928.4" y="261" width="0.9" height="15.0" fill="rgb(235,79,50)" rx="2" ry="2" />
<text  x="931.38" y="271.5" ></text>
</g>
<g >
<title>index_beginscan_internal (9,000,000 samples, 0.69%)</title><rect x="551.4" y="501" width="8.2" height="15.0" fill="rgb(227,217,7)" rx="2" ry="2" />
<text  x="554.40" y="511.5" ></text>
</g>
<g >
<title>new_sync_read (70,000,000 samples, 5.39%)</title><rect x="188.0" y="389" width="63.6" height="15.0" fill="rgb(214,169,29)" rx="2" ry="2" />
<text  x="191.04" y="399.5" >new_sy..</text>
</g>
<g >
<title>simplify_function (2,000,000 samples, 0.15%)</title><rect x="120.8" y="501" width="1.8" height="15.0" fill="rgb(227,11,25)" rx="2" ry="2" />
<text  x="123.82" y="511.5" ></text>
</g>
<g >
<title>ResourceArrayAdd (1,000,000 samples, 0.08%)</title><rect x="526.0" y="389" width="0.9" height="15.0" fill="rgb(224,193,34)" rx="2" ry="2" />
<text  x="528.97" y="399.5" ></text>
</g>
<g >
<title>index_getnext_tid (6,000,000 samples, 0.46%)</title><rect x="284.3" y="517" width="5.5" height="15.0" fill="rgb(211,190,33)" rx="2" ry="2" />
<text  x="287.33" y="527.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="766.7" y="341" width="0.9" height="15.0" fill="rgb(210,73,11)" rx="2" ry="2" />
<text  x="769.69" y="351.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="1004.7" y="245" width="0.9" height="15.0" fill="rgb(219,2,13)" rx="2" ry="2" />
<text  x="1007.69" y="255.5" ></text>
</g>
<g >
<title>bms_add_member (4,000,000 samples, 0.31%)</title><rect x="764.0" y="421" width="3.6" height="15.0" fill="rgb(213,118,36)" rx="2" ry="2" />
<text  x="766.96" y="431.5" ></text>
</g>
<g >
<title>extract_nonindex_conditions (1,000,000 samples, 0.08%)</title><rect x="810.3" y="485" width="0.9" height="15.0" fill="rgb(212,16,42)" rx="2" ry="2" />
<text  x="813.29" y="495.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (1,000,000 samples, 0.08%)</title><rect x="943.8" y="261" width="0.9" height="15.0" fill="rgb(241,225,27)" rx="2" ry="2" />
<text  x="946.83" y="271.5" ></text>
</g>
<g >
<title>_bt_readpage (2,000,000 samples, 0.15%)</title><rect x="145.4" y="485" width="1.8" height="15.0" fill="rgb(214,94,49)" rx="2" ry="2" />
<text  x="148.35" y="495.5" ></text>
</g>
<g >
<title>accumulate_append_subpath (1,000,000 samples, 0.08%)</title><rect x="605.0" y="565" width="0.9" height="15.0" fill="rgb(235,198,16)" rx="2" ry="2" />
<text  x="608.00" y="575.5" ></text>
</g>
<g >
<title>MakeSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="327.9" y="469" width="0.9" height="15.0" fill="rgb(244,94,48)" rx="2" ry="2" />
<text  x="330.94" y="479.5" ></text>
</g>
<g >
<title>BufferGetPage (1,000,000 samples, 0.08%)</title><rect x="67.2" y="357" width="0.9" height="15.0" fill="rgb(226,39,12)" rx="2" ry="2" />
<text  x="70.23" y="367.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="715.8" y="213" width="0.9" height="15.0" fill="rgb(208,181,38)" rx="2" ry="2" />
<text  x="718.82" y="223.5" ></text>
</g>
<g >
<title>make_append_rel_info (3,000,000 samples, 0.23%)</title><rect x="498.7" y="597" width="2.7" height="15.0" fill="rgb(221,18,29)" rx="2" ry="2" />
<text  x="501.71" y="607.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (3,000,000 samples, 0.23%)</title><rect x="118.1" y="501" width="2.7" height="15.0" fill="rgb(233,58,18)" rx="2" ry="2" />
<text  x="121.10" y="511.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="1003.8" y="197" width="0.9" height="15.0" fill="rgb(253,194,12)" rx="2" ry="2" />
<text  x="1006.78" y="207.5" ></text>
</g>
<g >
<title>exc_page_fault (3,000,000 samples, 0.23%)</title><rect x="47.2" y="405" width="2.8" height="15.0" fill="rgb(251,157,43)" rx="2" ry="2" />
<text  x="50.24" y="415.5" ></text>
</g>
<g >
<title>startup_hacks (1,140,000,000 samples, 87.76%)</title><rect x="17.3" y="981" width="1035.5" height="15.0" fill="rgb(231,55,34)" rx="2" ry="2" />
<text  x="20.27" y="991.5" >startup_hacks</text>
</g>
<g >
<title>SearchCatCache1 (2,000,000 samples, 0.15%)</title><rect x="1043.7" y="485" width="1.9" height="15.0" fill="rgb(205,149,48)" rx="2" ry="2" />
<text  x="1046.75" y="495.5" ></text>
</g>
<g >
<title>eclass_member_iterator_dispose (1,000,000 samples, 0.08%)</title><rect x="623.2" y="421" width="0.9" height="15.0" fill="rgb(231,79,19)" rx="2" ry="2" />
<text  x="626.16" y="431.5" ></text>
</g>
<g >
<title>LockRelationOid (8,000,000 samples, 0.62%)</title><rect x="293.4" y="517" width="7.3" height="15.0" fill="rgb(226,58,3)" rx="2" ry="2" />
<text  x="296.42" y="527.5" ></text>
</g>
<g >
<title>_bt_binsrch (1,000,000 samples, 0.08%)</title><rect x="341.6" y="405" width="0.9" height="15.0" fill="rgb(242,209,29)" rx="2" ry="2" />
<text  x="344.56" y="415.5" ></text>
</g>
<g >
<title>RelationClose (1,000,000 samples, 0.08%)</title><rect x="328.8" y="469" width="1.0" height="15.0" fill="rgb(249,220,47)" rx="2" ry="2" />
<text  x="331.85" y="479.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="613" width="1.0" height="15.0" fill="rgb(243,8,51)" rx="2" ry="2" />
<text  x="1187.55" y="623.5" ></text>
</g>
<g >
<title>index_endscan (2,000,000 samples, 0.15%)</title><rect x="391.5" y="389" width="1.8" height="15.0" fill="rgb(245,157,1)" rx="2" ry="2" />
<text  x="394.52" y="399.5" ></text>
</g>
<g >
<title>estimate_expression_value (1,000,000 samples, 0.08%)</title><rect x="714.9" y="277" width="0.9" height="15.0" fill="rgb(238,118,28)" rx="2" ry="2" />
<text  x="717.91" y="287.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="451.5" y="229" width="0.9" height="15.0" fill="rgb(208,87,51)" rx="2" ry="2" />
<text  x="454.48" y="239.5" ></text>
</g>
<g >
<title>LockBuffer (1,000,000 samples, 0.08%)</title><rect x="1001.1" y="165" width="0.9" height="15.0" fill="rgb(215,167,33)" rx="2" ry="2" />
<text  x="1004.05" y="175.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="150.8" y="421" width="0.9" height="15.0" fill="rgb(215,107,14)" rx="2" ry="2" />
<text  x="153.80" y="431.5" ></text>
</g>
<g >
<title>relation_open (2,000,000 samples, 0.15%)</title><rect x="54.5" y="405" width="1.8" height="15.0" fill="rgb(241,95,4)" rx="2" ry="2" />
<text  x="57.51" y="415.5" ></text>
</g>
<g >
<title>_readConst (5,000,000 samples, 0.38%)</title><rect x="82.7" y="325" width="4.5" height="15.0" fill="rgb(225,174,30)" rx="2" ry="2" />
<text  x="85.67" y="335.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (1,000,000 samples, 0.08%)</title><rect x="608.6" y="453" width="0.9" height="15.0" fill="rgb(215,103,9)" rx="2" ry="2" />
<text  x="611.63" y="463.5" ></text>
</g>
<g >
<title>table_open (3,000,000 samples, 0.23%)</title><rect x="1041.0" y="453" width="2.7" height="15.0" fill="rgb(243,36,31)" rx="2" ry="2" />
<text  x="1044.02" y="463.5" ></text>
</g>
<g >
<title>SearchCatCache3 (2,000,000 samples, 0.15%)</title><rect x="803.9" y="453" width="1.9" height="15.0" fill="rgb(236,124,51)" rx="2" ry="2" />
<text  x="806.93" y="463.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="820.3" y="469" width="1.8" height="15.0" fill="rgb(209,46,6)" rx="2" ry="2" />
<text  x="823.28" y="479.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,000,000 samples, 0.08%)</title><rect x="1039.2" y="309" width="0.9" height="15.0" fill="rgb(234,164,46)" rx="2" ry="2" />
<text  x="1042.21" y="319.5" ></text>
</g>
<g >
<title>malloc (1,000,000 samples, 0.08%)</title><rect x="276.2" y="469" width="0.9" height="15.0" fill="rgb(246,83,27)" rx="2" ry="2" />
<text  x="279.16" y="479.5" ></text>
</g>
<g >
<title>UnpinBuffer (1,000,000 samples, 0.08%)</title><rect x="382.4" y="325" width="0.9" height="15.0" fill="rgb(251,124,26)" rx="2" ry="2" />
<text  x="385.44" y="335.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="823.9" y="341" width="0.9" height="15.0" fill="rgb(240,162,8)" rx="2" ry="2" />
<text  x="826.92" y="351.5" ></text>
</g>
<g >
<title>_copyVar (2,000,000 samples, 0.15%)</title><rect x="875.7" y="517" width="1.8" height="15.0" fill="rgb(222,217,10)" rx="2" ry="2" />
<text  x="878.70" y="527.5" ></text>
</g>
<g >
<title>pull_varnos_walker (1,000,000 samples, 0.08%)</title><rect x="829.4" y="421" width="0.9" height="15.0" fill="rgb(254,64,42)" rx="2" ry="2" />
<text  x="832.37" y="431.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="326.1" y="405" width="0.9" height="15.0" fill="rgb(231,139,37)" rx="2" ry="2" />
<text  x="329.12" y="415.5" ></text>
</g>
<g >
<title>bms_next_member (1,000,000 samples, 0.08%)</title><rect x="700.4" y="405" width="0.9" height="15.0" fill="rgb(227,133,46)" rx="2" ry="2" />
<text  x="703.38" y="415.5" ></text>
</g>
<g >
<title>find_vma (1,000,000 samples, 0.08%)</title><rect x="210.8" y="277" width="0.9" height="15.0" fill="rgb(253,62,38)" rx="2" ry="2" />
<text  x="213.75" y="287.5" ></text>
</g>
<g >
<title>relation_close (1,000,000 samples, 0.08%)</title><rect x="344.3" y="485" width="0.9" height="15.0" fill="rgb(230,19,53)" rx="2" ry="2" />
<text  x="347.29" y="495.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,000,000 samples, 0.08%)</title><rect x="43.6" y="485" width="0.9" height="15.0" fill="rgb(237,3,26)" rx="2" ry="2" />
<text  x="46.61" y="495.5" ></text>
</g>
<g >
<title>LWLockRelease (2,000,000 samples, 0.15%)</title><rect x="457.8" y="373" width="1.9" height="15.0" fill="rgb(250,44,26)" rx="2" ry="2" />
<text  x="460.84" y="383.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (36,000,000 samples, 2.77%)</title><rect x="913.8" y="341" width="32.8" height="15.0" fill="rgb(213,121,26)" rx="2" ry="2" />
<text  x="916.85" y="351.5" >Se..</text>
</g>
<g >
<title>kernel_init_free_pages (2,000,000 samples, 0.15%)</title><rect x="320.7" y="325" width="1.8" height="15.0" fill="rgb(242,23,54)" rx="2" ry="2" />
<text  x="323.67" y="335.5" ></text>
</g>
<g >
<title>LockAcquireExtended (1,000,000 samples, 0.08%)</title><rect x="1041.9" y="405" width="0.9" height="15.0" fill="rgb(215,3,14)" rx="2" ry="2" />
<text  x="1044.93" y="415.5" ></text>
</g>
<g >
<title>create_plan (10,000,000 samples, 0.77%)</title><rect x="25.4" y="709" width="9.1" height="15.0" fill="rgb(243,171,40)" rx="2" ry="2" />
<text  x="28.44" y="719.5" ></text>
</g>
<g >
<title>path_openat (21,000,000 samples, 1.62%)</title><rect x="1056.5" y="901" width="19.0" height="15.0" fill="rgb(231,54,45)" rx="2" ry="2" />
<text  x="1059.47" y="911.5" ></text>
</g>
<g >
<title>consider_index_join_clauses (124,000,000 samples, 9.55%)</title><rect x="614.1" y="549" width="112.6" height="15.0" fill="rgb(229,111,20)" rx="2" ry="2" />
<text  x="617.08" y="559.5" >consider_inde..</text>
</g>
<g >
<title>expand_table (2,000,000 samples, 0.15%)</title><rect x="560.5" y="421" width="1.8" height="15.0" fill="rgb(239,204,26)" rx="2" ry="2" />
<text  x="563.48" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (15,000,000 samples, 1.15%)</title><rect x="1171.8" y="1013" width="13.7" height="15.0" fill="rgb(250,119,5)" rx="2" ry="2" />
<text  x="1174.83" y="1023.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (1,000,000 samples, 0.08%)</title><rect x="271.6" y="517" width="0.9" height="15.0" fill="rgb(223,167,1)" rx="2" ry="2" />
<text  x="274.62" y="527.5" ></text>
</g>
<g >
<title>relation_open (4,000,000 samples, 0.31%)</title><rect x="345.2" y="485" width="3.6" height="15.0" fill="rgb(249,95,34)" rx="2" ry="2" />
<text  x="348.20" y="495.5" ></text>
</g>
<g >
<title>bms_add_member (1,000,000 samples, 0.08%)</title><rect x="717.6" y="213" width="0.9" height="15.0" fill="rgb(229,146,47)" rx="2" ry="2" />
<text  x="720.64" y="223.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,000,000 samples, 0.08%)</title><rect x="1014.7" y="421" width="0.9" height="15.0" fill="rgb(245,211,12)" rx="2" ry="2" />
<text  x="1017.68" y="431.5" ></text>
</g>
<g >
<title>adjust_appendrel_attrs_mutator (3,000,000 samples, 0.23%)</title><rect x="869.3" y="565" width="2.8" height="15.0" fill="rgb(239,213,32)" rx="2" ry="2" />
<text  x="872.34" y="575.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="49.1" y="309" width="0.9" height="15.0" fill="rgb(214,99,14)" rx="2" ry="2" />
<text  x="52.06" y="319.5" ></text>
</g>
<g >
<title>ReadBuffer (86,000,000 samples, 6.62%)</title><rect x="177.1" y="549" width="78.2" height="15.0" fill="rgb(235,178,15)" rx="2" ry="2" />
<text  x="180.14" y="559.5" >ReadBuffer</text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (1,000,000 samples, 0.08%)</title><rect x="95.4" y="597" width="0.9" height="15.0" fill="rgb(213,19,0)" rx="2" ry="2" />
<text  x="98.39" y="607.5" ></text>
</g>
<g >
<title>nocachegetattr (1,000,000 samples, 0.08%)</title><rect x="465.1" y="485" width="0.9" height="15.0" fill="rgb(226,142,48)" rx="2" ry="2" />
<text  x="468.10" y="495.5" ></text>
</g>
<g >
<title>ReadBuffer_common (4,000,000 samples, 0.31%)</title><rect x="285.2" y="405" width="3.7" height="15.0" fill="rgb(239,139,8)" rx="2" ry="2" />
<text  x="288.24" y="415.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesMVCC (1,000,000 samples, 0.08%)</title><rect x="397.9" y="293" width="0.9" height="15.0" fill="rgb(248,214,21)" rx="2" ry="2" />
<text  x="400.88" y="303.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="851.2" y="405" width="0.9" height="15.0" fill="rgb(239,204,19)" rx="2" ry="2" />
<text  x="854.17" y="415.5" ></text>
</g>
<g >
<title>hash_search (4,000,000 samples, 0.31%)</title><rect x="297.1" y="485" width="3.6" height="15.0" fill="rgb(231,71,41)" rx="2" ry="2" />
<text  x="300.05" y="495.5" ></text>
</g>
<g >
<title>clear_page_orig (9,000,000 samples, 0.69%)</title><rect x="982.9" y="101" width="8.2" height="15.0" fill="rgb(207,29,35)" rx="2" ry="2" />
<text  x="985.89" y="111.5" ></text>
</g>
<g >
<title>mdnblocks (10,000,000 samples, 0.77%)</title><rect x="259.8" y="453" width="9.1" height="15.0" fill="rgb(224,12,13)" rx="2" ry="2" />
<text  x="262.81" y="463.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (5,000,000 samples, 0.38%)</title><rect x="1056.5" y="853" width="4.5" height="15.0" fill="rgb(231,31,25)" rx="2" ry="2" />
<text  x="1059.47" y="863.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="434.2" y="421" width="1.8" height="15.0" fill="rgb(251,200,48)" rx="2" ry="2" />
<text  x="437.22" y="431.5" ></text>
</g>
<g >
<title>pvsnprintf (2,000,000 samples, 0.15%)</title><rect x="261.6" y="389" width="1.8" height="15.0" fill="rgb(208,15,42)" rx="2" ry="2" />
<text  x="264.62" y="399.5" ></text>
</g>
<g >
<title>CompleteCachedPlan (1,000,000 samples, 0.08%)</title><rect x="962.0" y="117" width="0.9" height="15.0" fill="rgb(236,138,30)" rx="2" ry="2" />
<text  x="964.99" y="127.5" ></text>
</g>
<g >
<title>palloc0 (1,000,000 samples, 0.08%)</title><rect x="327.9" y="437" width="0.9" height="15.0" fill="rgb(246,15,11)" rx="2" ry="2" />
<text  x="330.94" y="447.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (1,000,000 samples, 0.08%)</title><rect x="574.1" y="453" width="0.9" height="15.0" fill="rgb(214,55,3)" rx="2" ry="2" />
<text  x="577.11" y="463.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="158.1" y="405" width="0.9" height="15.0" fill="rgb(246,71,2)" rx="2" ry="2" />
<text  x="161.07" y="415.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,000,000 samples, 0.15%)</title><rect x="133.5" y="501" width="1.9" height="15.0" fill="rgb(252,7,11)" rx="2" ry="2" />
<text  x="136.54" y="511.5" ></text>
</g>
<g >
<title>__close (5,000,000 samples, 0.38%)</title><rect x="264.3" y="357" width="4.6" height="15.0" fill="rgb(247,190,43)" rx="2" ry="2" />
<text  x="267.35" y="367.5" ></text>
</g>
<g >
<title>ReadBufferExtended (4,000,000 samples, 0.31%)</title><rect x="450.6" y="293" width="3.6" height="15.0" fill="rgb(249,176,6)" rx="2" ry="2" />
<text  x="453.57" y="303.5" ></text>
</g>
<g >
<title>index_rescan (1,000,000 samples, 0.08%)</title><rect x="377.0" y="389" width="0.9" height="15.0" fill="rgb(253,98,43)" rx="2" ry="2" />
<text  x="379.99" y="399.5" ></text>
</g>
<g >
<title>partition_bounds_create (3,000,000 samples, 0.23%)</title><rect x="77.2" y="501" width="2.7" height="15.0" fill="rgb(252,116,7)" rx="2" ry="2" />
<text  x="80.22" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1,000,000 samples, 0.08%)</title><rect x="509.6" y="373" width="0.9" height="15.0" fill="rgb(241,168,33)" rx="2" ry="2" />
<text  x="512.62" y="383.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="26.4" y="453" width="0.9" height="15.0" fill="rgb(236,65,1)" rx="2" ry="2" />
<text  x="29.35" y="463.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="598.6" y="405" width="0.9" height="15.0" fill="rgb(238,66,51)" rx="2" ry="2" />
<text  x="601.64" y="415.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="1002.9" y="213" width="0.9" height="15.0" fill="rgb(249,101,45)" rx="2" ry="2" />
<text  x="1005.87" y="223.5" ></text>
</g>
<g >
<title>bms_is_member (1,000,000 samples, 0.08%)</title><rect x="714.0" y="373" width="0.9" height="15.0" fill="rgb(224,147,19)" rx="2" ry="2" />
<text  x="717.00" y="383.5" ></text>
</g>
<g >
<title>is_pseudo_constant_clause_relids (1,000,000 samples, 0.08%)</title><rect x="807.6" y="421" width="0.9" height="15.0" fill="rgb(239,35,29)" rx="2" ry="2" />
<text  x="810.57" y="431.5" ></text>
</g>
<g >
<title>_bt_search (3,000,000 samples, 0.23%)</title><rect x="341.6" y="421" width="2.7" height="15.0" fill="rgb(252,144,44)" rx="2" ry="2" />
<text  x="344.56" y="431.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (2,000,000 samples, 0.15%)</title><rect x="798.5" y="437" width="1.8" height="15.0" fill="rgb(242,112,4)" rx="2" ry="2" />
<text  x="801.48" y="447.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (2,000,000 samples, 0.15%)</title><rect x="27.3" y="549" width="1.8" height="15.0" fill="rgb(227,130,9)" rx="2" ry="2" />
<text  x="30.26" y="559.5" ></text>
</g>
<g >
<title>btbeginscan (2,000,000 samples, 0.15%)</title><rect x="275.3" y="501" width="1.8" height="15.0" fill="rgb(213,183,27)" rx="2" ry="2" />
<text  x="278.25" y="511.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="714.9" y="165" width="0.9" height="15.0" fill="rgb(234,63,31)" rx="2" ry="2" />
<text  x="717.91" y="175.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (2,000,000 samples, 0.15%)</title><rect x="300.7" y="517" width="1.8" height="15.0" fill="rgb(237,178,53)" rx="2" ry="2" />
<text  x="303.69" y="527.5" ></text>
</g>
<g >
<title>_bt_freestack (1,000,000 samples, 0.08%)</title><rect x="580.5" y="453" width="0.9" height="15.0" fill="rgb(219,40,18)" rx="2" ry="2" />
<text  x="583.47" y="463.5" ></text>
</g>
<g >
<title>RelationHasSysCache (1,000,000 samples, 0.08%)</title><rect x="50.9" y="389" width="0.9" height="15.0" fill="rgb(217,150,30)" rx="2" ry="2" />
<text  x="53.88" y="399.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (1,000,000 samples, 0.08%)</title><rect x="482.4" y="421" width="0.9" height="15.0" fill="rgb(207,65,0)" rx="2" ry="2" />
<text  x="485.36" y="431.5" ></text>
</g>
<g >
<title>dlist_init (1,000,000 samples, 0.08%)</title><rect x="462.4" y="373" width="0.9" height="15.0" fill="rgb(217,175,41)" rx="2" ry="2" />
<text  x="465.38" y="383.5" ></text>
</g>
<g >
<title>match_clause_to_indexcol (10,000,000 samples, 0.77%)</title><rect x="844.8" y="501" width="9.1" height="15.0" fill="rgb(229,48,27)" rx="2" ry="2" />
<text  x="847.81" y="511.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="969.3" y="165" width="0.9" height="15.0" fill="rgb(246,219,15)" rx="2" ry="2" />
<text  x="972.26" y="175.5" ></text>
</g>
<g >
<title>ReleaseSysCache (1,000,000 samples, 0.08%)</title><rect x="1018.3" y="501" width="0.9" height="15.0" fill="rgb(219,44,17)" rx="2" ry="2" />
<text  x="1021.31" y="511.5" ></text>
</g>
<g >
<title>__GI_____strtoll_l_internal (1,000,000 samples, 0.08%)</title><rect x="82.7" y="309" width="0.9" height="15.0" fill="rgb(250,170,31)" rx="2" ry="2" />
<text  x="85.67" y="319.5" ></text>
</g>
<g >
<title>relation_close (1,000,000 samples, 0.08%)</title><rect x="491.4" y="485" width="1.0" height="15.0" fill="rgb(221,192,23)" rx="2" ry="2" />
<text  x="494.45" y="495.5" ></text>
</g>
<g >
<title>exec_simple_query (1,137,000,000 samples, 87.53%)</title><rect x="17.3" y="885" width="1032.8" height="15.0" fill="rgb(216,107,6)" rx="2" ry="2" />
<text  x="20.27" y="895.5" >exec_simple_query</text>
</g>
<g >
<title>get_oprrest (3,000,000 samples, 0.23%)</title><rect x="1012.9" y="485" width="2.7" height="15.0" fill="rgb(238,23,9)" rx="2" ry="2" />
<text  x="1015.86" y="495.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (1,000,000 samples, 0.08%)</title><rect x="862.1" y="565" width="0.9" height="15.0" fill="rgb(215,209,49)" rx="2" ry="2" />
<text  x="865.07" y="575.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (2,000,000 samples, 0.15%)</title><rect x="798.5" y="421" width="1.8" height="15.0" fill="rgb(253,84,13)" rx="2" ry="2" />
<text  x="801.48" y="431.5" ></text>
</g>
<g >
<title>tomoyo_check_open_permission (1,000,000 samples, 0.08%)</title><rect x="1065.6" y="853" width="0.9" height="15.0" fill="rgb(208,113,6)" rx="2" ry="2" />
<text  x="1068.55" y="863.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (33,000,000 samples, 2.54%)</title><rect x="318.9" y="517" width="29.9" height="15.0" fill="rgb(249,63,28)" rx="2" ry="2" />
<text  x="321.85" y="527.5" >Re..</text>
</g>
<g >
<title>get_obj_cgroup_from_current (1,000,000 samples, 0.08%)</title><rect x="1059.2" y="821" width="0.9" height="15.0" fill="rgb(243,180,8)" rx="2" ry="2" />
<text  x="1062.19" y="831.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="474.2" y="405" width="0.9" height="15.0" fill="rgb(252,6,5)" rx="2" ry="2" />
<text  x="477.19" y="415.5" ></text>
</g>
<g >
<title>MemoryContextAllocZeroAligned (1,000,000 samples, 0.08%)</title><rect x="890.2" y="549" width="0.9" height="15.0" fill="rgb(226,92,35)" rx="2" ry="2" />
<text  x="893.23" y="559.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,000,000 samples, 0.23%)</title><rect x="369.7" y="341" width="2.7" height="15.0" fill="rgb(217,77,18)" rx="2" ry="2" />
<text  x="372.72" y="351.5" ></text>
</g>
<g >
<title>contain_mutable_functions_walker (9,000,000 samples, 0.69%)</title><rect x="880.2" y="565" width="8.2" height="15.0" fill="rgb(209,227,45)" rx="2" ry="2" />
<text  x="883.24" y="575.5" ></text>
</g>
<g >
<title>prep_new_page (2,000,000 samples, 0.15%)</title><rect x="324.3" y="325" width="1.8" height="15.0" fill="rgb(234,133,41)" rx="2" ry="2" />
<text  x="327.30" y="335.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (2,000,000 samples, 0.15%)</title><rect x="533.2" y="421" width="1.9" height="15.0" fill="rgb(249,208,14)" rx="2" ry="2" />
<text  x="536.23" y="431.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (2,000,000 samples, 0.15%)</title><rect x="823.9" y="437" width="1.8" height="15.0" fill="rgb(218,67,46)" rx="2" ry="2" />
<text  x="826.92" y="447.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (9,000,000 samples, 0.69%)</title><rect x="115.4" y="533" width="8.1" height="15.0" fill="rgb(236,171,4)" rx="2" ry="2" />
<text  x="118.37" y="543.5" ></text>
</g>
<g >
<title>exc_page_fault (14,000,000 samples, 1.08%)</title><rect x="978.3" y="229" width="12.8" height="15.0" fill="rgb(210,62,37)" rx="2" ry="2" />
<text  x="981.34" y="239.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="757" width="1.0" height="15.0" fill="rgb(247,169,52)" rx="2" ry="2" />
<text  x="1187.55" y="767.5" ></text>
</g>
<g >
<title>shmem_alloc_and_acct_page (25,000,000 samples, 1.92%)</title><rect x="219.8" y="213" width="22.7" height="15.0" fill="rgb(253,51,49)" rx="2" ry="2" />
<text  x="222.84" y="223.5" >s..</text>
</g>
<g >
<title>ResourceOwnerRelease (1,000,000 samples, 0.08%)</title><rect x="17.3" y="853" width="0.9" height="15.0" fill="rgb(234,28,10)" rx="2" ry="2" />
<text  x="20.27" y="863.5" ></text>
</g>
<g >
<title>list_copy (1,000,000 samples, 0.08%)</title><rect x="612.3" y="517" width="0.9" height="15.0" fill="rgb(217,204,32)" rx="2" ry="2" />
<text  x="615.26" y="527.5" ></text>
</g>
<g >
<title>eqsel_internal (4,000,000 samples, 0.31%)</title><rect x="714.9" y="309" width="3.6" height="15.0" fill="rgb(242,177,26)" rx="2" ry="2" />
<text  x="717.91" y="319.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (7,000,000 samples, 0.54%)</title><rect x="116.3" y="517" width="6.3" height="15.0" fill="rgb(218,227,4)" rx="2" ry="2" />
<text  x="119.28" y="527.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="1028.3" y="405" width="0.9" height="15.0" fill="rgb(209,198,17)" rx="2" ry="2" />
<text  x="1031.31" y="415.5" ></text>
</g>
<g >
<title>bms_make_singleton (4,000,000 samples, 0.31%)</title><rect x="764.0" y="405" width="3.6" height="15.0" fill="rgb(229,188,15)" rx="2" ry="2" />
<text  x="766.96" y="415.5" ></text>
</g>
<g >
<title>__fsnotify_parent (2,000,000 samples, 0.15%)</title><rect x="267.1" y="261" width="1.8" height="15.0" fill="rgb(214,160,8)" rx="2" ry="2" />
<text  x="270.07" y="271.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2,000,000 samples, 0.15%)</title><rect x="267.1" y="325" width="1.8" height="15.0" fill="rgb(246,62,51)" rx="2" ry="2" />
<text  x="270.07" y="335.5" ></text>
</g>
<g >
<title>is_opclause (1,000,000 samples, 0.08%)</title><rect x="723.1" y="389" width="0.9" height="15.0" fill="rgb(237,173,11)" rx="2" ry="2" />
<text  x="726.09" y="399.5" ></text>
</g>
<g >
<title>BufferAlloc (2,000,000 samples, 0.15%)</title><rect x="999.2" y="133" width="1.9" height="15.0" fill="rgb(236,95,14)" rx="2" ry="2" />
<text  x="1002.24" y="143.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="593.2" y="453" width="0.9" height="15.0" fill="rgb(244,195,13)" rx="2" ry="2" />
<text  x="596.19" y="463.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="495.1" y="389" width="0.9" height="15.0" fill="rgb(225,114,7)" rx="2" ry="2" />
<text  x="498.08" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="645.9" y="245" width="0.9" height="15.0" fill="rgb(241,202,21)" rx="2" ry="2" />
<text  x="648.87" y="255.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="800.3" y="405" width="0.9" height="15.0" fill="rgb(216,85,44)" rx="2" ry="2" />
<text  x="803.30" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="613.2" y="453" width="0.9" height="15.0" fill="rgb(231,63,42)" rx="2" ry="2" />
<text  x="616.17" y="463.5" ></text>
</g>
<g >
<title>LockBuffer (1,000,000 samples, 0.08%)</title><rect x="454.2" y="309" width="0.9" height="15.0" fill="rgb(230,209,32)" rx="2" ry="2" />
<text  x="457.20" y="319.5" ></text>
</g>
<g >
<title>SearchSysCache1 (38,000,000 samples, 2.93%)</title><rect x="429.7" y="501" width="34.5" height="15.0" fill="rgb(228,32,33)" rx="2" ry="2" />
<text  x="432.68" y="511.5" >Se..</text>
</g>
<g >
<title>transformOptionalSelectInto (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="821" width="0.9" height="15.0" fill="rgb(206,15,8)" rx="2" ry="2" />
<text  x="1052.20" y="831.5" ></text>
</g>
<g >
<title>do_filp_open (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="917" width="0.9" height="15.0" fill="rgb(254,126,11)" rx="2" ry="2" />
<text  x="1093.08" y="927.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (3,000,000 samples, 0.23%)</title><rect x="417.9" y="293" width="2.7" height="15.0" fill="rgb(220,1,52)" rx="2" ry="2" />
<text  x="420.87" y="303.5" ></text>
</g>
<g >
<title>make_inh_translation_list (1,000,000 samples, 0.08%)</title><rect x="500.5" y="581" width="0.9" height="15.0" fill="rgb(206,147,20)" rx="2" ry="2" />
<text  x="503.53" y="591.5" ></text>
</g>
<g >
<title>get_ecmember_indexes_strict (27,000,000 samples, 2.08%)</title><rect x="767.6" y="453" width="24.5" height="15.0" fill="rgb(209,223,10)" rx="2" ry="2" />
<text  x="770.60" y="463.5" >g..</text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="127.2" y="533" width="0.9" height="15.0" fill="rgb(213,61,18)" rx="2" ry="2" />
<text  x="130.18" y="543.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="950.2" y="357" width="0.9" height="15.0" fill="rgb(233,137,36)" rx="2" ry="2" />
<text  x="953.18" y="367.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (1,000,000 samples, 0.08%)</title><rect x="720.4" y="325" width="0.9" height="15.0" fill="rgb(213,192,12)" rx="2" ry="2" />
<text  x="723.36" y="335.5" ></text>
</g>
<g >
<title>OidFunctionCall0Coll (1,000,000 samples, 0.08%)</title><rect x="349.7" y="469" width="0.9" height="15.0" fill="rgb(241,148,27)" rx="2" ry="2" />
<text  x="352.74" y="479.5" ></text>
</g>
<g >
<title>index_open (4,000,000 samples, 0.31%)</title><rect x="133.5" y="549" width="3.7" height="15.0" fill="rgb(251,21,0)" rx="2" ry="2" />
<text  x="136.54" y="559.5" ></text>
</g>
<g >
<title>systable_getnext (30,000,000 samples, 2.31%)</title><rect x="393.3" y="405" width="27.3" height="15.0" fill="rgb(210,189,40)" rx="2" ry="2" />
<text  x="396.34" y="415.5" >s..</text>
</g>
<g >
<title>LockAcquireExtended (3,000,000 samples, 0.23%)</title><rect x="345.2" y="453" width="2.7" height="15.0" fill="rgb(244,99,40)" rx="2" ry="2" />
<text  x="348.20" y="463.5" ></text>
</g>
<g >
<title>LockRelationOid (4,000,000 samples, 0.31%)</title><rect x="1029.2" y="405" width="3.6" height="15.0" fill="rgb(205,30,52)" rx="2" ry="2" />
<text  x="1032.21" y="415.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="963.8" y="213" width="0.9" height="15.0" fill="rgb(208,40,53)" rx="2" ry="2" />
<text  x="966.81" y="223.5" ></text>
</g>
<g >
<title>__fsnotify_parent (1,000,000 samples, 0.08%)</title><rect x="173.5" y="357" width="0.9" height="15.0" fill="rgb(211,202,23)" rx="2" ry="2" />
<text  x="176.51" y="367.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="254.4" y="373" width="0.9" height="15.0" fill="rgb(247,186,50)" rx="2" ry="2" />
<text  x="257.36" y="383.5" ></text>
</g>
<g >
<title>fetch_att (1,000,000 samples, 0.08%)</title><rect x="413.3" y="261" width="0.9" height="15.0" fill="rgb(235,11,34)" rx="2" ry="2" />
<text  x="416.33" y="271.5" ></text>
</g>
<g >
<title>_bt_compare (1,000,000 samples, 0.08%)</title><rect x="143.5" y="469" width="0.9" height="15.0" fill="rgb(252,156,28)" rx="2" ry="2" />
<text  x="146.53" y="479.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="53.6" y="261" width="0.9" height="15.0" fill="rgb(219,18,47)" rx="2" ry="2" />
<text  x="56.60" y="271.5" ></text>
</g>
<g >
<title>postgres (1,299,000,000 samples, 100.00%)</title><rect x="10.0" y="1029" width="1180.0" height="15.0" fill="rgb(207,130,54)" rx="2" ry="2" />
<text  x="13.00" y="1039.5" >postgres</text>
</g>
<g >
<title>expression_tree_mutator_impl (1,000,000 samples, 0.08%)</title><rect x="100.8" y="485" width="0.9" height="15.0" fill="rgb(228,26,8)" rx="2" ry="2" />
<text  x="103.84" y="495.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,000,000 samples, 0.15%)</title><rect x="434.2" y="325" width="1.8" height="15.0" fill="rgb(254,204,30)" rx="2" ry="2" />
<text  x="437.22" y="335.5" ></text>
</g>
<g >
<title>set_rel_size (204,000,000 samples, 15.70%)</title><rect x="860.3" y="629" width="185.3" height="15.0" fill="rgb(235,18,22)" rx="2" ry="2" />
<text  x="863.25" y="639.5" >set_rel_size</text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="919.3" y="133" width="0.9" height="15.0" fill="rgb(207,101,37)" rx="2" ry="2" />
<text  x="922.30" y="143.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (1,000,000 samples, 0.08%)</title><rect x="21.8" y="645" width="0.9" height="15.0" fill="rgb(253,87,48)" rx="2" ry="2" />
<text  x="24.81" y="655.5" ></text>
</g>
<g >
<title>prep_new_page (9,000,000 samples, 0.69%)</title><rect x="982.9" y="133" width="8.2" height="15.0" fill="rgb(221,173,9)" rx="2" ry="2" />
<text  x="985.89" y="143.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="437.9" y="341" width="0.9" height="15.0" fill="rgb(248,218,19)" rx="2" ry="2" />
<text  x="440.85" y="351.5" ></text>
</g>
<g >
<title>murmurhash32 (1,000,000 samples, 0.08%)</title><rect x="692.2" y="245" width="0.9" height="15.0" fill="rgb(251,188,39)" rx="2" ry="2" />
<text  x="695.20" y="255.5" ></text>
</g>
<g >
<title>set_rel_width (22,000,000 samples, 1.69%)</title><rect x="1025.6" y="549" width="20.0" height="15.0" fill="rgb(208,83,1)" rx="2" ry="2" />
<text  x="1028.58" y="559.5" ></text>
</g>
<g >
<title>SIGetDataEntries (1,000,000 samples, 0.08%)</title><rect x="943.8" y="229" width="0.9" height="15.0" fill="rgb(221,126,5)" rx="2" ry="2" />
<text  x="946.83" y="239.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2,000,000 samples, 0.15%)</title><rect x="1163.7" y="901" width="1.8" height="15.0" fill="rgb(234,100,25)" rx="2" ry="2" />
<text  x="1166.66" y="911.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (6,000,000 samples, 0.46%)</title><rect x="246.2" y="325" width="5.4" height="15.0" fill="rgb(233,205,46)" rx="2" ry="2" />
<text  x="249.18" y="335.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="969.3" y="213" width="0.9" height="15.0" fill="rgb(207,106,43)" rx="2" ry="2" />
<text  x="972.26" y="223.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (35,000,000 samples, 2.69%)</title><rect x="431.5" y="453" width="31.8" height="15.0" fill="rgb(212,25,51)" rx="2" ry="2" />
<text  x="434.49" y="463.5" >Se..</text>
</g>
<g >
<title>SearchSysCache4 (1,000,000 samples, 0.08%)</title><rect x="838.5" y="485" width="0.9" height="15.0" fill="rgb(222,23,53)" rx="2" ry="2" />
<text  x="841.45" y="495.5" ></text>
</g>
<g >
<title>tag_hash (3,000,000 samples, 0.23%)</title><rect x="956.5" y="213" width="2.8" height="15.0" fill="rgb(220,24,28)" rx="2" ry="2" />
<text  x="959.54" y="223.5" ></text>
</g>
<g >
<title>create_index_paths (272,000,000 samples, 20.94%)</title><rect x="607.7" y="565" width="247.1" height="15.0" fill="rgb(237,21,28)" rx="2" ry="2" />
<text  x="610.72" y="575.5" >create_index_paths</text>
</g>
<g >
<title>set_rel_pathlist (279,000,000 samples, 21.48%)</title><rect x="606.8" y="597" width="253.5" height="15.0" fill="rgb(214,92,41)" rx="2" ry="2" />
<text  x="609.81" y="607.5" >set_rel_pathlist</text>
</g>
<g >
<title>__alloc_pages_nodemask (2,000,000 samples, 0.15%)</title><rect x="52.7" y="293" width="1.8" height="15.0" fill="rgb(224,93,37)" rx="2" ry="2" />
<text  x="55.69" y="303.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (1,000,000 samples, 0.08%)</title><rect x="930.2" y="229" width="0.9" height="15.0" fill="rgb(226,120,21)" rx="2" ry="2" />
<text  x="933.20" y="239.5" ></text>
</g>
<g >
<title>alloc_pages_vma (49,000,000 samples, 3.77%)</title><rect x="1117.3" y="933" width="44.5" height="15.0" fill="rgb(219,144,6)" rx="2" ry="2" />
<text  x="1120.33" y="943.5" >allo..</text>
</g>
<g >
<title>ReindexIsProcessingIndex (1,000,000 samples, 0.08%)</title><rect x="368.8" y="389" width="0.9" height="15.0" fill="rgb(239,121,20)" rx="2" ry="2" />
<text  x="371.81" y="399.5" ></text>
</g>
<g >
<title>HeapCheckForSerializableConflictOut (1,000,000 samples, 0.08%)</title><rect x="529.6" y="437" width="0.9" height="15.0" fill="rgb(228,66,54)" rx="2" ry="2" />
<text  x="532.60" y="447.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="57.2" y="389" width="0.9" height="15.0" fill="rgb(231,104,19)" rx="2" ry="2" />
<text  x="60.24" y="399.5" ></text>
</g>
<g >
<title>index_beginscan (2,000,000 samples, 0.15%)</title><rect x="436.0" y="421" width="1.9" height="15.0" fill="rgb(205,115,20)" rx="2" ry="2" />
<text  x="439.04" y="431.5" ></text>
</g>
<g >
<title>BufferAlloc (1,000,000 samples, 0.08%)</title><rect x="490.5" y="325" width="0.9" height="15.0" fill="rgb(219,171,47)" rx="2" ry="2" />
<text  x="493.54" y="335.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (1,000,000 samples, 0.08%)</title><rect x="279.8" y="469" width="0.9" height="15.0" fill="rgb(205,139,6)" rx="2" ry="2" />
<text  x="282.79" y="479.5" ></text>
</g>
<g >
<title>walk_component (1,000,000 samples, 0.08%)</title><rect x="1069.2" y="869" width="0.9" height="15.0" fill="rgb(223,140,36)" rx="2" ry="2" />
<text  x="1072.18" y="879.5" ></text>
</g>
<g >
<title>systable_beginscan (5,000,000 samples, 0.38%)</title><rect x="436.0" y="437" width="4.6" height="15.0" fill="rgb(232,85,21)" rx="2" ry="2" />
<text  x="439.04" y="447.5" ></text>
</g>
<g >
<title>index_other_operands_eval_cost (1,000,000 samples, 0.08%)</title><rect x="696.7" y="405" width="1.0" height="15.0" fill="rgb(238,43,10)" rx="2" ry="2" />
<text  x="699.74" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="516.9" y="517" width="0.9" height="15.0" fill="rgb(218,134,11)" rx="2" ry="2" />
<text  x="519.88" y="527.5" ></text>
</g>
<g >
<title>crc32_body (1,000,000 samples, 0.08%)</title><rect x="248.0" y="229" width="0.9" height="15.0" fill="rgb(251,54,37)" rx="2" ry="2" />
<text  x="251.00" y="239.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,000,000 samples, 0.15%)</title><rect x="52.7" y="325" width="1.8" height="15.0" fill="rgb(244,219,12)" rx="2" ry="2" />
<text  x="55.69" y="335.5" ></text>
</g>
<g >
<title>__memmove_sse2_unaligned_erms (3,000,000 samples, 0.23%)</title><rect x="664.9" y="373" width="2.8" height="15.0" fill="rgb(205,104,8)" rx="2" ry="2" />
<text  x="667.95" y="383.5" ></text>
</g>
<g >
<title>ObjectIdGetDatum (1,000,000 samples, 0.08%)</title><rect x="1027.4" y="517" width="0.9" height="15.0" fill="rgb(239,113,36)" rx="2" ry="2" />
<text  x="1030.40" y="527.5" ></text>
</g>
<g >
<title>CatalogCacheCreateEntry (2,000,000 samples, 0.15%)</title><rect x="432.4" y="437" width="1.8" height="15.0" fill="rgb(234,49,33)" rx="2" ry="2" />
<text  x="435.40" y="447.5" ></text>
</g>
<g >
<title>index_close (1,000,000 samples, 0.08%)</title><rect x="60.0" y="421" width="0.9" height="15.0" fill="rgb(230,35,0)" rx="2" ry="2" />
<text  x="62.96" y="431.5" ></text>
</g>
<g >
<title>transformStmt (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="757" width="0.9" height="15.0" fill="rgb(252,206,17)" rx="2" ry="2" />
<text  x="1052.20" y="767.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,000,000 samples, 0.15%)</title><rect x="52.7" y="341" width="1.8" height="15.0" fill="rgb(244,150,33)" rx="2" ry="2" />
<text  x="55.69" y="351.5" ></text>
</g>
<g >
<title>ExecInitExpr (2,000,000 samples, 0.15%)</title><rect x="963.8" y="325" width="1.8" height="15.0" fill="rgb(252,8,30)" rx="2" ry="2" />
<text  x="966.81" y="335.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="963.8" y="229" width="0.9" height="15.0" fill="rgb(249,95,12)" rx="2" ry="2" />
<text  x="966.81" y="239.5" ></text>
</g>
<g >
<title>int4hashfast (1,000,000 samples, 0.08%)</title><rect x="799.4" y="405" width="0.9" height="15.0" fill="rgb(224,195,51)" rx="2" ry="2" />
<text  x="802.39" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,000,000 samples, 0.31%)</title><rect x="265.3" y="341" width="3.6" height="15.0" fill="rgb(213,67,7)" rx="2" ry="2" />
<text  x="268.26" y="351.5" ></text>
</g>
<g >
<title>list_length (1,000,000 samples, 0.08%)</title><rect x="850.3" y="469" width="0.9" height="15.0" fill="rgb(252,57,53)" rx="2" ry="2" />
<text  x="853.26" y="479.5" ></text>
</g>
<g >
<title>make_op (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="629" width="0.9" height="15.0" fill="rgb(213,100,13)" rx="2" ry="2" />
<text  x="1052.20" y="639.5" ></text>
</g>
<g >
<title>create_index_path (44,000,000 samples, 3.39%)</title><rect x="686.8" y="469" width="39.9" height="15.0" fill="rgb(237,162,20)" rx="2" ry="2" />
<text  x="689.75" y="479.5" >cre..</text>
</g>
<g >
<title>LockAcquireExtended (1,000,000 samples, 0.08%)</title><rect x="437.9" y="373" width="0.9" height="15.0" fill="rgb(205,170,21)" rx="2" ry="2" />
<text  x="440.85" y="383.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,000,000 samples, 0.08%)</title><rect x="952.9" y="197" width="0.9" height="15.0" fill="rgb(225,171,5)" rx="2" ry="2" />
<text  x="955.91" y="207.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="416.1" y="197" width="0.9" height="15.0" fill="rgb(223,95,0)" rx="2" ry="2" />
<text  x="419.05" y="207.5" ></text>
</g>
<g >
<title>int4hashfast (1,000,000 samples, 0.08%)</title><rect x="689.5" y="229" width="0.9" height="15.0" fill="rgb(223,207,43)" rx="2" ry="2" />
<text  x="692.48" y="239.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,000,000 samples, 0.77%)</title><rect x="982.0" y="149" width="9.1" height="15.0" fill="rgb(218,20,0)" rx="2" ry="2" />
<text  x="984.98" y="159.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (1,000,000 samples, 0.08%)</title><rect x="536.0" y="405" width="0.9" height="15.0" fill="rgb(214,127,15)" rx="2" ry="2" />
<text  x="538.96" y="415.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="725" width="1.0" height="15.0" fill="rgb(236,12,32)" rx="2" ry="2" />
<text  x="1187.55" y="735.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (9,000,000 samples, 0.69%)</title><rect x="982.9" y="117" width="8.2" height="15.0" fill="rgb(232,55,6)" rx="2" ry="2" />
<text  x="985.89" y="127.5" ></text>
</g>
<g >
<title>expand_inherited_rtentry (557,000,000 samples, 42.88%)</title><rect x="94.5" y="645" width="506.0" height="15.0" fill="rgb(238,135,52)" rx="2" ry="2" />
<text  x="97.48" y="655.5" >expand_inherited_rtentry</text>
</g>
<g >
<title>GetNonHistoricCatalogSnapshot (1,000,000 samples, 0.08%)</title><rect x="917.5" y="277" width="0.9" height="15.0" fill="rgb(218,61,16)" rx="2" ry="2" />
<text  x="920.48" y="287.5" ></text>
</g>
<g >
<title>relation_open (3,000,000 samples, 0.23%)</title><rect x="943.8" y="293" width="2.8" height="15.0" fill="rgb(246,169,7)" rx="2" ry="2" />
<text  x="946.83" y="303.5" ></text>
</g>
<g >
<title>ExecDropSingleTupleTableSlot (1,000,000 samples, 0.08%)</title><rect x="59.1" y="421" width="0.9" height="15.0" fill="rgb(223,15,45)" rx="2" ry="2" />
<text  x="62.05" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="26.4" y="517" width="0.9" height="15.0" fill="rgb(245,4,23)" rx="2" ry="2" />
<text  x="29.35" y="527.5" ></text>
</g>
<g >
<title>CheckBufferIsPinnedOnce (1,000,000 samples, 0.08%)</title><rect x="178.1" y="469" width="0.9" height="15.0" fill="rgb(221,153,45)" rx="2" ry="2" />
<text  x="181.05" y="479.5" ></text>
</g>
<g >
<title>prep_new_page (3,000,000 samples, 0.23%)</title><rect x="364.3" y="277" width="2.7" height="15.0" fill="rgb(238,194,17)" rx="2" ry="2" />
<text  x="367.27" y="287.5" ></text>
</g>
<g >
<title>@plt (1,000,000 samples, 0.08%)</title><rect x="10.0" y="997" width="0.9" height="15.0" fill="rgb(221,138,31)" rx="2" ry="2" />
<text  x="13.00" y="1007.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (3,000,000 samples, 0.23%)</title><rect x="514.2" y="437" width="2.7" height="15.0" fill="rgb(242,110,37)" rx="2" ry="2" />
<text  x="517.16" y="447.5" ></text>
</g>
<g >
<title>security_file_alloc (1,000,000 samples, 0.08%)</title><rect x="1061.0" y="853" width="0.9" height="15.0" fill="rgb(250,228,21)" rx="2" ry="2" />
<text  x="1064.01" y="863.5" ></text>
</g>
<g >
<title>do_syscall_64 (15,000,000 samples, 1.15%)</title><rect x="1171.8" y="997" width="13.7" height="15.0" fill="rgb(223,129,2)" rx="2" ry="2" />
<text  x="1174.83" y="1007.5" ></text>
</g>
<g >
<title>pg_analyze_and_rewrite_fixedparams (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="869" width="0.9" height="15.0" fill="rgb(237,33,42)" rx="2" ry="2" />
<text  x="1052.20" y="879.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="806.7" y="389" width="0.9" height="15.0" fill="rgb(233,117,11)" rx="2" ry="2" />
<text  x="809.66" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,000,000 samples, 0.08%)</title><rect x="1051.9" y="741" width="0.9" height="15.0" fill="rgb(225,11,7)" rx="2" ry="2" />
<text  x="1054.92" y="751.5" ></text>
</g>
<g >
<title>PageGetSpecialPointer (1,000,000 samples, 0.08%)</title><rect x="338.8" y="405" width="0.9" height="15.0" fill="rgb(225,184,5)" rx="2" ry="2" />
<text  x="341.84" y="415.5" ></text>
</g>
<g >
<title>SearchCatCache1 (1,000,000 samples, 0.08%)</title><rect x="952.9" y="229" width="0.9" height="15.0" fill="rgb(251,47,1)" rx="2" ry="2" />
<text  x="955.91" y="239.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,000,000 samples, 0.31%)</title><rect x="513.2" y="469" width="3.7" height="15.0" fill="rgb(230,207,21)" rx="2" ry="2" />
<text  x="516.25" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="969.3" y="197" width="0.9" height="15.0" fill="rgb(241,83,50)" rx="2" ry="2" />
<text  x="972.26" y="207.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (2,000,000 samples, 0.15%)</title><rect x="383.3" y="373" width="1.9" height="15.0" fill="rgb(236,143,25)" rx="2" ry="2" />
<text  x="386.35" y="383.5" ></text>
</g>
<g >
<title>index_getnext_slot (22,000,000 samples, 1.69%)</title><rect x="525.1" y="517" width="19.9" height="15.0" fill="rgb(223,196,18)" rx="2" ry="2" />
<text  x="528.06" y="527.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="26.4" y="405" width="0.9" height="15.0" fill="rgb(226,103,46)" rx="2" ry="2" />
<text  x="29.35" y="415.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,000,000 samples, 0.08%)</title><rect x="344.3" y="405" width="0.9" height="15.0" fill="rgb(232,194,25)" rx="2" ry="2" />
<text  x="347.29" y="415.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="766.7" y="245" width="0.9" height="15.0" fill="rgb(211,227,44)" rx="2" ry="2" />
<text  x="769.69" y="255.5" ></text>
</g>
<g >
<title>fmgr_info (1,000,000 samples, 0.08%)</title><rect x="963.8" y="277" width="0.9" height="15.0" fill="rgb(245,122,49)" rx="2" ry="2" />
<text  x="966.81" y="287.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="120.8" y="485" width="0.9" height="15.0" fill="rgb(254,202,46)" rx="2" ry="2" />
<text  x="123.82" y="495.5" ></text>
</g>
<g >
<title>index_beginscan (1,000,000 samples, 0.08%)</title><rect x="473.3" y="485" width="0.9" height="15.0" fill="rgb(234,12,19)" rx="2" ry="2" />
<text  x="476.28" y="495.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="1037.4" y="229" width="0.9" height="15.0" fill="rgb(241,165,46)" rx="2" ry="2" />
<text  x="1040.39" y="239.5" ></text>
</g>
<g >
<title>_bt_binsrch (2,000,000 samples, 0.15%)</title><rect x="932.0" y="213" width="1.8" height="15.0" fill="rgb(251,185,35)" rx="2" ry="2" />
<text  x="935.02" y="223.5" ></text>
</g>
<g >
<title>_bt_next (1,000,000 samples, 0.08%)</title><rect x="530.5" y="485" width="0.9" height="15.0" fill="rgb(231,156,11)" rx="2" ry="2" />
<text  x="533.51" y="495.5" ></text>
</g>
<g >
<title>setup_eclass_member_iterator (3,000,000 samples, 0.23%)</title><rect x="709.5" y="405" width="2.7" height="15.0" fill="rgb(210,191,52)" rx="2" ry="2" />
<text  x="712.46" y="415.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="55.4" y="341" width="0.9" height="15.0" fill="rgb(205,198,31)" rx="2" ry="2" />
<text  x="58.42" y="351.5" ></text>
</g>
<g >
<title>_bt_getroot (2,000,000 samples, 0.15%)</title><rect x="933.8" y="213" width="1.9" height="15.0" fill="rgb(232,57,41)" rx="2" ry="2" />
<text  x="936.83" y="223.5" ></text>
</g>
<g >
<title>prep_new_page (4,000,000 samples, 0.31%)</title><rect x="315.2" y="373" width="3.7" height="15.0" fill="rgb(241,16,21)" rx="2" ry="2" />
<text  x="318.22" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,000,000 samples, 0.08%)</title><rect x="936.6" y="85" width="0.9" height="15.0" fill="rgb(212,208,37)" rx="2" ry="2" />
<text  x="939.56" y="95.5" ></text>
</g>
<g >
<title>strncpy_from_user (1,000,000 samples, 0.08%)</title><rect x="1079.2" y="901" width="0.9" height="15.0" fill="rgb(237,12,39)" rx="2" ry="2" />
<text  x="1082.18" y="911.5" ></text>
</g>
<g >
<title>DatumGetInt16 (1,000,000 samples, 0.08%)</title><rect x="539.6" y="389" width="0.9" height="15.0" fill="rgb(212,190,23)" rx="2" ry="2" />
<text  x="542.59" y="399.5" ></text>
</g>
<g >
<title>ReleaseCatCache (1,000,000 samples, 0.08%)</title><rect x="109.0" y="517" width="0.9" height="15.0" fill="rgb(238,192,27)" rx="2" ry="2" />
<text  x="112.01" y="527.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,000,000 samples, 0.08%)</title><rect x="871.2" y="549" width="0.9" height="15.0" fill="rgb(212,202,39)" rx="2" ry="2" />
<text  x="874.15" y="559.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="598.6" y="469" width="0.9" height="15.0" fill="rgb(245,14,34)" rx="2" ry="2" />
<text  x="601.64" y="479.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="71.8" y="245" width="0.9" height="15.0" fill="rgb(207,134,21)" rx="2" ry="2" />
<text  x="74.77" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="10.9" y="965" width="0.9" height="15.0" fill="rgb(209,0,9)" rx="2" ry="2" />
<text  x="13.91" y="975.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="133.5" y="469" width="0.9" height="15.0" fill="rgb(252,102,21)" rx="2" ry="2" />
<text  x="136.54" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (42,000,000 samples, 3.23%)</title><rect x="206.2" y="293" width="38.2" height="15.0" fill="rgb(247,166,23)" rx="2" ry="2" />
<text  x="209.21" y="303.5" >do_..</text>
</g>
<g >
<title>SIGetDataEntries (1,000,000 samples, 0.08%)</title><rect x="503.3" y="533" width="0.9" height="15.0" fill="rgb(254,111,0)" rx="2" ry="2" />
<text  x="506.26" y="543.5" ></text>
</g>
<g >
<title>ReadBuffer_common (84,000,000 samples, 6.47%)</title><rect x="177.1" y="517" width="76.3" height="15.0" fill="rgb(215,203,36)" rx="2" ry="2" />
<text  x="180.14" y="527.5" >ReadBuff..</text>
</g>
<g >
<title>_bt_drop_lock_and_maybe_pin (2,000,000 samples, 0.15%)</title><rect x="407.0" y="325" width="1.8" height="15.0" fill="rgb(207,83,34)" rx="2" ry="2" />
<text  x="409.97" y="335.5" ></text>
</g>
<g >
<title>Insert (1,000,000 samples, 0.08%)</title><rect x="263.4" y="389" width="0.9" height="15.0" fill="rgb(225,19,45)" rx="2" ry="2" />
<text  x="266.44" y="399.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,000,000 samples, 0.08%)</title><rect x="683.1" y="373" width="0.9" height="15.0" fill="rgb(232,65,54)" rx="2" ry="2" />
<text  x="686.12" y="383.5" ></text>
</g>
<g >
<title>predicate_refuted_by (10,000,000 samples, 0.77%)</title><rect x="895.7" y="581" width="9.1" height="15.0" fill="rgb(247,104,24)" rx="2" ry="2" />
<text  x="898.68" y="591.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (34,000,000 samples, 2.62%)</title><rect x="44.5" y="469" width="30.9" height="15.0" fill="rgb(229,181,40)" rx="2" ry="2" />
<text  x="47.52" y="479.5" >Se..</text>
</g>
<g >
<title>page_remove_rmap (1,000,000 samples, 0.08%)</title><rect x="1179.1" y="869" width="0.9" height="15.0" fill="rgb(254,229,3)" rx="2" ry="2" />
<text  x="1182.10" y="879.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,000,000 samples, 0.08%)</title><rect x="160.8" y="501" width="0.9" height="15.0" fill="rgb(246,200,24)" rx="2" ry="2" />
<text  x="163.79" y="511.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="42.7" y="405" width="0.9" height="15.0" fill="rgb(216,211,26)" rx="2" ry="2" />
<text  x="45.70" y="415.5" ></text>
</g>
<g >
<title>LockRelationOid (2,000,000 samples, 0.15%)</title><rect x="277.1" y="501" width="1.8" height="15.0" fill="rgb(223,222,21)" rx="2" ry="2" />
<text  x="280.07" y="511.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (5,000,000 samples, 0.38%)</title><rect x="526.0" y="469" width="4.5" height="15.0" fill="rgb(212,218,41)" rx="2" ry="2" />
<text  x="528.97" y="479.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (2,000,000 samples, 0.15%)</title><rect x="381.5" y="357" width="1.8" height="15.0" fill="rgb(206,216,13)" rx="2" ry="2" />
<text  x="384.53" y="367.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,000,000 samples, 0.15%)</title><rect x="781.2" y="357" width="1.8" height="15.0" fill="rgb(254,16,13)" rx="2" ry="2" />
<text  x="784.22" y="367.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="31.8" y="389" width="0.9" height="15.0" fill="rgb(213,199,24)" rx="2" ry="2" />
<text  x="34.80" y="399.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (1,000,000 samples, 0.08%)</title><rect x="382.4" y="293" width="0.9" height="15.0" fill="rgb(251,33,22)" rx="2" ry="2" />
<text  x="385.44" y="303.5" ></text>
</g>
<g >
<title>mmput (14,000,000 samples, 1.08%)</title><rect x="1171.8" y="933" width="12.7" height="15.0" fill="rgb(208,134,12)" rx="2" ry="2" />
<text  x="1174.83" y="943.5" ></text>
</g>
<g >
<title>ReadBuffer (1,000,000 samples, 0.08%)</title><rect x="490.5" y="373" width="0.9" height="15.0" fill="rgb(220,182,54)" rx="2" ry="2" />
<text  x="493.54" y="383.5" ></text>
</g>
<g >
<title>create_plan_recurse (8,000,000 samples, 0.62%)</title><rect x="25.4" y="613" width="7.3" height="15.0" fill="rgb(231,219,38)" rx="2" ry="2" />
<text  x="28.44" y="623.5" ></text>
</g>
<g >
<title>index_endscan (2,000,000 samples, 0.15%)</title><rect x="927.5" y="293" width="1.8" height="15.0" fill="rgb(225,122,5)" rx="2" ry="2" />
<text  x="930.47" y="303.5" ></text>
</g>
<g >
<title>transformExplainStmt (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="789" width="0.9" height="15.0" fill="rgb(214,173,25)" rx="2" ry="2" />
<text  x="1052.20" y="799.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="563.2" y="245" width="0.9" height="15.0" fill="rgb(254,121,46)" rx="2" ry="2" />
<text  x="566.21" y="255.5" ></text>
</g>
<g >
<title>LockAcquireExtended (5,000,000 samples, 0.38%)</title><rect x="504.2" y="565" width="4.5" height="15.0" fill="rgb(241,95,36)" rx="2" ry="2" />
<text  x="507.16" y="575.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (1,000,000 samples, 0.08%)</title><rect x="253.4" y="469" width="1.0" height="15.0" fill="rgb(244,11,24)" rx="2" ry="2" />
<text  x="256.45" y="479.5" ></text>
</g>
<g >
<title>int4hashfast (1,000,000 samples, 0.08%)</title><rect x="676.8" y="373" width="0.9" height="15.0" fill="rgb(216,219,5)" rx="2" ry="2" />
<text  x="679.76" y="383.5" ></text>
</g>
<g >
<title>pgstat_release_entry_ref (1,000,000 samples, 0.08%)</title><rect x="1051.9" y="773" width="0.9" height="15.0" fill="rgb(215,24,42)" rx="2" ry="2" />
<text  x="1054.92" y="783.5" ></text>
</g>
<g >
<title>_bt_getbuf (2,000,000 samples, 0.15%)</title><rect x="416.1" y="293" width="1.8" height="15.0" fill="rgb(234,78,50)" rx="2" ry="2" />
<text  x="419.05" y="303.5" ></text>
</g>
<g >
<title>index_getattr (1,000,000 samples, 0.08%)</title><rect x="70.9" y="325" width="0.9" height="15.0" fill="rgb(219,26,17)" rx="2" ry="2" />
<text  x="73.86" y="335.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="679.5" y="261" width="0.9" height="15.0" fill="rgb(221,59,23)" rx="2" ry="2" />
<text  x="682.48" y="271.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="679.5" y="325" width="0.9" height="15.0" fill="rgb(227,85,37)" rx="2" ry="2" />
<text  x="682.48" y="335.5" ></text>
</g>
<g >
<title>RelationGetPartitionDesc (56,000,000 samples, 4.31%)</title><rect x="43.6" y="533" width="50.9" height="15.0" fill="rgb(244,145,50)" rx="2" ry="2" />
<text  x="46.61" y="543.5" >Relat..</text>
</g>
<g >
<title>table_open (1,000,000 samples, 0.08%)</title><rect x="492.4" y="501" width="0.9" height="15.0" fill="rgb(238,19,16)" rx="2" ry="2" />
<text  x="495.36" y="511.5" ></text>
</g>
<g >
<title>do_mmap (1,000,000 samples, 0.08%)</title><rect x="1089.2" y="949" width="0.9" height="15.0" fill="rgb(220,82,2)" rx="2" ry="2" />
<text  x="1092.17" y="959.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="825.7" y="389" width="0.9" height="15.0" fill="rgb(219,174,7)" rx="2" ry="2" />
<text  x="828.74" y="399.5" ></text>
</g>
<g >
<title>contain_vars_of_level_walker (2,000,000 samples, 0.15%)</title><rect x="101.7" y="549" width="1.9" height="15.0" fill="rgb(246,138,39)" rx="2" ry="2" />
<text  x="104.75" y="559.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,000,000 samples, 0.08%)</title><rect x="1023.8" y="437" width="0.9" height="15.0" fill="rgb(243,96,49)" rx="2" ry="2" />
<text  x="1026.76" y="447.5" ></text>
</g>
<g >
<title>UnlockRelationId (3,000,000 samples, 0.23%)</title><rect x="570.5" y="501" width="2.7" height="15.0" fill="rgb(219,153,3)" rx="2" ry="2" />
<text  x="573.48" y="511.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="31.8" y="405" width="0.9" height="15.0" fill="rgb(212,138,42)" rx="2" ry="2" />
<text  x="34.80" y="415.5" ></text>
</g>
<g >
<title>SearchCatCache3 (1,000,000 samples, 0.08%)</title><rect x="697.7" y="405" width="0.9" height="15.0" fill="rgb(216,84,17)" rx="2" ry="2" />
<text  x="700.65" y="415.5" ></text>
</g>
<g >
<title>RelationGetStatExtList (1,000,000 samples, 0.08%)</title><rect x="42.7" y="549" width="0.9" height="15.0" fill="rgb(221,103,6)" rx="2" ry="2" />
<text  x="45.70" y="559.5" ></text>
</g>
<g >
<title>get_opfamily_member (1,000,000 samples, 0.08%)</title><rect x="838.5" y="501" width="0.9" height="15.0" fill="rgb(249,128,42)" rx="2" ry="2" />
<text  x="841.45" y="511.5" ></text>
</g>
<g >
<title>build_index_paths (123,000,000 samples, 9.47%)</title><rect x="615.0" y="485" width="111.7" height="15.0" fill="rgb(222,201,52)" rx="2" ry="2" />
<text  x="617.99" y="495.5" >build_index_p..</text>
</g>
<g >
<title>get_eclass_for_sort_expr (63,000,000 samples, 4.85%)</title><rect x="734.9" y="485" width="57.2" height="15.0" fill="rgb(246,44,53)" rx="2" ry="2" />
<text  x="737.90" y="495.5" >get_ec..</text>
</g>
<g >
<title>do_group_exit (15,000,000 samples, 1.15%)</title><rect x="1171.8" y="965" width="13.7" height="15.0" fill="rgb(210,95,26)" rx="2" ry="2" />
<text  x="1174.83" y="975.5" ></text>
</g>
<g >
<title>cost_qual_eval_node (1,000,000 samples, 0.08%)</title><rect x="809.4" y="437" width="0.9" height="15.0" fill="rgb(252,6,25)" rx="2" ry="2" />
<text  x="812.38" y="447.5" ></text>
</g>
<g >
<title>__alloc_file (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="869" width="0.9" height="15.0" fill="rgb(241,105,41)" rx="2" ry="2" />
<text  x="1093.08" y="879.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (4,000,000 samples, 0.31%)</title><rect x="36.3" y="565" width="3.7" height="15.0" fill="rgb(251,166,14)" rx="2" ry="2" />
<text  x="39.34" y="575.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (1,000,000 samples, 0.08%)</title><rect x="937.5" y="133" width="0.9" height="15.0" fill="rgb(217,146,6)" rx="2" ry="2" />
<text  x="940.47" y="143.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (1,000,000 samples, 0.08%)</title><rect x="575.0" y="453" width="0.9" height="15.0" fill="rgb(218,164,26)" rx="2" ry="2" />
<text  x="578.02" y="463.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (2,000,000 samples, 0.15%)</title><rect x="1009.2" y="277" width="1.8" height="15.0" fill="rgb(244,88,37)" rx="2" ry="2" />
<text  x="1012.23" y="287.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (1,000,000 samples, 0.08%)</title><rect x="1089.2" y="965" width="0.9" height="15.0" fill="rgb(239,205,25)" rx="2" ry="2" />
<text  x="1092.17" y="975.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (5,000,000 samples, 0.38%)</title><rect x="526.0" y="485" width="4.5" height="15.0" fill="rgb(237,65,26)" rx="2" ry="2" />
<text  x="528.97" y="495.5" ></text>
</g>
<g >
<title>BufferAlloc (2,000,000 samples, 0.15%)</title><rect x="416.1" y="229" width="1.8" height="15.0" fill="rgb(221,76,45)" rx="2" ry="2" />
<text  x="419.05" y="239.5" ></text>
</g>
<g >
<title>__x64_sys_openat (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="949" width="0.9" height="15.0" fill="rgb(235,158,10)" rx="2" ry="2" />
<text  x="1093.08" y="959.5" ></text>
</g>
<g >
<title>GetIndexAmRoutine (1,000,000 samples, 0.08%)</title><rect x="349.7" y="485" width="0.9" height="15.0" fill="rgb(225,33,4)" rx="2" ry="2" />
<text  x="352.74" y="495.5" ></text>
</g>
<g >
<title>RegisterSnapshot (1,000,000 samples, 0.08%)</title><rect x="918.4" y="293" width="0.9" height="15.0" fill="rgb(208,114,33)" rx="2" ry="2" />
<text  x="921.39" y="303.5" ></text>
</g>
<g >
<title>create_join_plan (10,000,000 samples, 0.77%)</title><rect x="25.4" y="677" width="9.1" height="15.0" fill="rgb(222,174,40)" rx="2" ry="2" />
<text  x="28.44" y="687.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="491.4" y="421" width="1.0" height="15.0" fill="rgb(213,151,51)" rx="2" ry="2" />
<text  x="494.45" y="431.5" ></text>
</g>
<g >
<title>get_typlenbyval (1,000,000 samples, 0.08%)</title><rect x="966.5" y="341" width="0.9" height="15.0" fill="rgb(215,12,18)" rx="2" ry="2" />
<text  x="969.54" y="351.5" ></text>
</g>
<g >
<title>cgroup_throttle_swaprate (1,000,000 samples, 0.08%)</title><rect x="21.8" y="533" width="0.9" height="15.0" fill="rgb(239,213,20)" rx="2" ry="2" />
<text  x="24.81" y="543.5" ></text>
</g>
<g >
<title>LockRelease (6,000,000 samples, 0.46%)</title><rect x="386.1" y="357" width="5.4" height="15.0" fill="rgb(228,48,14)" rx="2" ry="2" />
<text  x="389.07" y="367.5" ></text>
</g>
<g >
<title>estimate_expression_value (1,000,000 samples, 0.08%)</title><rect x="691.3" y="261" width="0.9" height="15.0" fill="rgb(227,100,21)" rx="2" ry="2" />
<text  x="694.29" y="271.5" ></text>
</g>
<g >
<title>fastgetattr (1,000,000 samples, 0.08%)</title><rect x="75.4" y="469" width="0.9" height="15.0" fill="rgb(230,158,28)" rx="2" ry="2" />
<text  x="78.40" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="131.7" y="421" width="0.9" height="15.0" fill="rgb(207,31,19)" rx="2" ry="2" />
<text  x="134.72" y="431.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="714.9" y="133" width="0.9" height="15.0" fill="rgb(207,100,0)" rx="2" ry="2" />
<text  x="717.91" y="143.5" ></text>
</g>
<g >
<title>check_stack_depth (1,000,000 samples, 0.08%)</title><rect x="685.8" y="357" width="1.0" height="15.0" fill="rgb(237,207,39)" rx="2" ry="2" />
<text  x="688.84" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="311.6" y="453" width="0.9" height="15.0" fill="rgb(232,219,36)" rx="2" ry="2" />
<text  x="314.59" y="463.5" ></text>
</g>
<g >
<title>smgrnblocks (19,000,000 samples, 1.46%)</title><rect x="159.9" y="565" width="17.2" height="15.0" fill="rgb(237,156,2)" rx="2" ry="2" />
<text  x="162.88" y="575.5" ></text>
</g>
<g >
<title>__memcmp_sse2 (1,000,000 samples, 0.08%)</title><rect x="79.9" y="453" width="1.0" height="15.0" fill="rgb(213,194,32)" rx="2" ry="2" />
<text  x="82.95" y="463.5" ></text>
</g>
<g >
<title>ReadBuffer_common (2,000,000 samples, 0.15%)</title><rect x="999.2" y="149" width="1.9" height="15.0" fill="rgb(254,118,46)" rx="2" ry="2" />
<text  x="1002.24" y="159.5" ></text>
</g>
<g >
<title>CleanUpLock (1,000,000 samples, 0.08%)</title><rect x="440.6" y="373" width="0.9" height="15.0" fill="rgb(240,180,16)" rx="2" ry="2" />
<text  x="443.58" y="383.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="800.3" y="277" width="0.9" height="15.0" fill="rgb(250,181,13)" rx="2" ry="2" />
<text  x="803.30" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="31.8" y="453" width="0.9" height="15.0" fill="rgb(213,79,34)" rx="2" ry="2" />
<text  x="34.80" y="463.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="258.0" y="437" width="1.8" height="15.0" fill="rgb(214,184,33)" rx="2" ry="2" />
<text  x="260.99" y="447.5" ></text>
</g>
<g >
<title>expression_tree_mutator_impl (1,000,000 samples, 0.08%)</title><rect x="121.7" y="485" width="0.9" height="15.0" fill="rgb(227,25,30)" rx="2" ry="2" />
<text  x="124.73" y="495.5" ></text>
</g>
<g >
<title>equal (3,000,000 samples, 0.23%)</title><rect x="642.2" y="421" width="2.8" height="15.0" fill="rgb(209,81,36)" rx="2" ry="2" />
<text  x="645.24" y="431.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,000,000 samples, 0.08%)</title><rect x="127.2" y="597" width="0.9" height="15.0" fill="rgb(219,210,52)" rx="2" ry="2" />
<text  x="130.18" y="607.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (1,000,000 samples, 0.08%)</title><rect x="574.1" y="437" width="0.9" height="15.0" fill="rgb(227,105,46)" rx="2" ry="2" />
<text  x="577.11" y="447.5" ></text>
</g>
<g >
<title>PortalDrop (1,000,000 samples, 0.08%)</title><rect x="17.3" y="869" width="0.9" height="15.0" fill="rgb(235,169,32)" rx="2" ry="2" />
<text  x="20.27" y="879.5" ></text>
</g>
<g >
<title>get_oprrest (1,000,000 samples, 0.08%)</title><rect x="692.2" y="341" width="0.9" height="15.0" fill="rgb(211,179,31)" rx="2" ry="2" />
<text  x="695.20" y="351.5" ></text>
</g>
<g >
<title>LockTagHashCode (1,000,000 samples, 0.08%)</title><rect x="1030.1" y="373" width="0.9" height="15.0" fill="rgb(243,188,13)" rx="2" ry="2" />
<text  x="1033.12" y="383.5" ></text>
</g>
<g >
<title>eclass_member_iterator_strict_next (25,000,000 samples, 1.92%)</title><rect x="740.3" y="469" width="22.8" height="15.0" fill="rgb(244,194,36)" rx="2" ry="2" />
<text  x="743.35" y="479.5" >e..</text>
</g>
<g >
<title>ReadBuffer (4,000,000 samples, 0.31%)</title><rect x="394.2" y="309" width="3.7" height="15.0" fill="rgb(206,157,18)" rx="2" ry="2" />
<text  x="397.25" y="319.5" ></text>
</g>
<g >
<title>SearchCatCache1 (4,000,000 samples, 0.31%)</title><rect x="109.9" y="517" width="3.7" height="15.0" fill="rgb(241,197,54)" rx="2" ry="2" />
<text  x="112.92" y="527.5" ></text>
</g>
<g >
<title>cost_bitmap_heap_scan (2,000,000 samples, 0.15%)</title><rect x="726.7" y="533" width="1.8" height="15.0" fill="rgb(229,147,30)" rx="2" ry="2" />
<text  x="729.72" y="543.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="127.2" y="565" width="0.9" height="15.0" fill="rgb(207,186,11)" rx="2" ry="2" />
<text  x="130.18" y="575.5" ></text>
</g>
<g >
<title>set_plan_refs (7,000,000 samples, 0.54%)</title><rect x="36.3" y="677" width="6.4" height="15.0" fill="rgb(243,92,29)" rx="2" ry="2" />
<text  x="39.34" y="687.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,000,000 samples, 0.46%)</title><rect x="553.2" y="437" width="5.5" height="15.0" fill="rgb(223,200,46)" rx="2" ry="2" />
<text  x="556.22" y="447.5" ></text>
</g>
<g >
<title>perf_event_mmap (2,000,000 samples, 0.15%)</title><rect x="14.5" y="917" width="1.9" height="15.0" fill="rgb(245,119,12)" rx="2" ry="2" />
<text  x="17.54" y="927.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (1,000,000 samples, 0.08%)</title><rect x="311.6" y="405" width="0.9" height="15.0" fill="rgb(207,57,32)" rx="2" ry="2" />
<text  x="314.59" y="415.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="376.1" y="309" width="0.9" height="15.0" fill="rgb(213,114,34)" rx="2" ry="2" />
<text  x="379.08" y="319.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,000,000 samples, 0.15%)</title><rect x="432.4" y="325" width="1.8" height="15.0" fill="rgb(221,115,31)" rx="2" ry="2" />
<text  x="435.40" y="335.5" ></text>
</g>
<g >
<title>index_open (4,000,000 samples, 0.31%)</title><rect x="373.4" y="389" width="3.6" height="15.0" fill="rgb(232,205,9)" rx="2" ry="2" />
<text  x="376.36" y="399.5" ></text>
</g>
<g >
<title>_bt_checkkeys (1,000,000 samples, 0.08%)</title><rect x="489.6" y="405" width="0.9" height="15.0" fill="rgb(237,165,20)" rx="2" ry="2" />
<text  x="492.63" y="415.5" ></text>
</g>
<g >
<title>palloc0 (6,000,000 samples, 0.46%)</title><rect x="313.4" y="501" width="5.5" height="15.0" fill="rgb(210,182,19)" rx="2" ry="2" />
<text  x="316.40" y="511.5" ></text>
</g>
<g >
<title>relation_open (2,000,000 samples, 0.15%)</title><rect x="277.1" y="517" width="1.8" height="15.0" fill="rgb(235,63,29)" rx="2" ry="2" />
<text  x="280.07" y="527.5" ></text>
</g>
<g >
<title>systable_beginscan (10,000,000 samples, 0.77%)</title><rect x="50.0" y="437" width="9.1" height="15.0" fill="rgb(234,213,26)" rx="2" ry="2" />
<text  x="52.97" y="447.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="1037.4" y="213" width="0.9" height="15.0" fill="rgb(233,9,41)" rx="2" ry="2" />
<text  x="1040.39" y="223.5" ></text>
</g>
<g >
<title>bms_get_singleton_member (1,000,000 samples, 0.08%)</title><rect x="1017.4" y="501" width="0.9" height="15.0" fill="rgb(220,183,11)" rx="2" ry="2" />
<text  x="1020.41" y="511.5" ></text>
</g>
<g >
<title>clear_page_orig (2,000,000 samples, 0.15%)</title><rect x="515.1" y="373" width="1.8" height="15.0" fill="rgb(254,78,13)" rx="2" ry="2" />
<text  x="518.07" y="383.5" ></text>
</g>
<g >
<title>alloc_pages_vma (25,000,000 samples, 1.92%)</title><rect x="219.8" y="181" width="22.7" height="15.0" fill="rgb(210,124,27)" rx="2" ry="2" />
<text  x="222.84" y="191.5" >a..</text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="21.8" y="581" width="0.9" height="15.0" fill="rgb(226,93,14)" rx="2" ry="2" />
<text  x="24.81" y="591.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="714.9" y="101" width="0.9" height="15.0" fill="rgb(223,225,14)" rx="2" ry="2" />
<text  x="717.91" y="111.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,000,000 samples, 0.23%)</title><rect x="369.7" y="293" width="2.7" height="15.0" fill="rgb(213,35,19)" rx="2" ry="2" />
<text  x="372.72" y="303.5" ></text>
</g>
<g >
<title>relation_open (2,000,000 samples, 0.15%)</title><rect x="920.2" y="277" width="1.8" height="15.0" fill="rgb(228,15,7)" rx="2" ry="2" />
<text  x="923.21" y="287.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (3,000,000 samples, 0.23%)</title><rect x="891.1" y="533" width="2.8" height="15.0" fill="rgb(240,14,3)" rx="2" ry="2" />
<text  x="894.14" y="543.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="669.5" y="229" width="0.9" height="15.0" fill="rgb(224,128,39)" rx="2" ry="2" />
<text  x="672.49" y="239.5" ></text>
</g>
<g >
<title>_bt_binsrch (2,000,000 samples, 0.15%)</title><rect x="997.4" y="213" width="1.8" height="15.0" fill="rgb(222,209,26)" rx="2" ry="2" />
<text  x="1000.42" y="223.5" ></text>
</g>
<g >
<title>transformOptionalSelectInto (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="773" width="0.9" height="15.0" fill="rgb(243,33,23)" rx="2" ry="2" />
<text  x="1052.20" y="783.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="1033.8" y="357" width="0.9" height="15.0" fill="rgb(207,125,27)" rx="2" ry="2" />
<text  x="1036.76" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="916.6" y="293" width="0.9" height="15.0" fill="rgb(224,97,47)" rx="2" ry="2" />
<text  x="919.57" y="303.5" ></text>
</g>
<g >
<title>LockRelationOid (3,000,000 samples, 0.23%)</title><rect x="943.8" y="277" width="2.8" height="15.0" fill="rgb(234,118,21)" rx="2" ry="2" />
<text  x="946.83" y="287.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (1,000,000 samples, 0.08%)</title><rect x="74.5" y="341" width="0.9" height="15.0" fill="rgb(230,209,47)" rx="2" ry="2" />
<text  x="77.50" y="351.5" ></text>
</g>
<g >
<title>ResourceArrayRemove (1,000,000 samples, 0.08%)</title><rect x="43.6" y="453" width="0.9" height="15.0" fill="rgb(225,217,13)" rx="2" ry="2" />
<text  x="46.61" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="669.5" y="213" width="0.9" height="15.0" fill="rgb(214,100,18)" rx="2" ry="2" />
<text  x="672.49" y="223.5" ></text>
</g>
<g >
<title>index_open (2,000,000 samples, 0.15%)</title><rect x="326.1" y="485" width="1.8" height="15.0" fill="rgb(220,76,45)" rx="2" ry="2" />
<text  x="329.12" y="495.5" ></text>
</g>
<g >
<title>qsort_arg (1,000,000 samples, 0.08%)</title><rect x="79.0" y="469" width="0.9" height="15.0" fill="rgb(219,42,1)" rx="2" ry="2" />
<text  x="82.04" y="479.5" ></text>
</g>
<g >
<title>eval_const_expressions_mutator (1,000,000 samples, 0.08%)</title><rect x="912.0" y="389" width="0.9" height="15.0" fill="rgb(228,173,19)" rx="2" ry="2" />
<text  x="915.03" y="399.5" ></text>
</g>
<g >
<title>UnlockRelationId (2,000,000 samples, 0.15%)</title><rect x="420.6" y="373" width="1.8" height="15.0" fill="rgb(245,220,36)" rx="2" ry="2" />
<text  x="423.59" y="383.5" ></text>
</g>
<g >
<title>get_relation_info (57,000,000 samples, 4.39%)</title><rect x="42.7" y="581" width="51.8" height="15.0" fill="rgb(248,36,10)" rx="2" ry="2" />
<text  x="45.70" y="591.5" >get_r..</text>
</g>
<g >
<title>ReadBufferExtended (86,000,000 samples, 6.62%)</title><rect x="177.1" y="533" width="78.2" height="15.0" fill="rgb(218,7,16)" rx="2" ry="2" />
<text  x="180.14" y="543.5" >ReadBuffe..</text>
</g>
<g >
<title>LockAcquireExtended (2,000,000 samples, 0.15%)</title><rect x="593.2" y="485" width="1.8" height="15.0" fill="rgb(215,222,18)" rx="2" ry="2" />
<text  x="596.19" y="495.5" ></text>
</g>
<g >
<title>SysCacheGetAttr (1,000,000 samples, 0.08%)</title><rect x="75.4" y="501" width="0.9" height="15.0" fill="rgb(226,108,18)" rx="2" ry="2" />
<text  x="78.40" y="511.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (3,000,000 samples, 0.23%)</title><rect x="336.1" y="421" width="2.7" height="15.0" fill="rgb(214,151,15)" rx="2" ry="2" />
<text  x="339.11" y="431.5" ></text>
</g>
<g >
<title>IsSharedRelation (1,000,000 samples, 0.08%)</title><rect x="944.7" y="261" width="0.9" height="15.0" fill="rgb(222,207,19)" rx="2" ry="2" />
<text  x="947.73" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,000,000 samples, 0.46%)</title><rect x="553.2" y="469" width="5.5" height="15.0" fill="rgb(244,87,30)" rx="2" ry="2" />
<text  x="556.22" y="479.5" ></text>
</g>
<g >
<title>alloc_pages_vma (2,000,000 samples, 0.15%)</title><rect x="324.3" y="373" width="1.8" height="15.0" fill="rgb(231,181,49)" rx="2" ry="2" />
<text  x="327.30" y="383.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="493.3" y="517" width="0.9" height="15.0" fill="rgb(252,124,12)" rx="2" ry="2" />
<text  x="496.26" y="527.5" ></text>
</g>
<g >
<title>simplify_function (19,000,000 samples, 1.46%)</title><rect x="106.3" y="549" width="17.2" height="15.0" fill="rgb(223,37,46)" rx="2" ry="2" />
<text  x="109.29" y="559.5" ></text>
</g>
<g >
<title>bms_int_members (3,000,000 samples, 0.23%)</title><rect x="709.5" y="373" width="2.7" height="15.0" fill="rgb(207,180,8)" rx="2" ry="2" />
<text  x="712.46" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,000,000 samples, 0.38%)</title><rect x="363.4" y="389" width="4.5" height="15.0" fill="rgb(239,59,37)" rx="2" ry="2" />
<text  x="366.36" y="399.5" ></text>
</g>
<g >
<title>create_bitmap_heap_path (2,000,000 samples, 0.15%)</title><rect x="726.7" y="549" width="1.8" height="15.0" fill="rgb(248,82,8)" rx="2" ry="2" />
<text  x="729.72" y="559.5" ></text>
</g>
<g >
<title>get_restriction_variable (4,000,000 samples, 0.31%)</title><rect x="714.9" y="293" width="3.6" height="15.0" fill="rgb(217,181,1)" rx="2" ry="2" />
<text  x="717.91" y="303.5" ></text>
</g>
<g >
<title>uint32_hash (1,000,000 samples, 0.08%)</title><rect x="477.8" y="421" width="0.9" height="15.0" fill="rgb(216,209,29)" rx="2" ry="2" />
<text  x="480.82" y="431.5" ></text>
</g>
<g >
<title>fault_dirty_shared_page (2,000,000 samples, 0.15%)</title><rect x="242.5" y="261" width="1.9" height="15.0" fill="rgb(230,97,3)" rx="2" ry="2" />
<text  x="245.55" y="271.5" ></text>
</g>
<g >
<title>scalargtsel (70,000,000 samples, 5.39%)</title><rect x="948.4" y="453" width="63.6" height="15.0" fill="rgb(216,122,48)" rx="2" ry="2" />
<text  x="951.37" y="463.5" >scalar..</text>
</g>
<g >
<title>RelationIdGetRelation (1,000,000 samples, 0.08%)</title><rect x="42.7" y="485" width="0.9" height="15.0" fill="rgb(236,70,11)" rx="2" ry="2" />
<text  x="45.70" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,000,000 samples, 0.38%)</title><rect x="512.3" y="517" width="4.6" height="15.0" fill="rgb(246,110,9)" rx="2" ry="2" />
<text  x="515.34" y="527.5" ></text>
</g>
<g >
<title>palloc0 (1,000,000 samples, 0.08%)</title><rect x="868.4" y="485" width="0.9" height="15.0" fill="rgb(220,216,48)" rx="2" ry="2" />
<text  x="871.43" y="495.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="388.8" y="325" width="0.9" height="15.0" fill="rgb(231,207,3)" rx="2" ry="2" />
<text  x="391.80" y="335.5" ></text>
</g>
<g >
<title>relation_open (2,000,000 samples, 0.15%)</title><rect x="22.7" y="677" width="1.8" height="15.0" fill="rgb(241,169,52)" rx="2" ry="2" />
<text  x="25.72" y="687.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,000,000 samples, 0.08%)</title><rect x="728.5" y="469" width="0.9" height="15.0" fill="rgb(236,174,42)" rx="2" ry="2" />
<text  x="731.54" y="479.5" ></text>
</g>
<g >
<title>BufTableLookup (1,000,000 samples, 0.08%)</title><rect x="1038.3" y="261" width="0.9" height="15.0" fill="rgb(227,17,11)" rx="2" ry="2" />
<text  x="1041.30" y="271.5" ></text>
</g>
<g >
<title>pull_varnos (1,000,000 samples, 0.08%)</title><rect x="717.6" y="261" width="0.9" height="15.0" fill="rgb(226,53,24)" rx="2" ry="2" />
<text  x="720.64" y="271.5" ></text>
</g>
<g >
<title>clauselist_selectivity (129,000,000 samples, 9.93%)</title><rect x="905.7" y="549" width="117.2" height="15.0" fill="rgb(219,44,26)" rx="2" ry="2" />
<text  x="908.67" y="559.5" >clauselist_sel..</text>
</g>
<g >
<title>UnlockRelationId (1,000,000 samples, 0.08%)</title><rect x="995.6" y="277" width="0.9" height="15.0" fill="rgb(216,27,18)" rx="2" ry="2" />
<text  x="998.60" y="287.5" ></text>
</g>
<g >
<title>__ext4_handle_dirty_metadata (1,000,000 samples, 0.08%)</title><rect x="247.1" y="277" width="0.9" height="15.0" fill="rgb(216,84,8)" rx="2" ry="2" />
<text  x="250.09" y="287.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="706.7" y="341" width="0.9" height="15.0" fill="rgb(231,124,37)" rx="2" ry="2" />
<text  x="709.74" y="351.5" ></text>
</g>
<g >
<title>fastgetattr (2,000,000 samples, 0.15%)</title><rect x="464.2" y="501" width="1.8" height="15.0" fill="rgb(232,128,34)" rx="2" ry="2" />
<text  x="467.20" y="511.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="570.5" y="437" width="0.9" height="15.0" fill="rgb(207,23,18)" rx="2" ry="2" />
<text  x="573.48" y="447.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3,000,000 samples, 0.23%)</title><rect x="47.2" y="357" width="2.8" height="15.0" fill="rgb(211,222,50)" rx="2" ry="2" />
<text  x="50.24" y="367.5" ></text>
</g>
<g >
<title>list_nth_cell (1,000,000 samples, 0.08%)</title><rect x="834.8" y="501" width="0.9" height="15.0" fill="rgb(224,87,12)" rx="2" ry="2" />
<text  x="837.82" y="511.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="837" width="1.0" height="15.0" fill="rgb(232,145,9)" rx="2" ry="2" />
<text  x="1187.55" y="847.5" ></text>
</g>
<g >
<title>dlist_delete (1,000,000 samples, 0.08%)</title><rect x="480.5" y="421" width="1.0" height="15.0" fill="rgb(234,79,20)" rx="2" ry="2" />
<text  x="483.55" y="431.5" ></text>
</g>
<g >
<title>BufTableLookup (3,000,000 samples, 0.23%)</title><rect x="139.9" y="405" width="2.7" height="15.0" fill="rgb(211,163,16)" rx="2" ry="2" />
<text  x="142.90" y="415.5" ></text>
</g>
<g >
<title>pagecache_get_page (1,000,000 samples, 0.08%)</title><rect x="249.8" y="213" width="0.9" height="15.0" fill="rgb(238,154,5)" rx="2" ry="2" />
<text  x="252.82" y="223.5" ></text>
</g>
<g >
<title>clause_selectivity_ext (3,000,000 samples, 0.23%)</title><rect x="690.4" y="373" width="2.7" height="15.0" fill="rgb(232,152,13)" rx="2" ry="2" />
<text  x="693.38" y="383.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="388.8" y="293" width="0.9" height="15.0" fill="rgb(211,136,16)" rx="2" ry="2" />
<text  x="391.80" y="303.5" ></text>
</g>
<g >
<title>__jbd2_journal_file_buffer (1,000,000 samples, 0.08%)</title><rect x="247.1" y="245" width="0.9" height="15.0" fill="rgb(243,26,36)" rx="2" ry="2" />
<text  x="250.09" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="254.4" y="421" width="0.9" height="15.0" fill="rgb(242,105,17)" rx="2" ry="2" />
<text  x="257.36" y="431.5" ></text>
</g>
<g >
<title>ExplainOneQuery (1,132,000,000 samples, 87.14%)</title><rect x="18.2" y="773" width="1028.3" height="15.0" fill="rgb(249,119,36)" rx="2" ry="2" />
<text  x="21.18" y="783.5" >ExplainOneQuery</text>
</g>
<g >
<title>index_endscan (1,000,000 samples, 0.08%)</title><rect x="573.2" y="517" width="0.9" height="15.0" fill="rgb(218,153,16)" rx="2" ry="2" />
<text  x="576.20" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,000,000 samples, 0.46%)</title><rect x="169.9" y="437" width="5.4" height="15.0" fill="rgb(248,112,41)" rx="2" ry="2" />
<text  x="172.88" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,000,000 samples, 0.08%)</title><rect x="26.4" y="485" width="0.9" height="15.0" fill="rgb(216,106,48)" rx="2" ry="2" />
<text  x="29.35" y="495.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="456.0" y="373" width="0.9" height="15.0" fill="rgb(230,58,48)" rx="2" ry="2" />
<text  x="459.02" y="383.5" ></text>
</g>
<g >
<title>ReadBuffer (1,000,000 samples, 0.08%)</title><rect x="342.5" y="373" width="0.9" height="15.0" fill="rgb(229,78,25)" rx="2" ry="2" />
<text  x="345.47" y="383.5" ></text>
</g>
<g >
<title>ReleaseBuffer (1,000,000 samples, 0.08%)</title><rect x="568.7" y="469" width="0.9" height="15.0" fill="rgb(227,116,26)" rx="2" ry="2" />
<text  x="571.66" y="479.5" ></text>
</g>
<g >
<title>get_oprrest (3,000,000 samples, 0.23%)</title><rect x="720.4" y="389" width="2.7" height="15.0" fill="rgb(225,171,46)" rx="2" ry="2" />
<text  x="723.36" y="399.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (1,000,000 samples, 0.08%)</title><rect x="367.0" y="325" width="0.9" height="15.0" fill="rgb(215,218,12)" rx="2" ry="2" />
<text  x="370.00" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="1052.8" y="965" width="0.9" height="15.0" fill="rgb(215,80,25)" rx="2" ry="2" />
<text  x="1055.83" y="975.5" ></text>
</g>
<g >
<title>lcons (1,000,000 samples, 0.08%)</title><rect x="495.1" y="581" width="0.9" height="15.0" fill="rgb(209,21,1)" rx="2" ry="2" />
<text  x="498.08" y="591.5" ></text>
</g>
<g >
<title>__fput (2,000,000 samples, 0.15%)</title><rect x="267.1" y="277" width="1.8" height="15.0" fill="rgb(218,228,52)" rx="2" ry="2" />
<text  x="270.07" y="287.5" ></text>
</g>
<g >
<title>xas_load (2,000,000 samples, 0.15%)</title><rect x="244.4" y="325" width="1.8" height="15.0" fill="rgb(208,85,48)" rx="2" ry="2" />
<text  x="247.36" y="335.5" ></text>
</g>
<g >
<title>index_fetch_heap (5,000,000 samples, 0.38%)</title><rect x="139.0" y="533" width="4.5" height="15.0" fill="rgb(249,75,23)" rx="2" ry="2" />
<text  x="141.99" y="543.5" ></text>
</g>
<g >
<title>BufTableLookup (1,000,000 samples, 0.08%)</title><rect x="542.3" y="341" width="0.9" height="15.0" fill="rgb(229,14,16)" rx="2" ry="2" />
<text  x="545.32" y="351.5" ></text>
</g>
<g >
<title>equal (1,000,000 samples, 0.08%)</title><rect x="763.1" y="469" width="0.9" height="15.0" fill="rgb(236,167,48)" rx="2" ry="2" />
<text  x="766.06" y="479.5" ></text>
</g>
<g >
<title>PinBuffer (1,000,000 samples, 0.08%)</title><rect x="149.0" y="373" width="0.9" height="15.0" fill="rgb(231,222,4)" rx="2" ry="2" />
<text  x="151.98" y="383.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,000,000 samples, 0.08%)</title><rect x="1003.8" y="245" width="0.9" height="15.0" fill="rgb(223,142,33)" rx="2" ry="2" />
<text  x="1006.78" y="255.5" ></text>
</g>
<g >
<title>get_index_paths (123,000,000 samples, 9.47%)</title><rect x="615.0" y="501" width="111.7" height="15.0" fill="rgb(239,42,17)" rx="2" ry="2" />
<text  x="617.99" y="511.5" >get_index_paths</text>
</g>
<g >
<title>ReleaseSysCache (1,000,000 samples, 0.08%)</title><rect x="109.0" y="533" width="0.9" height="15.0" fill="rgb(253,121,37)" rx="2" ry="2" />
<text  x="112.01" y="543.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (1,000,000 samples, 0.08%)</title><rect x="1044.7" y="453" width="0.9" height="15.0" fill="rgb(214,164,11)" rx="2" ry="2" />
<text  x="1047.66" y="463.5" ></text>
</g>
<g >
<title>set_relation_column_names (7,000,000 samples, 0.54%)</title><rect x="18.2" y="693" width="6.3" height="15.0" fill="rgb(223,193,10)" rx="2" ry="2" />
<text  x="21.18" y="703.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="571.4" y="421" width="0.9" height="15.0" fill="rgb(248,153,29)" rx="2" ry="2" />
<text  x="574.39" y="431.5" ></text>
</g>
<g >
<title>exec_toplevel_block (2,000,000 samples, 0.15%)</title><rect x="961.1" y="245" width="1.8" height="15.0" fill="rgb(223,97,2)" rx="2" ry="2" />
<text  x="964.09" y="255.5" ></text>
</g>
<g >
<title>adjust_appendrel_attrs_mutator (3,000,000 samples, 0.23%)</title><rect x="874.8" y="549" width="2.7" height="15.0" fill="rgb(208,30,25)" rx="2" ry="2" />
<text  x="877.79" y="559.5" ></text>
</g>
<g >
<title>systable_endscan (6,000,000 samples, 0.46%)</title><rect x="519.6" y="533" width="5.5" height="15.0" fill="rgb(211,157,31)" rx="2" ry="2" />
<text  x="522.61" y="543.5" ></text>
</g>
<g >
<title>sock_close (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="901" width="1.0" height="15.0" fill="rgb(226,198,52)" rx="2" ry="2" />
<text  x="1187.55" y="911.5" ></text>
</g>
<g >
<title>get_hash_value (1,000,000 samples, 0.08%)</title><rect x="1030.1" y="357" width="0.9" height="15.0" fill="rgb(235,83,17)" rx="2" ry="2" />
<text  x="1033.12" y="367.5" ></text>
</g>
<g >
<title>pg_strtok (1,000,000 samples, 0.08%)</title><rect x="90.8" y="373" width="1.0" height="15.0" fill="rgb(208,4,24)" rx="2" ry="2" />
<text  x="93.85" y="383.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (1,000,000 samples, 0.08%)</title><rect x="972.9" y="213" width="0.9" height="15.0" fill="rgb(213,187,17)" rx="2" ry="2" />
<text  x="975.89" y="223.5" ></text>
</g>
<g >
<title>_bt_search (5,000,000 samples, 0.38%)</title><rect x="147.2" y="485" width="4.5" height="15.0" fill="rgb(233,94,19)" rx="2" ry="2" />
<text  x="150.17" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="474.2" y="341" width="0.9" height="15.0" fill="rgb(254,111,3)" rx="2" ry="2" />
<text  x="477.19" y="351.5" ></text>
</g>
<g >
<title>exprTypmod (1,000,000 samples, 0.08%)</title><rect x="117.2" y="501" width="0.9" height="15.0" fill="rgb(209,36,48)" rx="2" ry="2" />
<text  x="120.19" y="511.5" ></text>
</g>
<g >
<title>prep_new_page (1,000,000 samples, 0.08%)</title><rect x="669.5" y="197" width="0.9" height="15.0" fill="rgb(244,171,15)" rx="2" ry="2" />
<text  x="672.49" y="207.5" ></text>
</g>
<g >
<title>pg_rightmost_one_pos64 (1,000,000 samples, 0.08%)</title><rect x="817.6" y="501" width="0.9" height="15.0" fill="rgb(220,23,22)" rx="2" ry="2" />
<text  x="820.56" y="511.5" ></text>
</g>
<g >
<title>LockRelationOid (5,000,000 samples, 0.38%)</title><rect x="560.5" y="485" width="4.5" height="15.0" fill="rgb(218,45,47)" rx="2" ry="2" />
<text  x="563.48" y="495.5" ></text>
</g>
<g >
<title>HandleConcurrentAbort (1,000,000 samples, 0.08%)</title><rect x="362.5" y="405" width="0.9" height="15.0" fill="rgb(205,75,19)" rx="2" ry="2" />
<text  x="365.46" y="415.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3,000,000 samples, 0.23%)</title><rect x="386.1" y="325" width="2.7" height="15.0" fill="rgb(216,29,29)" rx="2" ry="2" />
<text  x="389.07" y="335.5" ></text>
</g>
<g >
<title>get_mergejoin_opfamilies (7,000,000 samples, 0.54%)</title><rect x="792.1" y="485" width="6.4" height="15.0" fill="rgb(212,114,43)" rx="2" ry="2" />
<text  x="795.12" y="495.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="823.9" y="373" width="0.9" height="15.0" fill="rgb(215,93,21)" rx="2" ry="2" />
<text  x="826.92" y="383.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (1,000,000 samples, 0.08%)</title><rect x="728.5" y="453" width="0.9" height="15.0" fill="rgb(224,97,39)" rx="2" ry="2" />
<text  x="731.54" y="463.5" ></text>
</g>
<g >
<title>bms_copy (1,000,000 samples, 0.08%)</title><rect x="873.9" y="533" width="0.9" height="15.0" fill="rgb(221,109,31)" rx="2" ry="2" />
<text  x="876.88" y="543.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (1,000,000 samples, 0.08%)</title><rect x="450.6" y="181" width="0.9" height="15.0" fill="rgb(246,36,42)" rx="2" ry="2" />
<text  x="453.57" y="191.5" ></text>
</g>
<g >
<title>LockAcquireExtended (1,000,000 samples, 0.08%)</title><rect x="547.8" y="485" width="0.9" height="15.0" fill="rgb(210,20,39)" rx="2" ry="2" />
<text  x="550.77" y="495.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,000,000 samples, 0.08%)</title><rect x="458.7" y="341" width="1.0" height="15.0" fill="rgb(236,54,53)" rx="2" ry="2" />
<text  x="461.75" y="351.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (4,000,000 samples, 0.31%)</title><rect x="139.0" y="485" width="3.6" height="15.0" fill="rgb(245,221,46)" rx="2" ry="2" />
<text  x="141.99" y="495.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="969.3" y="181" width="0.9" height="15.0" fill="rgb(221,150,10)" rx="2" ry="2" />
<text  x="972.26" y="191.5" ></text>
</g>
<g >
<title>prep_new_page (2,000,000 samples, 0.15%)</title><rect x="320.7" y="341" width="1.8" height="15.0" fill="rgb(241,133,26)" rx="2" ry="2" />
<text  x="323.67" y="351.5" ></text>
</g>
<g >
<title>pgstat_relation_flush_cb (2,000,000 samples, 0.15%)</title><rect x="1050.1" y="853" width="1.8" height="15.0" fill="rgb(211,23,3)" rx="2" ry="2" />
<text  x="1053.11" y="863.5" ></text>
</g>
<g >
<title>systable_beginscan (8,000,000 samples, 0.62%)</title><rect x="130.8" y="565" width="7.3" height="15.0" fill="rgb(218,225,23)" rx="2" ry="2" />
<text  x="133.82" y="575.5" ></text>
</g>
<g >
<title>exec_stmt_return (2,000,000 samples, 0.15%)</title><rect x="961.1" y="197" width="1.8" height="15.0" fill="rgb(238,105,10)" rx="2" ry="2" />
<text  x="964.09" y="207.5" ></text>
</g>
<g >
<title>SetupLockInTable (1,000,000 samples, 0.08%)</title><rect x="374.3" y="325" width="0.9" height="15.0" fill="rgb(248,137,54)" rx="2" ry="2" />
<text  x="377.26" y="335.5" ></text>
</g>
<g >
<title>_bt_readpage (4,000,000 samples, 0.31%)</title><rect x="537.8" y="453" width="3.6" height="15.0" fill="rgb(250,178,8)" rx="2" ry="2" />
<text  x="540.78" y="463.5" ></text>
</g>
<g >
<title>_bt_getroot (2,000,000 samples, 0.15%)</title><rect x="1037.4" y="357" width="1.8" height="15.0" fill="rgb(231,11,2)" rx="2" ry="2" />
<text  x="1040.39" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="31.8" y="517" width="0.9" height="15.0" fill="rgb(245,123,54)" rx="2" ry="2" />
<text  x="34.80" y="527.5" ></text>
</g>
<g >
<title>bms_intersect (1,000,000 samples, 0.08%)</title><rect x="832.1" y="485" width="0.9" height="15.0" fill="rgb(211,130,13)" rx="2" ry="2" />
<text  x="835.09" y="495.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="969.3" y="133" width="0.9" height="15.0" fill="rgb(205,58,1)" rx="2" ry="2" />
<text  x="972.26" y="143.5" ></text>
</g>
<g >
<title>build_index_tlist (2,000,000 samples, 0.15%)</title><rect x="255.3" y="581" width="1.8" height="15.0" fill="rgb(246,29,15)" rx="2" ry="2" />
<text  x="258.27" y="591.5" ></text>
</g>
<g >
<title>LockRelease (2,000,000 samples, 0.15%)</title><rect x="1003.8" y="261" width="1.8" height="15.0" fill="rgb(235,49,44)" rx="2" ry="2" />
<text  x="1006.78" y="271.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="919.3" y="213" width="0.9" height="15.0" fill="rgb(222,32,18)" rx="2" ry="2" />
<text  x="922.30" y="223.5" ></text>
</g>
<g >
<title>index_beginscan (10,000,000 samples, 0.77%)</title><rect x="551.4" y="517" width="9.1" height="15.0" fill="rgb(236,46,23)" rx="2" ry="2" />
<text  x="554.40" y="527.5" ></text>
</g>
<g >
<title>BufferAlloc (2,000,000 samples, 0.15%)</title><rect x="148.1" y="389" width="1.8" height="15.0" fill="rgb(232,111,13)" rx="2" ry="2" />
<text  x="151.08" y="399.5" ></text>
</g>
<g >
<title>_bt_getbuf (4,000,000 samples, 0.31%)</title><rect x="450.6" y="325" width="3.6" height="15.0" fill="rgb(252,94,3)" rx="2" ry="2" />
<text  x="453.57" y="335.5" ></text>
</g>
<g >
<title>LockRelease (3,000,000 samples, 0.23%)</title><rect x="279.8" y="501" width="2.7" height="15.0" fill="rgb(240,148,40)" rx="2" ry="2" />
<text  x="282.79" y="511.5" ></text>
</g>
<g >
<title>FillPortalStore (1,132,000,000 samples, 87.14%)</title><rect x="18.2" y="853" width="1028.3" height="15.0" fill="rgb(233,27,8)" rx="2" ry="2" />
<text  x="21.18" y="863.5" >FillPortalStore</text>
</g>
<g >
<title>relation_open (2,000,000 samples, 0.15%)</title><rect x="326.1" y="469" width="1.8" height="15.0" fill="rgb(209,79,33)" rx="2" ry="2" />
<text  x="329.12" y="479.5" ></text>
</g>
<g >
<title>tcp_data_queue (1,000,000 samples, 0.08%)</title><rect x="1184.5" y="549" width="1.0" height="15.0" fill="rgb(216,71,21)" rx="2" ry="2" />
<text  x="1187.55" y="559.5" ></text>
</g>
<g >
<title>new_tail_cell (1,000,000 samples, 0.08%)</title><rect x="24.5" y="677" width="0.9" height="15.0" fill="rgb(211,71,5)" rx="2" ry="2" />
<text  x="27.53" y="687.5" ></text>
</g>
<g >
<title>__GI___open64_nocancel (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="997" width="0.9" height="15.0" fill="rgb(238,118,38)" rx="2" ry="2" />
<text  x="1093.08" y="1007.5" ></text>
</g>
<g >
<title>create_plan_recurse (10,000,000 samples, 0.77%)</title><rect x="25.4" y="645" width="9.1" height="15.0" fill="rgb(222,35,5)" rx="2" ry="2" />
<text  x="28.44" y="655.5" ></text>
</g>
<g >
<title>_bt_search (1,000,000 samples, 0.08%)</title><rect x="490.5" y="421" width="0.9" height="15.0" fill="rgb(230,155,33)" rx="2" ry="2" />
<text  x="493.54" y="431.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (1,000,000 samples, 0.08%)</title><rect x="931.1" y="181" width="0.9" height="15.0" fill="rgb(209,104,14)" rx="2" ry="2" />
<text  x="934.11" y="191.5" ></text>
</g>
<g >
<title>create_scan_plan (8,000,000 samples, 0.62%)</title><rect x="25.4" y="597" width="7.3" height="15.0" fill="rgb(229,38,27)" rx="2" ry="2" />
<text  x="28.44" y="607.5" ></text>
</g>
<g >
<title>pgstat_hash_hash_key (1,000,000 samples, 0.08%)</title><rect x="1051.0" y="757" width="0.9" height="15.0" fill="rgb(212,144,12)" rx="2" ry="2" />
<text  x="1054.02" y="767.5" ></text>
</g>
<g >
<title>btendscan (1,000,000 samples, 0.08%)</title><rect x="927.5" y="277" width="0.9" height="15.0" fill="rgb(238,19,36)" rx="2" ry="2" />
<text  x="930.47" y="287.5" ></text>
</g>
<g >
<title>ResourceArrayEnlarge (1,000,000 samples, 0.08%)</title><rect x="300.7" y="469" width="0.9" height="15.0" fill="rgb(250,90,39)" rx="2" ry="2" />
<text  x="303.69" y="479.5" ></text>
</g>
<g >
<title>contain_mutable_functions (9,000,000 samples, 0.69%)</title><rect x="880.2" y="581" width="8.2" height="15.0" fill="rgb(249,3,16)" rx="2" ry="2" />
<text  x="883.24" y="591.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,000,000 samples, 0.38%)</title><rect x="1185.5" y="965" width="4.5" height="15.0" fill="rgb(205,76,6)" rx="2" ry="2" />
<text  x="1188.46" y="975.5" ></text>
</g>
<g >
<title>lappend (1,000,000 samples, 0.08%)</title><rect x="812.1" y="517" width="0.9" height="15.0" fill="rgb(228,191,6)" rx="2" ry="2" />
<text  x="815.11" y="527.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,000,000 samples, 0.23%)</title><rect x="369.7" y="309" width="2.7" height="15.0" fill="rgb(215,81,35)" rx="2" ry="2" />
<text  x="372.72" y="319.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="495.1" y="469" width="0.9" height="15.0" fill="rgb(251,136,40)" rx="2" ry="2" />
<text  x="498.08" y="479.5" ></text>
</g>
<g >
<title>RemoveLocalLock (1,000,000 samples, 0.08%)</title><rect x="546.0" y="469" width="0.9" height="15.0" fill="rgb(215,85,17)" rx="2" ry="2" />
<text  x="548.95" y="479.5" ></text>
</g>
<g >
<title>fix_expr_common (2,000,000 samples, 0.15%)</title><rect x="40.0" y="565" width="1.8" height="15.0" fill="rgb(237,81,26)" rx="2" ry="2" />
<text  x="42.98" y="575.5" ></text>
</g>
<g >
<title>btbeginscan (9,000,000 samples, 0.69%)</title><rect x="551.4" y="485" width="8.2" height="15.0" fill="rgb(231,91,39)" rx="2" ry="2" />
<text  x="554.40" y="495.5" ></text>
</g>
<g >
<title>LockRelease (4,000,000 samples, 0.31%)</title><rect x="520.5" y="485" width="3.6" height="15.0" fill="rgb(243,194,26)" rx="2" ry="2" />
<text  x="523.52" y="495.5" ></text>
</g>
<g >
<title>examine_simple_variable (1,000,000 samples, 0.08%)</title><rect x="715.8" y="261" width="0.9" height="15.0" fill="rgb(225,29,11)" rx="2" ry="2" />
<text  x="718.82" y="271.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (1,000,000 samples, 0.08%)</title><rect x="580.5" y="437" width="0.9" height="15.0" fill="rgb(253,51,40)" rx="2" ry="2" />
<text  x="583.47" y="447.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (1,000,000 samples, 0.08%)</title><rect x="694.0" y="309" width="0.9" height="15.0" fill="rgb(238,69,35)" rx="2" ry="2" />
<text  x="697.02" y="319.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="806.7" y="373" width="0.9" height="15.0" fill="rgb(216,5,54)" rx="2" ry="2" />
<text  x="809.66" y="383.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (2,000,000 samples, 0.15%)</title><rect x="476.9" y="453" width="1.8" height="15.0" fill="rgb(220,212,17)" rx="2" ry="2" />
<text  x="479.91" y="463.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (1,000,000 samples, 0.08%)</title><rect x="328.8" y="437" width="1.0" height="15.0" fill="rgb(235,168,40)" rx="2" ry="2" />
<text  x="331.85" y="447.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="495.1" y="565" width="0.9" height="15.0" fill="rgb(247,110,45)" rx="2" ry="2" />
<text  x="498.08" y="575.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="906.6" y="501" width="0.9" height="15.0" fill="rgb(222,160,49)" rx="2" ry="2" />
<text  x="909.58" y="511.5" ></text>
</g>
<g >
<title>systable_getnext (1,000,000 samples, 0.08%)</title><rect x="76.3" y="485" width="0.9" height="15.0" fill="rgb(234,142,18)" rx="2" ry="2" />
<text  x="79.31" y="495.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="53.6" y="277" width="0.9" height="15.0" fill="rgb(225,125,49)" rx="2" ry="2" />
<text  x="56.60" y="287.5" ></text>
</g>
<g >
<title>_bt_lockbuf (1,000,000 samples, 0.08%)</title><rect x="1001.1" y="181" width="0.9" height="15.0" fill="rgb(234,173,1)" rx="2" ry="2" />
<text  x="1004.05" y="191.5" ></text>
</g>
<g >
<title>relation_open (3,000,000 samples, 0.23%)</title><rect x="1041.0" y="437" width="2.7" height="15.0" fill="rgb(214,50,46)" rx="2" ry="2" />
<text  x="1044.02" y="447.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="100.8" y="469" width="0.9" height="15.0" fill="rgb(238,86,6)" rx="2" ry="2" />
<text  x="103.84" y="479.5" ></text>
</g>
<g >
<title>_cond_resched (1,000,000 samples, 0.08%)</title><rect x="174.4" y="357" width="0.9" height="15.0" fill="rgb(242,43,2)" rx="2" ry="2" />
<text  x="177.42" y="367.5" ></text>
</g>
<g >
<title>cost_qual_eval_walker (2,000,000 samples, 0.15%)</title><rect x="1023.8" y="517" width="1.8" height="15.0" fill="rgb(213,215,28)" rx="2" ry="2" />
<text  x="1026.76" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="851.2" y="421" width="0.9" height="15.0" fill="rgb(243,125,28)" rx="2" ry="2" />
<text  x="854.17" y="431.5" ></text>
</g>
<g >
<title>bms_next_member (2,000,000 samples, 0.15%)</title><rect x="865.7" y="565" width="1.8" height="15.0" fill="rgb(236,60,16)" rx="2" ry="2" />
<text  x="868.70" y="575.5" ></text>
</g>
<g >
<title>dostr (1,000,000 samples, 0.08%)</title><rect x="162.6" y="437" width="0.9" height="15.0" fill="rgb(223,11,37)" rx="2" ry="2" />
<text  x="165.61" y="447.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (1,000,000 samples, 0.08%)</title><rect x="150.8" y="341" width="0.9" height="15.0" fill="rgb(238,141,35)" rx="2" ry="2" />
<text  x="153.80" y="351.5" ></text>
</g>
<g >
<title>CleanUpLock (1,000,000 samples, 0.08%)</title><rect x="1047.4" y="757" width="0.9" height="15.0" fill="rgb(253,184,8)" rx="2" ry="2" />
<text  x="1050.38" y="767.5" ></text>
</g>
<g >
<title>subquery_planner (1,105,000,000 samples, 85.07%)</title><rect x="42.7" y="709" width="1003.8" height="15.0" fill="rgb(246,4,14)" rx="2" ry="2" />
<text  x="45.70" y="719.5" >subquery_planner</text>
</g>
<g >
<title>_bt_compare (4,000,000 samples, 0.31%)</title><rect x="532.3" y="437" width="3.7" height="15.0" fill="rgb(208,20,48)" rx="2" ry="2" />
<text  x="535.32" y="447.5" ></text>
</g>
<g >
<title>index_getnext_slot (12,000,000 samples, 0.92%)</title><rect x="929.3" y="293" width="10.9" height="15.0" fill="rgb(221,152,46)" rx="2" ry="2" />
<text  x="932.29" y="303.5" ></text>
</g>
<g >
<title>parseNodeString (13,000,000 samples, 1.00%)</title><rect x="80.9" y="453" width="11.8" height="15.0" fill="rgb(225,116,22)" rx="2" ry="2" />
<text  x="83.85" y="463.5" ></text>
</g>
<g >
<title>GetVictimBuffer (1,000,000 samples, 0.08%)</title><rect x="178.1" y="485" width="0.9" height="15.0" fill="rgb(240,35,19)" rx="2" ry="2" />
<text  x="181.05" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="800.3" y="389" width="0.9" height="15.0" fill="rgb(237,129,23)" rx="2" ry="2" />
<text  x="803.30" y="399.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (1,000,000 samples, 0.08%)</title><rect x="348.8" y="453" width="0.9" height="15.0" fill="rgb(253,52,51)" rx="2" ry="2" />
<text  x="351.83" y="463.5" ></text>
</g>
<g >
<title>lru_cache_add (3,000,000 samples, 0.23%)</title><rect x="1162.7" y="933" width="2.8" height="15.0" fill="rgb(222,166,14)" rx="2" ry="2" />
<text  x="1165.75" y="943.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (1,000,000 samples, 0.08%)</title><rect x="1023.8" y="453" width="0.9" height="15.0" fill="rgb(235,61,15)" rx="2" ry="2" />
<text  x="1026.76" y="463.5" ></text>
</g>
<g >
<title>_bt_checkpage (1,000,000 samples, 0.08%)</title><rect x="543.2" y="405" width="0.9" height="15.0" fill="rgb(237,83,35)" rx="2" ry="2" />
<text  x="546.23" y="415.5" ></text>
</g>
<g >
<title>hash_combine (1,000,000 samples, 0.08%)</title><rect x="1051.0" y="741" width="0.9" height="15.0" fill="rgb(206,137,23)" rx="2" ry="2" />
<text  x="1054.02" y="751.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (35,000,000 samples, 2.69%)</title><rect x="914.8" y="325" width="31.8" height="15.0" fill="rgb(226,79,42)" rx="2" ry="2" />
<text  x="917.76" y="335.5" >Se..</text>
</g>
<g >
<title>__alloc_file (6,000,000 samples, 0.46%)</title><rect x="1056.5" y="869" width="5.4" height="15.0" fill="rgb(241,16,11)" rx="2" ry="2" />
<text  x="1059.47" y="879.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,000,000 samples, 0.08%)</title><rect x="474.2" y="373" width="0.9" height="15.0" fill="rgb(231,208,16)" rx="2" ry="2" />
<text  x="477.19" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="1049.2" y="421" width="0.9" height="15.0" fill="rgb(240,206,17)" rx="2" ry="2" />
<text  x="1052.20" y="431.5" ></text>
</g>
<g >
<title>contain_mutable_functions_checker (3,000,000 samples, 0.23%)</title><rect x="882.1" y="533" width="2.7" height="15.0" fill="rgb(205,131,38)" rx="2" ry="2" />
<text  x="885.06" y="543.5" ></text>
</g>
<g >
<title>LWLockAcquire (1,000,000 samples, 0.08%)</title><rect x="444.2" y="341" width="0.9" height="15.0" fill="rgb(212,101,45)" rx="2" ry="2" />
<text  x="447.21" y="351.5" ></text>
</g>
<g >
<title>hash_search (2,000,000 samples, 0.15%)</title><rect x="280.7" y="485" width="1.8" height="15.0" fill="rgb(241,215,31)" rx="2" ry="2" />
<text  x="283.70" y="495.5" ></text>
</g>
<g >
<title>hash_search (1,000,000 samples, 0.08%)</title><rect x="1033.8" y="389" width="0.9" height="15.0" fill="rgb(252,78,43)" rx="2" ry="2" />
<text  x="1036.76" y="399.5" ></text>
</g>
<g >
<title>BufferAlloc (2,000,000 samples, 0.15%)</title><rect x="334.3" y="357" width="1.8" height="15.0" fill="rgb(244,114,11)" rx="2" ry="2" />
<text  x="337.30" y="367.5" ></text>
</g>
<g >
<title>BufferIsValid (1,000,000 samples, 0.08%)</title><rect x="381.5" y="325" width="0.9" height="15.0" fill="rgb(240,190,53)" rx="2" ry="2" />
<text  x="384.53" y="335.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (1,000,000 samples, 0.08%)</title><rect x="61.8" y="373" width="0.9" height="15.0" fill="rgb(211,180,30)" rx="2" ry="2" />
<text  x="64.78" y="383.5" ></text>
</g>
<g >
<title>_bt_compare (2,000,000 samples, 0.15%)</title><rect x="446.9" y="341" width="1.9" height="15.0" fill="rgb(226,174,22)" rx="2" ry="2" />
<text  x="449.94" y="351.5" ></text>
</g>
<g >
<title>hash_bytes (1,000,000 samples, 0.08%)</title><rect x="1000.1" y="69" width="1.0" height="15.0" fill="rgb(232,72,15)" rx="2" ry="2" />
<text  x="1003.15" y="79.5" ></text>
</g>
<g >
<title>fix_scan_expr_walker (1,000,000 samples, 0.08%)</title><rect x="36.3" y="533" width="1.0" height="15.0" fill="rgb(237,169,27)" rx="2" ry="2" />
<text  x="39.34" y="543.5" ></text>
</g>
<g >
<title>filp_close (2,000,000 samples, 0.15%)</title><rect x="169.9" y="389" width="1.8" height="15.0" fill="rgb(246,151,38)" rx="2" ry="2" />
<text  x="172.88" y="399.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (1,000,000 samples, 0.08%)</title><rect x="438.8" y="389" width="0.9" height="15.0" fill="rgb(233,28,41)" rx="2" ry="2" />
<text  x="441.76" y="399.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (1,000,000 samples, 0.08%)</title><rect x="347.9" y="469" width="0.9" height="15.0" fill="rgb(239,186,19)" rx="2" ry="2" />
<text  x="350.92" y="479.5" ></text>
</g>
<g >
<title>security_file_alloc (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="853" width="0.9" height="15.0" fill="rgb(214,148,50)" rx="2" ry="2" />
<text  x="1093.08" y="863.5" ></text>
</g>
<g >
<title>restriction_is_or_clause (1,000,000 samples, 0.08%)</title><rect x="853.9" y="549" width="0.9" height="15.0" fill="rgb(209,35,51)" rx="2" ry="2" />
<text  x="856.90" y="559.5" ></text>
</g>
<g >
<title>new_list (1,000,000 samples, 0.08%)</title><rect x="851.2" y="453" width="0.9" height="15.0" fill="rgb(205,100,2)" rx="2" ry="2" />
<text  x="854.17" y="463.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,000,000 samples, 0.15%)</title><rect x="597.7" y="533" width="1.8" height="15.0" fill="rgb(249,114,41)" rx="2" ry="2" />
<text  x="600.73" y="543.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (203,000,000 samples, 15.63%)</title><rect x="309.8" y="549" width="184.4" height="15.0" fill="rgb(212,46,6)" rx="2" ry="2" />
<text  x="312.77" y="559.5" >RelationIdGetRelation</text>
</g>
<g >
<title>cgroup_throttle_swaprate (1,000,000 samples, 0.08%)</title><rect x="1161.8" y="933" width="0.9" height="15.0" fill="rgb(244,176,7)" rx="2" ry="2" />
<text  x="1164.84" y="943.5" ></text>
</g>
<g >
<title>contain_volatile_functions_walker (1,000,000 samples, 0.08%)</title><rect x="1021.9" y="485" width="1.0" height="15.0" fill="rgb(252,41,36)" rx="2" ry="2" />
<text  x="1024.95" y="495.5" ></text>
</g>
<g >
<title>pull_varnos_walker (1,000,000 samples, 0.08%)</title><rect x="868.4" y="533" width="0.9" height="15.0" fill="rgb(217,91,6)" rx="2" ry="2" />
<text  x="871.43" y="543.5" ></text>
</g>
<g >
<title>ReadBuffer_common (2,000,000 samples, 0.15%)</title><rect x="933.8" y="149" width="1.9" height="15.0" fill="rgb(219,117,13)" rx="2" ry="2" />
<text  x="936.83" y="159.5" ></text>
</g>
<g >
<title>PageGetItemId (1,000,000 samples, 0.08%)</title><rect x="410.6" y="293" width="0.9" height="15.0" fill="rgb(233,23,10)" rx="2" ry="2" />
<text  x="413.60" y="303.5" ></text>
</g>
<g >
<title>index_getattr (1,000,000 samples, 0.08%)</title><rect x="146.3" y="453" width="0.9" height="15.0" fill="rgb(245,107,12)" rx="2" ry="2" />
<text  x="149.26" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,000,000 samples, 0.15%)</title><rect x="265.3" y="325" width="1.8" height="15.0" fill="rgb(228,60,28)" rx="2" ry="2" />
<text  x="268.26" y="335.5" ></text>
</g>
<g >
<title>path_openat (1,000,000 samples, 0.08%)</title><rect x="1090.1" y="901" width="0.9" height="15.0" fill="rgb(212,226,21)" rx="2" ry="2" />
<text  x="1093.08" y="911.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (1,000,000 samples, 0.08%)</title><rect x="1180.0" y="853" width="0.9" height="15.0" fill="rgb(254,88,30)" rx="2" ry="2" />
<text  x="1183.01" y="863.5" ></text>
</g>
<g >
<title>list_make1_impl (1,000,000 samples, 0.08%)</title><rect x="613.2" y="533" width="0.9" height="15.0" fill="rgb(253,143,4)" rx="2" ry="2" />
<text  x="616.17" y="543.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="474.2" y="277" width="0.9" height="15.0" fill="rgb(225,84,1)" rx="2" ry="2" />
<text  x="477.19" y="287.5" ></text>
</g>
<g >
<title>_bt_search (4,000,000 samples, 0.31%)</title><rect x="541.4" y="453" width="3.6" height="15.0" fill="rgb(212,62,3)" rx="2" ry="2" />
<text  x="544.41" y="463.5" ></text>
</g>
<g >
<title>_bt_checkkeys (1,000,000 samples, 0.08%)</title><rect x="146.3" y="469" width="0.9" height="15.0" fill="rgb(221,114,37)" rx="2" ry="2" />
<text  x="149.26" y="479.5" ></text>
</g>
<g >
<title>evaluate_function (18,000,000 samples, 1.39%)</title><rect x="951.1" y="357" width="16.3" height="15.0" fill="rgb(218,48,0)" rx="2" ry="2" />
<text  x="954.09" y="367.5" ></text>
</g>
<g >
<title>bms_int_members (3,000,000 samples, 0.23%)</title><rect x="841.2" y="485" width="2.7" height="15.0" fill="rgb(221,218,48)" rx="2" ry="2" />
<text  x="844.18" y="495.5" ></text>
</g>
<g >
<title>BufferAlloc (2,000,000 samples, 0.15%)</title><rect x="933.8" y="133" width="1.9" height="15.0" fill="rgb(243,89,20)" rx="2" ry="2" />
<text  x="936.83" y="143.5" ></text>
</g>
<g >
<title>standard_planner (1,124,000,000 samples, 86.53%)</title><rect x="25.4" y="725" width="1021.1" height="15.0" fill="rgb(246,1,27)" rx="2" ry="2" />
<text  x="28.44" y="735.5" >standard_planner</text>
</g>
<g >
<title>__srcu_read_unlock (1,000,000 samples, 0.08%)</title><rect x="1065.6" y="837" width="0.9" height="15.0" fill="rgb(245,3,37)" rx="2" ry="2" />
<text  x="1068.55" y="847.5" ></text>
</g>
<g >
<title>ReadBuffer (3,000,000 samples, 0.23%)</title><rect x="417.9" y="277" width="2.7" height="15.0" fill="rgb(247,65,4)" rx="2" ry="2" />
<text  x="420.87" y="287.5" ></text>
</g>
<g >
<title>make_restrictinfo (3,000,000 samples, 0.23%)</title><rect x="827.6" y="485" width="2.7" height="15.0" fill="rgb(234,53,19)" rx="2" ry="2" />
<text  x="830.55" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,000,000 samples, 0.31%)</title><rect x="315.2" y="437" width="3.7" height="15.0" fill="rgb(235,53,24)" rx="2" ry="2" />
<text  x="318.22" y="447.5" ></text>
</g>
<g >
<title>ReadBuffer (1,000,000 samples, 0.08%)</title><rect x="527.8" y="437" width="0.9" height="15.0" fill="rgb(219,170,2)" rx="2" ry="2" />
<text  x="530.78" y="447.5" ></text>
</g>
<g >
<title>pfree (1,000,000 samples, 0.08%)</title><rect x="928.4" y="245" width="0.9" height="15.0" fill="rgb(244,85,36)" rx="2" ry="2" />
<text  x="931.38" y="255.5" ></text>
</g>
<g >
<title>parseNodeString (5,000,000 samples, 0.38%)</title><rect x="82.7" y="341" width="4.5" height="15.0" fill="rgb(252,81,6)" rx="2" ry="2" />
<text  x="85.67" y="351.5" ></text>
</g>
<g >
<title>bms_copy (2,000,000 samples, 0.15%)</title><rect x="783.0" y="421" width="1.9" height="15.0" fill="rgb(239,146,7)" rx="2" ry="2" />
<text  x="786.04" y="431.5" ></text>
</g>
<g >
<title>SearchSysCache1 (1,000,000 samples, 0.08%)</title><rect x="1023.8" y="485" width="0.9" height="15.0" fill="rgb(240,36,46)" rx="2" ry="2" />
<text  x="1026.76" y="495.5" ></text>
</g>
<g >
<title>LockRelationOid (2,000,000 samples, 0.15%)</title><rect x="22.7" y="661" width="1.8" height="15.0" fill="rgb(230,119,19)" rx="2" ry="2" />
<text  x="25.72" y="671.5" ></text>
</g>
<g >
<title>index_getnext_slot (12,000,000 samples, 0.92%)</title><rect x="444.2" y="421" width="10.9" height="15.0" fill="rgb(237,104,3)" rx="2" ry="2" />
<text  x="447.21" y="431.5" ></text>
</g>
<g >
<title>ReadBuffer (1,000,000 samples, 0.08%)</title><rect x="1039.2" y="325" width="0.9" height="15.0" fill="rgb(242,123,19)" rx="2" ry="2" />
<text  x="1042.21" y="335.5" ></text>
</g>
<g >
<title>palloc (1,000,000 samples, 0.08%)</title><rect x="837.5" y="485" width="1.0" height="15.0" fill="rgb(254,62,25)" rx="2" ry="2" />
<text  x="840.54" y="495.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (1,000,000 samples, 0.08%)</title><rect x="13.6" y="869" width="0.9" height="15.0" fill="rgb(246,15,50)" rx="2" ry="2" />
<text  x="16.63" y="879.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (6,000,000 samples, 0.46%)</title><rect x="36.3" y="597" width="5.5" height="15.0" fill="rgb(208,0,18)" rx="2" ry="2" />
<text  x="39.34" y="607.5" ></text>
</g>
<g >
<title>contain_volatile_functions (1,000,000 samples, 0.08%)</title><rect x="807.6" y="405" width="0.9" height="15.0" fill="rgb(216,35,47)" rx="2" ry="2" />
<text  x="810.57" y="415.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (37,000,000 samples, 2.85%)</title><rect x="430.6" y="469" width="33.6" height="15.0" fill="rgb(231,201,11)" rx="2" ry="2" />
<text  x="433.59" y="479.5" >Se..</text>
</g>
<g >
<title>RelationHasSysCache (1,000,000 samples, 0.08%)</title><rect x="549.6" y="501" width="0.9" height="15.0" fill="rgb(213,156,45)" rx="2" ry="2" />
<text  x="552.58" y="511.5" ></text>
</g>
<g >
<title>bms_make_singleton (1,000,000 samples, 0.08%)</title><rect x="717.6" y="197" width="0.9" height="15.0" fill="rgb(212,172,35)" rx="2" ry="2" />
<text  x="720.64" y="207.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="495.1" y="437" width="0.9" height="15.0" fill="rgb(228,172,4)" rx="2" ry="2" />
<text  x="498.08" y="447.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (1,000,000 samples, 0.08%)</title><rect x="149.0" y="357" width="0.9" height="15.0" fill="rgb(252,69,10)" rx="2" ry="2" />
<text  x="151.98" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,000,000 samples, 0.38%)</title><rect x="314.3" y="453" width="4.6" height="15.0" fill="rgb(229,65,24)" rx="2" ry="2" />
<text  x="317.31" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,000,000 samples, 0.08%)</title><rect x="26.4" y="437" width="0.9" height="15.0" fill="rgb(224,127,27)" rx="2" ry="2" />
<text  x="29.35" y="447.5" ></text>
</g>
<g >
<title>compute_function_hashkey (2,000,000 samples, 0.15%)</title><rect x="953.8" y="245" width="1.8" height="15.0" fill="rgb(215,185,18)" rx="2" ry="2" />
<text  x="956.82" y="255.5" ></text>
</g>
<g >
<title>xas_load (1,000,000 samples, 0.08%)</title><rect x="142.6" y="373" width="0.9" height="15.0" fill="rgb(244,218,31)" rx="2" ry="2" />
<text  x="145.63" y="383.5" ></text>
</g>
<g >
<title>btcostestimate (11,000,000 samples, 0.85%)</title><rect x="688.6" y="437" width="10.0" height="15.0" fill="rgb(245,125,16)" rx="2" ry="2" />
<text  x="691.57" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,000,000 samples, 0.31%)</title><rect x="554.1" y="373" width="3.7" height="15.0" fill="rgb(217,81,23)" rx="2" ry="2" />
<text  x="557.13" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,000,000 samples, 0.08%)</title><rect x="148.1" y="325" width="0.9" height="15.0" fill="rgb(223,43,11)" rx="2" ry="2" />
<text  x="151.08" y="335.5" ></text>
</g>
<g >
<title>psprintf (4,000,000 samples, 0.31%)</title><rect x="162.6" y="501" width="3.6" height="15.0" fill="rgb(237,57,0)" rx="2" ry="2" />
<text  x="165.61" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="158.1" y="437" width="0.9" height="15.0" fill="rgb(211,85,44)" rx="2" ry="2" />
<text  x="161.07" y="447.5" ></text>
</g>
<g >
<title>ReadBuffer (2,000,000 samples, 0.15%)</title><rect x="416.1" y="277" width="1.8" height="15.0" fill="rgb(253,174,41)" rx="2" ry="2" />
<text  x="419.05" y="287.5" ></text>
</g>
<g >
<title>kernel_init_free_pages (2,000,000 samples, 0.15%)</title><rect x="664.9" y="229" width="1.9" height="15.0" fill="rgb(239,178,36)" rx="2" ry="2" />
<text  x="667.95" y="239.5" ></text>
</g>
<g >
<title>adjust_appendrel_attrs_mutator (4,000,000 samples, 0.31%)</title><rect x="98.1" y="565" width="3.6" height="15.0" fill="rgb(216,215,51)" rx="2" ry="2" />
<text  x="101.11" y="575.5" ></text>
</g>
<g >
<title>systable_getnext (10,000,000 samples, 0.77%)</title><rect x="482.4" y="501" width="9.0" height="15.0" fill="rgb(209,219,28)" rx="2" ry="2" />
<text  x="485.36" y="511.5" ></text>
</g>
<g >
<title>SearchCatCache3 (1,000,000 samples, 0.08%)</title><rect x="715.8" y="229" width="0.9" height="15.0" fill="rgb(218,182,48)" rx="2" ry="2" />
<text  x="718.82" y="239.5" ></text>
</g>
<g >
<title>bms_next_member (1,000,000 samples, 0.08%)</title><rect x="818.5" y="485" width="0.9" height="15.0" fill="rgb(226,220,35)" rx="2" ry="2" />
<text  x="821.47" y="495.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (1,000,000 samples, 0.08%)</title><rect x="527.8" y="453" width="0.9" height="15.0" fill="rgb(228,11,41)" rx="2" ry="2" />
<text  x="530.78" y="463.5" ></text>
</g>
<g >
<title>smgrnblocks_cached (1,000,000 samples, 0.08%)</title><rect x="269.8" y="453" width="0.9" height="15.0" fill="rgb(216,198,7)" rx="2" ry="2" />
<text  x="272.80" y="463.5" ></text>
</g>
<g >
<title>table_relation_estimate_size (15,000,000 samples, 1.15%)</title><rect x="257.1" y="565" width="13.6" height="15.0" fill="rgb(242,62,12)" rx="2" ry="2" />
<text  x="260.08" y="575.5" ></text>
</g>
<g >
<title>add_eq_member (9,000,000 samples, 0.69%)</title><rect x="861.2" y="581" width="8.1" height="15.0" fill="rgb(216,192,49)" rx="2" ry="2" />
<text  x="864.16" y="591.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1,000,000 samples, 0.08%)</title><rect x="150.8" y="389" width="0.9" height="15.0" fill="rgb(232,47,32)" rx="2" ry="2" />
<text  x="153.80" y="399.5" ></text>
</g>
<g >
<title>bms_copy (1,000,000 samples, 0.08%)</title><rect x="832.1" y="469" width="0.9" height="15.0" fill="rgb(246,36,10)" rx="2" ry="2" />
<text  x="835.09" y="479.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (1,000,000 samples, 0.08%)</title><rect x="692.2" y="277" width="0.9" height="15.0" fill="rgb(212,53,31)" rx="2" ry="2" />
<text  x="695.20" y="287.5" ></text>
</g>
<g >
<title>find_indexpath_quals (1,000,000 samples, 0.08%)</title><rect x="610.4" y="517" width="1.0" height="15.0" fill="rgb(212,64,19)" rx="2" ry="2" />
<text  x="613.45" y="527.5" ></text>
</g>
<g >
<title>btendscan (1,000,000 samples, 0.08%)</title><rect x="573.2" y="501" width="0.9" height="15.0" fill="rgb(251,181,34)" rx="2" ry="2" />
<text  x="576.20" y="511.5" ></text>
</g>
<g >
<title>alloc_pages_vma (1,000,000 samples, 0.08%)</title><rect x="800.3" y="357" width="0.9" height="15.0" fill="rgb(226,57,12)" rx="2" ry="2" />
<text  x="803.30" y="367.5" ></text>
</g>
<g >
<title>index_open (2,000,000 samples, 0.15%)</title><rect x="992.0" y="293" width="1.8" height="15.0" fill="rgb(246,197,39)" rx="2" ry="2" />
<text  x="994.97" y="303.5" ></text>
</g>
<g >
<title>LockRelease (3,000,000 samples, 0.23%)</title><rect x="570.5" y="485" width="2.7" height="15.0" fill="rgb(235,98,35)" rx="2" ry="2" />
<text  x="573.48" y="495.5" ></text>
</g>
<g >
<title>btrescan (1,000,000 samples, 0.08%)</title><rect x="973.8" y="293" width="0.9" height="15.0" fill="rgb(245,37,26)" rx="2" ry="2" />
<text  x="976.80" y="303.5" ></text>
</g>
<g >
<title>alloc_pages_vma (4,000,000 samples, 0.31%)</title><rect x="363.4" y="325" width="3.6" height="15.0" fill="rgb(212,50,14)" rx="2" ry="2" />
<text  x="366.36" y="335.5" ></text>
</g>
<g >
<title>GetRelationPath (4,000,000 samples, 0.31%)</title><rect x="162.6" y="517" width="3.6" height="15.0" fill="rgb(234,140,39)" rx="2" ry="2" />
<text  x="165.61" y="527.5" ></text>
</g>
<g >
<title>tag_hash (1,000,000 samples, 0.08%)</title><rect x="546.0" y="437" width="0.9" height="15.0" fill="rgb(242,139,1)" rx="2" ry="2" />
<text  x="548.95" y="447.5" ></text>
</g>
<g >
<title>table_open (7,000,000 samples, 0.54%)</title><rect x="151.7" y="565" width="6.4" height="15.0" fill="rgb(233,149,39)" rx="2" ry="2" />
<text  x="154.71" y="575.5" ></text>
</g>
<g >
<title>_bt_getroot (1,000,000 samples, 0.08%)</title><rect x="288.9" y="453" width="0.9" height="15.0" fill="rgb(234,12,16)" rx="2" ry="2" />
<text  x="291.88" y="463.5" ></text>
</g>
<g >
<title>clear_page_orig (1,000,000 samples, 0.08%)</title><rect x="701.3" y="197" width="0.9" height="15.0" fill="rgb(230,100,6)" rx="2" ry="2" />
<text  x="704.29" y="207.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,000,000 samples, 0.08%)</title><rect x="131.7" y="469" width="0.9" height="15.0" fill="rgb(248,215,20)" rx="2" ry="2" />
<text  x="134.72" y="479.5" ></text>
</g>
</g>
</svg>