patched.svg

image/svg+xml

Filename: patched.svg
Type: image/svg+xml
Part: 5
Message: Re: Make COPY format extendable: Extract COPY TO format implementations
<?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="630" onload="init(evt)" viewBox="0 0 1200 630" 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="630.0" fill="url(#background)"  />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="613" > </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="613" > </text>
<g id="frames">
<g >
<title>BufferDescriptorGetBuffer (3,000,000 samples, 0.02%)</title><rect x="1178.5" y="181" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1181.48" y="191.5" ></text>
</g>
<g >
<title>GetBufferFromRing (3,500,000 samples, 0.02%)</title><rect x="1186.4" y="85" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1189.39" y="95.5" ></text>
</g>
<g >
<title>IOContextForStrategy (1,250,000 samples, 0.01%)</title><rect x="1188.5" y="133" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1191.45" y="143.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,000,000 samples, 0.02%)</title><rect x="1188.1" y="85" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1191.05" y="95.5" ></text>
</g>
<g >
<title>ItemPointerSet (7,000,000 samples, 0.05%)</title><rect x="1175.9" y="229" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1178.95" y="239.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (2,000,000 samples, 0.01%)</title><rect x="1170.1" y="165" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="1173.10" y="175.5" ></text>
</g>
<g >
<title>Int32GetDatum (99,500,000 samples, 0.68%)</title><rect x="1152.0" y="181" width="8.0" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1155.01" y="191.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,250,000 samples, 0.02%)</title><rect x="1188.8" y="213" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1191.80" y="223.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (15,750,000 samples, 0.11%)</title><rect x="1182.6" y="101" width="1.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1185.55" y="111.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (1,500,000 samples, 0.01%)</title><rect x="1185.8" y="37" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1188.82" y="47.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (2,750,000 samples, 0.02%)</title><rect x="1187.0" y="85" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1190.01" y="95.5" ></text>
</g>
<g >
<title>CopyToTextLikeSendEndOfRow (166,500,000 samples, 1.13%)</title><rect x="427.6" y="229" width="13.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="430.57" y="239.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (304,250,000 samples, 2.07%)</title><rect x="623.7" y="149" width="24.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="626.66" y="159.5" >M..</text>
</g>
<g >
<title>exec_simple_query (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="389" width="1180.0" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="13.00" y="399.5" >exec_simple_query</text>
</g>
<g >
<title>GetVictimBuffer (35,750,000 samples, 0.24%)</title><rect x="1183.8" y="117" width="2.9" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text  x="1186.82" y="127.5" ></text>
</g>
<g >
<title>ReleaseBuffer (6,250,000 samples, 0.04%)</title><rect x="1170.5" y="213" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1173.46" y="223.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBufferIO (1,500,000 samples, 0.01%)</title><rect x="1179.7" y="165" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1182.74" y="175.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (2,000,000 samples, 0.01%)</title><rect x="1186.0" y="69" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1188.98" y="79.5" ></text>
</g>
<g >
<title>read_stream_start_pending_read (84,750,000 samples, 0.58%)</title><rect x="1181.8" y="197" width="6.8" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1184.79" y="207.5" ></text>
</g>
<g >
<title>LockBufHdr (1,500,000 samples, 0.01%)</title><rect x="1179.6" y="165" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1182.62" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_write (81,750,000 samples, 0.56%)</title><rect x="31.4" y="165" width="6.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="34.38" y="175.5" ></text>
</g>
<g >
<title>CopyOneRowTo (12,865,750,000 samples, 87.56%)</title><rect x="11.0" y="277" width="1033.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="13.96" y="287.5" >CopyOneRowTo</text>
</g>
<g >
<title>pg_ltoa (2,110,750,000 samples, 14.37%)</title><rect x="699.3" y="181" width="169.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="702.33" y="191.5" >pg_ltoa</text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (1,750,000 samples, 0.01%)</title><rect x="1186.5" y="37" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1189.53" y="47.5" ></text>
</g>
<g >
<title>BufferAlloc (80,500,000 samples, 0.55%)</title><rect x="1182.0" y="133" width="6.5" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1184.99" y="143.5" ></text>
</g>
<g >
<title>WaitReadBuffers (24,500,000 samples, 0.17%)</title><rect x="1179.2" y="197" width="2.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1182.20" y="207.5" ></text>
</g>
<g >
<title>read_stream_look_ahead (7,750,000 samples, 0.05%)</title><rect x="1181.2" y="197" width="0.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1184.17" y="207.5" ></text>
</g>
<g >
<title>heap_scan_stream_read_next_serial (4,500,000 samples, 0.03%)</title><rect x="1181.4" y="165" width="0.4" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text  x="1184.43" y="175.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (3,750,000 samples, 0.03%)</title><rect x="1182.2" y="101" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1185.21" y="111.5" ></text>
</g>
<g >
<title>LockBufHdr (3,250,000 samples, 0.02%)</title><rect x="1186.4" y="69" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1189.41" y="79.5" ></text>
</g>
<g >
<title>DoCopy (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="309" width="1180.0" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="13.00" y="319.5" >DoCopy</text>
</g>
<g >
<title>BufTableLookup (16,250,000 samples, 0.11%)</title><rect x="1182.5" y="117" width="1.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="1185.51" y="127.5" ></text>
</g>
<g >
<title>int4out (4,648,750,000 samples, 31.64%)</title><rect x="495.5" y="197" width="373.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="498.51" y="207.5" >int4out</text>
</g>
<g >
<title>LockBufHdr (4,000,000 samples, 0.03%)</title><rect x="1187.5" y="117" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1190.49" y="127.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (3,500,000 samples, 0.02%)</title><rect x="1187.5" y="101" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1190.53" y="111.5" ></text>
</g>
<g >
<title>decimalLength32 (418,500,000 samples, 2.85%)</title><rect x="835.2" y="133" width="33.6" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="838.24" y="143.5" >de..</text>
</g>
<g >
<title>LWLockAttemptLock (5,750,000 samples, 0.04%)</title><rect x="1186.8" y="101" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1189.77" y="111.5" ></text>
</g>
<g >
<title>fwrite@plt (1,500,000 samples, 0.01%)</title><rect x="42.0" y="245" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="44.98" y="255.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (7,000,000 samples, 0.05%)</title><rect x="1169.8" y="181" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1172.80" y="191.5" ></text>
</g>
<g >
<title>BufferGetBlock (2,500,000 samples, 0.02%)</title><rect x="1175.7" y="213" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1178.75" y="223.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (1,250,000 samples, 0.01%)</title><rect x="1170.4" y="197" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1173.36" y="207.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (416,500,000 samples, 2.83%)</title><rect x="935.9" y="213" width="33.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="938.90" y="223.5" >__..</text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1,750,000 samples, 0.01%)</title><rect x="30.8" y="197" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="33.82" y="207.5" ></text>
</g>
<g >
<title>BufferGetPage (2,500,000 samples, 0.02%)</title><rect x="1175.7" y="229" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1178.75" y="239.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (2,500,000 samples, 0.02%)</title><rect x="1176.7" y="181" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1179.67" y="191.5" ></text>
</g>
<g >
<title>hash_search (1,250,000 samples, 0.01%)</title><rect x="1188.0" y="85" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1190.95" y="95.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (1,364,500,000 samples, 9.29%)</title><rect x="1050.4" y="229" width="109.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1053.42" y="239.5" >tts_buffer_he..</text>
</g>
<g >
<title>PostgresMain (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="405" width="1180.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="13.00" y="415.5" >PostgresMain</text>
</g>
<g >
<title>__mempcpy_avx_unaligned_erms (3,000,000 samples, 0.02%)</title><rect x="41.7" y="213" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="44.74" y="223.5" ></text>
</g>
<g >
<title>AllocSetReset (179,500,000 samples, 1.22%)</title><rect x="1026.3" y="213" width="14.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1029.33" y="223.5" ></text>
</g>
<g >
<title>CopySendChar (78,750,000 samples, 0.54%)</title><rect x="434.6" y="213" width="6.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="437.61" y="223.5" ></text>
</g>
<g >
<title>hash_bytes (1,500,000 samples, 0.01%)</title><rect x="1188.3" y="117" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1191.33" y="127.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (1,750,000 samples, 0.01%)</title><rect x="1186.5" y="53" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1189.53" y="63.5" ></text>
</g>
<g >
<title>heapgettup_pagemode (231,000,000 samples, 1.57%)</title><rect x="1171.4" y="245" width="18.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1174.45" y="255.5" ></text>
</g>
<g >
<title>CopySendChar (1,694,000,000 samples, 11.53%)</title><rect x="291.5" y="229" width="136.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="294.52" y="239.5" >CopySendChar</text>
</g>
<g >
<title>_IO_file_overflow@@GLIBC_2.2.5 (4,000,000 samples, 0.03%)</title><rect x="37.9" y="213" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="40.95" y="223.5" ></text>
</g>
<g >
<title>CopyAttributeOutText (1,506,500,000 samples, 10.25%)</title><rect x="170.5" y="229" width="121.0" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="173.54" y="239.5" >CopyAttributeOu..</text>
</g>
<g >
<title>FileReadV (8,250,000 samples, 0.06%)</title><rect x="1180.4" y="165" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1183.44" y="175.5" ></text>
</g>
<g >
<title>new_do_write (86,750,000 samples, 0.59%)</title><rect x="31.0" y="197" width="6.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="33.98" y="207.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (191,000,000 samples, 1.30%)</title><rect x="1025.7" y="245" width="15.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1028.67" y="255.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (2,000,000 samples, 0.01%)</title><rect x="1185.6" y="37" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1188.60" y="47.5" ></text>
</g>
<g >
<title>WaitReadBuffersCanStartIO (5,750,000 samples, 0.04%)</title><rect x="1179.9" y="165" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="1182.88" y="175.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (2,500,000 samples, 0.02%)</title><rect x="1179.9" y="117" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1182.92" y="127.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="325" width="1180.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="13.00" y="335.5" >standard_ProcessUtility</text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (2,500,000 samples, 0.02%)</title><rect x="1187.3" y="69" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1190.29" y="79.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (2,000,000 samples, 0.01%)</title><rect x="1185.6" y="53" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1188.60" y="63.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (2,000,000 samples, 0.01%)</title><rect x="1178.8" y="197" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1181.80" y="207.5" ></text>
</g>
<g >
<title>pgstat_progress_update_param (47,000,000 samples, 0.32%)</title><rect x="42.1" y="245" width="3.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="45.10" y="255.5" ></text>
</g>
<g >
<title>pg_preadv (8,000,000 samples, 0.05%)</title><rect x="1180.5" y="149" width="0.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1183.46" y="159.5" ></text>
</g>
<g >
<title>PageIsVerifiedExtended (1,250,000 samples, 0.01%)</title><rect x="1179.5" y="181" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="1182.48" y="191.5" ></text>
</g>
<g >
<title>read_stream_next_buffer (120,000,000 samples, 0.82%)</title><rect x="1179.0" y="213" width="9.6" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1181.96" y="223.5" ></text>
</g>
<g >
<title>PageGetItem (13,000,000 samples, 0.09%)</title><rect x="1176.9" y="229" width="1.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1179.93" y="239.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (2,250,000 samples, 0.02%)</title><rect x="1180.1" y="133" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1183.12" y="143.5" ></text>
</g>
<g >
<title>ServerLoop (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="469" width="1180.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="13.00" y="479.5" >ServerLoop</text>
</g>
<g >
<title>__libc_start_main@@GLIBC_2.34 (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="533" width="1180.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="13.00" y="543.5" >__libc_start_main@@GLIBC_2.34</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (1,750,000 samples, 0.01%)</title><rect x="1171.3" y="197" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1174.31" y="207.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (83,250,000 samples, 0.57%)</title><rect x="1181.9" y="165" width="6.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1184.87" y="175.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (4,500,000 samples, 0.03%)</title><rect x="30.6" y="213" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="33.60" y="223.5" ></text>
</g>
<g >
<title>palloc (378,250,000 samples, 2.57%)</title><rect x="669.0" y="181" width="30.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="671.96" y="191.5" >pa..</text>
</g>
<g >
<title>slot_getallattrs (1,402,500,000 samples, 9.55%)</title><rect x="1047.4" y="277" width="112.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1050.37" y="287.5" >slot_getallat..</text>
</g>
<g >
<title>LWLockRelease (3,250,000 samples, 0.02%)</title><rect x="1187.2" y="117" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1190.23" y="127.5" ></text>
</g>
<g >
<title>TerminateBufferIO (3,750,000 samples, 0.03%)</title><rect x="1179.6" y="181" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1182.58" y="191.5" ></text>
</g>
<g >
<title>table_scan_getnextslot (373,500,000 samples, 2.54%)</title><rect x="1160.0" y="277" width="30.0" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1163.00" y="287.5" >ta..</text>
</g>
<g >
<title>fetch_att (544,000,000 samples, 3.70%)</title><rect x="1116.3" y="197" width="43.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1119.32" y="207.5" >fetc..</text>
</g>
<g >
<title>DatumGetInt32 (123,750,000 samples, 0.84%)</title><rect x="659.0" y="181" width="10.0" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="662.02" y="191.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (6,000,000 samples, 0.04%)</title><rect x="1170.5" y="165" width="0.5" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1173.48" y="175.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (13,500,000 samples, 0.09%)</title><rect x="1184.2" y="69" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1187.24" y="79.5" ></text>
</g>
<g >
<title>main (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="501" width="1180.0" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="13.00" y="511.5" >main</text>
</g>
<g >
<title>BackendMain (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="421" width="1180.0" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="13.00" y="431.5" >BackendMain</text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (424,250,000 samples, 2.89%)</title><rect x="614.0" y="165" width="34.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="617.02" y="175.5" >Al..</text>
</g>
<g >
<title>pgstat_progress_update_param (39,250,000 samples, 0.27%)</title><rect x="1044.2" y="277" width="3.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1047.22" y="287.5" ></text>
</g>
<g >
<title>BackendStartup (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="453" width="1180.0" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="13.00" y="463.5" >BackendStartup</text>
</g>
<g >
<title>PortalRunMulti (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="357" width="1180.0" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="13.00" y="367.5" >PortalRunMulti</text>
</g>
<g >
<title>heap_page_prune_opt (2,500,000 samples, 0.02%)</title><rect x="1189.0" y="213" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1191.98" y="223.5" ></text>
</g>
<g >
<title>__memcmp_avx2_movbe (1,250,000 samples, 0.01%)</title><rect x="1185.1" y="53" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="1188.14" y="63.5" ></text>
</g>
<g >
<title>LWLockAcquire (6,750,000 samples, 0.05%)</title><rect x="1186.7" y="117" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1189.69" y="127.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (5,500,000 samples, 0.04%)</title><rect x="1171.0" y="213" width="0.4" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1174.01" y="223.5" ></text>
</g>
<g >
<title>resetStringInfo (4,500,000 samples, 0.03%)</title><rect x="1041.2" y="261" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1044.25" y="271.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (1,500,000 samples, 0.01%)</title><rect x="1185.8" y="53" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1188.82" y="63.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (191,000,000 samples, 1.30%)</title><rect x="1025.7" y="229" width="15.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1028.67" y="239.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (2,000,000 samples, 0.01%)</title><rect x="1186.0" y="53" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1188.98" y="63.5" ></text>
</g>
<g >
<title>LockBufHdr (2,500,000 samples, 0.02%)</title><rect x="1185.9" y="85" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1188.94" y="95.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (1,342,000,000 samples, 9.13%)</title><rect x="1052.2" y="213" width="107.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="1055.23" y="223.5" >slot_deform_h..</text>
</g>
<g >
<title>LWLockAttemptLock (1,250,000 samples, 0.01%)</title><rect x="1188.9" y="197" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1191.88" y="207.5" ></text>
</g>
<g >
<title>CopyToTextLikeOneRow (12,142,000,000 samples, 82.64%)</title><rect x="47.7" y="245" width="975.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="50.73" y="255.5" >CopyToTextLikeOneRow</text>
</g>
<g >
<title>ResourceOwnerForget (1,500,000 samples, 0.01%)</title><rect x="1179.7" y="149" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1182.74" y="159.5" ></text>
</g>
<g >
<title>_start (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="549" width="1180.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="13.00" y="559.5" >_start</text>
</g>
<g >
<title>PinBufferForBlock (82,250,000 samples, 0.56%)</title><rect x="1181.9" y="149" width="6.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1184.95" y="159.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (2,750,000 samples, 0.02%)</title><rect x="1171.1" y="197" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1174.09" y="207.5" ></text>
</g>
<g >
<title>heap_getnextslot (360,000,000 samples, 2.45%)</title><rect x="1161.1" y="261" width="28.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1164.09" y="271.5" >he..</text>
</g>
<g >
<title>LWLockRelease (2,250,000 samples, 0.02%)</title><rect x="1185.8" y="85" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1188.76" y="95.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (2,500,000 samples, 0.02%)</title><rect x="1187.3" y="101" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1190.29" y="111.5" ></text>
</g>
<g >
<title>ResourceOwnerAddToHash (1,750,000 samples, 0.01%)</title><rect x="1180.2" y="117" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1183.16" y="127.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (3,000,000 samples, 0.02%)</title><rect x="1041.0" y="261" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1044.01" y="271.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (6,000,000 samples, 0.04%)</title><rect x="1170.5" y="181" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1173.48" y="191.5" ></text>
</g>
<g >
<title>OutputFunctionCall (5,328,250,000 samples, 36.26%)</title><rect x="440.9" y="229" width="427.9" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="443.94" y="239.5" >OutputFunctionCall</text>
</g>
<g >
<title>slot_getsomeattrs (1,396,000,000 samples, 9.50%)</title><rect x="1047.9" y="261" width="112.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1050.89" y="271.5" >slot_getsomea..</text>
</g>
<g >
<title>UnpinBufferNoOwner (2,250,000 samples, 0.02%)</title><rect x="1178.8" y="213" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1181.78" y="223.5" ></text>
</g>
<g >
<title>CopyToTextOneRow (12,165,000,000 samples, 82.79%)</title><rect x="45.9" y="261" width="976.9" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="48.88" y="271.5" >CopyToTextOneRow</text>
</g>
<g >
<title>get_hash_entry (2,250,000 samples, 0.02%)</title><rect x="1182.3" y="85" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1185.29" y="95.5" ></text>
</g>
<g >
<title>heapgettup_advance_block (2,500,000 samples, 0.02%)</title><rect x="1181.6" y="149" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1184.59" y="159.5" ></text>
</g>
<g >
<title>UnpinBuffer (3,750,000 samples, 0.03%)</title><rect x="1178.5" y="197" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1181.48" y="207.5" ></text>
</g>
<g >
<title>IncrBufferRefCount (14,250,000 samples, 0.10%)</title><rect x="1169.3" y="213" width="1.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1172.32" y="223.5" ></text>
</g>
<g >
<title>__libc_pread (4,000,000 samples, 0.03%)</title><rect x="1180.5" y="133" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="1183.50" y="143.5" ></text>
</g>
<g >
<title>InvalidateVictimBuffer (27,500,000 samples, 0.19%)</title><rect x="1184.1" y="101" width="2.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1187.06" y="111.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (3,250,000 samples, 0.02%)</title><rect x="1040.7" y="213" width="0.3" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1043.75" y="223.5" ></text>
</g>
<g >
<title>ss_report_location (2,000,000 samples, 0.01%)</title><rect x="1181.6" y="133" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1184.63" y="143.5" ></text>
</g>
<g >
<title>ReleaseBuffer (4,000,000 samples, 0.03%)</title><rect x="1178.5" y="213" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1181.46" y="223.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (77,250,000 samples, 0.53%)</title><rect x="1165.2" y="245" width="6.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1168.24" y="255.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (2,750,000 samples, 0.02%)</title><rect x="1187.0" y="69" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1190.01" y="79.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (1,500,000 samples, 0.01%)</title><rect x="1185.8" y="69" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1188.82" y="79.5" ></text>
</g>
<g >
<title>page_collect_tuples (10,250,000 samples, 0.07%)</title><rect x="1189.2" y="213" width="0.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1192.18" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (2,500,000 samples, 0.02%)</title><rect x="1179.9" y="101" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1182.92" y="111.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (2,500,000 samples, 0.02%)</title><rect x="1176.7" y="197" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1179.67" y="207.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (2,500,000 samples, 0.02%)</title><rect x="1187.3" y="85" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1190.29" y="95.5" ></text>
</g>
<g >
<title>BufTableInsert (4,500,000 samples, 0.03%)</title><rect x="1182.1" y="117" width="0.4" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1185.15" y="127.5" ></text>
</g>
<g >
<title>postgres (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="565" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="13.00" y="575.5" >postgres</text>
</g>
<g >
<title>heap_fetch_next_buffer (131,250,000 samples, 0.89%)</title><rect x="1178.1" y="229" width="10.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1181.05" y="239.5" ></text>
</g>
<g >
<title>enlargeStringInfo (666,000,000 samples, 4.53%)</title><rect x="969.4" y="213" width="53.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="972.35" y="223.5" >enlar..</text>
</g>
<g >
<title>CopyToStateFlush (417,750,000 samples, 2.84%)</title><rect x="12.3" y="261" width="33.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="15.33" y="271.5" >Co..</text>
</g>
<g >
<title>PortalRun (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="373" width="1180.0" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="13.00" y="383.5" >PortalRun</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (1,750,000 samples, 0.01%)</title><rect x="1171.3" y="181" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1174.31" y="191.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (12,250,000 samples, 0.08%)</title><rect x="1169.4" y="197" width="1.0" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1172.38" y="207.5" ></text>
</g>
<g >
<title>all (14,693,250,000 samples, 100%)</title><rect x="10.0" y="581" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="13.00" y="591.5" ></text>
</g>
<g >
<title>LWLockAcquire (5,500,000 samples, 0.04%)</title><rect x="1185.3" y="85" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1188.32" y="95.5" ></text>
</g>
<g >
<title>__mempcpy@plt (4,500,000 samples, 0.03%)</title><rect x="41.4" y="213" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="44.38" y="223.5" ></text>
</g>
<g >
<title>PostmasterMain (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="485" width="1180.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="13.00" y="495.5" >PostmasterMain</text>
</g>
<g >
<title>hash_search (2,750,000 samples, 0.02%)</title><rect x="1169.6" y="181" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1172.58" y="191.5" ></text>
</g>
<g >
<title>heap_prepare_pagescan (17,500,000 samples, 0.12%)</title><rect x="1188.6" y="229" width="1.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="1191.59" y="239.5" ></text>
</g>
<g >
<title>PortalRunUtility (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="341" width="1180.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="13.00" y="351.5" >PortalRunUtility</text>
</g>
<g >
<title>ReservePrivateRefCountEntry (6,000,000 samples, 0.04%)</title><rect x="1187.8" y="117" width="0.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1190.81" y="127.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (136,000,000 samples, 0.93%)</title><rect x="648.1" y="165" width="10.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="651.10" y="175.5" ></text>
</g>
<g >
<title>_IO_do_write@@GLIBC_2.2.5 (87,000,000 samples, 0.59%)</title><rect x="31.0" y="213" width="6.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="33.96" y="223.5" ></text>
</g>
<g >
<title>DoCopyTo (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="293" width="1180.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="13.00" y="303.5" >DoCopyTo</text>
</g>
<g >
<title>appendBinaryStringInfo (1,917,500,000 samples, 13.05%)</title><rect x="868.8" y="229" width="154.0" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="871.84" y="239.5" >appendBinaryStringI..</text>
</g>
<g >
<title>_IO_file_xsputn@@GLIBC_2.2.5 (197,250,000 samples, 1.34%)</title><rect x="26.1" y="229" width="15.9" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="29.14" y="239.5" ></text>
</g>
<g >
<title>_IO_file_write@@GLIBC_2.2.5 (83,500,000 samples, 0.57%)</title><rect x="31.2" y="181" width="6.7" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="34.24" y="191.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (17,750,000 samples, 0.12%)</title><rect x="1042.8" y="245" width="1.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1045.77" y="255.5" ></text>
</g>
<g >
<title>__libc_start_call_main (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="517" width="1180.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="13.00" y="527.5" >__libc_start_call_main</text>
</g>
<g >
<title>UnpinBuffer (6,000,000 samples, 0.04%)</title><rect x="1170.5" y="197" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1173.48" y="207.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (4,250,000 samples, 0.03%)</title><rect x="1188.0" y="101" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1190.95" y="111.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (5,066,000,000 samples, 34.48%)</title><rect x="462.0" y="213" width="406.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="465.00" y="223.5" >FunctionCall1Coll</text>
</g>
<g >
<title>slot_getsomeattrs_int (1,390,000,000 samples, 9.46%)</title><rect x="1048.4" y="245" width="111.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1051.38" y="255.5" >slot_getsomea..</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (2,500,000 samples, 0.02%)</title><rect x="1176.7" y="213" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1179.67" y="223.5" ></text>
</g>
<g >
<title>CopySendData (268,750,000 samples, 1.83%)</title><rect x="269.9" y="213" width="21.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="272.94" y="223.5" >C..</text>
</g>
<g >
<title>slot_getallattrs (32,250,000 samples, 0.22%)</title><rect x="1041.6" y="261" width="2.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1044.61" y="271.5" ></text>
</g>
<g >
<title>_IO_fwrite (307,000,000 samples, 2.09%)</title><rect x="17.3" y="245" width="24.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="20.33" y="255.5" >_..</text>
</g>
<g >
<title>BufTableDelete (14,250,000 samples, 0.10%)</title><rect x="1184.2" y="85" width="1.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1187.18" y="95.5" ></text>
</g>
<g >
<title>pg_ultoa_n (1,256,000,000 samples, 8.55%)</title><rect x="768.0" y="165" width="100.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="770.98" y="175.5" >pg_ultoa_n</text>
</g>
<g >
<title>MemoryContextReset (226,250,000 samples, 1.54%)</title><rect x="1022.8" y="261" width="18.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1025.84" y="271.5" ></text>
</g>
<g >
<title>WaitReadBuffersCanStartIO (5,750,000 samples, 0.04%)</title><rect x="1179.9" y="181" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="1182.88" y="191.5" ></text>
</g>
<g >
<title>_IO_ferror (18,000,000 samples, 0.12%)</title><rect x="15.9" y="245" width="1.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="18.88" y="255.5" ></text>
</g>
<g >
<title>pg_ultoa_n (1,122,500,000 samples, 7.64%)</title><rect x="778.7" y="149" width="90.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="781.70" y="159.5" >pg_ultoa_n</text>
</g>
<g >
<title>LWLockRelease (4,500,000 samples, 0.03%)</title><rect x="1176.5" y="229" width="0.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1179.51" y="239.5" ></text>
</g>
<g >
<title>BlockIdSet (4,750,000 samples, 0.03%)</title><rect x="1176.1" y="213" width="0.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1179.13" y="223.5" ></text>
</g>
<g >
<title>postmaster_child_launch (14,693,250,000 samples, 100.00%)</title><rect x="10.0" y="437" width="1180.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="13.00" y="447.5" >postmaster_child_launch</text>
</g>
<g >
<title>preadv64 (3,500,000 samples, 0.02%)</title><rect x="1180.8" y="133" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1183.82" y="143.5" ></text>
</g>
<g >
<title>StrategyGetBuffer (4,000,000 samples, 0.03%)</title><rect x="1186.3" y="101" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="1189.35" y="111.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (38,750,000 samples, 0.26%)</title><rect x="38.3" y="213" width="3.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="41.27" y="223.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (3,500,000 samples, 0.02%)</title><rect x="1187.5" y="85" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1190.53" y="95.5" ></text>
</g>
<g >
<title>StartReadBuffers (84,000,000 samples, 0.57%)</title><rect x="1181.8" y="181" width="6.8" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1184.81" y="191.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (59,500,000 samples, 0.40%)</title><rect x="1166.7" y="229" width="4.7" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1169.67" y="239.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3,750,000 samples, 0.03%)</title><rect x="1185.5" y="69" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1188.46" y="79.5" ></text>
</g>
<g >
<title>mdreadv (9,750,000 samples, 0.07%)</title><rect x="1180.3" y="181" width="0.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1183.34" y="191.5" ></text>
</g>
<g >
<title>LockBufHdr (2,750,000 samples, 0.02%)</title><rect x="1179.9" y="133" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1182.90" y="143.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,448,000,000 samples, 9.85%)</title><rect x="542.7" y="181" width="116.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="545.73" y="191.5" >AllocSetAlloc</text>
</g>
<g >
<title>read_stream_get_block (5,000,000 samples, 0.03%)</title><rect x="1181.4" y="181" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1184.39" y="191.5" ></text>
</g>
<g >
<title>StartBufferIO (5,500,000 samples, 0.04%)</title><rect x="1179.9" y="149" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="1182.90" y="159.5" ></text>
</g>
</g>
</svg>