8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 00:03:03 +01:00

Removed accidentally committed code.

This commit is contained in:
hvlad 2012-05-03 21:24:13 +00:00
parent 7d22e58e1f
commit 74843be54a

View File

@ -527,24 +527,6 @@ void TracePluginImpl::appendGlobalCounts(const PerformanceInfo* info)
record.append(temp);
}
if ((cnt = info->pin_counters[RuntimeStatistics::SORTS]) != 0)
{
temp.printf(", %"QUADFORMAT"d sort(s)", cnt);
record.append(temp);
}
if ((cnt = info->pin_counters[RuntimeStatistics::SORT_GETS]) != 0)
{
temp.printf(", %"QUADFORMAT"d sort get(s)", cnt);
record.append(temp);
}
if ((cnt = info->pin_counters[RuntimeStatistics::SORT_PUTS]) != 0)
{
temp.printf(", %"QUADFORMAT"d sort put(s)", cnt);
record.append(temp);
}
record.append(NEWLINE);
}