It's possible to get pg_class oid from GETSTRUC macro? - Mailing list pgsql-hackers

From Mohammad Heykal Abdillah
Subject It's possible to get pg_class oid from GETSTRUC macro?
Date
Msg-id 1276399731.24212.42.camel@claudia
Whole thread Raw
Responses Re: It's possible to get pg_class oid from GETSTRUC macro?  (Mark Kirkwood <mark.kirkwood@catalyst.net.nz>)
List pgsql-hackers
After i read PostgreSQL documentation, i found that pg_attribute contain
"attrelid" that reference to pg_class oid. But after i look to
"/src/include/catalog/pg_class.h" there is no member named "oid".

This what i trying to acomplish using "heap_getnext" function:

if (((Form_pg_class) GETSTRUCT(ht_1)->oid) == ((Form_pg_attribute)
GETSTRUCT(ht_2)->attrelid)
{
//do something
}

But its always failed in compile time since pg_class doesnt have "oid"
member. And it seem "t_tableOid" was not pg_class oid since when i
compare "t_tableOid" and "(Form_pg_attribute) GETSTRUCT(ht_2)->attrelid"
nothing match.

My question is, how to get "oid" from pg_class? or is there any other
solution you can suggest?

Thank you.
-- 
Mohammad Heykal Abdillah <heykal.abdillah@gmail.com>



pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [PERFORM] Large (almost 50%!) performance drop after upgrading to 8.4.4?
Next
From: Mark Kirkwood
Date:
Subject: Re: It's possible to get pg_class oid from GETSTRUC macro?