From: books at ejurka.com (Kris Jurka) Date: Fri, 15 Feb 2008 18:51:48 -0500 (EST) Subject: [Pljava-dev] User defined Function In-Reply-To: <001201c86c96$60e713f0$a5c8a8c0@perantoarr> References: <001201c86c96$60e713f0$a5c8a8c0@perantoarr> Message-ID: On Mon, 11 Feb 2008, Andreas Rossel wrote: > But if I trie to call the function i get an error message. The command: > > select testeiner(1); > > ERROR: function testeiner(integer) does not exist This is because the javatest schema is not in your search_path. PG will only look for functions in the schemas you tell it to. http://www.postgresql.org/docs/8.3/static/ddl-schemas.html#DDL-SCHEMAS-PATH Kris Jurka