Create any user defined function using Postgres 12.3 Server, we are using postgresql-42.2.11 JDBC driver
DDLs: CREATE FUNCTION findec(pdec numeric) RETURNS numeric LANGUAGE plpgsql AS $$ declare r decimal(7,2); begin r = PDEC; return r; end; $$;
a) When we use the following Java code, then we get nothing as we do no have any Stored Procedure defined, which is expected resultSet= metadata.getProcedures(null , "public", null); , while (resultSet.next()){
b) Now change the JAVA code to the following and you will get two columns in the resultSet, which is a bug as there is no StoredProcedure Defined in the database
resultSet= metadata.getProcedureColumns(null , "public", "findec", null); , while (resultSet.next()){