feel free to opine https://github.com/pgjdbc/pgjdbc/pull/1633
@gerdwagner so looking at this and they history I'm left with a quandary. The spec doesn't say anything about search path, and or visibility. I understand your issue, that you would like to see everything, but the average person may not want to see procedures that are not visible to them. Are there other databases that have something akin to search_path ?
@gerdwagner no I don't mind you digging into it. I see that was a regression now. Thanks!
@Gerd https://github.com/pgjdbc/pgjdbc/blob/f61fbfe7b72ccf2ca0ac2e2c366230fdb93260e5/pgjdbc/src/main/java/org/postgresql/jdbc/PgDatabaseMetaData.java#L1052-L1053 should allow all functions to be returned ? I'd be curious why that doesn't work
Note you have to call getProcedures to get procedures. Previously getFunctions would have returned both procedures and functions
OK, I have looked at this in the driver. getProcedures returns procedures and no functions. getFunctions returns functions and no procedures. AFAIK, this is correct.