pgsql: Fix BRIN operator family definitions - Mailing list pgsql-committers

From Alvaro Herrera
Subject pgsql: Fix BRIN operator family definitions
Date
Msg-id E1XuSoQ-0006Nb-Nv@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix BRIN operator family definitions

The original definitions were leaving no room for cross-type operators,
so queries that compared a column of one type against something of a
different type were not taking advantage of the index.  Fix by making
the opfamilies more like the ones for Btree, and include a few
cross-type operator classes.

Catalog version bumped.

Per complaints from Hubert Lubaczewski, Mark Wong, Heikki Linnakangas.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/816e10d80033dd74b3b76fdfd84dffb767316c54

Modified Files
--------------
src/include/catalog/catversion.h  |    2 +-
src/include/catalog/pg_amop.h     |  132 +++++++++++++++++------
src/include/catalog/pg_amproc.h   |  213 ++++++++++++++++++++++++++++---------
src/include/catalog/pg_opclass.h  |   10 +-
src/include/catalog/pg_opfamily.h |   13 +--
5 files changed, 275 insertions(+), 95 deletions(-)


pgsql-committers by date:

Previous
From: Alvaro Herrera
Date:
Subject: pgsql: Update transaction README for persistent multixacts
Next
From: Noah Misch
Date:
Subject: pgsql: Revert "Add libpq function PQhostaddr()."