On Thu, Oct 13, 2005 at 02:24:27PM +0100, Charles Wegrzyn wrote:
> I have code that under 8.0.3 works:
> 
>   VARCHAR t[MAX_TENANT_SIZE+1];
>   VARCHAR o[MAX_OID_SIZE+1];
> 
> In 8.0.4 I found this throws an error during the ecpg step:
> 
> tenant.ec:375: ERROR: pointer to varchar are not implemented
> tenant.ec:376: ERROR: pointer to varchar are not implemented

ecpg in 8.0.4 seems not to like the macros.  I get the same error,
but not if I do this:

    VARCHAR  t[256];
    VARCHAR  o[256];

ecpg in 8.1beta3 works either way.

-- 
Michael Fuhr

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
       choose an index scan if your joining column's datatypes do not
       match

Reply via email to