Re: [HACKERS] Optimizer fed bad data about some system-table indexes

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: maillist(at)candle(dot)pha(dot)pa(dot)us (Bruce Momjian)
Cc: tgl(at)sss(dot)pgh(dot)pa(dot)us, pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Optimizer fed bad data about some system-table indexes
Date: 1999-04-30 20:56:59
Message-ID: 199904302056.QAA03396@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> > I'd say this whole mechanism is unnecessary; we should just build
> > the data on-the-fly the way it's done in write_irels(), and eliminate
> > all the file reading and writing code in init_irels and write_irels.
> > The only thing it could possibly be doing for us is saving some backend
> > startup time, but I'm not able to measure any difference when I delete
> > the init file.
> >
> > I'll work on that tomorrow, unless I hear squawks of outrage from
> > someone who remembers what this code was for.
>
> Hmm. If you can get it to work without the file, great, or you could
> just delete the file when vacuum is performed, so the next backend
> recreates the file. That would work too.

One other cache thing I want to do is enable index lookups on cache
failure for tables like pg_operator, that didn't use index lookups in
the cache because you didn't have multi-key system tables.

If you are looking for a single row, does anyone know when it is faster
to do a sequential scan, and when it is faster to do an index lookup
into the table.

--
Bruce Momjian | http://www.op.net/~candle
maillist(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael J Davis 1999-05-01 01:20:18 A select with aggretion is failing, still subtle problems with ag gregation
Previous Message Bruce Momjian 1999-04-30 20:50:58 Re: [HACKERS] Optimizer fed bad data about some system-table indexes