--- src/ui/dlgFunction.cpp.orig Sat Aug 23 08:45:11 2003 +++ src/ui/dlgFunction.cpp Sat Aug 23 09:18:39 2003 @@ -394,7 +394,10 @@ if ((function && function->GetComment() != comment) || (!function && !comment.IsEmpty())) { - sql += wxT("COMMENT ON FUNCTION ") + name + sql += wxT("COMMENT ON FUNCTION ") + + function->GetSchema()->GetName() + + wxT(".") + + function->GetFullName() + wxT(" IS ") + qtString(comment) + wxT(";\n"); }