Re: old_snapshot_threshold vs indexes - Mailing list pgsql-hackers

From Tom Lane
Subject Re: old_snapshot_threshold vs indexes
Date
Msg-id 3396.1566870886@sss.pgh.pa.us
Whole thread Raw
In response to Re: old_snapshot_threshold vs indexes  (Thomas Munro <thomas.munro@gmail.com>)
Responses Re: old_snapshot_threshold vs indexes  (Thomas Munro <thomas.munro@gmail.com>)
List pgsql-hackers
Thomas Munro <thomas.munro@gmail.com> writes:
> OK I started writing a patch and realised there were a few ugly
> problems that I was about to report here... but now I wonder if, based
> on the comment for RelationHasUnloggedIndex(), we shouldn't just nuke
> all this code.  We don't actually support unlogged indexes on
> permanent tables (there is no syntax to create them, and
> RelationHasUnloggedIndex() will never return true in practice because
> RelationNeedsWAL() will always return false first).

Oh!  That explains why the code coverage report shows clearly that
RelationHasUnloggedIndex never returns true ;-)

> This is a locking
> protocol violation and a performance pessimisation in support of a
> feature we don't have.  If we add support for that in some future
> release, we can figure out how to do it properly then, no?

+1.  That fix is also back-patchable, which adding fields to relcache
entries would not be.

It's not really apparent to me that unlogged indexes on logged tables
would ever be a useful combination, so I'm certainly willing to nuke
poorly-thought-out code that putatively supports it.  But perhaps
we should add some comments to remind us that this area would need
work if anyone ever wanted to support that.  Not sure where.

            regards, tom lane



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: gharial segfaulting on REL_12_STABLE only
Next
From: Thomas Munro
Date:
Subject: Re: gharial segfaulting on REL_12_STABLE only