| From: | "Yurgis Baykshtis" <ybaykshtis(at)aurigin(dot)com> |
|---|---|
| To: | "Andreas Pflug" <Andreas(dot)Pflug(at)web(dot)de>, "Dave Page" <dpage(at)vale-housing(dot)co(dot)uk>, <pgadmin-hackers(at)postgresql(dot)org> |
| Subject: | Two fixes for pgadmin III... |
| Date: | 2003-05-24 00:24:12 |
| Message-ID: | 56510AAEF435D240958D1CE8C6B1770A0138A585@mailc03.aurigin.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgadmin-hackers |
Guys, I have a couple of fixes for you. More to come ;)
First is to fix the bug that prevents updating the functions.
Second is to fix the bug that prevents creating a new index.
RCS file: /disk1/cvsroot/pgadmin3/src/ui/dlgFunction.cpp,v
retrieving revision 1.7
diff -r1.7 dlgFunction.cpp
333,334c333,334
< name = function->GetQuotedFullIdentifier();
<
---
> name = function->GetQuotedFullIdentifier()
> + wxT("(") + function->GetArgTypes() +
wxT(")");
RCS file: /disk1/cvsroot/pgadmin3/src/ui/dlgIndex.cpp,v
retrieving revision 1.8
diff -r1.8 dlgIndex.cpp
242a243
> sql += wxT("\n ON ") + table->GetFullIdentifier();
244,245c245
< sql += wxT("\n ON ") + table->GetFullIdentifier()
< + wxT("(") + GetColumns()
---
> sql += wxT("(") + GetColumns()
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Peter Galbavy | 2003-05-24 10:48:10 | Re: [ANNOUNCE] pgAdmin Licencing Changes |
| Previous Message | Yurgis Baykshtis | 2003-05-23 22:53:42 | Re: Please consider removing "select count(*)..." |