Jelte Fennema-Nio
Jelte Fennema-Nio
**Is your feature request related to a problem? Please describe.** I need a more fine grained way of configuring permissions. **Describe the solution you'd like** Both Postgres and PgBouncer allow...
Hi, I'm one of the PgBouncer maintainers and this looks like a really cool project! Since I recently solved some really confusing and hard to find bug in PgBouncer I...
Normally when a backend crashes with a segfault, postmaster will kill all other backends and then reinitialize everything. But this breaks when using `PgLwLock`, because shared memory initialization of the...
PgBouncer does currently not parse queries at all, only protocol messages. But psycopg closes its statements using DEALOCATE sql call: https://github.com/psycopg/psycopg/blob/63803637e5b20547807bcd632ce2487d871df44e/psycopg/psycopg/_preparing.py#L119 What do you think of about, instead of sending...
### Description / Steps to reproduce the issue This problem was not happening before OpenSSL 3.2.0 was included in mingw 1. Install `mingw-w64-x86_64-postgresql` 2. Cretae database directory: `initdb -D test`...
This starts pulling in a released version of psycopg instead of the version from GitHub. The support for Close packet has been released, so it's not necessary to pull from...
PgBouncer currently only supports protocol version 3.0. However, it was still accepting connections if the client asked for the 3.1 protocol version. This is obviously a bug, because PgBouncer likely...
I realized I was a bit too trigger-happy when removing all references to `expected_rfq_count` in #1025. One occurrence should have been replaced with adding an outstanding request. Normally this isn't...
In session pooling mode PgBouncer is pretty much a transparent proxy, i.e. the client does normally not even need to know that PgBouncer is in the middle. This allows things...
Since updating the image to sonoma in #1030 there have been issues with OSX. My guess would be that they have something to do with OpenSSL 3.2, but it could...