MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / print_stats_header

Method print_stats_header

src/burp/burp.cpp:2893–2910  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2891}
2892
2893void BurpGlobals::print_stats_header()
2894{
2895 if (gbl_stat_header || !gbl_stat_flags)
2896 return;
2897
2898 gbl_stat_header = true;
2899
2900 BURP_msg_partial(false, 169); // msg 169: gbak:
2901 burp_output(false, " ");
2902
2903 for (int i = 0; i < LAST_COUNTER; i++)
2904 {
2905 if (gbl_stat_flags & (1 << i))
2906 burp_output(false, "%-*s", STAT_FORMATS[i].width, STAT_FORMATS[i].header);
2907 }
2908
2909 burp_output(false, "\n");
2910}
2911
2912void BURP_makeSymbol(BurpGlobals* tdgbl, Firebird::string& name) // add double quotes to string
2913{

Callers 1

BURP_messageFunction · 0.80

Calls 2

BURP_msg_partialFunction · 0.85
burp_outputFunction · 0.85

Tested by

no test coverage detected