mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
Statistic page correct
Исправлено отображение поля n_live_tup
This commit is contained in:
parent
f0517ee0f8
commit
e542bb17f2
2 changed files with 1 additions and 1 deletions
|
|
@ -307,13 +307,13 @@ void pgObject::ShowStatisticsTables(frmMain* form, ctlListView* statistics, pgOb
|
|||
if (hasSize)
|
||||
statistics->SetItem(pos, i++, stats->GetVal(wxT("size")));
|
||||
if (obj->GetConnection()->GetIsPgProEnt()) statistics->SetItem(pos, i++, stats->GetVal(wxT("cfs_ratio")));
|
||||
statistics->SetItem(pos, i++, stats->GetVal(wxT("n_live_tup")));
|
||||
statistics->SetItem(pos, i++, stats->GetVal(wxT("n_tup_ins")));
|
||||
statistics->SetItem(pos, i++, stats->GetVal(wxT("n_tup_upd")));
|
||||
statistics->SetItem(pos, i++, stats->GetVal(wxT("n_tup_del")));
|
||||
if (obj->GetConnection()->BackendMinimumVersion(8, 3))
|
||||
{
|
||||
statistics->SetItem(pos, i++, stats->GetVal(wxT("n_tup_hot_upd")));
|
||||
statistics->SetItem(pos, i++, stats->GetVal(wxT("n_live_tup")));
|
||||
statistics->SetItem(pos, i++, stats->GetVal(wxT("n_dead_tup")));
|
||||
}
|
||||
if (obj->GetConnection()->BackendMinimumVersion(8, 2))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue