RE: pga2: problem schema

From: frank_lupo <frank_lupo(at)email(dot)it>
To: dpage <dpage(at)vale-housing(dot)co(dot)uk>
Cc: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: RE: pga2: problem schema
Date: 2003-06-06 06:44:27
Message-ID: HG1S23$F23E2FA985DA35920E756284487BAA22@email.it
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

>
>
> > -----Original Message-----
> > From: frank_lupo [mailto:frank_lupo(at)email(dot)it]
> > Sent: 05 June 2003 11:08
> > To: Dave Page
> > Subject: pga2: problem schema
> >
> >
> > I have a problem in pgschema.
> > The selection type result 0.
> > The problem is SQL_GET_TYPES7_3.
> > This is changed by Marc Persuy.
> > This selectin is in error.
> > Please replace previous version of SQL_GET_TYPES7_3
>
> Hmm, the old version was wrong as well as it hid custom types. See below
> from Marc Persuy (which I modified slightly to exclude toast table
> types. Any idea what it should really be?
>
> Regards, Dave.
>
> ------------------------------
>
> Hello,
>
> Your product is my everyday's tool, and superb.
>
>
>
> Even with the latest version of pgAdmin, I can't see the types I defined
> on postgres 7.3.
>
=0
A>
=0

A
>
> So I tried a small change in pg Schema\basGlobal.bas, namely :
>
>
>
> Replace this sql constant :
>
> 'Public Const SQL_GET_TYPES7_3 = "SELECT oid, *,
> pg_get_userbyid(typowner) as typeowner FROM pg_type WHERE typtype != 'd'
> AND typtype != 'c'"
>
>
>
> by this one :
>
> Public Const SQL_GET_TYPES7_3 = "SELECT pg_type.oid, *,
> pg_get_userbyid(typowner) as typeowner FROM pg_type, pg_class WHERE
> pg_type.typrelid = pg_class.oid AND pg_class.relkind in ('c','s','t')"
>
>
>
> I tested and it works to get the list of defined types, but I can't see
> no function like pg_get_viewdef(viewOID) which could be applied to a
> type, so displayed screen is not very explicit..
>
>
>
> Have You got an idea to get the work fully done ?
>
>
>
> Sincerely
>
> Marc Persuy
>

Hi Da
ve,
=0

A
the selection in psql is:

------------------
SELECT n.nspname as "Schema",
pg_catalog.format_type(t.oid, NULL) AS "Name",
pg_catalog.obj_description(t.oid, 'pg_type') as "Description"
FROM pg_catalog.pg_type t
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = t.typnamespace
WHERE (t.typrelid = 0 OR (SELECT c.relkind = 'c' FROM pg_catalog.pg_class c WHERE c.oid = t.typrelid)) AND t.typname !~ '^_'
AND pg_catalog.pg_type_is_visible(t.oid)
ORDER BY 1, 2;
------------------

Do you think?

Bye !!
Frank Lupo (Wolf) !!

/\_ _/\
\ o o /
--ooo-----ooo---

--
GPG Key: http://users.jc-hosting.co.uk/frank_lupo/files/publickey.txt

WebSite: http://users.jc-hosting.co.uk/frank_lupo

--
Email.it, the professional e-mail, gratis per te: http://www.email.it/f

Sponsor:
Scopri la nuovissima stampante HP. Design elegante, stampa veloce e di qualità! Scoprila qui!
Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=764&d=6-6

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2003-06-06 07:32:23 Re: pga2: problem schema
Previous Message Andreas Pflug 2003-06-05 22:13:13 pgAdmin3 and gtk2.0/Unicode: done