mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
fix incorrect view autovacuum_vacuum_threshold field
При индивидуальной настройки автовакуума, некорректно отображались поля и изменения.
This commit is contained in:
parent
38f4510342
commit
1082e9f018
1 changed files with 2 additions and 2 deletions
|
|
@ -562,7 +562,7 @@ int dlgTable::Go(bool modal)
|
|||
settingFreezeMaxAge = setting;
|
||||
else if (name == wxT("vacuum_freeze_table_age"))
|
||||
settingFreezeTableAge = setting;
|
||||
else
|
||||
else if (name == wxT("autovacuum"))
|
||||
settingAutoVacuum = avSet.GetBool(wxT("setting"));
|
||||
}
|
||||
|
||||
|
|
@ -683,7 +683,7 @@ int dlgTable::Go(bool modal)
|
|||
chkVacEnabled->SetValue(settingAutoVacuum);
|
||||
}
|
||||
|
||||
//txtBaseVac->SetValue(tableVacBaseThr);
|
||||
txtBaseVac->SetValue(tableVacBaseThr);
|
||||
txtBaseAn->SetValue(tableAnlBaseThr);
|
||||
txtFactorVac->SetValue(tableVacFactor);
|
||||
txtFactorAn->SetValue(tableAnlFactor);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue