Re: pgsql-server/ ontrib/tablefunc/tablefunc.c rc/ ...

From: Joe Conway <mail(at)joeconway(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-committers(at)postgresql(dot)org
Subject: Re: pgsql-server/ ontrib/tablefunc/tablefunc.c rc/ ...
Date: 2003-03-09 03:26:15
Message-ID: 3E6AB457.9090809@joeconway.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Tom Lane wrote:
> Will you be satisfied with
> #define tuplestore_donestoring(tupstore) ((void) 0)
> ? That would provide source-level, but not link-level, compatibility.
>

OK, that seems to work -- I did this:

#if (CATALOG_VERSION_NO > 200303080)
#define tuplestore_donestoring(tupstore) ((void) 0)
#endif

and modified CATALOG_VERSION_NO to 200303081 locally. I don't think
there are many (if any) people trying to use PL/R with cvs tip. After
the next catalog version change, everything should be transparent.

Thanks,

Joe

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2003-03-09 03:34:10 pgsql-server/src/include/utils tuplestore.h
Previous Message Tom Lane 2003-03-09 03:10:42 Re: pgsql-server/ ontrib/tablefunc/tablefunc.c rc/ ...