--- src/ui/dlgAggregate.cpp.orig Sat Aug 23 08:26:55 2003 +++ src/ui/dlgAggregate.cpp Sat Aug 23 08:31:01 2003 @@ -82,6 +82,7 @@ cbFinalFunc->SetSelection(0); txtInitial->SetValue(aggregate->GetInitialCondition()); + txtComment->SetValue(aggregate->GetComment()); txtName->Disable(); cbBaseType->Disable(); --- src/schema/pgAggregate.cpp.orig Sat Aug 23 08:32:37 2003 +++ src/schema/pgAggregate.cpp Sat Aug 23 08:33:16 2003 @@ -50,7 +50,7 @@ if (!GetComment().IsNull()) { - sql = wxT("COMMENT ON AGGREGATE ") + GetQuotedFullIdentifier() + sql += wxT("COMMENT ON AGGREGATE ") + GetQuotedFullIdentifier() + wxT("(") + qtIdent(GetInputType()) + wxT(") IS ") + qtString(GetComment()) + wxT(";\n"); }