Re: SearchSysCache

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: uwcssa <uwcssa(at)gmail(dot)com>
Cc: "Bruce Momjian" <bruce(at)momjian(dot)us>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: SearchSysCache
Date: 2007-01-02 21:36:06
Message-ID: 20579.1167773766@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

uwcssa <uwcssa(at)gmail(dot)com> writes:
> My program (indirectly) calls the following function twice,
> tuple = SearchSysCache(STATRELATT, ObjectIdGetDatum(relid),
> Int16GetDatum(colnum), 0, 0);
> The first time it assigns NULL to tuple, while the second time it
> assigns a valid pointer. Why is it like that?

You did an ANALYZE in between, perhaps? That's the only operation
that puts new rows in pg_statistic.

regards, tom lane

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bill Moran 2007-01-02 21:47:19 Patch to log usage of temporary files
Previous Message uwcssa 2007-01-02 21:31:25 SearchSysCache