Chapman Flack
Chapman Flack
You're welcome. :) I noticed another thing: > ``` > SELECT sqlj.install_jar( 'file:///tmp/simple-java-function/target/simple-java-function.jar','jfunctions', true ); > ``` > The function takes the **fully-qualified** path of the `.jar` file, ... To...
It looks good. The "install with apt-get" section skips a little too far ahead: it is still necessary to `CREATE EXTENSION pljava` inside the database. But there should be no...
I remembered one more thing I meant to mention. Before I forget it again: > ``` > try(ResultSet resultSet = DriverManager // > .getConnection("jdbc:default:connection") // > .createStatement() // > .executeQuery("SELECT...
I see another possible refinement: :) > ``` > GRANT USAGE ON LANGUAGE java TO your_user; > ``` > ... the GRANT USAGE statement is required for your database application...
I'm adding a comment to this issue just to connect it to yaml/yaml-reference-parser#4, given that the issues are kind of inseparably connected.
Thanks for looking! As you rebuild them to share with the PL community, I might suggest something like the 'transpose' of the current organization. Right now there are, for example,...
Another unasked-for future test-reorganizing idea: :) Instead of shell scripts piping lots of SQL snippets through `sudo` and `psql`, it might be convenient to write perl scripts that make use...
Hi! I'm following up on this issue, because I really am quite enthusiastic about this approach. It seems very much like the "right", most Acmeist :), way to go about...
Unresolved external symbols `_errstart` and `_errfinish`? I don't have an EnterpriseDB installation handy to test against. The `_errstart` and `_errfinish` symbols are used in vanilla PostgreSQL's backend error logging system:...
That is puzzling. PostgreSQL 14 definitely defines `GetMemoryChunkContext`, as a `static inline` function, here: https://github.com/postgres/postgres/blob/REL_14_12/src/include/utils/memutils.h#L101 Is it possible you have a different PostgreSQL version (or more than one PostgreSQL version)...