pgsql: Remove pg_am.amindexnulls.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Remove pg_am.amindexnulls.
Date: 2011-01-08 21:08:23
Message-ID: E1Pbg1P-0007KW-Gl@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove pg_am.amindexnulls.

The only use we have had for amindexnulls is in determining whether an
index is safe to cluster on; but since the addition of the amclusterable
flag, that usage is pretty redundant.

In passing, clean up assorted sloppiness from the last patch that touched
pg_am.h: Natts_pg_am was wrong, and ambuildempty was not documented.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=7e2f906201c8bb95f7fb17e56b8740c38bda5441

Modified Files
--------------
doc/src/sgml/catalogs.sgml | 14 +++++-----
doc/src/sgml/indexam.sgml | 12 ++++-----
src/backend/commands/cluster.c | 37 ------------------------------
src/include/catalog/catversion.h | 2 +-
src/include/catalog/pg_am.h | 46 ++++++++++++++++++-------------------
5 files changed, 35 insertions(+), 76 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Meskes 2011-01-08 22:02:47 pgsql: In ecpg's parser removed a fixed length limit for constants defi
Previous Message Tom Lane 2011-01-08 19:48:48 pgsql: Refactor GIN's handling of duplicate search entries.