RE: need solution for cachelookupfailed error - Mailing list pgsql-bugs

From Darren King
Subject RE: need solution for cachelookupfailed error
Date
Msg-id NDBBJNEIGLIPLCHCMANLMEDGCLAA.darrenk@insightdist.com
Whole thread Raw
In response to need solution for cachelookupfailed error  (Kiran Patel <k.patel@i-engineering.com>)
List pgsql-bugs
> Company Table Structure
> create table company ( id serial PRIMARY KEY, comp_name varchar(100),
shortname varchar(20));
> Insert Function for company table
> create function insertcompany(varchar(100),varchar(20)) returns int4
as
> 'begin
>     Insert into company (comp_name,shortname) values ($1,$2);
>     return 0;
> end;' language 'plpgsql';
> Now If I run the above function from the psql command prompt with the
following syntax
>    select insertcompany('iengineering.com','eslab');

Have you tried explicitly casting the strings to varchar in the call to
insertcompany in the above select statement?

If the parser is treating them as something other than varchar, the
system would look for an insertcompany function those types for args.

darrenk

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: Tests randomly failed
Next
From: pgsql-bugs@postgresql.org
Date:
Subject: bug with identd autentication