Re: [GENERAL] Using Cursor in PostgreSQL 7.2

From: Joe Conway <joseph(dot)conway(at)home(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [GENERAL] Using Cursor in PostgreSQL 7.2
Date: 2001-12-12 17:42:45
Message-ID: 3C179715.1030602@home.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-hackers pgsql-patches

Tom Lane wrote:

> I've added the missing checks in the planner; possibly you could get rid
> of that UNION hack now.
>

*Moved to hackers*

I confirmed the UNION hack is no longer required. Thanks! Is it too late
to change the README in contrib/dblink?

A side issue I noticed is that recent changes to contrib/*/Makefile seem
to cause 'MODULE_PATHNAME' in *.sql.in files to become
'$libdir/modulename' in the resulting *.sql files. Example:

in rtree_gist.sql.in:
-- define the GiST support methods
create function gbox_consistent(opaque,box,int4) returns bool as
'MODULE_PATHNAME' language 'C';

becomes in rtree_gist.sql:
-- define the GiST support methods
create function gbox_consistent(opaque,box,int4) returns bool as
'$libdir/rtree_gist' language 'C';

Same thing happens in (at least) dblink.sql, fuzzystrmatch.sql, and
array_iterator.sql.

I'm not sure right off how to fix it though :(

Joe

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Francisco Reyes 2001-12-12 17:43:38 Re: Understanding Transactions
Previous Message Joe Koenig 2001-12-12 17:29:51 Understanding Transactions

Browse pgsql-hackers by date

  From Date Subject
Next Message mlw 2001-12-12 17:50:54 Re: Explicit configuration file
Previous Message Dwayne Miller 2001-12-12 17:22:31 Re: Explicit configuration file

Browse pgsql-patches by date

  From Date Subject
Next Message Tom Lane 2001-12-12 17:53:57 Re: [GENERAL] Using Cursor in PostgreSQL 7.2
Previous Message Marko Kreen 2001-12-12 09:19:01 make createlang match docs