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

Function ExplainPropertyInteger

src/backend/commands/explain.c:5580–5588  ·  view source on GitHub ↗

* Explain an integer-valued property. */

Source from the content-addressed store, hash-verified

5578 * Explain an integer-valued property.
5579 */
5580void
5581ExplainPropertyInteger(const char *qlabel, const char *unit, int64 value,
5582 ExplainState *es)
5583{
5584 char buf[32];
5585
5586 snprintf(buf, sizeof(buf), INT64_FORMAT, value);
5587 ExplainProperty(qlabel, unit, buf, true, es);
5588}
5589
5590/*
5591 * Explain an unsigned integer-valued property.

Callers 15

fileExplainForeignScanFunction · 0.85
ExplainOnePlanFunction · 0.85
ExplainPrintSliceTableFunction · 0.85
ExplainPrintJITFunction · 0.85
show_dispatch_infoFunction · 0.85
ExplainNodeFunction · 0.85
show_sort_infoFunction · 0.85
show_hash_infoFunction · 0.85
show_memoize_infoFunction · 0.85
show_hashagg_infoFunction · 0.85

Calls 1

ExplainPropertyFunction · 0.85

Tested by

no test coverage detected