MCPcopy Create free account
hub / github.com/apache/cloudberry / ExplainPropertyUInteger

Function ExplainPropertyUInteger

src/backend/commands/explain.c:5593–5601  ·  view source on GitHub ↗

* Explain an unsigned integer-valued property. */

Source from the content-addressed store, hash-verified

5591 * Explain an unsigned integer-valued property.
5592 */
5593void
5594ExplainPropertyUInteger(const char *qlabel, const char *unit, uint64 value,
5595 ExplainState *es)
5596{
5597 char buf[32];
5598
5599 snprintf(buf, sizeof(buf), UINT64_FORMAT, value);
5600 ExplainProperty(qlabel, unit, buf, true, es);
5601}
5602
5603/*
5604 * Explain a float-valued property, using the specified number of

Callers 2

show_runtime_filter_infoFunction · 0.85
show_wal_usageFunction · 0.85

Calls 1

ExplainPropertyFunction · 0.85

Tested by

no test coverage detected