pljava icon indicating copy to clipboard operation
pljava copied to clipboard

PL/Java is a free add-on module that brings Java™ Stored Procedures, Triggers, Functions, Aggregates, Operators, Types, etc., to the PostgreSQL™ backend.

Results 45 pljava issues
Sort by recently updated
recently updated
newest added

When I import the Pljava-API dependency into java, at which point I can use some of the features of pljava in java, I can then type my project into a...

question

I am developing with Drools (A Business Rules Management System). The startup of each rule service is a two part process. The first step is to instantiate a "container". This...

question

17b7d7c (PR #450) dropped conditional code for PostgreSQL before 9.5, the oldest version to be supported by PL/Java 1.6.x. References to older PostgreSQL versions in the docs, however, were not...

Issues #375 and #385 were closed as, essentially, pilot error (running Maven on a different version of Java than intended), but it would probably help to document that `mvn --version`...

Hello! I would like to request pg17 support for pljava. When I build against PG17 using the latest released version (v1.6.7), I get the following error: ``` [INFO] ----------------------< org.postgresql:pljava-so...

postgres@smadevnu:~/src/pljava % git diff diff --git a/pljava-so/src/main/c/VarlenaWrapper.c b/pljava-so/src/main/c/VarlenaWrapper.c index cb1d9e7a..d36c4da4 100644 --- a/pljava-so/src/main/c/VarlenaWrapper.c +++ b/pljava-so/src/main/c/VarlenaWrapper.c @@ -36,6 +36,10 @@ #define GetOldestSnapshot() NULL #endif +#if PG_VERSION_NUM >= 180000 +#define GetOldestSnapshot() NULL...

We have been using PL/Java for a couple of years now and created our extension initially with 1.5.6 on Postgres 13. Over the years we have migrated to Postgres 15...

Added documentation generated by 'doxygen'. It requires both 'doxygen' and 'graphviz'. This commit is entirely POC - it demonstrates the documentation that can be generated with no modifications to the...

There is currently no documentation in the `pljava-so` module. `Doxygen` is a widely used documentation tool. The pull request associated with this issue includes a 'proof of concept' implementation of...

This is the preliminary implementation of an example implementation using Spring Boot and Test Containers. It will successfully execute a `SpringBootTest` using a PostgreSQLContainer and proper initialization of all spring...