Re: how do i query the type of an object? - Mailing list pgsql-admin

From Yeb Havinga
Subject Re: how do i query the type of an object?
Date
Msg-id 4C63AD83.3060602@gmail.com
Whole thread Raw
In response to Re: how do i query the type of an object?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-admin
Tom Lane wrote:
> Mark Rostron <mrostron@ql2.com> writes:
>
>> Is there some way to query the data-type of '<some value expression>'?
>>
>
> There's a SQL-standard construct called IS OF, and a function called
> pg_typeof, but it's not real clear whether either of those would help
> you.
>
I failed finding IS OF in the pg documentation, however,
http://farrago.sourceforge.net/design/UserDefinedTypesAndRoutines.html
had a reference to it.

postgres=# create table a(a) as select 1;
SELECT 1
postgres=# select * from a where a IS OF (integer);
 a
---
 1
(1 row)

While learning this somehow triggers the 'cool I just learned some new
obscure SQL trick' feeling, I am not sure if it is really useful without
CREATE TYPE foo UNDER bar.

regards,
Yeb Havinga


pgsql-admin by date:

Previous
From: "Gnanakumar"
Date:
Subject: Re: Autovacuum daemon internal handling
Next
From: "Tomeh, Husam"
Date:
Subject: High-water Mark for number of sessions/connections reached in Postgres