pgadba icon indicating copy to clipboard operation
pgadba copied to clipboard

Implementation of Java 10 sql2 spec for PostgreSQL

Results 17 pgadba issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....

Per [this statement](https://mail.openjdk.java.net/pipermail/jdbc-spec-discuss/2019-September/000529.html), Oracle has stopped work on implementing ADBA... Will this project continue? I, personally, disagree with their reasons for stopping work. I feel like ADBA can also help...

Hi, I'm trying to do a PoC on reactive backpressure using pgadba, and I kind of get the impression it isn't honoring backpressure. I'm doing a simple query from a...

I've been trying to build the current master, but I'm encountering problems at runtime: ``` Error occurred during initialization of boot layer java.lang.module.FindException: Module client not found, required by org.postgresql.adba...

One limitation of the JDBC driver was its lack of support for [Asynchronous Command Processing](https://www.postgresql.org/docs/11/libpq-async.html). Will pgadba support this?

`PgRowPublisherOperation` accepts `Flow.Subscriber` that requests a number of data signals `n` (typically rows) via `Subscription.request(n)`. `PgRowPublisherOperation` should consider demand to: * Determine a reasonable fetch size (probably a good suggestion...

I've implemented a small application that connects to Postgres via this driver. I have only one method that triggers database and this method looks like that: ``` @Override public Mono...

Lets talk about how to implement AdbaType.JAVA_OBJECT. I raised the issue on the jdbc-spec discuss list, and my gut feeling is that this isn't possible to do without causing a...

Unit test that reproduces the issue 2 times out of 3 here: https://github.com/pgjdbc/pgsql2/blob/bd92a7d0272fdaaa23b1311a92dc53a65698c688/src/test/java/org/postgresql/sql2/SelectDataTypesTest.java#L321

ProtocolV3.visit() have no implementation to handle incomplete messages over non-blocking socket channel. socketChannel.read(readBuffer) directly update BEFrame 'tag' and 'state' expecting message to be in a complete state.