pgsql: Fix up gincostestimate for new extractQuery API. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix up gincostestimate for new extractQuery API.
Date
Msg-id E1Pbk47-0002QD-IW@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix up gincostestimate for new extractQuery API.

The only reason this wasn't crashing while testing the core anyarray
operators was that it was disabled for those cases because of passing the
wrong type information to get_opfamily_proc :-(.  So fix that too, and make
it insist on finding the support proc --- in hindsight, silently doing
nothing is not as sane a coping mechanism as all that.

Branch
------
master

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

Modified Files
--------------
src/backend/utils/adt/selfuncs.c |   65 +++++++++++++++++++++++++-------------
1 files changed, 43 insertions(+), 22 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Add array_contains_nulls() function in arrayfuncs.c.
Next
From: Tom Lane
Date:
Subject: pgsql: Fix assorted corner-case bugs in contrib/intarray.