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