functional index arg matching patch - Mailing list pgsql-patches

From Mark Hollomon
Subject functional index arg matching patch
Date
Msg-id 20000821114754.A13168@mindspring.com
Whole thread Raw
List pgsql-patches
Attached is a patch to allow
functinal indecies to use functions that
are for 'binary-compatible' types.

eg

create function foobar(text) returns text as ....

create table vc ( a varchar );

create index on vc ( foobar(a) );

should now work.

--
Mark Hollomon
mhh@mindspring.com

pgsql-patches by date:

Previous
From: "Dario Basso Cardoso"
Date:
Subject:
Next
From: "Ross J. Reedstrom"
Date:
Subject: Re: [HACKERS] when does CREATE VIEW not create a view?