mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-09-04 22:02:34 -06:00
bug fix issues#8 (dropping overloaded procedures)
This commit is contained in:
parent
428ceaa70f
commit
5ff5c0b52e
1 changed files with 1 additions and 1 deletions
|
|
@ -509,7 +509,7 @@ bool pgProcedure::DropObject(wxFrame *frame, ctlTree *browser, bool cascaded)
|
|||
if (!GetConnection()->BackendMinimumVersion(11, 0))
|
||||
return pgFunction::DropObject(frame, browser, cascaded);
|
||||
|
||||
wxString sql = wxT("DROP PROCEDURE ") + this->GetSchema()->GetQuotedIdentifier() + wxT(".") + this->GetQuotedIdentifier();
|
||||
wxString sql = wxT("DROP PROCEDURE ") + this->GetSchema()->GetQuotedIdentifier() + wxT(".") + this->GetQuotedIdentifier() + wxT("(") + this->GetArgSigList() + wxT(")");;
|
||||
return GetDatabase()->ExecuteVoid(sql);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue