[GENERAL] Arguments not being passed to a function

2000-05-28 Thread Barry Lind
I am trying to call PL/pgSQL functions from JDBC via the Fastpath interface. The function is executing but none of the arguments to the function are getting set. here is a simple example: create function testcall (int4) returns int4 as ' begin return $1; end; ' language 'plpgsql'; In java I

Re: [GENERAL] Arguments not being passed to a function

2000-05-28 Thread Tom Lane
Barry Lind [EMAIL PROTECTED] writes: I am trying to call PL/pgSQL functions from JDBC via the Fastpath interface. The function is executing but none of the arguments to the function are getting set. Looks like fastpath.c is passing a garbage isNull flag to the function it calls :-(. None of