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

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

> Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us> writes:
> > If you delete the file at the end of initdb, is it recreated with the
> > proper values?
>
> OK, let's try it ...
>
> Sure enough, if I delete the file and then start a new backend,
> it's rebuilt. Not only that, it's rebuilt with the *correct* index-
> size values read from pg_class! And cost_index then gets that data
> passed to it.
>
> So this code actually is able to go out and read the database, it just
> doesn't want to ;-)
>
> 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.

--
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

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 1999-04-30 20:56:59 Re: [HACKERS] Optimizer fed bad data about some system-table indexes
Previous Message Tom Lane 1999-04-30 20:46:36 Re: [HACKERS] Optimizer fed bad data about some system-table indexes