This is a discussion on SVN Commit by dpage: r4902 - in trunk/pgadmin3: . src/schema within the pgsql Interfaces Pgadmin Hackers forums, part of the PostgreSQL category; --> Author: dpage Date: 2006-01-17 11:30:01 +0000 (Tue, 17 Jan 2006) New Revision: 4902 Modified: trunk/pgadmin3/CHANGELOG.txt trunk/pgadmin3/src/schema/pgFunction.cpp Log: Fix drop ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Author: dpage Date: 2006-01-17 11:30:01 +0000 (Tue, 17 Jan 2006) New Revision: 4902 Modified: trunk/pgadmin3/CHANGELOG.txt trunk/pgadmin3/src/schema/pgFunction.cpp Log: Fix drop procedure by including IN/OUT parameter flags in the name. Modified: trunk/pgadmin3/CHANGELOG.txt ================================================== ================= --- trunk/pgadmin3/CHANGELOG.txt 2006-01-17 11:29:16 UTC (rev 4901) +++ trunk/pgadmin3/CHANGELOG.txt 2006-01-17 11:30:01 UTC (rev 4902) @@ -18,6 +18,7 @@ </ul> <br> <ul> + <li>2006-01-17 DP 1.4.2 Fix drop procedure by including IN/OUT parameter flags in the name. <li>2006-01-13 DP 1.4.2 Fix role SQL - correctly define CREATEROLE/NOCREATEROLE per Andrus. <li>2006-01-11 DP Allow result copy quoting configuration to be set explicitly rather than using the result export settings [Magnus Hagander] <li>2006-01-09 DP Add -a and -q command line options to auto connect to a server and open a query window respectively [Magnus Hagander] Modified: trunk/pgadmin3/src/schema/pgFunction.cpp ================================================== ================= --- trunk/pgadmin3/src/schema/pgFunction.cpp 2006-01-17 11:29:16 UTC (rev 4901) +++ trunk/pgadmin3/src/schema/pgFunction.cpp 2006-01-17 11:30:01 UTC (rev 4902) @@ -296,6 +296,7 @@ function->iAddArgMode(mode); argTypeNames += mode + wxT(" "); quotedArgTypeNames += mode + wxT(" "); + quotedArgTypes += mode + wxT(" "); } if (!name.IsNull()) { ---------------------------(end of broadcast)--------------------------- TIP 5: don't forget to increase your free space map settings |
| Thread Tools | |
| Display Modes | |
|
|