pgsql: Fix getTypeIOParam to support type record[].

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix getTypeIOParam to support type record[].
Date: 2011-12-01 17:44:51
Message-ID: E1RWAgl-0000MY-82@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix getTypeIOParam to support type record[].

Since record[] uses array_in, it needs to have its element type passed
as typioparam. In HEAD and 9.1, this fix essentially reverts commit
9bc933b2125a5358722490acbc50889887bf7680, which was a hack that is no
longer needed since domains don't set their typelem anymore. Before
that, adjust the logic so that only domains are excluded from being
treated like arrays, rather than assuming that only base types should
be included. Add a regression test to demonstrate the need for this.
Per report from Maxim Boguk.

Back-patch to 8.4, where type record[] was added.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/65d9aedb1b0e2c160cee3ef6cddb284b092f542e

Modified Files
--------------
src/backend/utils/cache/lsyscache.c | 5 ++---
src/test/regress/expected/polymorphism.out | 21 +++++++++++++++++++++
src/test/regress/sql/polymorphism.sql | 15 +++++++++++++++
3 files changed, 38 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Josh Berkus 2011-12-01 17:58:37 Re: pgsql: Add file-fdw documentation example.
Previous Message Magnus Hagander 2011-12-01 15:01:52 Re: pgsql: Add file-fdw documentation example.