Обсуждение: return composite type quoting
Hello,
I'm using pgAdmin III Verdion 1.2.0 PostBeta 1 (Sep 12 2004).
Bug in building CREATE OR REPLACE FUNCTION statement was fixed
(composite type names quotes now there)
but it still remain in details window (right bottom)
when i browse objects tree:
I see
-- DROP FUNCTION "SomeFunction"(int4);
CREATE OR REPLACE FUNCTION "SomeFunction"("arg" int4) RETURNS SomeCompositeType AS
instead of expected
-- DROP FUNCTION "SomeFunction"(int4);
CREATE OR REPLACE FUNCTION "SomeFunction"("arg" int4) RETURNS "SomeCompositeType" AS
----
Thank you.
--
Best regards,Ivan mailto:Ivan-Sun1@mail.ru
> -----Original Message----- > From: pgadmin-support-owner@postgresql.org > [mailto:pgadmin-support-owner@postgresql.org] On Behalf Of Ivan > Sent: 15 September 2004 10:46 > To: pgadmin-support@postgresql.org > Subject: [pgadmin-support] return composite type quoting > > Hello, > I'm using pgAdmin III Verdion 1.2.0 PostBeta 1 (Sep 12 2004). > Bug in building CREATE OR REPLACE FUNCTION statement was > fixed (composite type names quotes now there) but it still > remain in details window (right bottom) when i browse objects tree: I've commited a change to CVS that fixes this. Thanks for the bug report. Regards, Dave.